:root {
    --primary-dark: #2563eb;
    --primary: #3b82f6;
    --primary-light: #60a5fa;
    --text-color: #475569;
    --stat-color: #1e40af;
    --mega-hover: #f1f5ff;
}
body {
    font-family: Jost;
        font-style: normal;
        color: #61708b;
        font-size: 1rem;
        line-height: 150%;
}
/* MAIN CONTENT */
.main-content {
    background: linear-gradient(135deg, var(--primary-light), #eef2f7, #f8fafc) !important;
}

/* ===========================
   NAVBAR BASE SIZE
=========================== */
.navbar {
    padding: 16px 0;
}

.navbar-brand img {
    height: 52px;
}

/* ===========================
   NAV ITEMS
=========================== */
.navbar-nav .nav-item {
    position: relative;
    margin: 0 6px;
}

.navbar-nav .nav-link {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-color);
    padding: 12px 20px;
    border-radius: 8px;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

/* HOVER */
.navbar-nav .nav-link:hover {
    color: var(--primary);
    background: rgba(59, 130, 246, 0.08);
}

/* ACTIVE */
.navbar-nav .nav-link.active {
    color: var(--primary-dark);
    background: rgba(59, 130, 246, 0.12);
}

/* ===========================
   DROPDOWN / MEGA MENU
=========================== */
.dropdown-menu.mega-menu {
    left: 0;
    right: 0;
    padding: 0;
    border-radius: 0;
}

/* BANNER */
.mega-banner img {
    width: 100%;
    height: 260px;
    object-fit: cover;
}

/* ITEMS */
.mega-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: #61708b;
    padding: 18px;
    transition: all 0.3s ease;
}

.mega-item img {
    width: 50px;
}

.mega-item:hover {
    background: var(--mega-hover);
    border-radius: 10px;
}

/* ===========================
   DROPDOWN ARROW
=========================== */
.navbar-nav .dropdown-toggle::after {
    margin-left: 8px;
    transition: transform 0.3s ease;
}
/* HERO SECTION */
.hero-section {
    background: linear-gradient(135deg, var(--primary-light), #eef2f7, #f8fafc);
    padding: 120px 0;
    position: relative;
    background-size: 200% 200%;
    animation: gradientMove 8s ease infinite;
}

@keyframes gradientMove {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* GLASS CARD */
.hero-glass {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(18px);
    border-radius: 20px;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.08);
}

/* TEXT */
.hero-title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1.2;
}

.hero-text {
    font-size: 1.1rem;
    color: var(--text-color);
}

/* BUTTONS */
.btn-primary {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    border: none;
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.35);
}

/* LOTTIE ANIMATION */
.hero-lottie {
    width: 100%;
    max-width: 700px;
    margin: auto;
    filter: drop-shadow(0 40px 70px rgba(0, 0, 0, 0.15));
    animation: float 6s ease-in-out infinite;
}

/* FLOATING ANIMATION */
@keyframes float {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-14px);
    }

    100% {
        transform: translateY(0);
    }
}

/* STATS */
.stat-number {
    font-weight: 800;
    color: var(--stat-color);
}

.stat-text {
    font-size: 0.9rem;
    color: #64748b;
}

/* BLUR OVERLAY */
.blur-overlay {
    position: absolute;
    top: 0;
    right: 35%;
    width: 300px;
    height: 100%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.1));
    backdrop-filter: blur(14px);
    z-index: 1;
}

/* FLOATING SHAPES */
.blur-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.5;
}

.blur-1 {
    width: 280px;
    height: 280px;
    background: var(--primary-light);
    top: 10%;
    left: -80px;
}

.blur-2 {
    width: 350px;
    height: 350px;
    background: #94a3b8;
    bottom: -100px;
    right: -100px;
}

/* SERVICES SECTION */
.services-section {
    background: linear-gradient(135deg, var(--primary-light), #eef2f7, #f8fafc);
}

.service-card {
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(15px);
    border-radius: 18px;
    padding: 30px 25px;
    text-align: center;
    transition: 0.35s ease;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 35px 70px rgba(0, 0, 0, 0.12);
}

.service-icon {
    width: 70px;
    height: 70px;
    margin: auto;
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 20px;
}

.service-card h5 {
    font-weight: 700;
    margin-bottom: 10px;
}

.service-card p {
    font-size: 0.95rem;
    color: #64748b;
}

.service-link {
    display: inline-block;
    margin-top: 15px;
    font-weight: 600;
    color: var(--primary);
    text-decoration: none;
}

.service-link i {
    margin-left: 6px;
    transition: transform 0.3s;
}

.service-link:hover i {
    transform: translateX(5px);
}
:root {
    --primary: #2563eb;
    --gradient: linear-gradient(135deg, #2563eb, #38bdf8);
}

.choose-us-premium {
    background: linear-gradient(135deg, #f8fafc, #eef2f7);
    overflow: hidden;
}

.section-tag {
    display: inline-block;
    background: rgba(37, 99, 235, .1);
    color: var(--primary);
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 50px;
    margin-bottom: 12px;
}

.section-title {
    font-weight: 800;
    font-size: 2.2rem;
    margin-bottom: 10px;
}

.section-title span {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-desc {
    color: #64748b;
    max-width: 520px;
}

.choose-image-wrap {
    position: relative;
    border-radius: 26px;
    overflow: hidden;
}

.choose-image-wrap img {
    width: 100%;
    border-radius: 26px;
    position: relative;
    z-index: 2;
}

.image-glow {
    position: absolute;
    inset: -20px;
    background: var(--gradient);
    filter: blur(60px);
    opacity: .35;
    z-index: 1;
}

.choose-card-premium {
    position: relative;
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(10px);
    border-radius: 22px;
    padding: 28px 24px;
    height: 100%;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    transition: all .35s ease;
}

.choose-card-premium::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 22px;
    background: var(--gradient);
    opacity: 0;
    transition: .35s;
    z-index: -1;
}

.choose-card-premium:hover {
    transform: translateY(-8px);
    color: #fff;
}

.choose-card-premium:hover::after {
    opacity: 1;
}

.choose-card-premium:hover p,
.choose-card-premium:hover h5 {
    color: #fff;
}

.icon-badge {
    width: 56px;
    height: 56px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 22px;
    margin-bottom: 14px;
}

.choose-card-premium h5 {
    font-weight: 700;
    margin-bottom: 6px;
}

.choose-card-premium p {
    font-size: 0.95rem;
    color: #475569;
}
.service-text-section {
    padding: 80px 0;
}

.section-title {
    font-size: 2rem;
    font-weight: 800;
    color: #2563eb;
    margin-bottom: 20px;
}

.section-text {
    font-size: 1rem;
    color: #475569;
    line-height: 1.7;
    margin-bottom: 15px;
}

.service-text-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.08);
    object-fit: cover;
}

.btn-primary {
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    border: none;
    padding: 10px 25px;
    color: #fff;
    font-weight: 600;
    border-radius: 8px;
    transition: 0.3s ease;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #1e40af, #2563eb);
    transform: translateY(-2px);
}

.ctc-click {
    display: inline-block;
    padding: 12px 90px;
    background: #51b8df;
    color: #fff;
    border-radius: 2px;    
    text-decoration: none;
   
}
.ctc-section {
    margin-bottom: 35px;
}
.ctc-section h2 {
    font-weight: 400;
    font-size: 3rem;
    color: cornflowerblue;

}
.ctc-section h3 {
    font-weight: 400;
    font-size: 3rem;

}
.go-top{
    font-weight: 600;
    color: var(--primary);
}

        .social-icon {
            width: 40px;
            height: 40px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            border: 2px solid rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            transition: all 0.3s ease;
        }
    
        .social-icon:hover {
            background: var(--bs-primary);
            border-color: var(--bs-primary);
            transform: translateY(-3px);
        }
    
        .back-to-top {
            transition: all 0.3s ease;
        }
    
        .back-to-top:hover {
            transform: translateY(-3px);
            box-shadow: 0 4px 12px rgba(13, 110, 253, 0.3);
        }
@media (max-width: 991px) {

    .navbar {
        padding: 10px 0;
    }

    .navbar-brand img {
        height: 44px;
    }

    .navbar-nav {
        text-align: left;
    }

    .navbar-nav .nav-item {
        margin: 6px 0;
    }

    .navbar-nav .nav-link {
        padding: 14px 12px;
        font-size: 1rem;
    }

    /* MOBILE MEGA MENU SLIDE */
        .navbar-nav .dropdown-menu {
            position: fixed;
            top: 0;
            left: -100%;
            width: 80%;
            height: 100%;
            background: #fff;
            overflow-y: auto;
            padding: 20px;
            transition: left 0.35s ease;
            z-index: 1055;
            border-radius: 0;
            box-shadow: 5px 0 20px rgba(0, 0, 0, 0.25);
        }

    .navbar-nav .dropdown-menu.show {
        left: 0;
    }

    /* CLOSE BUTTON */
    .dropdown-menu .close-mobile-menu {
        display: block;
        text-align: right;
        font-size: 1.6rem;
        margin-bottom: 20px;
        cursor: pointer;
    }

    /* MEGA ITEMS MOBILE */
    .mega-item {
        flex-direction: row;
        align-items: center;
        gap: 15px;
        padding: 14px 0;
    }

    .mega-item img {
        width: 38px;
    }

    .mega-banner {
        display: none;
    }
}
