/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background: #f4f6f8;
}

/* CONTAINER */
.container {
    max-width: 1200px;
    width: 90%;
    margin: auto;
}

/* HEADER */
.site-header {
    background: #fff;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid #eee;
}

.header-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

/* LOGO */
.logo a {
    background: #f26522;
    color: #fff;
    padding: 10px 18px;
    border-radius: 6px;
    font-weight: 700;
    text-decoration: none;
}

/* NAV */
.nav {
    display: flex;
    align-items: center;
    gap: 22px;
}

.nav a {
    text-decoration: none;
    color: #333;
    font-weight: 600;
    position: relative;
}

/* Hover underline */
.nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 2px;
    background: #f26522;
    transition: 0.3s;
}

.nav a:hover::after {
    width: 100%;
}

/* DROPDOWN */
.nav-dropdown {
    position: relative;
}

.arrow {
    transition: transform 0.3s;
}

.nav-dropdown:hover .arrow {
    transform: rotate(180deg);
}

.simple-dropdown {
    position: absolute;
    top: 140%;
    left: 0;
    width: 280px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 15px 30px rgba(0,0,0,.15);
    display: none;
    animation: dropdown 0.3s ease;
}

.simple-dropdown a {
    padding: 12px 18px;
    display: block;
    font-size: 14px;
}

.simple-dropdown a:hover {
    background: #f4f6f8;
    color: #f26522;
}

.nav-dropdown:hover .simple-dropdown {
    display: block;
}

/* BUTTON */
.btn {
    padding: 12px 22px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
}

.btn-orange {
    background: linear-gradient(135deg, #f26522, #ff8c42);
    color: #fff;
}

/* CTA animation */
.pulse {
    animation: pulse 2s infinite;
}

/* HAMBURGER */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.menu-toggle span {
    width: 26px;
    height: 3px;
    background: #333;
    transition: 0.3s;
}

/* ACTIVE HAMBURGER */
.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px,6px);
}
.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}
.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px,-6px);
}

/* MOBILE */
.mobile-btn {
    display: none;
}

@media (max-width: 992px) {

    .menu-toggle {
        display: flex;
    }

    .desktop-btn {
        display: none;
    }

    .nav {
        position: fixed;
        top: 54px;
        left: 0;
        width: 100%;
        background: #fff;
        flex-direction: column;
        padding: 25px 0;
        transform: translateY(-120%);
        transition: 0.4s ease;
        box-shadow: 0 20px 40px rgba(0,0,0,.15);
    }

    .nav.active {
        transform: translateY(0);
    }

    .simple-dropdown {
        position: static;
        box-shadow: none;
        width: 100%;
        display: none;
        background: #f9fafb;
    }

    .nav-dropdown.open .simple-dropdown {
        display: block;
    }

    .mobile-btn {
        display: inline-block;
        margin-top: 15px;
    }
}

.nav a.active {
    color: #ff6600;
    font-weight: 600;
    position: relative;
}

.nav a.active::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #ff6600;
}


/* ANIMATIONS */
@keyframes dropdown {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(242,101,34,.6); }
    70% { box-shadow: 0 0 0 14px rgba(242,101,34,0); }
    100% { box-shadow: 0 0 0 0 rgba(242,101,34,0); }
}


/* nav bar end */
/* WHO ARE YOU SECTION */
.who-are-you {
    padding: 80px 0;
    background: #f4f6f8;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    color: #2f4b73;
}

.section-subtitle {
    margin-top: 8px;
    font-size: 16px;
    color: #555;
}

/* Cards wrapper */
.who-cards {
    margin-top: 50px;
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

/* Card */
.who-card {
    max-width: 400px;
    width: 100%;
    background: #ffffff;
    border-radius: 20px;
    padding: 32px 28px;
    box-shadow: 0 14px 40px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    text-align: left;
    position: relative;
}

.who-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 60px rgba(0,0,0,0.12);
}

/* Top accent line */
.who-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 5px;
    width: 100%;
    background: #2f4b73;
    border-radius: 20px 20px 0 0;
}

.who-card.primary::before {
    background: #f26522;
}

/* Header */
.card-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 18px;
}

/* Icon */
.card-icon.small {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: #eef3f8;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.who-card.primary .card-icon {
    background: #fff3ea;
}

/* Title */
.who-card h4 {
    font-size: 20px;
    font-weight: 600;
    color: #2f4b73;
}

.who-card.primary h4 {
    color: #f26522;
}

/* Description */
.who-card p {
    font-size: 14px;
    color: #555;
    margin-bottom: 18px;
    line-height: 1.6;
}

/* List */
.who-card ul {
    padding-left: 18px;
    margin-bottom: 24px;
}

.who-card ul li {
    font-size: 14px;
    color: #444;
    margin-bottom: 8px;
    position: relative;
}

.who-card ul li::marker {
    color: #2f4b73;
}

.who-card.primary ul li::marker {
    color: #f26522;
}

/* Button */
.card-btn {
    display: inline-block;
    font-size: 14px;
    padding: 11px 20px;
    border-radius: 8px;
    background: #2f4b73;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s ease;
}

.who-card.primary .card-btn {
    background: #f26522;
}

.card-btn:hover {
    opacity: 0.9;
}

/* MOBILE */
@media (max-width: 768px) {
    .section-title {
        font-size: 30px;
    }

    .who-card {
        max-width: 100%;
        text-align: center;
    }

    .card-header {
        justify-content: center;
    }

    .who-card ul {
        text-align: left;
    }
}

:root {
  --primary: #2f4b7c;
  --text-dark: #1f2937;
  --text-muted: #6b7280;
  --card-bg: #f9fafb;
  --border: #e5e7eb;
}

.problem-section {
  padding: 5rem 1.5rem;
  background: #ffffff;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.problem-section h2 {
  font-size: clamp(2rem, 4vw, 2.75rem);
  color: var(--primary);
  margin-bottom: 1rem;
}

.subtitle {
  max-width: 720px;
  margin: 0 auto 3.5rem;
  font-size: 1.1rem;
  color: var(--text-muted);
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.75rem;
}

.problem-card {
  /* background: var(--card-bg); */
  /* border: 1px solid var(--border); */
  background-color: #F4F6FA;
  border-radius: 14px;
  padding: 2rem;
  text-align: left;
  transition: all 0.25s ease;
}

.problem-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.problem-card .icon {
  font-size: 1.5rem;
  display: inline-block;
  margin-bottom: 0.75rem;
}

.problem-card h3 {
  font-size: 1.25rem;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.problem-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-muted);
}

/* Responsive */
@media (max-width: 768px) {
  .problem-grid {
    grid-template-columns: 1fr;
  }

  .problem-card {
    padding: 1.75rem;
  }
}


:root {
  --primary: #2f4b7c;
  --accent: #f58a07;
  --text-dark: #1f2937;
  --text-muted: #6b7280;
  --bg-soft: #f9fafb;
  --border-soft: #e5e7eb;
}

.confidence-section {
  padding: 1.5rem;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.confidence-container {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.confidence-section h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--primary);
  margin-bottom: 1rem;
}

.confidence-subtitle {
  max-width: 760px;
  margin: 0 auto 3.75rem;
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--text-muted);
}

.confidence-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.75rem;
}

.confidence-card {
  /* background: var(--bg-soft); */
  /* border: 1px solid var(--border-soft); */
  background-color: #F4F6FA;
  border-radius: 16px;
  padding: 2.25rem 2rem;
  text-align: left;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.confidence-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}

.confidence-icon {
  font-size: 1.6rem;
  display: inline-block;
  margin-bottom: 0.75rem;
}

.confidence-card h3 {
  font-size: 1.25rem;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.confidence-card p {
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--text-muted);
}

/* CTA */
.confidence-cta {
  margin-top: 3.5rem;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--accent);
  color: #ffffff;
  padding: 1rem 2.25rem;
  border-radius: 999px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.25s ease;
}

.cta-button span {
  font-size: 1.25rem;
  transition: transform 0.25s ease;
}

.cta-button:hover {
  background: #e07c05;
  box-shadow: 0 12px 28px rgba(245, 138, 7, 0.35);
}

.cta-button:hover span {
  transform: translateX(4px);
}

/* Responsive */
@media (max-width: 768px) {
  .confidence-grid {
    grid-template-columns: 1fr;
  }

  .confidence-card {
    padding: 2rem 1.75rem;
  }
}

.how-it-works {
  padding: 4rem 1rem;
  background: #f9fafc;
  text-align: center;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
}

.how-it-works h2 {
  font-size: 2.5rem;
  color: #1f3b63;
  margin-bottom: 0.5rem;
}

.subtitle {
  color: #6b7280;
  margin-bottom: 3rem;
  font-size: 1.1rem;
}

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
}

.step-card {
  background: #fff;
  padding: 2.5rem 1.5rem;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

.step-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}

.step-number {
  position: absolute;
  top: -14px;
  left: 20px;
  background: #1f3b63;
  color: #fff;
  padding: 6px 14px;
  border-radius: 20px;
  font-weight: 600;
  font-size: 0.9rem;
}

.icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.step-card h3 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  color: #111827;
}

.step-card p {
  color: #6b7280;
  font-size: 0.95rem;
  line-height: 1.6;
}

.cta-btn {
  display: inline-block;
  margin-top: 3rem;
  padding: 0.9rem 2.5rem;
  background: #f05a00;
  color: #fff;
  border-radius: 999px;
  font-size: 1rem;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.2s ease;
}

.cta-btn:hover {
  background: #d94f00;
  transform: translateY(-2px);
}


/* HERO */
/* .hero {
     background: url('https://images.unsplash.com/photo-1522071820081-009f0129c71c') no-repeat center center/cover;
    color: #fff;
    padding: 80px 0;
    text-align: center;
} */
.hero {
    position: relative;
    background-color: #1C2B4A;
    /* background: url('https://images.unsplash.com/photo-1507679799987-c73779587ccf?q=80&w=1920&auto=format&fit=crop') no-repeat center center/cover; */
    color: #fff;
    padding: 120px 0;
    text-align: center;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    /* background: linear-gradient(
        rgba(0, 0, 0, 0.7),
        rgba(0, 0, 0, 0.6)
    ); */
}

.hero-content {
    position: relative;
    z-index: 2;
}
.hero h1 {
    font-size: 48px;
    margin-bottom: 15px;
}

.subtitle {
    font-size: 18px;
    margin-bottom: 40px;
}

.search-box {
    background: #e9edf2;
    padding: 20px;
    border-radius: 10px;
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
}

.search-box input {
    padding: 12px;
    width: 300px;
    border-radius: 6px;
    border: none;
}

.popular {
    margin: 20px 0;
    font-size: 14px;
}

.stats {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.help {
    margin-top: 30px;
}

.help a {
    color: #fff;
    text-decoration: underline;
}

/* FOOTER */
.site-footer {
    background: #111;
    color: #aaa;
    padding: 20px 0;
}

.footer-flex {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.footer-links a {
    color: #aaa;
    margin-left: 15px;
    text-decoration: none;
}

/* RESPONSIVE */
@media (max-width: 768px) {

    .hero h1 {
        font-size: 34px;
    }

    .search-box input {
        width: 100%;
    }
}
/* SEARCH CARD */
.search-card {
    background: #e9ebef;
    border-radius: 14px;
    padding: 30px;
    max-width: 900px;
    margin: 0 auto;
}

/* Top Row */
.search-top {
    display: flex;
    gap: 15px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

/* Input */
.search-input {
    display: flex;
    align-items: center;
    background: linear-gradient(90deg, #5ed6e6, #0b57d0);
    padding: 12px 18px;
    border-radius: 10px;
    flex: 1;
    min-width: 260px;
}

.search-input input {
    background: transparent;
    border: none;
    outline: none;
    color: #fff;
    font-size: 16px;
    width: 100%;
}

.search-input input::placeholder {
    color: #eaf6ff;
}

.search-icon {
    margin-right: 10px;
    font-size: 18px;
    color: #fff;
}

/* Button */
.search-btn {
    background: #f57c00;
    color: #fff;
    border: none;
    padding: 14px 22px;
    font-size: 16px;
    border-radius: 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.search-btn:hover {
    background: #e56f00;
}

/* Popular text */
.popular-text {
    text-align: center;
    margin: 20px 0;
    font-size: 14px;
    color: #333;
}

/* Stats */
.search-stats {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    color: #222;
}

/* MOBILE */
@media (max-width: 768px) {
    .search-card {
        padding: 20px;
    }

    .search-btn {
        width: 100%;
        justify-content: center;
    }

    .search-stats {
        gap: 15px;
        text-align: center;
    }
}




