/* ================================
   GLOBAL RESET
================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

/* ================================
   HERO SECTION
================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 120px;

    background: url('../image/main.png') center/cover no-repeat;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
            rgba(27, 45, 90, 0.40) 0%,
            rgba(38, 58, 114, 0.28) 45%,
            rgba(61, 91, 169, 0.18) 75%,
            rgba(244, 123, 32, 0.12) 100%);
    z-index: 1;
}

/* CONTAINER */
.hero-container {
    position: relative;
    z-index: 2;

    width: 90%;
    max-width: 1200px;
    margin: auto;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

/* ================================
   TEXT
================================ */
.hero-text {
    max-width: 650px;
}

.hero-text h1 {
    font-size: 52px;
    line-height: 1.25;
    font-weight: 800;
    color: #ffffff;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.35);
}

/* Brand Orange */
.hero-text .orange {
    color: #f47b20;
}

/* Soft Gold Highlight */
.hero-text .highlight {
    color: #ffd27a;
}

/* Optional Blue Accent */
.hero-text .accent {
    color: #b8d6ff;
}

.hero-text p {
    margin-top: 20px;
    font-size: 16px;
    color: #f1f1f1;
    line-height: 1.6;
}

/* ================================
   BUTTONS
================================ */
.hero-buttons {
    margin-top: 35px;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

/* ================================
   MAIN BUTTON (SLIDE + ROTATE)
================================ */
/* ================================
   MAIN BUTTON (SINGLE BRAND COLOR)
================================ */

.btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 12px;

    padding: 15px 30px;
    border-radius: 50px;

    color: #fff;
    text-decoration: none;
    font-weight: 600;

    background: #263a72;
    overflow: hidden;
    transition: all .35s ease;
    z-index: 1;
}

/* Hover Background */
.btn::before {
    content: "";
    position: absolute;
    inset: 0;
    background: #1d2d5a;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .35s ease;
    z-index: -1;
}

.btn:hover::before {
    transform: scaleX(1);
}

/* Icon */
.btn i {
    width: 38px;
    height: 38px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;
    background: #ffffff;
    color: #263a72;

    transition: all .35s ease;
}

/* Icon Hover */
.btn:hover i {
    transform: rotate(360deg);
    background: #f5f7fb;
}

/* Button Hover */
.btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(38, 58, 114, 0.25);
}

/* ================================
   CALL BUTTON (FIXED)
================================ */
/* ================================
   CALL BUTTON
================================ */

.call-btn {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;

    width: 270px;
    padding: 12px 18px;

    text-decoration: none;
    color: #fff;

    border-radius: 50px;

    background: rgba(38, 58, 114, 0.20);
    border: 1px solid rgba(255, 255, 255, 0.25);

    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);

    overflow: hidden;
    transition: all .35s ease;
}

/* Hover Background */
.call-btn::before {
    content: "";
    position: absolute;
    inset: 0;
    background: #263a72;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .35s ease;
    z-index: 0;
}

.call-btn:hover::before {
    transform: scaleX(1);
}

/* Text */
.call-btn span {
    position: relative;
    z-index: 2;
    color: #fff;
    font-weight: 600;
}

/* Icon */
.call-btn i {
    position: relative;
    z-index: 2;

    width: 42px;
    height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #fff;
    color: #263a72;

    transition: all .35s ease;
}

/* Hover */
.call-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(38, 58, 114, 0.25);
}

.call-btn:hover i {
    transform: rotate(360deg) scale(1.08);
    background: #f5f7fb;
}

/* ================================
   FORM (GLASS)
================================ */
.hero-form {
    width: 380px;
    padding: 30px;
    border-radius: 20px;

    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(12px);

    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);

    color: #fff;
}

.hero-form h3 {
    margin-bottom: 20px;
    text-align: center;
}

/* INPUTS */
.hero-form input,
.hero-form select {
    width: 100%;
    padding: 12px 14px;
    margin-bottom: 15px;

    border-radius: 8px;
    border: none;

    background: rgba(255, 255, 255, 0.15);
    color: #fff;

    outline: none;
}

/* FIX SELECT */
.hero-form select {
    appearance: none;
    cursor: pointer;

    background-image: url("data:image/svg+xml,%3Csvg fill='white' height='20' viewBox='0 0 24 24'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
}

.hero-form select option {
    background: #2f5faa;
    color: #fff;
}

.hero-form input::placeholder {
    color: #eee;
}

/* ================================
   HERO FORM BUTTON
================================ */

.hero-form button {
    width: 100%;
    padding: 15px;

    border: none;
    border-radius: 50px;

    background: #263a72;
    color: #fff;

    font-size: 16px;
    font-weight: 600;
    letter-spacing: .3px;
    cursor: pointer;

    transition: all .35s ease;
}

/* Hover */
.hero-form button:hover {
    background: #1d2d5a;
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(38, 58, 114, 0.25);
}

/* Active */
.hero-form button:active {
    transform: translateY(-1px);
}

/* Focus */
.hero-form button:focus {
    outline: none;
    box-shadow: 0 0 0 4px rgba(38, 58, 114, 0.15);
}

/* ================================
   RESPONSIVE
================================ */
@media (max-width: 900px) {

    .hero {
        padding: 100px 20px;
        text-align: center;
    }

    .hero-container {
        flex-direction: column;
    }

    .hero-text h1 {
        font-size: 32px;
    }

    .hero-buttons {
        justify-content: center;
        flex-direction: column;
        align-items: center;
    }

    .btn,
    .call-btn {
        width: 100%;
        justify-content: center;
    }

    .hero-form {
        width: 100%;
        max-width: 400px;
    }
}

/* ===============================
   STATS SECTION (UPDATED)
=============================== */

.stats {
    padding: 70px 80px;
    background: var(--bg-light);
    /* ✅ clean theme bg */
}

/* GRID */
.stats-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

/* ===============================
   GLASS CARD
=============================== */

.stat-card {
    position: relative;
    padding: 35px 25px;
    border-radius: 20px;
    text-align: center;

    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px);

    border: 1px solid var(--border);

    overflow: hidden;
    transition: 0.4s ease;
}

/* 🔥 GRADIENT BORDER */
.stat-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 20px;
    padding: 2px;
    background: var(--gradient-main);

    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
}

/* 🔥 HOVER OVERLAY */
.stat-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--gradient-main);
    transform: translateX(-100%);
    transition: 0.5s ease;
    z-index: 0;
}

.stat-card:hover::after {
    transform: translateX(0);
}

/* CONTENT */
.stat-card i,
.stat-card p,
.stat-card h2 {
    position: relative;
    z-index: 1;
    transition: 0.3s;
}

/* ICON */
.stat-card i {
    font-size: 30px;
    color: var(--primary);
    margin-bottom: 12px;
    animation: floatIcon 2.5s ease-in-out infinite;
}

/* FLOAT */
@keyframes floatIcon {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-6px);
    }
}

/* TEXT */
.stat-card p {
    font-size: 14px;
    color: var(--text-light);
}

.stat-card h2 {
    font-size: 30px;
    font-weight: 700;
    color: var(--primary);
}

/* HOVER */
.stat-card:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: var(--shadow-primary);
}

.stat-card:hover i,
.stat-card:hover p,
.stat-card:hover h2 {
    color: #fff;
}

.stat-card:hover i {
    transform: scale(1.2) rotate(10deg);
}

/* ===============================
   RESPONSIVE
=============================== */

@media(max-width:1200px) {
    .stats-container {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media(max-width:900px) {
    .stats-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats {
        padding: 50px 30px;
    }
}

@media(max-width:600px) {
    .stats-container {
        grid-template-columns: 1fr;
    }

    .stats {
        padding: 40px 20px;
    }

    .stat-card {
        padding: 30px 20px;
    }
}

/* ===============================
   FLOATING BUTTONS (UPDATED)
=============================== */
/* Appointment Button */
.float-btn.appointment {
    background: var(--secondary);
    /* #EC7B29 */
    color: var(--white);
}

.float-btn.appointment:hover {
    background: var(--secondary-dark);
    /* #D96B1A */
}

.floating-appointment,
.floating-call {
    position: fixed;
    right: 0;
    z-index: 999;
}

.floating-appointment {
    top: 45%;
}

.floating-call {
    top: 55%;
}

/* BUTTON */
.float-btn {
    display: flex;
    align-items: center;
    height: 55px;
    width: 55px;
    padding: 0 15px;
    gap: 10px;

    text-decoration: none;
    border-radius: 10px 0 0 10px;
    overflow: hidden;
    transition: 0.4s ease;

    background: var(--gradient-main);
    /* 🔥 theme applied */
    color: #fff;
}

/* ICON */
/* ICON */
.float-btn i {
    min-width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #fff;
    color: var(--primary);

    transition: transform 0.6s ease, background 0.3s, color 0.3s;
}

/* 🔥 SMOOTH ROTATION */
.float-btn:hover i {
    transform: rotate(360deg);
}

/* TEXT */
.float-btn span {
    white-space: nowrap;
    font-size: 13px;
    opacity: 0;
    transition: 0.3s;
}

/* 🔥 HOVER EXPAND */
.float-btn:hover {
    width: 220px;
}

.float-btn:hover span {
    opacity: 1;
}

/* 🔥 ICON ANIMATION */
.float-btn:hover i {
    transform: rotate(360deg);
}

/* ===============================
   MOBILE FIX
=============================== */

@media(max-width:600px) {
    .float-btn {
        width: 50px;
        height: 50px;
    }

    .float-btn span {
        display: none;
    }
}

/*=================================
        ABOUT SECTION
=================================*/

.about {

    padding: 100px 8%;
    background: var(--bg-light);

}

.about-container {

    max-width: 1200px;
    margin: auto;

    display: flex;
    align-items: center;
    gap: 70px;

}

/*=========================
        IMAGE
=========================*/

.about-images {

    flex: 1;
    position: relative;

}

.img-main img {

    width: 100%;
    border-radius: 20px;
    display: block;
    box-shadow: var(--shadow-light);

}

.img-float {

    position: absolute;

    right: -25px;
    bottom: -25px;

    width: 180px;

    background: #fff;
    padding: 8px;

    border-radius: 18px;

    box-shadow: var(--shadow-light);

}

.img-float img {

    width: 100%;
    border-radius: 15px;

}

.experience-box {

    position: absolute;

    top: 25px;
    left: -30px;

    background: var(--secondary);

    color: #fff;

    padding: 20px 25px;

    border-radius: 15px;

    text-align: center;

    box-shadow: 0 12px 30px rgba(236, 123, 41, .25);

}

.experience-box h3 {

    font-size: 34px;
    margin-bottom: 5px;

}

.experience-box span {

    font-size: 14px;

}

/*=========================
        CONTENT
=========================*/

.about-content {

    flex: 1;

}

.tag {

    display: inline-block;

    padding: 8px 18px;

    background: var(--secondary-light);

    color: var(--secondary);

    border-radius: 30px;

    font-size: 14px;

    font-weight: 600;

    margin-bottom: 20px;

}

.about-content h2 {

    font-size: 42px;

    line-height: 1.3;

    color: var(--primary);

    margin-bottom: 20px;

}

.about-content p {

    color: var(--text-light);

    line-height: 1.9;

    margin-bottom: 20px;

}

/*=========================
        POINTS
=========================*/

.about-points {

    margin: 30px 0;

}

.point {

    display: flex;

    align-items: center;

    gap: 15px;

    margin-bottom: 16px;

}

.point i {

    color: var(--secondary);

    font-size: 18px;

}

.point span {

    color: var(--text-dark);

    font-weight: 500;

}

/*=========================
        BUTTON
=========================*/

.about-btn {

    display: inline-flex;

    align-items: center;

    gap: 10px;

    padding: 14px 28px;

    background: var(--secondary);

    color: #fff;

    text-decoration: none;

    border-radius: 8px;

    font-weight: 600;

    transition: .3s;

}

.about-btn:hover {

    background: var(--secondary-dark);

    transform: translateY(-3px);

}

.about-btn i {

    transition: .3s;

}

.about-btn:hover i {

    transform: translateX(5px);

}

/*=========================
        RESPONSIVE
=========================*/

@media(max-width:992px) {

    .about-container {

        flex-direction: column;

    }

    .img-float {

        width: 140px;
        right: 10px;
        bottom: -15px;

    }

    .experience-box {

        left: 15px;
        top: 15px;

    }

    .about-content {

        text-align: center;

    }

    .point {

        justify-content: center;

    }

    .about-content h2 {

        font-size: 32px;

    }

}

/* ===============================
   SERVICES (FINAL GLOW + SLIDE)
=============================== */

.services {
    position: relative;
    padding: 100px 60px;
    background: var(--white);
}

/* WRAPPER */
.services-wrapper {
    max-width: 1200px;
    margin: auto;
}

/* ===============================
   HEADER
=============================== */

.services-header {
    text-align: center;
    margin-bottom: 60px;
}

.services-header h2 {
    font-size: 40px;
    color: var(--text-dark);
}

.services-header p {
    color: var(--text-light);
    max-width: 600px;
    margin: auto;
}

/* ===============================
   GRID
=============================== */

.services-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* ===============================
   🔥 CARD (GLOW BORDER + SLIDE)
=============================== */

.service-card {
    position: relative;
    padding: 35px 25px;
    border-radius: 20px;
    background: #fff;

    /* 🔥 GRADIENT BORDER */
    border: 2px solid transparent;
    background-image:
        linear-gradient(#fff, #fff),
        var(--gradient-main);
    background-clip: padding-box, border-box;

    /* 🔥 BASE GLOW */
    box-shadow:
        0 5px 15px rgba(198, 40, 40, 0.15),
        0 5px 15px rgba(47, 95, 170, 0.15);

    transition: 0.5s ease;
    overflow: hidden;

    /* 🔥 INITIAL SLIDE ANIMATION */
    opacity: 0;
    transform: translateY(40px);
    animation: cardFade 0.8s ease forwards;
}

/* STAGGER EFFECT */
.service-card:nth-child(1) {
    animation-delay: 0.1s;
}

.service-card:nth-child(2) {
    animation-delay: 0.2s;
}

.service-card:nth-child(3) {
    animation-delay: 0.3s;
}

.service-card:nth-child(4) {
    animation-delay: 0.4s;
}

.service-card:nth-child(5) {
    animation-delay: 0.5s;
}

@keyframes cardFade {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===============================
   🔥 HOVER GLOW BOOST
=============================== */

.service-card:hover {
    transform: translateY(-12px) scale(1.04);

    box-shadow:
        0 10px 30px rgba(198, 40, 40, 0.35),
        0 10px 30px rgba(47, 95, 170, 0.35);
}

/* ===============================
   ICON
=============================== */

.icon {
    width: 60px;
    height: 60px;
    border-radius: 15px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: var(--gradient-main);
    color: #fff;

    font-size: 24px;
    margin-bottom: 15px;

    transition: 0.5s;
}

/* ICON ANIMATION */
.service-card:hover .icon {
    transform: rotate(360deg) scale(1.1);
}

/* ===============================
   TEXT
=============================== */

.service-card h3 {
    color: var(--text-dark);
    margin-bottom: 10px;
}

.service-card p {
    color: var(--text-light);
    margin-bottom: 20px;
}

/* ===============================
   🔥 EXPLORE BUTTON (PERFECT FIX)
=============================== */

.service-card a {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 8px;

    padding: 10px 20px;
    border-radius: 50px;

    font-size: 14px;
    text-decoration: none;

    color: #fff;
    overflow: hidden;

    background: var(--gradient-main);

    z-index: 1;
}

/* 🔥 SLIDE BACKGROUND (BEHIND TEXT) */
.service-card a::before {
    content: "";
    position: absolute;
    inset: 0;

    background: var(--gradient-reverse);

    transform: translateX(-100%);
    transition: 0.4s;

    z-index: -1;
    /* 🔥 IMPORTANT CHANGE */
}

.service-card a:hover::before {
    transform: translateX(0);
}

/* 🔥 TEXT ALWAYS SAFE */
.service-card a span,
.service-card a {
    position: relative;
    z-index: 2;
    color: #fff;
}

/* 🔥 ARROW MOVE */
.service-card a span {
    transition: 0.3s;
}

.service-card a:hover span {
    transform: translateX(6px);
}

/* ===============================
   RESPONSIVE
=============================== */

@media (max-width: 900px) {

    .services {
        padding: 60px 20px;
    }

    .services-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {

    .services-container {
        grid-template-columns: 1fr;
    }

    .services-header h2 {
        font-size: 28px;
    }
}

/*====================================
    PROFESSIONAL MEMBERSHIPS
=====================================*/

.memberships{

    padding:100px 8%;
    background:#ffffff;

}

.membership-header{

    max-width:820px;
    margin:auto;
    text-align:center;
    margin-bottom:60px;

}

.membership-header span{

    display:inline-block;

    padding:8px 20px;

    background:var(--secondary-light);

    color:var(--secondary);

    border-radius:30px;

    font-size:14px;
    font-weight:600;

    margin-bottom:18px;

}

.membership-header h2{

    color:var(--primary);
    font-size:42px;

    margin-bottom:18px;

}

.membership-header p{

    color:var(--text-light);

    line-height:1.9;

}

.membership-grid{

    max-width:1200px;
    margin:auto;

    display:grid;
    grid-template-columns:repeat(2,1fr);

    gap:35px;

}

.membership-card{

    display:flex;

    gap:25px;

    align-items:center;

    background:#fff;

    border:1px solid rgba(39,52,90,.08);

    border-radius:20px;

    padding:30px;

    transition:.35s;

    box-shadow:0 12px 30px rgba(0,0,0,.08);

}

.membership-card:hover{

    transform:translateY(-8px);

    border-color:var(--secondary);

    box-shadow:0 20px 45px rgba(39,52,90,.15);

}

.membership-logo{

    width:130px;
    min-width:130px;
    height:130px;

    display:flex;
    align-items:center;
    justify-content:center;

    background:#f8fbff;

    border-radius:18px;

}

.membership-logo img{

    max-width:90px;
    max-height:90px;

    object-fit:contain;

}

.membership-content span{

    display:inline-block;

    padding:5px 12px;

    background:var(--secondary-light);

    color:var(--secondary);

    border-radius:20px;

    font-size:12px;
    font-weight:600;

    margin-bottom:12px;

}

.membership-content h3{

    color:var(--primary);

    margin-bottom:15px;

    font-size:24px;

}

.membership-content p{

    color:var(--text-light);

    line-height:1.8;

}

@media(max-width:992px){

.membership-grid{

    grid-template-columns:1fr;

}

.membership-card{

    flex-direction:column;

    text-align:center;

}

}

/*====================================
    HEALTH INSURANCE PARTNERS
=====================================*/

.health-partners {

    padding: 100px 8%;
    background: #fff;

}

.health-header {

    max-width: 850px;
    margin: auto;
    text-align: center;
    margin-bottom: 60px;

}

.health-header span {

    display: inline-block;
    padding: 8px 20px;

    background: var(--secondary-light);
    color: var(--secondary);

    border-radius: 30px;

    font-weight: 600;
    font-size: 14px;

    margin-bottom: 18px;

}

.health-header h2 {

    color: var(--primary);

    font-size: 40px;

    margin-bottom: 20px;

}

.health-header p {

    color: var(--text-light);

    line-height: 1.8;

}

.health-grid {

    max-width: 1300px;
    margin: auto;

    display: grid;
    grid-template-columns: repeat(4, 1fr);

    gap: 30px;

}

.health-card {

    background: #fff;

    border-radius: 18px;

    padding: 35px 25px;

    text-align: center;

    text-decoration: none;

    color: inherit;

    box-shadow: 0 8px 30px rgba(0, 0, 0, .08);

    transition: .35s;

    border: 1px solid #edf1f5;

}

.health-card:hover {

    transform: translateY(-10px);

    border-color: var(--secondary);

    box-shadow: 0 20px 45px rgba(0, 0, 0, .12);

}

.health-card img {

    width: 180px;
    height: 80px;

    object-fit: contain;

    margin-bottom: 25px;

}

.health-card h3 {

    color: var(--primary);

    margin-bottom: 15px;

    font-size: 22px;

}

.health-card p {

    color: var(--text-light);

    line-height: 1.7;

    margin-bottom: 20px;

}

.health-card span {

    color: var(--secondary);

    font-weight: 600;

}

.health-card span i {

    margin-left: 8px;

}

@media(max-width:992px) {

    .health-grid {

        grid-template-columns: repeat(2, 1fr);

    }

}

@media(max-width:600px) {

    .health-grid {

        grid-template-columns: 1fr;

    }

    .health-header h2 {

        font-size: 30px;

    }

}

/*==========================================
        STUDY PATH SECTION
==========================================*/

.study-path {

    position: relative;
    padding: 100px 8%;
    overflow: hidden;

    background:
        linear-gradient(135deg,
            rgba(39, 52, 90, 0.15),
            rgba(255, 255, 255, 0.75),
            rgba(236, 123, 41, 0.12)),
        url("../image/main.png") center center/cover no-repeat;

}

/* small blur layer */

.study-path::before {

    content: "";

    position: absolute;
    inset: 0;

    background: rgba(255, 255, 255, .18);
    backdrop-filter: blur(2px);

    z-index: 0;

}

.study-path>* {

    position: relative;
    z-index: 1;

}


/*==========================================
            HEADER
==========================================*/

.study-header {

    text-align: center;
    margin-bottom: 60px;

}

.study-header h2 {

    font-size: 42px;
    font-weight: 700;

    color: var(--primary);

    margin-bottom: 15px;

}

.study-header span {

    color: var(--secondary);

}

.study-header p {

    max-width: 700px;
    margin: auto;

    color: var(--text-light);

}

/*==========================================
            GRID
==========================================*/

.study-grid {

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 25px;

    margin-bottom: 70px;

}

/*==========================================
            CARD
==========================================*/

.study-card {

    position: relative;

    display: flex;
    align-items: center;
    gap: 18px;

    background: rgba(255, 255, 255, .92);

    border-radius: 16px;

    padding: 22px;

    border: 1px solid rgba(39, 52, 90, .08);

    box-shadow: 0 12px 35px rgba(0, 0, 0, .08);

    transition: .35s;

    overflow: hidden;

}

/* decorative corner */

.study-card::after {

    content: "";

    position: absolute;

    right: 0;
    bottom: 0;

    width: 65px;
    height: 65px;

    background: var(--primary);

    clip-path: polygon(100% 0, 0 100%, 100% 100%);

    transition: .35s;

}

.study-card i {

    width: 55px;
    height: 55px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 14px;

    background: #fff;

    color: var(--secondary);

    font-size: 22px;

    box-shadow: 0 5px 20px rgba(0, 0, 0, .08);

    transition: .4s;

}

.study-card p {

    font-size: 17px;

    font-weight: 600;

    color: var(--primary);

}

/*==========================================
            HOVER
==========================================*/

.study-card:hover {

    transform: translateY(-10px);

    box-shadow: 0 18px 45px rgba(39, 52, 90, .18);

}

.study-card:hover::after {

    background: var(--secondary);

}

.study-card:hover i {

    background: var(--secondary);

    color: #fff;

    transform: rotate(360deg);

}

/* ================= CTA BOX ================= */

.study-cta {
    display: flex;
    align-items: center;

    background: #fff;
    border-radius: 15px;
    overflow: hidden;

    box-shadow: var(--shadow-light);
}

/* IMAGE */
.cta-image {
    flex: 1;
}

.cta-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
}

/* IMAGE HOVER */
.study-cta:hover img {
    transform: scale(1.05);
}

/* CONTENT */
.cta-content {
    flex: 1;
    padding: 35px;
}

.cta-content h3 {
    color: var(--text-dark);
    font-size: 26px;
    margin-bottom: 10px;
}

.cta-content p {
    color: var(--text-light);
    margin-bottom: 20px;
}


/* ================= CTA BUTTON ================= */

.explore-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    padding: 12px 24px;
    border-radius: 30px;

    background: var(--secondary);
    color: #fff;
    text-decoration: none;

    position: relative;
    overflow: hidden;

    transition: 0.4s;
}

/* TEXT + ICON */
.explore-btn span,
.explore-btn i {
    position: relative;
    z-index: 2;
    transition: 0.3s;
}

/* SLIDE GRADIENT */
.explore-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;

    background: var(--gradient-main);
    transition: 0.5s;
}

/* HOVER */
.explore-btn:hover::before {
    left: 0;
}

.explore-btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-red);
}

/* TEXT MOVE */
.explore-btn:hover span {
    transform: translateX(-5px);
}

/* ARROW MOVE */
.explore-btn:hover i {
    transform: translateX(6px);
}


/* ================= CONSULTATION BUTTON ================= */

.cta-pill {
    display: inline-flex;
    align-items: center;
    gap: 15px;

    padding: 14px 30px;
    border-radius: 50px;

    background: var(--gradient-main);
    color: #fff;

    text-decoration: none;
    font-size: 15px;

    box-shadow: var(--shadow-primary);
    transition: 0.4s;
}

/* ICON */
.cta-pill i {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #fff;
    color: var(--primary);

    display: flex;
    align-items: center;
    justify-content: center;

    transition: 0.4s;
}

/* HOVER */
.cta-pill:hover {
    transform: translateY(-3px) scale(1.03);
}

.cta-pill:hover i {
    transform: rotate(360deg) scale(1.1);
}


/* ================= RESPONSIVE ================= */

@media(max-width:900px) {

    .study-grid {
        grid-template-columns: 1fr;
    }

    .study-cta {
        flex-direction: column;
    }

    .cta-content {
        text-align: center;
    }
}

/* ===============================
   TEAM SECTION (UPDATED PREMIUM)
=============================== */

.team {
    padding: 100px 70px;
    background: var(--bg-light);
    text-align: center;
}

/* ===============================
   HEADER
=============================== */

.team-header h2 {
    font-size: 36px;
    color: var(--text-dark);
    font-weight: 600;
}

/* 🔥 GRADIENT TEXT */
.team-header span {
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* ===============================
   GRID
=============================== */

.team-container {
    margin-top: 60px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
}

/* ===============================
   CARD
=============================== */

.team-card {
    position: relative;
    overflow: hidden;
    border-radius: 22px;
    cursor: pointer;
    transition: 0.4s ease;

    box-shadow: var(--shadow-light);
    background: var(--white);
}

/* IMAGE */
.team-img img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    transition: 0.7s ease;
}

/* ===============================
   🔥 PREMIUM OVERLAY (THEME BASED)
=============================== */

.team-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;

    /* 🔥 THEME GRADIENT OVERLAY */
    background: linear-gradient(to top,
            rgba(198, 40, 40, 0.9),
            rgba(47, 95, 170, 0.7),
            transparent);

    backdrop-filter: blur(6px);

    color: #fff;
    text-align: left;

    transform: translateY(55%);
    transition: 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

/* ===============================
   TEXT
=============================== */

.team-content h3 {
    margin-bottom: 5px;
    font-size: 22px;
    font-weight: 600;
}

.team-content p {
    font-size: 14px;
    margin-bottom: 12px;
    color: #f1f1f1;
}

/* LIST */
.team-content ul {
    list-style: none;
    padding: 0;
    font-size: 13px;
    line-height: 1.7;

    opacity: 0;
    transform: translateY(10px);
    transition: 0.4s ease;
}

/* ===============================
   SOCIAL ICONS (UPGRADED)
=============================== */

.team-social {
    margin-top: 15px;
    display: flex;
    gap: 10px;

    opacity: 0;
    transform: translateY(10px);
    transition: 0.4s ease;
}

.team-social i {
    width: 36px;
    height: 36px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;
    font-size: 14px;

    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(6px);
    color: #fff;

    transition: 0.3s;
}

/* 🔥 ICON HOVER */
.team-social i:hover {
    background: #fff;
    color: var(--primary);
    transform: scale(1.1) rotate(10deg);
}

/* ===============================
   🔥 HOVER EFFECT
=============================== */

/* IMAGE ZOOM */
.team-card:hover .team-img img {
    transform: scale(1.12);
}

/* CONTENT SLIDE */
.team-card:hover .team-content {
    transform: translateY(0);
}

/* SHOW DETAILS */
.team-card:hover ul,
.team-card:hover .team-social {
    opacity: 1;
    transform: translateY(0);
}

/* CARD LIFT */
.team-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-primary);
}

/* ===============================
   RESPONSIVE
=============================== */

@media(max-width:1000px) {
    .team-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width:600px) {

    .team {
        padding: 60px 20px;
    }

    .team-container {
        grid-template-columns: 1fr;
    }

    .team-img img {
        height: 350px;
    }
}

/* ===============================
   VISA SECTION (UPDATED)
=============================== */

.visa {
    padding: 100px 70px;
    background: var(--white);
}

/* ===============================
   HEADER
=============================== */

.visa-header {
    text-align: center;
    margin-bottom: 60px;
}

.visa-header span {
    font-size: 13px;
    letter-spacing: 2px;
    color: var(--secondary);
    /* 🔥 theme red */
}

.visa-header h2 {
    font-size: 34px;
    margin-top: 10px;
    color: var(--text-dark);
}

/* ===============================
   MAIN WRAPPER
=============================== */

.visa-container {
    display: flex;
    align-items: center;
    gap: 60px;
}

/* ===============================
   LEFT SIDE
=============================== */

.visa-left {
    flex: 0.8;
}

.visa-left img {
    width: 100%;
    border-radius: 25px;
    box-shadow: var(--shadow-light);
    transition: 0.4s;
}

/* 🔥 IMAGE HOVER */
.visa-left img:hover {
    transform: scale(1.03);
    box-shadow: var(--shadow-primary);
}

/* ===============================
   RIGHT SIDE (PREMIUM CARD)
=============================== */

.visa-right {
    flex: 1.2;
    position: relative;

    padding: 25px;
    border-radius: 30px;

    background: var(--bg-light);
    border: 1px solid var(--border);

    box-shadow: var(--shadow-light);
}

/* ===============================
   SLIDER BOX
=============================== */

.visa-slider {
    overflow: hidden;
    border-radius: 20px;
}

/* TRACK */
.visa-track {
    display: flex;
    transition: transform 0.6s ease;
}

/* SLIDES */
.visa-track img {
    width: 100%;
    min-width: 100%;
    height: 320px;
    object-fit: cover;
    border-radius: 20px;
}

/* ===============================
   BUTTONS (THEME BASED)
=============================== */

.visa-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);

    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: none;
    cursor: pointer;

    display: flex;
    align-items: center;
    justify-content: center;

    background: var(--white);
    color: var(--primary);

    box-shadow: var(--shadow-light);
    transition: 0.3s ease;
}

/* 🔥 HOVER */
.visa-btn:hover {
    background: var(--gradient-main);
    color: #fff;
    transform: translateY(-50%) scale(1.1);
}

/* POSITION */
.visa-btn.prev {
    left: -22px;
}

.visa-btn.next {
    right: -22px;
}

/* ===============================
   RESPONSIVE
=============================== */

@media(max-width:900px) {

    .visa-container {
        flex-direction: column;
        gap: 30px;
    }

    .visa-left,
    .visa-right {
        width: 100%;
    }

    .visa-track img {
        height: 250px;
    }
}
/*====================================
        CONTACT SECTION
====================================*/

.contact{

    padding:100px 8%;

    background:
    linear-gradient(
        135deg,
        rgba(39,52,90,.95),
        rgba(31,44,77,.95)
    ),
    url("../image/18.png") center/cover no-repeat;

}

/*========================*/

.contact-container{

    max-width:1250px;

    margin:auto;

    display:flex;

    align-items:center;

    gap:70px;

}

/*========================*/

.contact-left{

    flex:1;

    color:#fff;

}

.contact-tag{

    display:inline-block;

    padding:8px 18px;

    background:rgba(255,255,255,.15);

    color:#fff;

    border-radius:30px;

    margin-bottom:20px;

    font-size:14px;

}

.contact-left h2{

    font-size:46px;

    margin-bottom:20px;

    line-height:1.2;

}

.contact-left h2 span{

    color:var(--secondary);

}

.contact-left p{

    opacity:.9;

    line-height:1.9;

    margin-bottom:40px;

}

/*========================*/

.contact-box{

    display:flex;

    flex-direction:column;

    gap:22px;

}

.info-item{

    display:flex;

    align-items:flex-start;

    gap:18px;

}

.info-item i{

    width:55px;

    height:55px;

    border-radius:50%;

    background:var(--secondary);

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:20px;

    flex-shrink:0;

}

.info-item h4{

    margin-bottom:5px;

    font-size:18px;

}

.info-item span{

    opacity:.9;

    line-height:1.7;

}

/*========================*/

.contact-form{

    flex:1;

    background:#fff;

    border-radius:25px;

    padding:40px;

    box-shadow:0 20px 50px rgba(0,0,0,.18);

}

.contact-form h3{

    color:var(--primary);

    margin-bottom:30px;

    font-size:30px;

}

.contact-form input,
.contact-form select,
.contact-form textarea{

    width:100%;

    padding:16px;

    border-radius:12px;

    border:1px solid #dfe6ef;

    margin-bottom:18px;

    font-size:15px;

    transition:.3s;

}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus{

    border-color:var(--secondary);

    box-shadow:0 0 0 4px rgba(236,123,41,.15);

    outline:none;

}

.contact-form textarea{

    height:140px;

    resize:none;

}

.contact-form button{

    width:100%;

    padding:16px;

    border:none;

    border-radius:10px;

    background:var(--primary);

    color:#fff;

    font-size:16px;

    font-weight:600;

    cursor:pointer;

    transition:.3s;

}

.contact-form button:hover{

    background:var(--secondary);

}

.contact-form button i{

    margin-left:10px;

}

/*========================*/

@media(max-width:992px){

.contact-container{

    flex-direction:column;

}

.contact-left,
.contact-form{

    width:100%;

}

.contact-left{

    text-align:center;

}

.contact-left h2{

    font-size:34px;

}

.info-item{

    justify-content:center;

    text-align:left;

}

}

/* =====================================
   TESTIMONIAL SECTION (FULL FINAL)
===================================== */

.testimonial-section {
    padding: 100px 8%;
    background: var(--section-bg);
}

/* ================= HEADER ================= */

.testimonial-header {
    text-align: center;
    margin-bottom: 60px;
}

.testimonial-header h2 {
    font-size: 36px;
    color: var(--text-dark);
}

.testimonial-header span {
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}


/* ================= WRAPPER ================= */

.testimonial-wrapper {
    position: relative;
}


/* ================= SLIDER ================= */

.testimonial-slider {
    overflow: hidden;
    position: relative;
}

/* 🔥 FADE EDGES (PREMIUM LOOK) */
.testimonial-slider::before,
.testimonial-slider::after {
    content: "";
    position: absolute;
    top: 0;
    width: 80px;
    height: 100%;
    z-index: 2;
}

.testimonial-slider::before {
    left: 0;
    background: linear-gradient(to right, var(--section-bg), transparent);
}

.testimonial-slider::after {
    right: 0;
    background: linear-gradient(to left, var(--section-bg), transparent);
}


/* ================= TRACK ================= */

.testimonial-track {
    display: flex;
    gap: 30px;
    width: max-content;

    animation: scrollTestimonial 25s linear infinite;
}

/* 🔥 PAUSE ON HOVER */
.testimonial-slider:hover .testimonial-track {
    animation-play-state: paused;
}


/* ================= CARD ================= */

.testimonial-card {
    width: 320px;
    flex: 0 0 auto;

    padding: 30px;
    border-radius: 20px;

    background: #fff;
    box-shadow: var(--shadow-light);

    text-align: center;
    position: relative;

    transition: 0.4s;
}

/* 🔥 QUOTE ICON */
.testimonial-card::before {
    content: "“";
    position: absolute;
    top: 10px;
    left: 20px;
    font-size: 50px;
    color: rgba(47, 95, 170, 0.1);
}

/* TEXT */
.testimonial-card p {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 15px;
    color: var(--text-light);
}

/* STARS */
.stars {
    color: #ffc107;
    margin-bottom: 10px;
    font-size: 16px;
}

/* NAME */
.testimonial-card h4 {
    color: var(--text-dark);
    margin-bottom: 5px;
}

/* ROLE */
.testimonial-card span {
    color: var(--secondary);
    font-size: 13px;
}


/* ================= HOVER ================= */

.testimonial-card:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: var(--shadow-primary);
}


/* ================= ANIMATION ================= */

@keyframes scrollTestimonial {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}


/* ================= RESPONSIVE ================= */

@media(max-width:1024px) {
    .testimonial-card {
        width: 280px;
    }
}

@media(max-width:768px) {
    .testimonial-section {
        padding: 70px 20px;
    }

    .testimonial-card {
        width: 240px;
    }

    .testimonial-header h2 {
        font-size: 28px;
    }
}


/*====================================
        TIE-UP SECTION
=====================================*/

.tieup-section{

    padding:100px 8%;
    background:#fff;

}

.tieup-header{

    text-align:center;
    max-width:750px;
    margin:auto;
    margin-bottom:60px;

}

.tieup-header span{

    display:inline-block;

    padding:8px 20px;

    background:var(--secondary-light);

    color:var(--secondary);

    border-radius:30px;

    font-size:14px;
    font-weight:600;

    margin-bottom:18px;

}

.tieup-header h2{

    font-size:42px;
    color:var(--primary);

    margin-bottom:20px;

}

.tieup-header p{

    color:var(--text-light);
    line-height:1.8;

}

.tieup-grid{

    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:35px;

}

.tieup-card{

    display:flex;
    gap:25px;

    padding:30px;

    border-radius:18px;

    background:#fff;

    border:1px solid #edf2f7;

    box-shadow:0 12px 35px rgba(0,0,0,.08);

    transition:.35s;

}

.tieup-card:hover{

    transform:translateY(-8px);

    border-color:var(--secondary);

    box-shadow:0 20px 40px rgba(39,52,90,.15);

}

.tieup-logo{

    min-width:120px;
    height:120px;

    background:#fff;

    border-radius:16px;

    display:flex;
    align-items:center;
    justify-content:center;

    box-shadow:0 5px 20px rgba(0,0,0,.08);

}

.tieup-logo img{

    width:90px;
    object-fit:contain;

}

.tieup-content h3{

    color:var(--primary);
    margin-bottom:15px;

}

.tieup-content p{

    color:var(--text-light);
    line-height:1.8;
    margin-bottom:20px;

}

.tieup-content a{

    color:var(--secondary);

    text-decoration:none;

    font-weight:600;

}

.tieup-content a i{

    margin-left:8px;

}

@media(max-width:992px){

.tieup-grid{

    grid-template-columns:1fr;

}

.tieup-card{

    flex-direction:column;
    text-align:center;

}

.tieup-logo{

    margin:auto;

}

}/*====================================
    PROFESSIONAL CERTIFICATIONS
=====================================*/

.certifications{

    padding:100px 8%;
    background:linear-gradient(180deg,#f8fbff,#ffffff);

}

/*================ HEADER ================*/

.cert-header{

    max-width:820px;
    margin:auto;
    text-align:center;
    margin-bottom:60px;

}

.cert-header span{

    display:inline-block;

    padding:8px 20px;

    background:var(--secondary-light);

    color:var(--secondary);

    border-radius:30px;

    font-size:14px;
    font-weight:600;

    margin-bottom:18px;

    letter-spacing:.5px;

}

.cert-header h2{

    color:var(--primary);

    font-size:42px;

    margin-bottom:18px;

}

.cert-header p{

    color:var(--text-light);

    line-height:1.9;

}

/*================ GRID ================*/

.cert-grid{

    max-width:1200px;

    margin:auto;

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:35px;

}

/*================ CARD ================*/

.cert-card{

    background:#fff;

    border-radius:22px;

    overflow:hidden;

    border:1px solid rgba(39,52,90,.08);

    box-shadow:0 15px 35px rgba(0,0,0,.08);

    transition:.35s;

}

.cert-card:hover{

    transform:translateY(-8px);

    border-color:var(--secondary);

    box-shadow:0 25px 45px rgba(39,52,90,.15);

}

/*================ IMAGE ================*/

.cert-image{

    display:flex;

    align-items:center;

    justify-content:center;

    padding:35px;

    height:260px;

    background:#f8fbff;

    border-bottom:1px solid #edf2f7;

}

.cert-image img{

    max-width:220px;

    max-height:180px;

    width:auto;

    height:auto;

    object-fit:contain;

    transition:.35s;

}

.cert-card:hover .cert-image img{

    transform:scale(1.06);

}

/*================ CONTENT ================*/

.cert-content{

    padding:30px;

}

/* Badge */

.cert-badge{

    display:inline-block;

    padding:7px 16px;

    background:var(--secondary-light);

    color:var(--secondary);

    border-radius:30px;

    font-size:13px;

    font-weight:600;

    margin-bottom:18px;

}

.cert-content h3{

    color:var(--primary);

    font-size:24px;

    margin-bottom:15px;

    line-height:1.4;

}

.cert-content p{

    color:var(--text-light);

    line-height:1.9;

    margin-bottom:22px;

}

/* Certificate Number */

.cert-number{

    display:flex;

    align-items:center;

    gap:10px;

    padding-top:18px;

    border-top:1px solid #ececec;

    color:var(--primary);

    font-weight:600;

}

.cert-number i{

    color:var(--secondary);

    font-size:18px;

}

/*================ RESPONSIVE ================*/

@media(max-width:992px){

    .cert-grid{

        grid-template-columns:1fr;

    }

}

@media(max-width:768px){

    .certifications{

        padding:70px 20px;

    }

    .cert-header h2{

        font-size:30px;

    }

    .cert-image{

        height:220px;
        padding:25px;

    }

    .cert-image img{

        max-width:180px;

    }

    .cert-content{

        padding:25px;

    }

    .cert-content h3{

        font-size:22px;

    }

}