* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Segoe UI", sans-serif;
}

body {
    background: #ffffff;
    color: #1f2d3d;
    line-height: 1.6;
    overflow-x: hidden
}

.nav-logo {
    width: 165px;
}

/* ================= COMMON ================= */
/* .container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
} */

.btn-primary {
    background: #1f5eff;
    color: #fff;
    border: none;
    padding: 12px 20px;
    border-radius: 6px;
    cursor: pointer;
}

.btn-outline {
    background: transparent;
    border: 2px solid #1f5eff;
    color: #1f5eff;
    padding: 12px 20px;
    border-radius: 6px;
    cursor: pointer;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
    font-size: 32px;
}

/* ================= HEADER ================= */
.header {
    background: #ffffff;
    border-bottom: 1px solid #eee;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 0;
}

.logo {
    font-size: 26px;
    font-weight: 700;
    color: #1f5eff;
}

nav a {
    margin: 0 10px;
    text-decoration: none;
    color: #1f2d3d;
    font-weight: 500;
}

nav button {
    margin-left: 15px;
}

/* ================= HERO ================= */
.hero {
    background: linear-gradient(135deg, #eef4ff, #f9fbff);
    padding: 90px 0;
    text-align: center;
}

.hero h1 {
    font-size: 44px;
    margin-bottom: 20px;
}

.hero p {
    max-width: 700px;
    margin: auto;
    color: #555;
}

.hero-actions {
    margin-top: 30px;
}

.hero-actions button {
    margin: 10px;
}

/* ================= IMAGE STRIP ================= */
.image-strip img {
    width: 100%;
    height: 420px;
    object-fit: cover;
}

/* ================= ABOUT ================= */
.about {
    /* padding: 90px 0; */
    padding: 60px 7%;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about img {
    width: 100%;
    border-radius: 12px;
}

.badge {
    display: inline-block;
    background: #e7efff;
    color: #1f5eff;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 14px;
    margin-bottom: 10px;
}

/* ================= STATS ================= */
.stats {
    background: #1f5eff;
    color: #fff;
    padding: 60px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    text-align: center;
}

.stats h3 {
    font-size: 38px;
}

/* ================= SERVICES ================= */
.services {
    padding: 90px 0;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.service-card {
    padding: 30px;
    border: 1px solid #eee;
    border-radius: 12px;
    transition: 0.3s;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.service-card.highlight {
    background: #1f5eff;
    color: #fff;
}

/* ================= CONTACT ================= */
.contact {
    background: #f5f8ff;
    padding: 90px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border-radius: 6px;
    border: 1px solid #ccc;
}

/* ================= FOOTER ================= */
.footer {
    background: #0d1b3d;
    color: #fff;
    text-align: center;
    padding: 20px 0;
}

/* ================= SCROLL ANIMATIONS ================= */
.animate {
    opacity: 0;
    transform: translateY(40px);
    animation: fadeUp 1s ease forwards;
    animation-timeline: view();
    animation-range: entry 15% cover 35%;
}

.fade-left {
    transform: translateX(-50px);
}

.fade-right {
    transform: translateX(50px);
}

.zoom-in {
    transform: scale(0.85);
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: none;
    }
}

/* ================= PRICING ================= */
.pricing-section {
    padding: 90px 0;
    background: #f9fbff;
}

.pricing-card {
    background: #fff;
    padding: 40px;
    border-radius: 14px;
    text-align: center;
    border: 1px solid #eee;
    transition: 0.4s;
}

.pricing-card h2 {
    color: #1f5eff;
    margin: 15px 0;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.pricing-card.featured {
    background: #1f5eff;
    color: #fff;
}

.pricing-card.featured h2 {
    color: #fff;
}

/* ================= TABLE ================= */
.pricing-table th {
    background: #1f5eff;
    color: #fff;
}

.pricing-table td,
.pricing-table th {
    text-align: center;
    padding: 15px;
}

/* ================= DARK GRADIENT HERO ================= */
.hero-dark {
    position: relative;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    overflow: hidden;
    background: linear-gradient(120deg, #142f66, #0e1221, #102a4e);
    background-size: 300% 300%;
    animation: gradientMove 12s ease infinite;
}

/* Animated gradient */
@keyframes gradientMove {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* ================= HERO CONTENT ================= */
.hero-content h1 {
    font-size: 52px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-content h1 span {
    background: linear-gradient(90deg, #4facfe, #00f2fe);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-content p {
    max-width: 720px;
    margin: auto;
    font-size: 18px;
    opacity: 0.9;
}

/* ================= BUTTONS ================= */
.hero-actions {
    margin-top: 35px;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-glow {
    padding: 14px 34px;
    border-radius: 50px;
    background: linear-gradient(90deg, #3387f9, #009ffe);
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 0 25px rgb(63 138 240 / 60%);
    animation: pulseGlow 2s infinite;
    outline: none;
    border: none;
}

@keyframes pulseGlow {
    0% {
        box-shadow: 0 0 20px rgb(63 138 240 / 60%);
    }

    50% {
        box-shadow: 0 0 40px rgba(0, 131, 254, 0.9);
    }

    100% {
        box-shadow: 0 0 20px rgba(79, 172, 254, 0.6);
    }
}

.btn-outline-light {
    padding: 14px 34px;
    border-radius: 50px;
    border: 2px solid #fff;
    color: #fff;
    text-decoration: none;
    transition: 0.3s;
}

.btn-outline-light:hover {
    background: #fff;
    color: #000;
}

/* ================= FLOATING BLOBS ================= */
.blob {
    position: absolute;
    width: 420px;
    height: 420px;
    background: radial-gradient(circle, rgba(79, 172, 254, 0.7), transparent);
    filter: blur(80px);
    animation: floatBlob 10s infinite alternate;
}

.blob-1 {
    top: -100px;
    left: -100px;
}

.blob-2 {
    bottom: -100px;
    right: -100px;
    animation-delay: 3s;
}

@keyframes floatBlob {
    from {
        transform: translateY(0) translateX(0);
    }

    to {
        transform: translateY(80px) translateX(60px);
    }
}

/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 36px;
    }
}

/* ================= PARTICLE CANVAS ================= */
#particles {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

/* Keep hero content above particles */
.hero-dark>*:not(canvas):not(.hero-bg):not(.blob) {
    position: relative;
    z-index: 2;
}

/* ================= PARALLAX TARGET ================= */
.hero-content {
    transition: transform 0.1s linear;
}

/* ================= CURSOR GLOW (optional but sexy) ================= */
.hero-dark::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at var(--x, 50%) var(--y, 50%),
            rgba(79, 172, 254, 0.15),
            transparent 40%);
    pointer-events: none;
    z-index: 1;
}

/* ================= GSAP-LIKE REVEALS ================= */
.gs-reveal {
    opacity: 0;
    transform: translateY(60px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.gs-reveal.from-left {
    transform: translateX(-80px);
}

.gs-reveal.from-right {
    transform: translateX(80px);
}

.gs-reveal.from-top {
    transform: translateY(-80px);
}

.gs-reveal.active {
    opacity: 1;
    transform: translate(0, 0);
}

/* ================= PARALLAX ================= */
.parallax {
    will-change: transform;
    transition: transform 0.1s linear;
}

/* ================= MICRO INTERACTIONS ================= */

/* Buttons */
button,
.btn,
a {
    transition: all 0.3s ease;
}

button:hover,
.btn:hover {
    transform: translateY(-3px) scale(1.03);
}

/* Service Cards */
.service-card {
    position: relative;
    overflow: hidden;
}

.service-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent, rgba(31, 94, 255, 0.15), transparent);
    transform: translateX(-100%);
    transition: 0.6s;
}

.service-card:hover::after {
    transform: translateX(100%);
}

/* Inputs */
input:focus,
textarea:focus {
    outline: none;
    border-color: #1f5eff;
    box-shadow: 0 0 0 4px rgba(31, 94, 255, 0.15);
}

/* Navbar links */
.nav-link {
    position: relative;
}

.nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0%;
    height: 2px;
    background: #1f5eff;
    transition: 0.3s;
}

.nav-link:hover::after {
    width: 100%;
}

section {
    position: relative;
}

section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top, rgba(0, 0, 0, 0.04), transparent 60%);
    pointer-events: none;
}

/* ================= PREMIUM SERVICES ================= */
.premium-services {
    padding: 100px 0;
    background: radial-gradient(circle at top, #f4f7ff, #ffffff);
}

.service-box {
    position: relative;
    height: 100%;
    padding: 40px 30px;
    border-radius: 18px;
    background: #fff;
    text-align: center;
    border: 1px solid rgba(31, 94, 255, 0.15);
    overflow: hidden;
    cursor: pointer;
    transition: 0.4s ease;
}

/* Animated gradient border */
.service-box::before {
    content: "";
    position: absolute;
    inset: 0;
    padding: 2px;
    background: linear-gradient(120deg, #00a1dd1f, #0d6efd1a, #3a5af838);
    opacity: 0;
    transition: 0.4s;
}

.service-icon img {
    width: 50px;
}

.service-box:hover::before {
    opacity: 1;
}

/* Glow hover */
.service-box:hover {
    transform: translateY(-14px);
    box-shadow: 0 30px 60px rgba(31, 94, 255, 0.25);
}

/* Highlight service */
.service-box.highlight {
    background: linear-gradient(135deg, #1f5eff, #4facfe);
    color: #fff;
}

.service-box.highlight p {
    opacity: 0.9;
}

/* Icons */
.service-icon {
    font-size: 42px;
    margin-bottom: 20px;
    animation: floatIcon 4s ease-in-out infinite;
}

/* Icon float */
@keyframes floatIcon {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0);
    }
}

/* Hover reveal text */
.service-hover {
    position: absolute;
    bottom: 25px;
    left: 0;
    width: 100%;
    opacity: 0;
    font-size: 14px;
    font-weight: 600;
    color: #1f5eff;
    transition: 0.4s;
}

.service-box:hover .service-hover {
    opacity: 1;
}

.service-box.highlight .service-hover {
    color: #fff;
}

/* ================= CASE STUDY PREVIEW ================= */
.case-preview {
    position: absolute;
    top: 18px;
    right: 18px;
    background: rgba(31, 94, 255, 0.1);
    color: #1f5eff;
    padding: 8px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    opacity: 0;
    transform: translateY(-10px);
    transition: 0.4s;
}

.service-box:hover .case-preview {
    opacity: 1;
    transform: translateY(0);
}

.service-box.highlight .case-preview {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
}

/* ================= SERVICE MODAL ================= */
.service-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: 0.4s;
    z-index: 9999;
}

.service-modal.active {
    opacity: 1;
    pointer-events: all;
}

.service-modal-content {
    background: #fff;
    max-width: 520px;
    width: 90%;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    transform: scale(0.85);
    transition: 0.4s;
}

.service-modal.active .service-modal-content {
    transform: scale(1);
}

.service-modal h2 {
    color: #1f5eff;
    margin-bottom: 15px;
}

.service-modal ul {
    list-style: none;
    padding: 0;
    margin: 25px 0;
}

.service-modal ul li {
    margin-bottom: 10px;
    font-weight: 500;
}

.close-modal {
    position: absolute;
    top: 18px;
    right: 22px;
    font-size: 28px;
    cursor: pointer;
}

/* ================= MODERN PRICING ================= */
.pricing-modern {
    padding: 110px 0;
    background:
        radial-gradient(circle at top, #eef3ff, transparent 60%),
        #f9fbff;
}

/* Toggle */
.pricing-toggle {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 14px;
    font-weight: 600;
    margin-bottom: 30px;
}

.pricing-toggle span {
    opacity: 0.6;
}

.pricing-toggle span.active {
    opacity: 1;
    color: #1f5eff;
}

.toggle-switch {
    width: 56px;
    height: 30px;
    background: #1f5eff;
    border-radius: 50px;
    position: relative;
    cursor: pointer;
}

.toggle-switch::after {
    content: "";
    position: absolute;
    width: 22px;
    height: 22px;
    background: #fff;
    border-radius: 50%;
    top: 4px;
    left: 4px;
    transition: 0.3s;
}

.toggle-switch.yearly::after {
    left: 30px;
}

/* Pricing Cards */
.pricing-card-modern {
    position: relative;
    height: 100%;
    padding: 45px 35px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(31, 94, 255, 0.15);
    text-align: center;
    transition: 0.5s ease;
    /* overflow: hidden; */
}

/* Gradient border animation */
.pricing-card-modern::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg,
            transparent,
            rgba(31, 94, 255, 0.5),
            transparent);
    opacity: 0;
    transition: 0.5s;
}

.pricing-card-modern:hover::before {
    opacity: 1;
}

/* Hover lift */
.pricing-card-modern:hover {
    transform: translateY(-18px);
    box-shadow: 0 40px 80px rgba(31, 94, 255, 0.25);
}

/* Popular plan */
.pricing-card-modern.popular {
    background: linear-gradient(135deg, #1f5eff, #4facfe);
    color: #fff;
    transform: scale(1.05);
}

.pricing-card-modern.popular ul li {
    color: #fff;
}

.popular-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    color: #1f5eff;
    padding: 6px 18px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 700;
    box-shadow: 0 8px 16px rgba(31, 94, 255, 0.2);
    backdrop-filter: blur(8px);
}

/* Pricing text */
.pricing-card-modern h2 {
    font-size: 44px;
    margin: 15px 0;
    color: #1f5eff;
}

.pricing-card-modern.popular h2 {
    color: #fff;
}

.pricing-card-modern ul {
    list-style: none;
    padding: 0;
    margin: 30px 0;
}

.pricing-card-modern ul li {
    margin-bottom: 12px;
    font-weight: 500;
}

/* Buttons */
.btn-outline-modern {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 40px;
    border: 2px solid #1f5eff;
    color: #1f5eff;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.btn-outline-modern:hover {
    background: #1f5eff;
    color: #fff;
}


/* ================= CHECKOUT MODAL ================= */
.checkout-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: 0.4s;
    z-index: 9999;
}

.checkout-modal.active {
    opacity: 1;
    pointer-events: all;
}

.checkout-box {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    width: 90%;
    max-width: 460px;
    text-align: center;
    transform: scale(0.9);
    transition: 0.4s;
}

.checkout-modal.active .checkout-box {
    transform: scale(1);
}

.checkout-box input,
.checkout-box textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 14px;
    border-radius: 8px;
    border: 1px solid #ccc;
}

/* ================= MODERN CONTACT ================= */
.contact-modern {
    padding: 110px 0;
    background:
        radial-gradient(circle at top right, #eef3ff, transparent 60%),
        #f9fbff;
}

/* Left Info */
.contact-info-modern div {
    margin-bottom: 18px;
}

.contact-info-modern strong {
    display: block;
    font-size: 14px;
    color: #1f5eff;
}

.contact-info-modern span {
    font-weight: 500;
}

/* Form Card */
.contact-card-modern {
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(14px);
    padding: 45px;
    border-radius: 26px;
    border: 1px solid rgba(31, 94, 255, 0.15);
    box-shadow: 0 40px 80px rgba(31, 94, 255, 0.12);
    transition: 0.4s;
}

.contact-card-modern:hover {
    transform: translateY(-8px);
}

/* Floating Label Inputs */
.form-group {
    position: relative;
    margin-bottom: 28px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 14px;
    border-radius: 12px;
    border: 1px solid #ccc;
    background: transparent;
    outline: none;
    font-size: 15px;
}

.form-group label {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    background: #fff;
    padding: 0 6px;
    color: #777;
    font-size: 14px;
    pointer-events: none;
    transition: 0.3s;
}

/* Floating effect */
.form-group input:focus+label,
.form-group textarea:focus+label,
.form-group input:valid+label,
.form-group textarea:valid+label {
    top: -8px;
    font-size: 12px;
    color: #1f5eff;
}

/* Focus glow */
.form-group input:focus,
.form-group textarea:focus {
    border-color: #1f5eff;
    box-shadow: 0 0 0 4px rgba(31, 94, 255, 0.15);
}

/* ================= MODERN NAVBAR ================= */
.navbar-modern {
    /* background: rgb(255 255 255 / 28%); */
    background: #fff;
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(31, 94, 255, 0.15);
    transition: all 0.4s ease;
    z-index: 999;
}

/* Gradient accent line */
.navbar-modern::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #1f5eff, #4facfe);
    opacity: 0.7;
}


/* Nav links */
.navbar-modern .nav-link {
    position: relative;
    font-weight: 600;
    color: #1f2d3d;
    padding: 8px 0;
    transition: color 0.3s;
}

/* Hover underline animation */
.navbar-modern .nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0%;
    height: 2px;
    background: linear-gradient(90deg, #1f5eff, #4facfe);
    transition: width 0.3s ease;
}

.navbar-modern .nav-link:hover::after,
.navbar-modern .nav-link.active::after {
    width: 100%;
}

.navbar-modern .nav-link:hover {
    color: #1f5eff;
}

/* CTA button */
/* .btn-glow {
    background: linear-gradient(90deg, #1f5eff, #4facfe);
    color: #fff;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 10px 30px rgba(31,94,255,0.4);
    transition: all 0.3s ease;
}

.btn-glow:hover {
    box-shadow: 0 15px 40px rgba(31,94,255,0.6);
    color: #fff;
} */

/* Shrink on scroll */
.navbar-modern.scrolled {
    padding-top: 8px;
    padding-bottom: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

/* ================= MEGA MENU FIX ================= */
.mega-dropdown {
    position: static;
}

.mega-menu {
    width: 50%;
    left: 50% !important;
    right: 0;
    margin-top: 0;
    padding: 30px 40px;
    border-radius: 20px;
    border: 1px solid rgba(31, 94, 255, 0.15);
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(14px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);

    /* animation */
    opacity: 0;
    transform: translateY(20px) translateX(-50%);
    visibility: hidden;
    display: block;
    /* IMPORTANT */
    transition: all 0.35s ease;
}

/* Show when Bootstrap adds .show */
.dropdown.show .mega-menu {
    opacity: 1;
    transform: translateY(0) translateX(-50%);
    visibility: visible;
}

.mega-menu h6 {
    font-weight: 700;
    margin-bottom: 12px;
    color: #1f5eff;
}

.mega-menu a {
    display: block;
    padding: 6px 0;
    color: #1f2d3d;
    text-decoration: none;
    transition: 0.25s;
}

.mega-menu a:hover {
    color: #fff;
    /* color: #1f5eff; */
    transform: translateX(6px);
}


/* ================= ANIMATED DROPDOWN ================= */
.dropdown-menu {
    border: none;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
}

/* ================= MOBILE SLIDE MENU ================= */
@media (max-width: 991px) {
    .mobile-slide {
        position: fixed;
        top: 72px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 72px);
        background: rgba(255, 255, 255, 0.97);
        backdrop-filter: blur(12px);
        padding: 30px;
        transition: left 0.4s ease;
    }

    .mobile-slide.show {
        left: 0;
    }

    .navbar-nav {
        gap: 20px;
    }
}

/* Remove default Bootstrap caret */
.services-toggle::after {
    display: none !important;
}

/* ================= SERVICES CHEVRON ================= */
.services-toggle {
    display: flex;
    align-items: center;
    gap: 15px;
    font-weight: 600;
}

/* Chevron shape */
.services-toggle .chevron {
    width: 8px;
    height: 8px;
    border-right: 2px solid #1f2d3d;
    border-bottom: 2px solid #1f2d3d;
    transform: rotate(45deg);
    margin-top: -2px;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

/* Hover effect */
.services-toggle:hover .chevron {
    border-color: #1f5eff;
}

/* Rotate when open */
.dropdown.show .services-toggle .chevron {
    transform: rotate(-45deg);
    margin-bottom: -4px;
}

.services-toggle:hover {
    transform: translateY(-1px);
}


/* ================= MEGA SERVICES LAYOUT ================= */
.mega-services {
    width: 50%;
    padding: 0;
    border-radius: 20px;
    overflow: hidden;
}

.mega-wrapper {
    display: grid;
    grid-template-columns: .7fr 1fr;
    min-height: 350px;
}

/* LEFT PANEL */
.mega-left {
    background: linear-gradient(180deg, #225dcc, #63acff);
    padding: 30px;
    display: flex;
    flex-direction: column;
}

.mega-item {
    color: #fff;
    font-size: 18px;
    padding: 12px 0;
    cursor: pointer;
    opacity: 0.85;
    transition: 0.3s;
}

.mega-item:hover,
.mega-item.active {
    opacity: 1;
    transform: translateX(6px);
    font-weight: 600;
    color: #fff;
}

/* RIGHT PANEL */
.mega-right {
    padding: 35px 40px;
    background: #fff;
}

.mega-content {
    display: none;
}

.mega-content.active {
    display: block;
}

.mega-content h4 {
    font-size: 22px;
    margin-bottom: 20px;
}

/* MARKET GRID */
.market-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.market-grid span {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    padding: 8px 10px;
    border-radius: 10px;
    background: #f4f6ff;
}

/* CTA */
.mega-btn {
    display: inline-block;
    margin-top: 25px;
    font-weight: 600;
    text-decoration: none;
}

.mega-btn:hover {
    color: #1f5eff !important;
}

.market-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    border-radius: 10px;
    background: #f6f7ff;
}

.market-item img {
    /* width: 22px; */
    height: 20px;
    /* object-fit: contain; */
}

.market-item span {
    font-size: 14px;
    color: #333;
}

.mega-content p {
    font-size: 15px;
    line-height: 1.6;
    color: #555;
    max-width: 420px;
}

.contact-block {
    margin-bottom: 20px;
}

.contact-block strong {
    display: block;
    font-size: 14px;
    color: #1f5eff;
    margin-bottom: 6px;
}

.contact-block span,
.contact-block a {
    font-size: 15px;
    color: #333;
    line-height: 1.6;
    text-decoration: none;
}

.contact-block a:hover {
    text-decoration: underline;
}

/* ================= CONSULTATION FORM SECTION ================= */
.consultation-section {
    padding: 100px 0;
    background:
        radial-gradient(circle at top right, #eef3ff, transparent 60%),
        #f9fbff;
}

/* ================= PREMIUM CONTACT SECTION ================= */
.premium-contact {
    padding: 110px 0;
    background:
        radial-gradient(circle at top right, rgba(79, 172, 254, 0.12), transparent 60%),
        #f9fbff;
}

/* Gradient text */
.text-gradient {
    background: linear-gradient(90deg, #1f5eff, #4facfe);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Contact cards */
.contact-card {
    height: 100%;
    padding: 40px 30px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(14px);
    border: 1px solid rgba(31, 94, 255, 0.15);
    text-align: center;
    transition: 0.4s ease;
    box-shadow: 0 30px 60px rgba(31, 94, 255, 0.08);
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 45px 90px rgba(31, 94, 255, 0.18);
}

/* Icons */
.contact-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 18px;
    border-radius: 50%;
    background: linear-gradient(135deg, #1f5eff, #4facfe);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    box-shadow: 0 15px 30px rgba(31, 94, 255, 0.45);
}

.contact-icon img {
    width: 32px;
    height: 32px;
}

/* Text */
.contact-card h5 {
    font-weight: 700;
    margin-bottom: 10px;
}

.contact-card p {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
}

.contact-card a {
    color: #1f5eff;
    font-weight: 500;
    text-decoration: none;
}

.contact-card a:hover {
    text-decoration: underline;
}


/* ================= CONSULTATION SECTION ================= */

.consultation-modern {
    padding: 110px 0;
    background:
        radial-gradient(circle at top right, rgba(79, 172, 254, 0.12), transparent 60%),
        #f9fbff;
}

/* Card */
.consultation-card {
    background: #ffffff;
    padding: 55px;
    border-radius: 26px;
    border: 1px solid rgba(31, 94, 255, 0.15);
    box-shadow: 0 40px 80px rgba(31, 94, 255, 0.12);
}

/* Inputs */
.consultation-card .form-label {
    font-weight: 600;
    font-size: 14px;
    color: #333;
}

.consultation-card .form-control {
    border-radius: 14px;
    border: 1px solid #ddd;
    padding: 14px 16px;
}

.consultation-card .form-control:focus {
    border-color: #1f5eff;
    box-shadow: 0 0 0 4px rgba(31, 94, 255, 0.15);
}

/* Service checkboxes */
.service-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px 20px;
}

.service-options label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    color: #444;
    cursor: pointer;
}

.service-options input {
    accent-color: #1f5eff;
}

/* Responsive */
@media (max-width: 768px) {
    .consultation-card {
        padding: 35px 28px;
    }

    .service-options {
        grid-template-columns: 1fr;
    }
}

/* ================= ABOUT SECTION ================= */

.about-modern {
    padding: 110px 0;
    background: #ffffff;
}

/* Gradient text reuse */
.text-gradient {
    background: linear-gradient(90deg, #1f5eff, #4facfe);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Bullet list */
.about-list {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
}

.about-list li {
    margin-bottom: 10px;
    font-size: 15px;
    color: #444;
}

/* Stats grid */
.about-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
}

.stat-box {
    padding: 35px;
    border-radius: 22px;
    background: #f9fbff;
    border: 1px solid rgba(31, 94, 255, 0.15);
    text-align: center;
    transition: 0.3s ease;
}

.stat-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(31, 94, 255, 0.15);
}

.stat-box h3 {
    font-size: 36px;
    color: #1f5eff;
    margin-bottom: 6px;
}

.stat-box p {
    font-size: 14px;
    color: #555;
}

/* Responsive */
@media (max-width: 768px) {
    .about-stats {
        grid-template-columns: 1fr;
    }
}

/* ================= WHY CHOOSE US SECTION ================= */

.why-choose-modern {
    padding: 110px 0;
    background:
        radial-gradient(circle at top left, rgba(79, 172, 254, 0.12), transparent 60%),
        #ffffff;
}

.why-card {
    height: 100%;
    padding: 35px 30px;
    border-radius: 22px;
    background: #f9fbff;
    border: 1px solid rgba(31, 94, 255, 0.15);
    transition: 0.3s ease;
}

.why-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(31, 94, 255, 0.15);
}

.why-card h4 {
    font-weight: 700;
    margin-bottom: 10px;
    color: #1f5eff;
}

.why-card p {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
}

/* ================= PREMIUM SERVICES ================= */

.services-premium {
    padding: 120px 0;
    background:
        radial-gradient(circle at top right, rgba(79, 172, 254, 0.12), transparent 60%),
        #f9fbff;
}

/* Card */
.service-card-premium {
    position: relative;
    height: 100%;
    padding: 38px 32px;
    border-radius: 26px;
    background: #ffffff;
    border: 1px solid rgba(31, 94, 255, 0.15);
    transition: all 0.4s ease;
    overflow: hidden;
}

/* Gradient border effect */
.service-card-premium::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 26px;
    background: linear-gradient(135deg, #1f5eff, #4facfe);
    opacity: 0;
    transition: 0.4s;
    z-index: -1;
}

.service-card-premium:hover::before {
    opacity: 0.08;
}

/* Hover lift */
.service-card-premium:hover {
    transform: translateY(-12px);
    box-shadow: 0 45px 90px rgba(31, 94, 255, 0.18);
}

/* Icon */
.service-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 18px;
    border-radius: 16px;
    background: linear-gradient(135deg, #1f5eff, #4facfe);
    color: #fff;
    font-size: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 18px 36px rgba(31, 94, 255, 0.45);
}

.service-icon img {
    width: 32px;
    height: 32px;
}

/* Title */
.service-card-premium h4 {
    font-weight: 700;
    margin-bottom: 10px;
    color: #1f5eff;
}

/* Text */
.service-card-premium p {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 18px;
}

/* Link */
.service-link {
    font-weight: 600;
    color: #1f5eff;
    text-decoration: none;
}

.service-link:hover {
    text-decoration: underline;
}

/* Mobile */
@media (max-width: 768px) {
    .service-card-premium {
        padding: 32px 26px;
    }
}

/* ================= SERVICES PAGE ================= */

.page-header {
    padding: 120px 0 70px;
    background:
        radial-gradient(circle at top, rgba(79, 172, 254, 0.12), transparent 60%),
        #ffffff;
}

.services-page {
    padding: 90px 0;
    background: #f9fbff;
}

/* Service page card */
.service-page-card {
    height: 100%;
    padding: 36px 32px;
    border-radius: 26px;
    background: #ffffff;
    border: 1px solid rgba(31, 94, 255, 0.15);
    transition: 0.35s ease;
}

.service-page-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 40px 80px rgba(31, 94, 255, 0.18);
}

.service-page-card h4 {
    font-weight: 700;
    margin-bottom: 10px;
    color: #1f5eff;
}

.service-page-card p {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
}

.service-page-card ul {
    padding-left: 18px;
    margin: 15px 0 20px;
}

.service-page-card ul li {
    font-size: 14px;
    color: #444;
    margin-bottom: 6px;
}

.service-page-card a {
    font-weight: 600;
    color: #1f5eff;
    text-decoration: none;
}

.service-page-card a:hover {
    text-decoration: underline;
}

/* FIX: Content hidden behind fixed navbar */
.page-header {
    padding-top: 160px;
    /* VERY IMPORTANT */
}

/* .gs-reveal {
    opacity: 1 !important;
    transform: none !important;
} */

/* .from-bottom {
    padding: 30px;
} */

/* ================= ENHANCED SERVICE HOVER ================= */

.service-page-card {
    position: relative;
    overflow: hidden;
    transition: transform 0.45s ease, box-shadow 0.45s ease;
}

/* Gradient glow layer */
.service-page-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #1f5eff, #4facfe);
    opacity: 0;
    transition: opacity 0.45s ease;
    z-index: 0;
}

/* Content stays above */
.service-page-card>* {
    position: relative;
    z-index: 1;
}

/* Hover effect */
.service-page-card:hover {
    transform: translateY(-14px) scale(1.01);
    box-shadow: 0 50px 100px rgba(31, 94, 255, 0.25);
}

.service-page-card:hover::before {
    opacity: 0.06;
}

/* Link micro interaction */
.service-page-card .service-link {
    display: inline-block;
    transform: translateY(6px);
    opacity: 0.85;
    transition: all 0.35s ease;
}

.service-page-card:hover .service-link {
    transform: translateY(0);
    opacity: 1;
}

/* Title subtle animation */
.service-page-card h4 {
    transition: transform 0.35s ease;
}

.service-page-card:hover h4 {
    transform: translateX(4px);
}


/* ================= SERVICE DETAIL PAGE ================= */

.service-detail-hero {
    padding: 150px 0 90px;
    background: #ffffff;
}

.service-detail-content {
    padding: 40px 0;
    background: #f9fbff;
}

/* Service bullet list */
.service-list {
    list-style: none;
    padding: 0;
}

.service-list li {
    margin-bottom: 10px;
    padding-left: 24px;
    position: relative;
    font-size: 15px;
    color: #444;
}

.service-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #1f5eff;
    font-weight: 700;
}

/* Highlight card */
.service-highlight-card {
    padding: 40px;
    border-radius: 24px;
    background: #ffffff;
    border: 1px solid rgba(31, 94, 255, 0.15);
    box-shadow: 0 30px 60px rgba(31, 94, 255, 0.12);
}

/* ================= SERVICE CLOSING HIGHLIGHT ================= */

.service-closing-highlight {
    padding: 110px 0;
    background:
        radial-gradient(circle at top right, rgba(79, 172, 254, 0.12), transparent 60%),
        #f9fbff;
}

.highlight-box {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 55px;
    border-radius: 28px;
    background: #ffffff;
    border: 1px solid rgba(31, 94, 255, 0.18);
    text-align: center;
    box-shadow: 0 40px 80px rgba(31, 94, 255, 0.15);
}

.highlight-box h3 {
    font-weight: 700;
    font-size: 32px;
    margin-bottom: 20px;
}

.highlight-text {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 35px;
}

.highlight-text strong {
    color: #1f5eff;
}

.highlight-actions {
    margin-top: 10px;
}

/* Responsive */
@media (max-width: 768px) {
    .highlight-box {
        padding: 40px 30px;
    }

    .highlight-box h3 {
        font-size: 26px;
    }
}

/* ================= WHAT WE DO SECTION ================= */

.service-what-we-do {
    padding: 80px 0;
    background: #ffffff;
}

.what-card {
    height: 100%;
    padding: 35px 32px;
    border-radius: 24px;
    background: #f9fbff;
    border: 1px solid rgba(31, 94, 255, 0.15);
    transition: 0.35s ease;
}

.what-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(31, 94, 255, 0.15);
}

.what-card h5 {
    font-weight: 700;
    color: #1f5eff;
    margin-bottom: 14px;
}

/* Bullet list */
.what-card ul {
    list-style: none;
    padding-left: 0;
}

.what-card ul li {
    position: relative;
    padding-left: 22px;
    margin-bottom: 10px;
    font-size: 15px;
    color: #444;
    line-height: 1.6;
}

.what-card ul li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: #1f5eff;
    font-weight: 700;
}

/* Mobile */
@media (max-width: 768px) {
    .what-card {
        padding: 28px 24px;
    }
}

/* ================= WHY CHOOSE US (SERVICE PAGE) ================= */

.service-why-choose {
    padding: 110px 0;
    background:
        radial-gradient(circle at top left, rgba(79, 172, 254, 0.12), transparent 60%),
        #f9fbff;
}

.why-box {
    height: 100%;
    padding: 32px 28px;
    border-radius: 22px;
    background: #ffffff;
    border: 1px solid rgba(31, 94, 255, 0.15);
    transition: 0.35s ease;
}

.why-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(31, 94, 255, 0.15);
}

.why-box h5 {
    font-weight: 700;
    color: #1f5eff;
    margin-bottom: 10px;
    font-size: 17px;
}

.why-box p {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
}

/* Mobile */
@media (max-width: 768px) {
    .service-why-choose {
        padding: 90px 0;
    }
}

/* ================= GRAPHICS PAGE SHAPES ================= */

.graphic-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.45;
    z-index: 1;
}

.shape-1 {
    width: 260px;
    height: 260px;
    background: #4facfe;
    top: 20%;
    left: -80px;
}

.shape-2 {
    width: 220px;
    height: 220px;
    background: #1f5eff;
    top: 10%;
    right: -60px;
}

.shape-3 {
    width: 180px;
    height: 180px;
    background: #9ad0ff;
    bottom: -60px;
    left: 40%;
}

/* Ensure content stays above */
.service-detail-hero .container {
    position: relative;
    z-index: 2;
}

/* ================= MOBILE NAVBAR FIX ================= */

@media (max-width: 991px) {

    /* Hamburger */
    .custom-toggler {
        border: none;
        background: transparent;
        padding: 0;
        width: 30px;
        height: 22px;
        position: relative;
        z-index: 1001;
    }

    .custom-toggler span {
        position: absolute;
        width: 100%;
        height: 3px;
        background: #1f5eff;
        left: 0;
        transition: 0.3s;
    }

    .custom-toggler span:nth-child(1) {
        top: 0;
    }

    .custom-toggler span:nth-child(2) {
        top: 9px;
    }

    .custom-toggler span:nth-child(3) {
        bottom: 0;
    }

    /* Animate to X */
    .navbar-toggler[aria-expanded="true"] span:nth-child(1) {
        transform: rotate(45deg);
        top: 9px;
    }

    .navbar-toggler[aria-expanded="true"] span:nth-child(2) {
        opacity: 0;
    }

    .navbar-toggler[aria-expanded="true"] span:nth-child(3) {
        transform: rotate(-45deg);
        bottom: 9px;
    }

    /* Slide menu */
    .mobile-slide {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: #ffffff;
        padding: 90px 25px 30px;
        transition: 0.4s ease;
        overflow-y: auto;
        z-index: 999;
    }

    .mobile-slide.show {
        right: 0;
    }

    /* Nav items */
    .navbar-nav {
        align-items: flex-start !important;
    }

    .navbar-nav .nav-item {
        width: 100%;
    }

    .navbar-nav .nav-link {
        /* font-size: 18px; */
        /* padding: 12px 0; */
        width: 100%;
    }

    /* CTA */
    .navbar-nav .btn {
        width: 100%;
        margin-top: 15px;
        text-align: center;
    }

    /* Disable hover dropdown */
    .mega-dropdown:hover .mega-menu {
        display: none;
    }

    /* Mobile mega menu */
    .mega-menu {
        position: static !important;
        box-shadow: none;
        border: none;
        padding: 0;
        display: none;
    }

    .mega-dropdown.show .mega-menu {
        display: block;
        margin-top: 10px;
    }

    /* Mega left items */
    .mega-left {
        width: 100%;
        border-right: none;
    }

    .mega-item {
        padding: 10px 0;
        font-size: 16px;
    }

    /* Right content stack */
    .mega-right {
        display: none;
    }

}

/* ================= MOBILE MEGA MENU FIX ================= */

@media (max-width: 991px) {

    /* Disable bootstrap dropdown */
    .dropdown-menu {
        position: static !important;
        transform: none !important;
        box-shadow: none !important;
        border: none;
        padding: 0;
        display: none;
    }

    .dropdown.show .dropdown-menu {
        display: block;
    }

    .mega-services {
        width: 100%;
    }

    /* Mega wrapper */
    .mega-wrapper {
        display: block;
        padding: 0;
        min-height: 100%;
    }

    /* Left column becomes list */
    .mega-left {
        width: 100%;
        border-right: none;
    }

    .mega-item {
        display: block;
        padding: 12px 0;
        font-size: 14px;
        /* border-bottom: 1px solid #eee; */
        cursor: pointer;
    }

    /* Hide right panel completely */
    .mega-right {
        display: none !important;
    }

    /* Chevron rotate */
    .dropdown.show .chevron {
        transform: rotate(180deg);
    }

}

.form-control-lg {
    font-size: 1rem !important;
}