/* ✅ Theme Variables (ye sab colors + design control karte hai) */
:root {
  /* ✅ Website Primary Theme Color (Green) */
  --primary:#dc143c;        /* Main green color (buttons/links) */
  --primary-dark: #166534;   /* Green ka dark shade (hover) */
  --primary-light: #22c55e;  /* Light green (optional highlight) */

  /* ✅ Text Colors */
  --text: #111827;           /* Main text color (black type) */
  --muted: #6b7280;          /* Light gray text (paragraph) */

  /* ✅ Background Colors */
  --bg: #ffffff;             /* Full page background (white) */
  --bg-soft: #f8fafc;        /* Light section bg (grayish white) */

  /* ✅ Border + Shadow */
  --border: #e5e7eb;         /* Border color */
  --shadow: 0 10px 25px rgba(0, 0, 0, 0.12); /* Shadow effect */

  /* ✅ Common Rounded Corners */
  --radius: 14px;            /* Buttons/cards roundness */

  /* =========================
     ✅ HEADER + LOGIN BUTTON COLORS
     ========================= */

  --header-bg: #072A3D;      /* ✅ Header background color (navbar color) */

  /* ✅ Login Button Background Color */
  --login-bg: var(--primary);      /* ✅ Login button background (currently green) */
  --login-hover: var(--primary-dark); /* ✅ Login button hover background (dark green) */

  /* =========================
     ✅ Dropdown Menu Colors
     ========================= */

  --dropdown-bg: var(--bg);        /* ✅ Dropdown background (white) */
  --dropdown-text: var(--text);    /* ✅ Dropdown text color (black) */
}


/* =========================
   ✅ HEADER CLASSES
   ========================= */

/* ✅ Navbar background apply */
.navbar-bg {
  background: var(--header-bg);
}


/* =========================
   ✅ LOGIN BUTTON CLASSES
   ========================= */

/* ✅ Login button ka background yaha se change hota hai */
.login-btn {
  background: var(--login-bg); /* ✅ change this variable to change button color */
  color: #fff;                 /* button text white */
}

/* ✅ Login button hover color */
.login-btn:hover {
  background: var(--login-hover);
}


/* =========================
   ✅ DROPDOWN MENU CLASSES
   ========================= */

.dropdown-menu {
  background: var(--dropdown-bg);  /* dropdown background */
  color: var(--dropdown-text);     /* dropdown text */
  border: 1px solid var(--border); /* dropdown border */
  box-shadow: var(--shadow);       /* dropdown shadow */
}


/* ✅ Scroll animation base */
.scroll-animate {
  opacity: 0;
  transition: all 0.8s ease;
}

.scroll-animate.from-left {
  transform: translateX(-60px);
}

.scroll-animate.from-right {
  transform: translateX(60px);
}

.scroll-animate.show {
  opacity: 1;
  transform: translateX(0);
}


/* Card base */
.why-card {
  background: linear-gradient(180deg, #062c54, #041e3a);
  border: 1.5px solid rgba(220, 20, 60, 0.3);
  border-radius: 16px;
  padding: 2.5rem;
  transition: all 0.35s ease;
  color: white;
}

/* Hover border highlight */
.why-card:hover {
  border-color: #dc143c;
  transform: translateY(-6px);
    box-shadow: 0 0 0 1px #dc143c, 0 18px 40px rgba(220, 20, 60, 0.25);
}

/* Icon */
.why-icon svg {
  width: 50px;
  height: 50px;
  margin-bottom: 1.2rem;
}

/* Text */
.why-card h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
}

.why-card p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
}

/* Scroll animation */
.scroll-up {
  opacity: 0;
  transform: translateY(60px);
  transition: all 0.8s ease;
}

.scroll-up.show {
  opacity: 1;
  transform: translateY(0);
}


.contact-input {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 12px 14px;
  outline: none;
}

.contact-input:focus {
  border-color: var(--primary);
}

/* .contact-info {
  display: flex;
  gap: 14px;
  padding: 18px;
  border-left: 4px solid var(--primary);
  background: #f9fafb;
  border-radius: 10px;
} */

.contact-info {
  background: #f9fafb;
  border-left: 4px solid var(--primary);
  border-radius: 12px;
  padding: 18px;
  overflow: hidden;
}

.contact-inner {
  display: flex;
  gap: 14px;
  transition: transform 0.25s ease;
  will-change: transform;
}

.contact-info h4 {
  font-weight: 700;
}

.icon-sm {
  width: 24px;
  height: 24px;
}

.footer-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 1.2rem;
  color: var(--primary);
}

.footer-link {
  transition: color 0.2s ease;
}

.footer-link:hover {
  color: var(--primary);
}

.footer-icon {
  width: 22px;
  height: 22px;
  cursor: pointer;
}

.footer-icon-sm {
  width: 20px;
  height: 20px;
  margin-top: 3px;
}

/* Hero animation base */
.hero-animate {
  opacity: 0;
  transform: translateY(60px);
  transition: all 1s ease;
}

/* When visible */
.hero-animate.show {
  opacity: 1;
  transform: translateY(0);
}


/* ===== FIXED SVG ICON STYLE ===== */
.icon-svg {
  width: 26px;
  height: 26px;
  overflow: visible;          /* IMPORTANT: prevents cutting */
}

.icon-svg path,
.icon-svg rect,
.icon-svg circle,
.icon-svg ellipse {
  stroke-width: 2.2;          /* clean & readable */
  stroke-linecap: round;
  stroke-linejoin: round;
}


/* ===== Scroll animation (bottom to top) ===== */
.scroll-animate {
  opacity: 0;
  transform: translateY(60px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.scroll-animate.show {
  opacity: 1;
  transform: translateY(0);
}

