@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    font-family: "Inter", sans-serif;
    /* word-spacing: normal; */
    letter-spacing: normal;
}

body {
    width: 100%;
    height: 100%;
    font-family: "Inter", sans-serif;
    background-color: #F1F1F1;
}

.main {
    position: relative;
    width: 100%;
    min-height: 100vh;
    background-repeat: no-repeat;
    overflow-x: hidden;

}


.main-img {
    position: absolute;
    width: 100%;
    object-fit: cover;
    background-position: center;
}

@media (max-width: 720px) {
    .main {
        overflow-x: hidden;
    }
}

/* ===== Glass Background Navbar ===== */
.glass-bg {
    background: rgba(17, 24, 39, 0.08);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
}


/* ===== Navbar ===== */
.navbar {
    position: fixed;
    width: 100%;
    height: 84px;
    padding: 0 100px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
}

.nav-logo {
    width: 177px;
    height: 37px;
}

.nav-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.nav-links {
    width: 486px;
    height: 35px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: #000;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 400;
    padding: 8px 16px;
    line-height: 1.5;
    border: 2px solid transparent;
}

.nav-links a:hover {
    border-color: white;

}

.nav-links a:first-child {
    background: #267BFF;
    color: white;
    border: none;
}



/* ===== Hamburger Icon ===== */
.nav-icon {
    width: 24px;
    height: 24px;
    display: none;
    flex-direction: column;
    justify-content: space-between;
    gap: 5px;
    cursor: pointer;
}

.nav-icon span {
    display: flex;
    width: 100%;
    height: 3px;
    background-color: #111827;
    border-radius: 3px;
    transition: 0.4s ease;
    margin-bottom: 5px;
}

/* ==== Cross animation ==== */
.nav-icon.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-icon.active span:nth-child(2) {
    opacity: 0;
}

.nav-icon.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* ===== Mobile Menu ===== */
.mobile-menu {
    position: fixed;
    top: 46px;
    left: 0;
    width: 100%;
    padding: 10px 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    max-height: 0;
    overflow: hidden;
    transform: translateY(-10px);
    transition: max-height 0.5s ease, transform 0.3s ease;
    z-index: 999;
}

.mobile-menu.active {
    max-height: 300px;
    transform: translateY(0);
}

.mobile-menu a {
    padding: 14px;
    color: #000;
    border-radius: 8px;
}

@media (max-width: 1024px) {

    .navbar {
        height: 56px;
        padding: 0 30px;
    }

    .nav-logo {
        width: 115px;
        height: 24px;
    }

    .nav-links {
        display: none;
    }

    .nav-icon {
        display: block;
    }
}

/*  ==================== nav-bar end here   ====================  

/* ====================  hero-section  ====================  */

.hero {
    position: relative;
    top: 84px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 487px;
    max-height: 704px;
    padding: 0 100px;
    line-height: 1;
}

.hero-first {
    display: flex;
    flex-direction: column;
    width: 620px;
    min-height: 246px;
    z-index: 100;
    color: #111827;
    gap: 32px;
}

.hero-first-h p {

    font-size: 48px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 10px;

}

.hero-first-h h1 {
    font-weight: 700;
    font-size: 32px;
}

.hero-pahara {
    font-size: 16px;
    line-height: 1.4;

}

.hero-img {
    position: absolute;
    right: 100px;
    display: flex;
    width: 620px;
    height: 487px;
    max-width: 850px;

    img {
        height: 100%;
        width: 100%;
        object-fit: cover;
        animation: float 2s ease-in-out infinite;
    }
}

.hero-first a {
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: space-around;
    background-color: #1A1A1A;
    width: 267px;
    height: 56px;
    color: #FFFFFF;
    border-radius: 70px;
    padding-left: 24px;
    gap: 16px;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.4s ease;
    margin-right: 8px;

    span {
        height: 40px;
        width: 40px;
        background-color: #267BFF;
        border-radius: 50px;
        border: 1px solid #FFFFFF;
        padding: 8px;
        margin-right: 8px;
        transition: all 0.4s ease;
        display: flex;
        justify-content: center;
        align-items: center;

        img {
            height: 24px;
            width: 24px;
            object-fit: cover;
            transition: all 0.4s ease;
        }
    }
}

.hero-first a:hover {
    background-color: #267BFF;

    span {
        background-color: #1A1A1A;

        img {
            transform: rotate(45deg);
        }
    }
}

@media (max-width: 1024px) {

    .hero {
        top: 72px;
        padding: 0 40px;
        height: auto;
        min-height: 420px;
    }

    .hero-first {
        width: 480px;
        gap: 24px;
    }

    .hero-first-h p {
        font-size: 40px;
    }

    .hero-first-h h1 {
        font-size: 28px;
    }

    .hero-pahara {
        font-size: 15px;
    }

    .hero-img {
        width: 460px;
        height: 360px;
        right: 40px;
    }

    .hero-first a {
        width: 267px;
        height: 54px;
        font-size: 15px;
    }
}


@media (max-width: 720px) {

    .hero {
        top: 56px;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        min-height: 534px;
        padding: 16px 16px;
    }

    .hero-first {
        width: 328px;
        min-height: 260px;
        align-items: center;
        text-align: center;
        gap: 16px;
        padding: 16px;
    }

    .hero-first-h p {
        font-size: 32px;
    }

    .hero-first-h h1 {
        font-size: 24px;
    }

    .hero-img {
        position: relative;
        height: 250px;
        width: 328px;
        right: 16px;
        bottom: 10px;
    }

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

    .hero-first a {
        width: 236px;
        min-height: 56px;
        font-size: 14px;
        gap: 8px;
    }
}

/* ====================  hero-section end  ====================  */


/* ================= Services-SECTION START =================  */

.service-section {
    width: 1440;
    height: auto;
    min-width: 1050px;
    padding-right: 100px;
    padding-left: 100px;
    gap: 32;
    /* opacity: 1; */
}

.container {
    position: relative;
    max-width: 100%;
    min-width: auto;
    height: auto;
    margin: 100px 100px;
    padding: 64px 64px 64px 64px;
    border: 4px solid #f3f4f3;
    border-radius: 64px;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-header h1 {
    color: #111827;
    font-family: Inter;
    font-weight: 700;
    font-style: Bold;
    font-size: 48px;
    line-height: 120%;
    letter-spacing: -2%;
    text-align: center;
    margin-bottom: 22px;
}

.section-header p {
    color: #111827;
    font-weight: 400;
    font-style: Regular;
    font-size: 16px;
    line-height: 150%;
    letter-spacing: 0%;
    text-align: center;

}

/* Search Bar */

.search-bar {
    display: flex;
    align-items: center;
    background: #F9FAFB;
    border-radius: 10px;
    padding: 8px 16px 8px 8px;
    transition: border-radius 0.2s ease;
}

.search-bar.open {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

/* =========================
   CATEGORY SELECT
========================= */
.category-select {
    width: auto;
    height: 46px;
    border-radius: 8px;
    border: 2px solid #F3F4F6;
    padding: 8px 36px;
    background-color: #FFFFFF;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 2px;
}

/* =========================
   ARROW ANIMATION
========================= */
.search-arrow {
    display: inline-block;
    transition: transform 0.3s ease;
}

.search-arrow.rotate {
    transform: rotate(180deg);
}

.search-arrow i {
    padding-top: 5px;
    width: 28px;
    height: 28px;
}

/* =========================
   INPUT + ICON
========================= */
.search-bar input {
    flex: 1;
    border: none;
    padding: 10px;
    outline: none;
    font-size: 16px;
    background-color: transparent;
}

.search-icon i {
    font-size: 24px;
    color: #6B7280;
    cursor: pointer;
}

/* =========================
   DROPDOWN SLIDE
========================= */
.service-category-dropdown {
    background-color: #F9FAFB;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    transition: max-height 0.35s ease, opacity 0.25s ease;
}

/* OPEN STATE */
.service-category-dropdown.open {
    max-height: 400px;
    opacity: 1;
}

/* DROPDOWN ITEMS */
.service-category-dropdown p {
    font-size: 16px;
    color: #111827;
    cursor: pointer;
    padding: 10px 14px;
}

.service-category-dropdown p:hover {
    background: #f3f3f3;
}





/* Grid Layout */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 24px;
    margin-top: 20px;
}

.service-card {
    max-width: 600px;
    min-width: auto;
    /* height: 288px; */
    background: #FFFFFF;
    padding: 20px 50px;
    border: 2px solid #F3F4F6;
    border-radius: 35px;
    box-shadow: 0px 4px 40px 0px #00000019;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    margin: 0 auto;
}

/* =========================
   CARD ANIMATION
========================= */
.service-card {
    transition: all 0.3s ease;
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 24px;
    margin: 0;
    max-width: 70%;
    /* color: var(--text-dark); */
}

.icon {
    width: 80px;
    height: 80px;
    transition: transform 0.6s ease;
}

.icon i {
    font-size: 80px;
    color: #106EFF;
}

.service-card:hover .icon {
    transform: rotateY(360deg) scale(1.1);
    /* box-shadow: 0 6px 20px rgba(0, 0, 255, 0.2); */
}

.icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.service-card p {
    line-height: 16px;
    line-height: 150%;
    margin-bottom: 30px;
    flex-grow: 1;
}

.service-btn {
    display: flex;
    justify-content: center;
    margin: 50px 0 0;
}

.read-more-btn {
    position: relative;
    overflow: hidden;
    /* required for ripple + shine */
    background: #111827;
    color: #F9FAFB;
    border: none;
    padding: 12px 28px;
    border-radius: 50px;
    width: fit-content;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Hover lift */
.read-more-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

/* Click press */
.read-more-btn:active {
    transform: scale(0.98);
}

/* Chevron animation */
.chevron {
    font-size: 28px;
    transition: transform 0.3s ease;
}

.read-more-btn:hover .chevron {
    transform: translateX(6px);
}

/* Shine sweep */
.read-more-btn::after {
    content: "";
    position: absolute;
    top: 0;
    left: -120%;
    width: 120%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.5), transparent);
    transition: left 0.6s ease;
}

.read-more-btn:hover::after {
    left: 120%;
}

/* Ripple effect */
.read-more-btn .ripple {
    position: absolute;
    border-radius: 50%;
    transform: scale(0);
    background: rgba(255, 255, 255, 0.6);
    animation: ripple 600ms linear;
    pointer-events: none;
}

@keyframes ripple {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* Responsive for Mobile */
@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-section {
        padding: 0px;
    }

    .container {
        margin: 50px 20px 0;
        border: 4px solid #edededdc;
        height: auto;
    }
}

/* ================= Services-SECTION END ================= */




/* ==================== benefits-section ==================== */

.benefits {
    /* top: 50px; */
    position: relative;
    width: 100%;
    min-height: 594px;
    padding: 0px 100px;
    display: flex;
    flex-direction: column;
    gap: 32px;

}

.benefits-h {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 36px;

    h1 {
        font-size: 48px;
        font-weight: 700;
    }

    p {
        font-size: 16px;
        font-weight: 400;
        text-align: center;
    }
}

.benefits-contant {
    width: 100%;
    min-height: 415px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 26px;
}

.benefits-co-first {
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 100px;
    padding: 16px 16px;
}

.benefits-co-firstcard {
    display: flex;
    flex-direction: column;
    height: 57px;
    gap: 10px;

    h1 {
        font-size: 48px;
        font-weight: 700;
    }

    p {
        font-size: 16px;
        font-weight: 400;
        color: #111827;
    }
}

.benefits-co-second {
    width: 413px;
    height: 515px;

    img {
        width: 100%;
        height: 100%;
        background-position: center;
        background-size: cover;
        background-repeat: no-repeat;
        animation: float 2s ease-in-out infinite;
    }

    
}

@keyframes float {
        0% {
            transform: translateY(0);
        }

        50% {
            transform: translateY(-12px);
        }

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

.benefits-co-third {
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 100px;
    padding: 16px 16px;
}

.benefits-co-thirdcard {
    display: flex;
    flex-direction: column;
    height: 57px;
    text-align: right;
    gap: 10px;

    h1 {
        font-size: 48px;
        font-weight: 700;
    }

    p {
        font-size: 16px;
        font-weight: 400;
        color: #111827;
    }
}

@media (max-width: 720px) {

    .benefits {
        top: 50px;
        position: relative;
        width: 100%;
        min-height: 768px;
        padding: 32px 16px 16px 16px;
        display: flex;
        flex-direction: column;
        gap: 32px;

    }

    .benefits-h {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        gap: 24px;

        h1 {
            text-align: center;
            font-size: 32px;
            font-weight: 700;
        }

        p {
            font-size: 16px;
            font-weight: 400;
            text-align: center;
        }
    }

    .benefits-contant {
        width: 100%;
        min-height: 415px;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
    }

    .benefits-co-first {
        height: 100%;
        width: 45%;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 16px;
        padding: 0;
        order: 2;
    }

    .benefits-co-firstcard {
        display: flex;
        flex-direction: column;
        border-radius: 16px;
        padding: 16px;
        width: 100%;
        min-height: 100px;
        gap: 8px;


        h1 {
            font-size: 24px;
            font-weight: 700;
        }

        p {
            font-size: 16px;
            font-weight: 400;
            color: #6B7280;
        }
    }

    .benefits-co-second {
        width: 413px;
        height: 248px;
        padding: 16px;
        order: 1;

        img {
            width: 100%;
            height: 100%;
            background-position: center;
            background-size: cover;
            background-repeat: no-repeat;
        }
    }

    .benefits-co-third {
        height: 100%;
        width: 45%;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 16px;
        padding: 0;
        order: 3;
    }

    .benefits-co-thirdcard {
        display: flex;
        border-radius: 16px;
        width: 100%;
        flex-direction: column;
        min-height: 100px;
        padding: 16px;
        text-align: start;
        gap: 8px;


        h1 {
            font-size: 24px;
            font-weight: 700;
        }

        p {
            font-size: 16px;
            font-weight: 400;
            color: #6B7280;
        }
    }

    .glass-card {
        background: var(--Light-bg-secondary, #F9FAFB);
        border: 4px solid #edededdc;
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
        /* optional but recommended */
    }

}

/* ==================== benefits-section end ==================== */

/*  ================= THING-DIFFERENT-SECTION  =================  */
.think-different {
    position: relative;
    width: 100%;
    margin-top: 80px;
    min-height: 911px;
    padding: 0 100px;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 32px;

}

.think-different h1 {
    font-size: 48px;
    font-weight: 700;

}

.sub-text {
    width: 100%;
    color: #1A1A1A;
    font-size: 16px;
    font-weight: 400;

}


/* TARGET LAYOUT */
.target-area {
    position: relative;
    width: 100%;
    min-height: 800px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 120px 0;
    overflow: hidden;
}

.target-img {
    position: absolute;
    width: 100%;
    height: 100%;
    background-position: center;
    background-size: cover;
     animation: float 3s ease-in-out infinite;
}



/* start here to work  */
.side {
    width: 588px;
    height: 552px;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.side.left {
    justify-content: flex-end;
    padding-top: 128px;
}

.side.right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

/* INFO CARD */
.info-card {
    background: #F3F4F632;
    border: 2px solid #ffffff;
    backdrop-filter: blur(32px);
    -webkit-backdrop-filter: blur(32px);
    color: #000;
    border-radius: 100px;
    padding: 20px 24px;
    width: 100%;
    height: 120px;
    display: flex;
    align-items: center;
    gap: 16px;
    transition: all 0.4s ease;
}

.info-card:hover {
    background-color: #000;

    h3 {
        color: white;
    }

    p {
        color: #9c9999;
    }
}

.info-card h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 16px;
}

.info-card p {
    font-size: 16px;
    font-weight: 400;
    color: #1A1A1A;
}

/* DOT */
.dot {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #FFFFFF;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    box-shadow: inset 0 0 13.44px rgba(0, 0, 0, 0.25);
}

.dot-blue {
    width: 24.3px;
    height: 24.3px;
    border-radius: 50%;
    border: 2px solid #267BFF;
    position: relative;
    /* IMPORTANT */
}

.dot-blue-bg {
    width: 17.16px;
    height: 17.16px;
    border-radius: 50%;
    background-color: #267BFF;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}


/* ALIGNMENTS */
.left .info-card {
    justify-content: flex-start;
    text-align: left;
}

.right .info-card {
    justify-content: space-between;
    text-align: left;

}

/* =========================
   TABLET RESPONSIVE (768px – 1024px)
========================= */
@media (max-width: 1024px) {

    .think-different {
        padding: 0 48px;
        gap: 28px;
        margin-top: 60px;
    }

    .think-different h1 {
        font-size: 40px;
    }

    .sub-text {
        max-width: 640px;
        margin: 0 auto;
        font-size: 15px;
    }

    /* TARGET AREA */
    .target-area {
        flex-direction: column;
        justify-content: center;
        padding: 80px 0;
        gap: 48px;
        min-height: auto;
    }

    .target-img {
        position: relative;
        width: 520px;
        height: 340px;
        margin: 0 auto;
    }

    /* SIDES */
    .side {
        width: 100%;
        max-width: 720px;
        height: auto;
        gap: 24px;
        align-items: center;
    }

    .side.left,
    .side.right {
        padding: 0;
        align-items: center;
        justify-content: center;
    }

    /* INFO CARD */
    .info-card {
        width: 100%;
        height: auto;
        border-radius: 32px;
        padding: 20px;
        gap: 12px;
    }

    .info-card h3 {
        font-size: 20px;
        margin-bottom: 8px;
    }

    .info-card p {
        font-size: 15px;
    }

    /* DOT ADJUSTMENT */
    .dot {
        width: 64px;
        height: 64px;
    }

    .dot-blue {
        width: 20px;
        height: 20px;
    }

    .dot-blue-bg {
        width: 14px;
        height: 14px;
    }
}

/* =========================
   MOBILE RESPONSIVE (up to 720px)*/

@media (max-width: 720px) {

    .think-different {
        margin-top: 50px;
        padding: 32px 16px 16px;
        gap: 24px;
        justify-content: center;
        align-items: center;
    }

    .think-different h1 {
        font-size: 32px;
        letter-spacing: -2%;
    }

    .sub-text {
        text-align: center;
        width: 328px;
    }

    .target-area {
        min-height: 100vh;
        flex-direction: column;
        gap: 0;
        padding: 0;
    }

    .target-img {
        position: relative;
        width: 328px;
        height: 211px;
    }

    .side {
        width: 100%;
        align-items: center;
        justify-content: center;

    }

    .side.left {
        height: 50%;
        justify-content: start;
        padding-top: 24px;
        margin-bottom: 32px;
    }

    .side.right {
        height: 50%;
        align-items: center;
    }

    .info-card {
        background: var(--Light-bg-secondary, #F9FAFB);
        border: 4px solid #F3F4F6;
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
        border-radius: 16px;
        padding: 16px;
        height: 125px;
        gap: 8px;
    }

    .info-card h3 {
        font-size: 24px;
        font-weight: 700;
        margin-bottom: 8px;
    }

    .info-card p {
        color: #111827;
    }

    .dot {
        display: none;
    }

    .left .info-card,
    .right .info-card {
        text-align: start;
    }
}


/*  ================= THING-DIFFERENT-SECTION END =================  */

/*  ================= TESTIMONIALS-SECTION  =================  */

.testimonial-section {
    max-width: 1440px;
    margin: 0 auto;
    width: 100%;
    padding: 0 24px;
    text-align: center;
    position: relative;
}

/* =========================
   HEADER
========================= */
.testimonial-header h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 10px;
    font-weight: 700;
    color: #111827;
}

.testimonial-header p {
    color: #111827;
    font-size: 1rem;
    /* max-width: 720px; */
    margin: 0 auto 40px;
    line-height: 1.6;
}

/* =========================
   GRID
========================= */
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    position: relative;
    margin-top: 120px;
}

/* =========================
   CARD
========================= */
.testimonial-card {
    background: #F3F4F6;
    padding: 30px;
    border-radius: 16px;
    text-align: left;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(226, 232, 240, 0.8);
    transition: transform 0.3s ease;
    position: relative;
}

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

/* =========================
   STARS BADGE
========================= */
.stars-badge {
    position: absolute;
    width: 240px;
    top: -110px;
    right: -20%;
    z-index: 10;
    filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.1));
}

.stars-badge img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

/* =========================
   USER INFO
========================= */
.user-info {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}


.avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 2px solid #106EFF;
    padding: 8px;
    margin-right: 15px;
    object-fit: cover;
}

.user-details h3 {
    margin: 0;
    font-size: 1.125rem;
    font-weight: 700;
}

.user-details p {
    margin: 0;
    font-size: 1rem;
    color: var(--text-muted);
}

.quote {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #334155;
}

/* =========================
   TABLET
========================= */
@media (max-width: 1024px) {
    .testimonial-grid {
        grid-template-columns: 1fr;
        margin-top: 80px;
    }

    .stars-badge {
        right: 0;
        left: auto;
    }
}

/* =========================
   MOBILE
========================= */
@media (max-width: 640px) {
    .testimonial-section {
        padding: 0 16px;
    }

    .testimonial-grid {
        gap: 20px;
        margin-top: 60px;
    }

    .testimonial-card {
        padding: 24px;
    }

    .stars-badge {
        width: 180px;
        top: -80px;
        right: 0;
    }

    .quote {
        font-size: 0.9rem;
    }
}

/*  =================  TESTIMONIALS-SECTION END =================  */


/*  ================= ABOUT-SECTION  =================  */

.about {
    width: 100%;
    min-height: 536px;
    position: relative;
    padding: 32px 0;
    display: flex;
    flex-direction: column;
    gap: 32px;

}

/* ---------- TOP ---------- */
.about-top {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 32px;
    padding: 0 100px;
}

.about-top h1 {
    color: #1A1A1A;
    font-size: 48px;
    font-weight: 700;
}

.about-top p {
    width: 100%;
    font-weight: 400;
    color: #1A1A1A;
    font-size: 16px;
    line-height: 1.5;
}

/* ---------- BOTTOM ---------- */
.about-bottom {
    min-height: 434px;
    background: #2379FF36;
    padding: 32px 100px;
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
}

.about-bottom p {
    font-size: 18px;
    font-weight: 400;
    color: #1A1A1A;
    line-height: 1.7;
    text-align: justify;
    padding: 0 24px 0 0;
}

/* ---------- IMAGE ---------- */
.about-img {
    width: 650px;
    height: 370px;
    mix-blend-mode: multiply;
    border-radius: 16px;

}

@media (max-width:720px) {

    .about {
        width: 100%;
        min-height: 100vh;
        position: relative;
        padding: 32px 0;
        display: flex;
        flex-direction: column;
        gap: 280px;
        padding: 32px 16px 16px 16px;

    }

    /* ---------- TOP ---------- */
    .about-top {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 24px;
        padding: 0 0;
    }

    .about-top h1 {
        color: #1A1A1A;
        font-size: 32px;
        letter-spacing: 0.64px;
        font-weight: 700;
    }

    .about-top p {
        width: 100%;
        font-weight: 400;
        color: #1A1A1A;
        font-size: 16px;
        line-height: 1.5;

    }

    /* ---------- BOTTOM ---------- */
    .about-bottom {
        min-height: fit-content;
        background: transparent;
        padding: 0 0;
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        display: flex;
        flex-direction: column;
        gap: 0px;
    }

    .about-bottom p {
        font-size: 16px;
        font-weight: 400;
        color: #1A1A1A;
        order: 2;
        background: rgba(255, 255, 255, 0.6);
        backdrop-filter: blur(4px);
        border: 2px solid #F3F4F6;
        border-radius: 16px;
        padding: 16px;
        line-height: 24px;
        box-shadow: 2px 4px 16px rgba(0, 0, 0, 0.25);
    }

    /* ---------- IMAGE ---------- */
    .about-img {
        width: 250px;
        height: 370px;
        order: 1;
        position: absolute;
        top: -244px;
    }
}

/*  ================= ABOUT-SECTION END =================  */

/*  ================= CONTACT-SECTION =================  */
.contact-section {
    min-height: 100vh;
    max-height: auto;
    width: 100%;
    overflow: hidden;
    padding: 32px 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* HEADER */
.contact-header {
    text-align: center;
}

.contact-header h1 {
    font-size: 48px;
    font-weight: 700;
}

.contact-header p {
    margin-top: 32px;
    font-size: 16px;
    font-weight: 400;
    color: #1A1A1A;
}

/* CONTENT WRAP */
.contact-content {
    min-height: 731px;
    display: flex;
    align-items: center;
    position: relative;
    padding-right: 100px;
    justify-content: space-between;

}

/* LEFT BLUE BOX */
.contact-info {
    background: #2379FF36;
    padding: 45px 80px;
    width: 620px;
    height: 345px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.contact-info h3 {
    font-size: 24px;
    font-weight: 600;
    padding-left: 71px;
    margin-bottom: 30px;
}

.info-items {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 10px;
    position: relative;
}


.info-item {
    z-index: 20;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
}

.info-icon {
    width: 48px;
    height: 48px;
    background: #1A1A1A;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.info-admin {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 8px;

    small {
        font-size: 14px;
        font-weight: 400;
    }

    p {
        font-size: 16px;
        font-weight: 400;

    }
}

/* CENTER IMAGE */
.contact-illustration {
    position: absolute;
    width: 443.91px;
    height: 529.11px;
    left: 300px;
    bottom: 170px;
    animation: flyPlane 7s ease-in-out infinite;

}

@keyframes flyPlane {
  0% {
    transform: translateX(0) translateY(0) rotate(0deg);
  }
  50% {
    transform: translateX(24px) translateY(-8px) rotate(2deg);
  }
  100% {
    transform: translateX(0) translateY(0) rotate(0deg);
  }
}

.contact-illustration img {
  transition: transform 0.3s ease;
}

.contact-illustration:hover img {
  transform: scale(1.02);
}


/* FORM CARD */
.contact-form {
    width: 500px;
    min-height: 541px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
    background: rgba(255, 255, 255, 0.3);
    border: 8px solid #F3F4F6;
    box-shadow: 8px 8px 16px rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(12px);
    border-radius: 24px;
    padding: 48px 30px;
}

.form-handle {
    width: 97px;
    height: 10px;
    background: #5C5C5C;
    border-radius: 100px;
}

.contact-form h3 {
    font-size: 24px;
    font-weight: 700;
}

.contact-form form {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-form label {
    font-size: 14px;
    font-weight: bold;
    color: #6B7280;
}

.contact-form input {
    width: 100%;
    font-size: 16px;
    border: none;
    border-bottom: 1px solid #000;
    background: transparent;
    padding: 6px 0;
    color: #6B7280;
}

.contact-form input:focus {
    outline: none;
}

.contact-form input::placeholder {
    color: #6B7280;
}

.contact-form textarea {
    width: 100%;
    font-size: 16px;
    border: none;
    border-bottom: 1px solid #000;
    background: transparent;
    padding: 6px 0;
    color: #6B7280;
    resize: vertical;
    min-height: 0px;
}

.contact-form textarea:focus {
    outline: none;
}

.contact-form textarea::placeholder {
    color: #6B7280;
}


.contact-form button {
    width: 100%;
    padding: 24px;
    background: #111;
    color: white;
    border: none;
    border-radius: 64px;
    font-size: 16px;
    cursor: pointer;
    margin-top: 32px;
}

/* ===== SERVICE SELECT ===== */

.service-select-wrapper {
    position: relative;
}

.service-select {
    color: #6B7280;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 0;
    font-size: 16px;
    cursor: pointer;
    border-bottom: 1px solid #000;
}

.service-select .arrow {
    transition: transform 0.3s ease;
}

.service-select.open .arrow {
    transform: rotate(180deg);
}

.service-dropdown {
    width: 100%;
    background: transparent;
    border-radius: 12px;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    margin-top: 10px;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.3s ease, opacity 0.25s ease;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
}

.service-dropdown.open {
    max-height: 240px;
    opacity: 1;
}

/* MAIN FIX */
.service-option {
    display: flex;
    align-items: last baseline;
    justify-content: flex-start;
    gap: 12px;
    padding: 12px 20px;
    width: 100%;
    cursor: pointer;
    text-align: left;
    white-space: normal;
    color: #6B7280;
    font-size: 14px;
}

.service-option input {
    padding-top: 10px;
}


.service-option:hover {
    background: #F3F4F6;
}

.service-option input[type="checkbox"] {
    margin: 0;
    flex-shrink: 0;
    accent-color: #106EFF;
}

/* =========================
   TABLET (<=1024px)
========================= */
@media (max-width: 1024px) {

    .contact-content {
        flex-direction: column;
        align-items: center;
        padding-right: 0;
        gap: 40px;
        min-height: auto;
    }

    /* LEFT INFO */
    .contact-info {
        width: 100%;
        max-width: 720px;
        height: auto;
        padding: 40px;
        border: 4px solid var(--Light-border-default, #F3F4F6);
        background: var(--Light-bg-secondary, #F9FAFB);
    }

    .contact-info h3 {
        padding-left: 0;
        text-align: center;
    }

    /* CENTER IMAGE */
    .contact-illustration {
        position: absolute;
        top: 15%;
        left: 50%;
        transform: translate(-75%);
        margin: 100px 0px 0px 0px;
        min-width: 224px;
    }

    /* FORM */
    .contact-form {
        width: 100%;
        max-width: 420px;
        margin-top: 480px;
    }
}


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

    .contact-section {
        padding: 16px;
    }

    .contact-header h1 {
        font-size: 32px;
    }

    .contact-header p {
        margin-top: 16px;
        font-size: 14px;
    }

    /* STACK EVERYTHING */
    .contact-content {
        gap: 32px;
        /* margin-bottom: 500px; */
    }

    /* INFO BOX */
    .contact-info {
        padding: 24px;
        border: 4px solid var(--Light-border-default, #F3F4F6);
        background: var(--Light-bg-secondary, #F9FAFB);

    }

    .info-item {
        gap: 12px;
    }

    .info-icon {
        width: 40px;
        height: 40px;
    }

    .info-admin p {
        font-size: 14px;
    }

    /* IMAGE */
    .contact-illustration {
        position: absolute;
        top: 15%;
        left: -15%;
        transform: none;
        margin: 100px 0px 0px 0px;
        min-width: 224px;

    }

    /* FORM */
    .contact-form {
        padding: 24px;
        min-height: auto;
        margin-top: 480px;
    }

    .contact-form h3 {
        font-size: 20px;
    }

    .contact-form button {
        padding: 18px;
        font-size: 14px;
    }
}


/*  ================= CONTACT-SECTION END =================  */


/*  ================= FOOTER-SECTION =================  */
.footer {
  background-color: #F9FAFB;
  padding: 32px 100px;
  font-family: Inter, sans-serif;
  color: #667085;
}

.footer-container {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 24px;
}

/* Brand */
.footer-logo {
  display: flex;
  align-items: center;
}

.footer-logo span {
  font-size: 22px;
  font-weight: 700;
  color: #101828;
}

.footer-description {
  margin-top: 24px;
  max-width: 292px;
  line-height: 1.6;
}

/* Columns */
.footer-title {
  font-size: 24px;
  font-weight: 600;
  color: #101828;
  margin-bottom: 24px;
}

.footer-list,
.footer-contact {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  cursor: pointer;
}

.footer-contact {
  margin-bottom: 24px;
}

/* Footer links animation */
.footer-list li a {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #667085;
  text-decoration: none;
  transition: color 0.3s ease, transform 0.3s ease;
  margin-left: 5px;
}

/* Add >> before link */
.footer-list li a::before {
  margin-top: 2px;
  content: "˃˃";
  font-size: 22px;
  transform: translateX(-6px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  color: #106EFF;
}

/* Hover animation */
.footer-list li a:hover {
  color: #101828;
  transform: translateX(4px);
}

/* Reveal arrow on hover */
.footer-list li a:hover::before {
  opacity: 1;
  transform: translateX(0);
}

/* Social */
.footer-socials {
  display: flex;
  gap: 50px;                  /* better spacing than space-between */
}

.footer-socials a {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  text-decoration: none;
  color: #667085;
  transition: transform 0.3s ease, color 0.3s ease;
}

.footer-socials a i {
  font-size: 28px;           /* FIX: proper font-size */
  line-height: 1;
}

/* Hover effect */
.footer-socials a:hover {
  transform: translateY(-2px) scale(1.15);  /* FIX: scale inside transform */
  color: #106EFF;                            /* icon color via currentColor */
}

/* Bottom */
.footer-bottom {
  margin-top: 24px;
  padding: 32px 0;
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  color: #6B7280;
}

/* Responsive */
@media (max-width: 720px) {
  .footer {
    padding: 32px 16px;
  }

  .footer-container {
    grid-template-columns: 1fr;
  }

  .footer-title {
    font-size: 22px;
    margin-bottom: 16px;
  }

  .footer-bottom {
    margin-top: 24px;
    padding: 8px;
    display: flex;
    gap: 8px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
}

/* Optional: Motion safe */
@media (prefers-reduced-motion: reduce) {
  .footer-list li a,
  .footer-socials a {
    transition: none;
  }
}

/* POPUP OVERLAY */
.popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

/* POPUP BOX */
.popup-box {
    background: #fff;
    padding: 32px;
    border-radius: 16px;
    text-align: center;
    width: 90%;
    max-width: 420px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.popup-box h3 {
    font-size: 24px;
    margin-bottom: 12px;
}

.popup-box p {
    font-size: 16px;
    margin-bottom: 24px;
    color: #4b5563;
}

.popup-box button {
    background: #111827;
    color: #fff;
    border: none;
    padding: 12px 32px;
    border-radius: 50px;
    font-size: 16px;
    cursor: pointer;
}