:root {
    --text-main: #374151;
    /* Dark gray for headings */
    --text-secondary: #6b7280;
    /* Muted gray for body text */
    --bg-body: #f9fafb;
    --font-main: 'Inter', sans-serif;

    /* Card Colors (Soft Pastels) */
    --color-pink: #fecaca;
    /* bg-red-200 */
    --color-orange: #fedcba;
    /* Custom soft orange */
    --color-yellow: #fef08a;
    /* bg-yellow-200 */
    --color-light-green: #dcfce7;
    /* bg-green-100 */
    --color-lime-green: #d9f99d;
    /* bg-lime-200 */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.dm-sans {
    font-family: 'DM Sans', sans-serif;
}

body {
    font-family: 'DM Sans', sans-serif;
    background-color: #ffffff;
    color: #333;
    overflow-x: hidden;
}

/* Navigation */
 /* Navigation */
              /* ----------- NAVBAR BASE ----------- */
.navbar {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    padding: 1rem 2rem;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    /* position: fixed; */
}

.nav-container {
    max-width: 1400px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo1 img{
    width: 53px;
    height: 53px;
}

/* .logo {
    font-family: 'DM Sans', sans-serif;
    font-weight: 700;
    font-size: 24px;
    background: linear-gradient(135deg, #0d5047 0%, #144C4A 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
} */

/* ----------- NAV MENU ----------- */

.nav-menu {
    display: flex;
    gap: 2.5rem;
    list-style: none;
    align-items: center;
}

.nav-link {
    color: #144C4A;
    font-size: 18px;
    font-weight: 500;
    text-decoration: none;
    position: relative;
}

.nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #0d5047 0%, #144C4A 100%);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color:#144C4A;
    font-weight: bold;
    font-size: 18.5px;
    

}
/* 
.nav-link:hover::after {
    width: 100%;
} */


/* ----------- DROPDOWN ----------- */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 120%;
    left: 0;
    background: white;
    border-radius: 14px;
    min-width: 20px;
    min-height: 22px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li a {
    display: block;
    padding: 12px 24px;
    color: #4b5563;
    text-decoration: none;
    
}
.dropdown-menu ul{
    list-style-type: none;
}

/* ----------- DOWNLOAD BUTTON ----------- */
.download-btn {
    background: linear-gradient(135deg, #0d5047 0%, #144C4A 100%);
    color: white;
    border: none;
    padding: 12px 28px;
    border-radius: 50px;
    font-size: 15px;
    width: 188px;
  font-family: "Dm";
    height: 54px;
    font-weight: 600;
    font-family: 'DM Sans', sans-serif;
    cursor: pointer;
}

.mobile-btn-wrapper {
    display: none;
}

/* ----------- HAMBURGER ----------- */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: #0d5047;
    border-radius: 5px;
    transition: 0.3s;
}

/* HAMBURGER ANIMATION */
.hamburger.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
    opacity: 0;
}
.hamburger.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* ----------- MOBILE RESPONSIVE ----------- */
@media (max-width: 768px) {

    .desktop-btn {
        display: none;
    }

    .mobile-btn-wrapper {
        display: block;
        padding: 20px;
    }

    .hamburger {
        display: flex;
    }

    /* MOBILE MENU */
    .nav-menu {
        position: absolute;
        top: 100%;
        right: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        gap: 1rem;
        padding: 20px 0;
        display: none;
        text-align: center;
    }

    .nav-menu.active {
        display: block;
    }

    /* MOBILE DROPDOWN (Click) */
    .dropdown-menu {
        position: relative;
        top: 0;
        left: 0;
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        box-shadow: none;
        display: none;
    }

    .dropdown.open .dropdown-menu {
        display: block;
    }

    .dropdown-toggle {
        cursor: pointer;
    }
}

        /* Demo Content */
        .demo-content {
            max-width: 1200px;
            margin: 50px auto;
            padding: 40px 20px;
            text-align: center;
        }

        .demo-content h1 {
            font-size: 48px;
            color: #1f2937;
            margin-bottom: 20px;
        }

        .demo-content p {
            font-size: 18px;
            color: #6b7280;
            line-height: 1.6;
        }
   /* Hero Section */
        .hero {
            padding: 4rem 2rem;
            margin-top: 20px;
            background-image: url(./img/Group\ 103.png);
             background-repeat: no-repeat;
           
          
        }

        .hero-container {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 3rem;
            margin-bottom: 75px;
            margin-top: 15px;
             
        }

        .hero-image {
            flex: 0 0 250px;
        }

        .hero-image img {
            width: 100%;
            height: 400px;
            object-fit: cover;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }

        .hero-content {
            flex: 1;
            text-align: center;
        }

        .hero-content h1 {
            font-size: 3.5rem;
            color:#144C4A;
            margin-bottom: 1rem;
            font-family: 'DM Sans', sans-serif;
            font-weight: 700;
            line-height: 4.125rem;
            transition: all 0.4s ease;
        }

        .hero-subtitle {
            font-size: 1.2rem;
            color: #666;
            margin-bottom: 2.5rem;
            min-height: 60px;
            transition: all 0.4s ease;
            font-weight: 400;
        }

        .mood-selector {
            margin-top: -85px;
            display: flex;
            justify-content: center;
            gap: 2rem;
            margin-bottom: 3rem;
            position: relative;
        }

        .mood-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 0.5rem;
            cursor: pointer;
            transition: transform 0.3s;
            position: relative;
            padding: 10px;
            border-radius: 15px;
        }

        .mood-item.selected {
            background: rgba(13, 80, 71, 0.08);
            transform: scale(1.15);
        }

        .mood-item:hover {
            transform: scale(1.1);
        }

        .mood-icon,
        .mood-gif img {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            font-size: 2rem;
            display: flex;
            align-items: center;
            justify-content: center;
            background-color: white;
            border: 2px solid #ddd;
            transition: all 0.3s;
        }

        .mood-item.selected .mood-icon,
        .mood-item.selected .mood-gif img {
            border-color: #0d5047;
            box-shadow: 0 0 0 3px rgba(13, 80, 71, 0.2);
        }

        /* GIF initially hidden */
        .mood-gif {
            position: absolute;
            top: 10px;
            left: 50%;
            transform: translateX(-50%);
            opacity: 0;
            transition: opacity 0.3s;
        }

        /* Hover effect: hide emoji, show GIF */
        .mood-item:hover .mood-icon {
            opacity: 0;
        }

        .mood-item:hover .mood-gif {
            opacity: 1;
        }

        .mood-item.selected .mood-gif {
            opacity: 1;
        }

        .mood-item.selected .mood-icon {
            opacity: 0;
        }

        /* Mood text */
        .mood-item span {
            font-size: 0.9rem;
            color: #666;
            font-weight: 500;
            transition: color 0.3s;
        }

        .mood-item.selected span {
            color: #0d5047;
            font-weight: 600;
        }

        /* Buttons */
        .cta-buttons {
            display: flex;
            gap: 1.5rem;
            justify-content: center;
        }

        .btn-primary,
.btn-secondary {
    padding: 1rem 2rem;
    border-radius: 36px;
    font-size: 18px; /* removed duplicate */
    cursor: pointer;
    transition: all 0.3s;
    border: none;
    font-weight: 600;
    width: 243px;
    height: 66px;
    font-family: 'DM Sans', sans-serif;

    display: flex;             /* use flexbox */
    align-items: center;       /* vertically center items */
    justify-content: center;   /* horizontally center items */
    gap: 10px;                 /* spacing between text and image */
}

.arrow-btn {
    display: inline-block;     /* ensures image behaves well */
    vertical-align: middle;    /* aligns with text */
    width: 20px;               /* optional: control size */
    height: 20px;              /* optional: control size */
}


        .btn-primary {
            background-color: #0d5047;
            color: white;
        }

        .btn-primary:hover {
            background-color: #0a3d36;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(13, 80, 71, 0.3);
        }

        .btn-secondary {
            background-color: white;
            color: #0d5047;
            border: 2px solid #e0e0e0;
        }

        .btn-secondary:hover {
            border-color: #0d5047;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        /* Fade animation */
        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(-10px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .fade-in {
            animation: fadeIn 0.5s ease;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .hero-container {
                flex-direction: column;
                gap: 2rem;
            }

            .mood-selector {
                gap: 1rem;
                flex-wrap: wrap;
            }

            .mood-item {
                padding: 8px;
            }

            .cta-buttons {
                flex-direction: column;
                gap: 1rem;
                width: 100%;
            }

            .btn-primary,
            .btn-secondary {
                padding: 0.75rem 1.5rem;
                font-size: 0.9rem;
                width: 100%;
                max-width: 300px;
            }

            .hero-image {
                flex: 0 0 auto;
                width: 100%;
            }

            .hero-image img {
                height: auto;
            }

            .hero-content h1 {
                font-size: 2.5rem;
                line-height: 3rem;
            }

            .hero-subtitle {
                font-size: 1rem;
                min-height: 80px;
            }
        }


/* About Section */
.about {
    padding: 5rem 2rem;
    background-color: white;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.about-container h2 {
    font-size: 3rem;
    color: #999;
    margin-bottom: 3rem;
}

.about-us-btn {
    width: 191px;
    height: 54px;
    border-radius: 30px;
    border: none;
    background: #144C4A;
    color: white;
    font-size: 1rem;
    cursor: pointer;
}

.carousel {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.carousel-btn {
    background-color: #333;
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s;
}

.carousel-btn:hover {
    background-color: #0d5047;
}

.about-content {
    min-width: 600px;
    font-size: 18px;
    line-height: 30px;

}

.about-content p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;

}


@media (max-width: 768px) {
    .about-content {
        min-width: 100%;
        font-size: 1rem;
        line-height: 1.5rem;
    }

    .carousel-btn {
        width: 35px;
        height: 35px;
        font-size: 1.2rem;
    }
}
 /* STORIES SECTION */
/* Stories Section */
.stories {
    padding: 100px 20px;
    background: linear-gradient(to bottom, #e8e8e8 0%, #f5f5f5 100%);
    position: relative;
}

.stories-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.stories-title {
    font-size: 48px;
    color: #999;
    margin-bottom: 80px;
    text-align: center;
    font-weight: 700;
}

.stories-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px 40px;
    margin-top: 60px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.story-card-outer {
    background: rgba(255, 255, 255, 0.95);
    width: 100%;
    max-width: 420px;
    height: 450px;
    border-radius: 30px;
    margin: 0 auto;
    padding: 30px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    position: relative;
    transition: all 0.4s ease;
}

.story-card-outer:hover {
    transform: translateY(-15px) rotate(0deg) !important;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.25);
}

/* Scattered positioning */
.story-card-outer:nth-child(1) {
    transform: rotate(-4deg);
}

.story-card-outer:nth-child(2) {
    transform: rotate(3deg) translateY(40px);
}

.story-card-outer:nth-child(3) {
    transform: rotate(2deg) translateY(-30px);
}

.story-card-outer:nth-child(4) {
    transform: rotate(-3deg) translateY(20px);
}

.story-card-inner {
    width: 100%;
    height: 100%;
    background: #F5F5F5;
    border-radius: 20px;
    padding: 35px 25px;
    position: relative;
    display: flex;
    flex-direction: column;
}

.story-pin {
    position: absolute;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    filter: drop-shadow(0 5px 15px rgba(168, 85, 247, 0.4));
}

.story-text {
    font-size: 15px;
    color: #666;
    line-height: 1.7;
    flex-grow: 1;
    margin-top: 40px;
}

.story-author {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 20px;
}

.author-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #ddd;
}

.story-author span {
    font-size: 14px;
    color: #999;
    font-weight: 500;
}

/* Responsive Design for Stories Section */
@media (max-width: 1024px) {
    .stories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px 30px;
    }

    .stories-title {
        font-size: 40px;
    }
}

@media (max-width: 768px) {
    .stories-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .stories-title {
        font-size: 32px;
    }

    .story-card-outer {
        max-width: 100%;
        transform: rotate(0deg) !important;
    }

    .story-card-outer:nth-child(2),
    .story-card-outer:nth-child(3),
    .story-card-outer:nth-child(4) {
        transform: rotate(0deg) translateY(0) !important;
    }
}

@media (max-width: 480px) {
    .stories {
        padding: 60px 20px;
    }

    .stories-title {
        font-size: 28px;
        margin-bottom: 50px;
    }

    .story-card-outer {
        height: auto;
        min-height: 400px;
        padding: 25px;
    }

    .story-text {
        font-size: 14px;
    }

    .author-avatar {
        width: 40px;
        height: 40px;
    }

    .story-author span {
        font-size: 13px;
    }
}

/* How Kindled Works Section */
.how-it-works {
    padding: 5rem 2rem;
    background-color: white;

}

.how-it-works-container {
    max-width: 1200px;
    margin: 0 auto;

}


.how-it-works-container h2 {
    font-size: 3rem;
    color: #999;
    margin-bottom: 3rem;
    text-align: center;
    font-family: 'DM Sans', sans-serif;
    font-weight: 700;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
    position: relative;
}

.step-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
}

.step-item:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 60px;
    right: -50%;
    width: 100%;
    height: 2px;
    border-top: 2px dashed #ddd;
    z-index: 0;
}

.step-circle {
    width: 120px;
    height: 120px;
    background-color: #e8e8e8;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.step-number {
    font-size: 2rem;
    color: #ccc;
    font-weight: 700;
    font-family: 'DM Sans', sans-serif;
}

.step-item h3 {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 0.5rem;
    font-family: 'DM Sans', sans-serif;
    font-weight: 600;
}

.step-item p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.4;
    font-family: 'DM Sans', sans-serif;
}

.know-more-btn {
    width: 191px;
    height: 54px;
    border-radius: 30px;
    border: none;
    background: #144C4A;
    color: white;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s;
}

.center-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
}

.know-more-btn:hover {
    background-color: #0a3d36;
}


/* Experts Section */
.experts {
    padding: 5rem 2rem;
    background: linear-gradient(to bottom, #e8e8e8 0%, #f5f5f5 100%);
}

.experts-container {
    max-width: 1200px;
    margin: 0 auto;
}

.experts-container h2 {
    font-size: 3rem;
    color: #999;
    margin-bottom: 3rem;
    text-align: center;
    font-family: 'DM Sans', sans-serif;
    font-weight: 700;
}

.experts-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 3rem;
    overflow: hidden;
}

/* Carousel Row */
.carousel-row {
    position: relative;
    overflow: hidden;
    padding: 10px 0;
}

.carousel-track {
    display: flex;
    gap: 2rem;
    width: fit-content;
}

/* First row - scroll left to right */
.carousel-row:first-child .carousel-track {
    animation: scrollRight 30s linear infinite;
}

/* Second row - scroll right to left */
.carousel-row:last-child .carousel-track {
    animation: scrollLeft 30s linear infinite;
}

.carousel-track:hover {
    animation-play-state: paused;
}

@keyframes scrollRight {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@keyframes scrollLeft {
    0% {
        transform: translateX(-50%);
    }

    100% {
        transform: translateX(0);
    }
}

.expert-card {
    flex: 0 0 214px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    transition: transform 0.3s ease;
    height: 303px;
    opacity: 1;
    border-radius: 31px;
}

.expert-card:hover {
    transform: translateY(-5px);
}

.expert-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.expert-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, transparent 100%);
    color: white;
}

.expert-info h4 {
    font-size: 0.95rem;
    margin-bottom: 0.25rem;
    font-family: 'DM Sans', sans-serif;
    font-weight: 600;
}

.expert-info p {
    font-size: 0.8rem;
    opacity: 0.9;
    font-family: 'DM Sans', sans-serif;
}

/* Expert card background colors */
.expert-card.pink {
    background-color: #ffc1cc;
}

.expert-card.orange {
    background-color: #ffd9a8;
}

.expert-card.yellow {
    background-color: #fff4a8;
}

.expert-card.light-green {
    background-color: #d4f5c1;
}

.expert-card.green {
    background-color: #a8f5a8;
}

.expert-card.green-alt {
    background-color: #b8f5b8;
}

.expert-card.light-green-alt {
    background-color: #c8f5c8;
}

.expert-card.yellow-alt {
    background-color: #fff9b8;
}

.expert-card.orange-alt {
    background-color: #ffe4b8;
}

.expert-card.pink-alt {
    background-color: #ffd1d8;
}

.center-wrapper {
    text-align: center;
    margin-top: 2rem;
}

.find-expert-btn {
    background-color: #144C4A;
    color: white;
    border: none;
    border-radius: 40px;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.3s, transform 0.2s;
    width: 286px;
    height: 66px;
    font-family: 'DM Sans', sans-serif;
    font-weight: 600;
}

.find-expert-btn:hover {
    background-color: #0f3a38;
    transform: translateY(-2px);
}

/* Gradient overlays for fade effect */
.carousel-row::before,
.carousel-row::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100px;
    z-index: 2;
    pointer-events: none;
}

.carousel-row::before {
    left: 0;
    /* background: linear-gradient(to right, #e8e8e8, transparent); */
}

.carousel-row::after {
    right: 0;
    /* background: linear-gradient(to left, #f5f5f5, transparent); */
}

/* Responsive */
@media (max-width: 768px) {
    .experts {
        padding: 3rem 1rem;
    }

    .experts-container h2 {
        font-size: 2rem;
    }

    .expert-card {
        flex: 0 0 180px;
        height: 250px;
    }

    .carousel-track {
        gap: 1.5rem;
    }

    .find-expert-btn {
        width: 100%;
        max-width: 286px;
    }
}

@media (max-width: 480px) {
    .experts-container h2 {
        font-size: 1.75rem;
        margin-bottom: 2rem;
    }

    .expert-card {
        flex: 0 0 160px;
        height: 220px;
    }

    .experts-grid {
        gap: 1.5rem;
    }

    .carousel-row::before,
    .carousel-row::after {
        width: 60px;
    }
}



/* Responsive Design for New Sections */
@media (max-width: 1024px) {
    .steps-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }

    .step-item:nth-child(3)::after,
    .step-item:nth-child(5)::after {
        display: none;
    }

    .experts-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        /* Refined for more flexibility */
    }
}

@media (max-width: 768px) {

    .how-it-works-container h2,
    .experts-container h2 {
        font-size: 2rem;
    }

    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .step-item::after {
        display: none;
    }

    .step-circle {
        width: 100px;
        height: 100px;
    }

    .step-number {
        font-size: 1.75rem;
    }

    .experts-grid {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        /* Refined for more flexibility */
        gap: 1rem;
    }

    .expert-info h4 {
        font-size: 0.9rem;
        /* Slightly reduced font size for smaller tablets */
    }

    .expert-info p {
        font-size: 0.7rem;
        /* Slightly reduced font size for smaller tablets */
    }
}

@media (max-width: 480px) {
    .how-it-works {
        padding: 3rem 1rem;
    }

    .how-it-works-container h2,
    .experts-container h2 {
        font-size: 1.75rem;
    }

    .steps-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .step-circle {
        width: 90px;
        height: 90px;
    }

    .step-number {
        font-size: 1.5rem;
    }

    .experts {
        padding: 3rem 1rem;
    }

    .experts-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        /* Refined for more flexibility */
    }

    .expert-info h4 {
        font-size: 0.8rem;
        /* Further reduced font size for mobile */
    }

    .expert-info p {
        font-size: 0.65rem;
        /* Further reduced font size for mobile */
    }
}


/* Responsive Design for New Sections */
@media (max-width: 1024px) {
    .steps-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }

    .step-item:nth-child(3)::after,
    .step-item:nth-child(5)::after {
        display: none;
    }

    .experts-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 768px) {

    .how-it-works-container h2,
    .experts-container h2 {
        font-size: 2rem;
    }

    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .step-item::after {
        display: none;
    }

    .step-circle {
        width: 100px;
        height: 100px;
    }

    .step-number {
        font-size: 1.75rem;
    }

    .experts-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .how-it-works {
        padding: 3rem 1rem;
    }

    .how-it-works-container h2,
    .experts-container h2 {
        font-size: 1.75rem;
    }

    .steps-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .step-circle {
        width: 90px;
        height: 90px;
    }

    .step-number {
        font-size: 1.5rem;
    }

    .experts {
        padding: 3rem 1rem;
    }

    .experts-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .expert-info h4 {
        font-size: 0.85rem;
    }

    .expert-info p {
        font-size: 0.75rem;
    }
}

.trusted-companies {
    padding: 5rem 2rem;
    background-color: #f8f8f8;
    /* Light gray background to distinguish the section */
}

.trusted-companies .container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    text-align: center;
}

.trusted-companies h1 {
    font-size: clamp(28px, 5vw, 56px);
    color: #808080;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.3;
    font-family: 'DM Sans', sans-serif;


}

.trusted-companies .subtitle {
    font-size: clamp(14px, 2vw, 16px);
    color: #808080;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.trusted-companies .tabs {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 60px;
}

.trusted-companies .tab {
    background: none;
    border: none;
    color: #9ca3af;
    font-size: 16px;
    cursor: pointer;
    padding: 10px 20px;
    position: relative;
    transition: color 0.3s ease;
}

.trusted-companies .tab.active {
    color: #2A2727;
    font-size: 15px;
}

.trusted-companies .tab.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: #374151;
}

.trusted-companies .carousel-container {
    position: relative;
    overflow: hidden;
    padding: 40px 0;
    max-width: 100%;
    /* Ensure it doesn't overflow its parent */
    margin: 0 auto;
    /* Center the carousel container */
}


.carousel-track {
    display: flex;
    gap: 60px;
    animation: scroll 30s linear infinite;
    width: fit-content;
}

.carousel-track:hover {
    animation-play-state: paused;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}



/* Container for each logo */
.carousel-container{
    display: flex;
    align-items: center;
}

.logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 150px; /* Adjust width for carousel spacing */
    height: 100px; /* Adjust height for logo display */
    background: white;
    border-radius: 12px;
    padding: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

/* Hover effect */
.logo-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

/* Logo container */
.logo {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

/* Images inside logo */
.logo img {
    width: 100%;
    height: 100%;
    object-fit: contain; /* Maintain aspect ratio */
    display: block;
}


.cta-button {
    background: #064e3b;
    color: white;
    border: none;
    padding: 18px 40px;
    font-size: 16px;
    font-weight: 500;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 60px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 15px rgba(6, 78, 59, 0.3);
}

.cta-button:hover {
    background: #065f46;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(6, 78, 59, 0.4);
}

.cta-button::after {
    content: '→';
    font-size: 20px;
}




@media (max-width: 768px) {
    .tabs {
        gap: 15px;
    }

    .tab {
        font-size: 14px;
        padding: 8px 15px;
    }

    .carousel-track {
        gap: 40px;
    }

    .logo-item {
        min-width: 120px;
        height: 70px;
    }
}


.disorders {
    background: #EEEEEE;

}

.disorder-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 5rem 2rem;

}

.disorder-container h1 {
    font-size: 3rem;
    color: #808080;
    margin-bottom: 3rem;
    text-align: center;
    font-family: 'DM Sans', sans-serif;
    font-weight: 700;
    font-style: Bold;
    line-height: 66px;
    letter-spacing: 0px;


}



/* FOOTER */

/* FOOTER */
footer {
    background: #1D1D1D;
    padding: 80px 20px 30px;
    border-top: 1px solid rgba(99, 102, 241, 0.2);
    margin-top: 100px;
    width: 100%;              /* IMPORTANT FIX */
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.footer-column h4 {
    color: #ffffff;
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 20px;
    background: #ffffff;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
}

.footer-column ul li a:hover {
    color: #10b981;
    padding-left: 5px;
}

.footerbtn {
    background:#C2F11F;
    color: black;
    padding: 16px 28px;
    border-radius: 30px;
    border: none;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    /* box-shadow: 0 4px 15px rgba(99, 102, 241, 0.4); */
}

.footerbtn:hover {
    transform: translateY(-2px);
    /* box-shadow: 0 6px 25px rgba(168, 85, 247, 0.6); */
}

.footer-bottom {
    max-width: 1400px;
    margin: 60px auto 0;
    padding: 30px 0;
    border-top: 1px solid rgba(99, 102, 241, 0.2);
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    color: #FFFFFF;
    font-size: 14px;
}

.footer-bottom p {
    cursor: pointer;
    transition: color 0.3s ease;
}

.footer-bottom p:hover {
    color: #a855f7;
}

.copy {
    color: #6b7280 !important;
}

/* Footer Responsive */
@media (max-width: 768px) {
    .footer {
        padding: 60px 20px 30px;
    }

    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 15px;
        padding: 20px 0;
    }
}

/* RESPONSIVE BREAKPOINTS */
@media (max-width: 1360px) {

    /* Adjusts scrolling area to fit the available space */
    .carousel-section {
        width: calc(100vw - 332px - 25px - 40px);
        max-width: 100%;
        min-width: 300px;
    }
}

@media (max-width: 1020px) {

    /* Switches to column layout for the carousel section */
    .carousel-wrapper {
        flex-direction: column;
        gap: 40px;
    }

    .carousel-section,
    .fixedcard {
        width: 100%;
        max-width: 100%;
        min-width: 100%;
        margin: 0 auto;
    }

    .carousalcardcontainer {
        /* Card takes up nearly full screen width */
        min-width: calc(100% - 20px);
    }

}

@media (max-width: 768px) {

    /* Mobile layout for nav and content */
    .nav-menu,
    .download-btn {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .content-section {
        grid-template-columns: 1fr;
    }

    h1 {
        font-size: 40px;
    }

    .image-group {
        grid-template-rows: 1fr;
        gap: 15px;
    }

    .image-placeholder {
        width: 100%;
        height: 300px;
    }




}

@media (max-width: 480px) {
    .testimonial-card {
        padding: 20px;
    }
}

@media (max-width:768px) {
    .section-header {
        margin-bottom: 2rem;
        margin-top: 2rem;
        font-size: 2rem;
        font-family: "DM Sans", sans-serif;
        font-weight: 700;
        line-height: 44px;
        width: 100%;
    }

    .disorders {
        width: 100%;
        height: auto;
    }

    .section-header h2 {
        font-size: 25px;
    }
  .carousel-track{
    gap: 5px;
    
  }
 .testimonial-card{
    height: auto;
    width: 279px;
 }


}


.main-container {
    max-width: 95.813rem;
    /* Equivalent to max-w-7xl */
    margin: 0 auto;
    padding: 3rem 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #EEEEEE;
}


@media (min-width: 640px) {
    .main-container {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
}

@media (min-width: 1024px) {
    .main-container {
        padding-left: 2rem;
        padding-right: 2rem;
    }
}

/* Typography */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
    max-width: 48rem;
}

.section-title {
    font-family: "DM Sans", sans-serif;
    font-weight: 700;
    font-size: 56px;
    color: #808080;
}

@media (min-width: 768px) {
    .section-title {
        font-size: 2.25rem;
        /* 4xl */
    }
}

/* Cards Grid */
.cards-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    width: 100%;
    margin-bottom: 4rem;
}

@media (min-width: 768px) {
    .cards-grid {
        grid-template-columns: repeat(2, 1fr);
        
        
    }
}
@media (max-width: 768px) {
    .cards-grid {
        /* grid-template-columns: repeat(2, 1fr); */
        display: flex;
        overflow-x: scroll;
        
    }
    .card {
        flex: 0 0 80%;
        margin-right: 1rem;
        
    }


}



@media (min-width: 1024px) {
    .cards-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Individual Card Styling */
.card {
    background-color: #FFFFFF;
    border-radius: 1.938rem;
    padding: 1rem;
    position: relative;
    height: 29.813rem;
    width: 19.5rem;
    display: flex;
    flex-direction: column;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    border: 1px solid #f3f4f6;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
}

/* Top Left Decorative Corner */
.card-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 6rem;
    height: 6rem;
    background-color: #D9D9D9;
    border-bottom-right-radius: 100%;
    z-index: 0;
}

/* Card Content */
.card-content {
    position: relative;
    z-index: 10;
    margin-top: 4rem;
    /* Push content down slightly */
    flex-grow: 1;
}

.card-heading {
    font-size: 1.563;
    /* xl */
    font-weight: 700;
    color: #494747;
    margin-top: 35px;
    margin-bottom: 1rem;
    transition: color 0.3s;
    font-family: "DM Sans", sans-serif;
}

.card:hover .card-heading {
    color: var(--brand-dark);
}

.card-text {
    font-size: 1rem;
    color: #808080;
    line-height: 1.625;
    margin: 8px;
    font-family: "DM Sans", sans-serif;
}

/* Card Action Button (Arrow) */
.card-action {
    position: absolute;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 10;
}

.btn-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background-color: #144C4A;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: background-color 0.2s, transform 0.2s;
}

/* .btn-icon:hover {
            background-color: ;
        } */

.card:hover .btn-icon {
    transform: scale(1.1);
}

/* "Know More" Main Button */
.btn-pill {
    background-color: #144C4A;
    color: white;
    padding: 0.5rem 2rem;
    border-radius: 40px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.025em;
    font-size: 16px;
    width: 196px;
    height: 60px;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
    font-family: "DM Sans", sans-serif;
}

.btn-pill:hover {
    background-color: #0B3E3A;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.btn-pill i {
    font-size: 1rem;
}



/* Testimonial Carousel Styles */
.whatpeoplearesaying-container {
    margin: 0 auto;
    padding: 5rem 2rem;
    background-color: #F5F5F5;
    width: 100%;
}

.whatpeoplearesaying-container h1 {
    font-size: 3.5rem;
    color: #808080;
    font-family: "DM Sans", sans-serif;
    margin-bottom: 3rem;
    text-align: center;
    font-weight: 700;
}

.main-container {
    max-width: 1644px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    font-size: 3rem;
    font-weight: 700;
    color: #808080;
    margin-bottom: 3rem;
}

/* CRITICAL: Carousel Wrapper needs overflow hidden */
.carousel-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
    margin-bottom: 1.5rem;
}

/* Carousel Track contains all cards */
.carousel-track {
    display: flex;
    gap: 1rem;
    width: fit-content;
}

/* Individual Card Styling */
.testimonial-card {
    flex-shrink: 0;
    max-width: 497px;
    min-width: 350px;
    padding: 1.5rem;
    border-radius: 31px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    height: 236px;
    display: flex;
    flex-direction: column;
    color: rgba(0, 0, 0, 0.85);
}

/* Card Colors */
.card-color-1 { background-color: #fecaca; }
.card-color-2 { background-color: #fedcba; }
.card-color-3 { background-color: #dcfce7; }
.card-color-4 { background-color: #fef08a; }
.card-color-5 { background-color: #d9f99d; }

/* Profile Info */
.profile-info {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.profile-pic {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 0.75rem;
}

.profile-name {
    font-size: 1rem;
    font-weight: 500;
    color: #374151;
}

.testimonial-text {
    font-size: 15px;
    line-height: 1.6;
    color: rgba(0, 0, 0, 0.7);
    font-style: italic;
    overflow: hidden;
}

@media (max-width: 768px) {
    .testimonial-card {
        min-width: 280px;
    }
    
    .whatpeoplearesaying-container h1 {
        font-size: 2rem;
    }
}

/* Navigation Buttons (Hidden) */
.carousel-nav,
.nav-button,
.nav-button:disabled {
    display: none;
}


/* Make entire card clickable */
.blog-card-link {
    text-decoration: none;
    color: inherit;
}

/* Clamp 2 lines for heading */
.clamp-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Clamp 5 lines for paragraph */
.clamp-5 {
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}


.blog-container1 {
    max-width: 1200px;
    margin: 0 auto;
}
.read-more-btn {
    color: #0077ff;
    cursor: pointer;
    font-size: 14px;
    margin-left: 5px;
}

.extra-text {
    display: none;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 400;
    color: #6b7280;
    margin-bottom: 40px;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-bottom: 40px;
}

.blog-card {
    background: white;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    
    max-width:336px;
    height: 500px;
}

.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.12);
}

.blog-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    position: relative;
}

.blog-status {
    position: absolute;
    top: 16px;
    left: 16px;
    background: white;
    padding: 6px 12px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.75rem;
}
.latest{
    font-weight: 600;
    color: #374151;
    font-style: italic;
}
.status-dot {
    width: 8px;
    height: 8px;
    background: #10b981;
    border-radius: 50%;

}

.blog-content {
    padding: 24px;
    position: relative;
}

.blog-title {
    font-size: 22px;
    font-family: "DM Sans", sans-serif;
    font-weight: 700;
    color: #494747;
    margin-bottom: 12px;
    line-height: 1.4;
}

.blog-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px;
}

.tag {
    font-size: 15px;
    font-weight: 500;
    color: #808080;
}

.blog-btn {
    position: absolute;
    bottom: -40px;
    right: 24px;
    width: 51px;
    height: 48px;
    background: #115e59;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.3s ease;
    border: none;
}

.blog-arrow:hover {
    background: #0f4c4c;
}

.blog-arrow::after {
    content: '→';
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
}

.view-all-container{
    display: flex;
    justify-content: center;
    margin-top: 20px;
    
}

.view-all-btn {
    background: #115e59;
    color: white;
    padding: 14px 32px;
    border-radius: 30px;
    border: none;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: background 0.3s ease;
}



.view-all-btn:hover {
    background: #0f4c4c;
}

.view-all-btn::after {
    
    font-size: 1.1rem;
}

@media (max-width: 768px) {
    .blog-grid {
       display: flex;
        overflow-x: scroll;
    }
    .blog-card {
        margin-right: 1rem;
        width: 100%;
    }
    }

.frcontainer {
    max-width: 900px;
    margin: 0 auto;
    margin-bottom: 55px;
    margin-top: 25px;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 400;
    color: #9ca3af;
    margin-bottom: 50px;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-item {
    background: white;
    border-radius: 16px;
    padding: 28px 32px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: box-shadow 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    gap: 20px;
}

.faq-question-text {
    font-size: 1rem;
    color: #6b7280;
    font-weight: 400;
    flex: 1;
}

.faq-toggle {
    width: 36px;
    height: 36px;
    background: #115e59;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.3s ease, background 0.3s ease;
}

.faq-toggle::before {
    content: '+';
    color: white;
    font-size: 1.5rem;
    font-weight: 300;
    line-height: 1;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
    background: #0f4c4c;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer-content {
    padding-top: 20px;
    padding-right: 56px;
    color: #6b7280;
    font-size: 0.95rem;
    line-height: 1.7;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-question:hover .faq-toggle {
    background: #0f4c4c;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }

    .faq-item {
        padding: 20px 24px;
    }

    .faq-answer-content {
        padding-right: 0;
    }

    .faq-toggle {
        width: 32px;
        height: 32px;
    }
}



.contactform{
    width: 1533px;
    height: 749px;
    background: #F5F5F5;
    margin-top: 10px;
}
.form-title{
    text-align: center;
    
}
.form-title h1{
    font-size: 3.5rem;
    color: #808080;
    font-family: 'DM Sans', sans-serif;
    font-weight: 700;
    margin-bottom: 3rem;
    
}
.form{
    width: 1319px;
    height: 556px;
    margin: 0 auto;
    background: red;

}



/* form */


  .container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .section-title {
            text-align: center;
            font-size: clamp(28px, 5vw, 48px);
            font-weight: 600;
            color: #9ca3af;
            margin-bottom: 50px;
        }

        .contact-wrapper {
            background: white;
            border-radius: 24px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
            padding: 50px;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .form-section {
            display: flex;
            flex-direction: column;
        }

        .form-group {
            margin-bottom: 24px;
        }

        .form-group label {
            display: block;
            font-size: 14px;
            font-weight: 500;
            color: #065f46;
            margin-bottom: 8px;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 14px 18px;
            border: none;
            background: #f3f4f6;
            border-radius: 8px;
            font-size: 15px;
            color: #6b7280;
            transition: all 0.3s ease;
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            background: #e5e7eb;
        }

        .form-group textarea {
            resize: vertical;
            min-height: 120px;
            font-family: inherit;
        }

        .submit-btn {
            background: #065f46;
            color: white;
            border: none;
            padding: 14px 40px;
            border-radius: 30px;
            font-size: 16px;
            font-weight: 500;
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            transition: all 0.3s ease;
            align-self: flex-start;
            margin-top: 10px;
        }

        .submit-btn:hover {
            background: #047857;
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(6, 95, 70, 0.3);
        }

        .submit-btn::after {
            content: '→';
            font-size: 20px;
        }

        .info-section {
            position: relative;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 30px;
            align-items: start;
        }

        .contact-info {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .info-item {
            display: flex;
            align-items: flex-start;
            gap: 12px;
        }

        .info-icon {
            width: 20px;
            height: 20px;
            margin-top: 2px;
            flex-shrink: 0;
        }

        .info-content h3 {
            font-size: 14px;
            font-weight: 600;
            color: #111827;
            margin-bottom: 4px;
        }

        .info-content p {
            font-size: 14px;
            color: #6b7280;
            line-height: 1.6;
        }

        .illustration {
            display: flex;
            align-items: flex-end;
            justify-content: center;
        }

        .illustration img {
         
            object-fit: contain;
        }

        /* Responsive Design */
        @media (max-width: 968px) {
            .contact-wrapper {
                grid-template-columns: 1fr;
                gap: 40px;
                padding: 40px 30px;
            }

            .info-section {
                order: -1;
                grid-template-columns: 1fr;
                gap: 30px;
            }

            .illustration {
                order: 2;
                display: none;
            }
        }

        @media (max-width: 640px) {
            body {
                padding: 20px 15px;
            }

            .section-title {
                margin-bottom: 30px;
            }

            .contact-wrapper {
                padding: 30px 20px;
                border-radius: 16px;
            }

            .form-group input,
            .form-group textarea {
                padding: 12px 16px;
                font-size: 14px;
            }

            .submit-btn {
                width: 100%;
                justify-content: center;
                padding: 14px 30px;
            }
        }

        /* Email Icon SVG */
        .icon-email {
            fill: none;
            stroke: #065f46;
            stroke-width: 2;
        }

        /* Location Icon SVG */
        .icon-location {
            fill: none;
            stroke: #065f46;
            stroke-width: 2;
        }

        /* Phone Icon SVG */
        .icon-phone {
            fill: none;
            stroke: #065f46;
            stroke-width: 2;
        }


  /* Help Your Friend Section */
  .help-section {
            background: #ffffff; /* FIXED: Added # */
            padding: 80px 20px;
        }

        .help-container {
            max-width: 1413px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            min-height:450px;
            align-items: center;
            background: #F5F5F5;
            position: relative;
            overflow: hidden;
            border-radius: 31px;
            padding: 60px;
        }

        .help-content {
            z-index: 2;
        }

        .help-content h2 {
            font-size: 52px;
            color: #144C4A;
            font-weight: 700;
            margin-bottom: 20px;
            line-height: 1.2;
        }

        .help-content p {
            font-size: 16px;
            color: #666;
            line-height: 1.8;
            margin-bottom: 40px;
            max-width: 500px;
        }

        .help-btn {
            align-items: center;
            display: flex;
            justify-content: center;
            gap: 10px;
            background: #0d5047;
            color: white;
            padding: 16px 32px;
            border-radius: 30px;
            border: none;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            
    font-family: 'DM Sans', sans-serif;
            box-shadow: 0 4px 15px rgba(13, 80, 71, 0.3);
        }

        .help-btn:hover {
            background: #0a3d36;
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(13, 80, 71, 0.4);
        }

        .help-btn::after {
            
            font-size: 18px;
        }

        .help-visual {
            position: relative;
            height: 400px;
            z-index: 1;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .help-hands {
            position: relative;
            width: 100%;
            max-width: 500px;
            z-index: 2;
        }

        .help-hands img {
            width: 100%;
            height: auto;
            display: block;
            object-fit: contain;
        }

        /* Decorative wave/vector at bottom */
        .help-wave {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            width: 100%;
            z-index: 0;
            pointer-events: none;
        }

        .help-wave img {
            width: 100%;
            height: auto;
            display: block;
        }

        /* Optional decorative shapes */
        .help-shape-1 {
            position: absolute;
            bottom: 0;
            left: -50px;
            width: 300px;
            height: 200px;
            background: #d4e8f5;
            border-radius: 50% 50% 0 0;
            z-index: 0;
            opacity: 0.5;
        }

        .help-arrow{
            margin-left: -5px;
             display: inline-block;     /* ensures image behaves well */
    vertical-align: middle;    /* aligns with text */
    width: 18px;               /* optional: control size */
    height: 18px;   
        }

        .help-shape-2 {
            position: absolute;
            bottom: 0;
            right: -50px;
            width: 250px;
            height: 180px;
            background: #ffd5c8;
            border-radius: 50% 50% 0 0;
            z-index: 0;
            opacity: 0.5;
        }

        /* Responsive Design */
        @media (max-width: 1024px) {
            .help-container {
                gap: 40px;
            }

            .help-content h2 {
                font-size: 42px;
            }

            .help-visual {
                height: 350px;
            }
        }

        @media (max-width: 768px) {
            .help-section {
                padding: 60px 20px;
            }

            .help-container {
                grid-template-columns: 1fr;
                gap: 50px;
                text-align: center;
                padding: 40px 30px;
            }

            .help-content h2 {
                font-size: 36px;
            }

            .help-content p {
                margin-left: auto;
                margin-right: auto;
            }

            .help-visual {
                height: 300px;
                order: -1;
            }

            .help-hands {
                display: none;
                max-width: 350px;
            }

            .help-shape-1,
            .help-shape-2 {
                width: 200px;
                height: 150px;
            }
        }

@media (max-width: 480px) {
    .help-container {
        padding: 1px 46px; /* less padding, container will shrink */
        display: flex;
        flex-direction: column;
        text-align: left;
        min-height: 25px;
    }

    .help-content h2 {
        font-size: 24px;
        margin-top: -120px;
        margin-bottom: 8px;
        
    }

    .help-content p {
        font-size: 14px;
        margin-bottom: 20px; /* reduce spacing */
        line-height: 1.4;
       
    }

    .help-btn {
        padding: 10px 20px; /* smaller button */
        font-size: 14px;
         width: 249px;
        height: 65px;
        margin-bottom: 70px;
    }

    .help-visual {
        height: 150px; /* reduced height for visual */
    }

    .help-hands {
    }
}

        /* Popup background */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.65);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

/* Popup content */
.popup-content img {
    width: 100%;
    max-width: 1100px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.25);
}
