/* style.css */

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #FFC107;
    /* Gold/Yellow */
    --primary-dark: #FFA000;
    --secondary-color: #4CAF50;
    /* Green */
    --secondary-dark: #388E3C;
    --dark-color: #1A1A2E;
    --dark-light: #2D3047;
    --light-color: #F8F9FA;
    --gray-color: #6C757D;
    --gray-light: #E9ECEF;
    --white: #FFFFFF;
    --shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
    --font-body: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
    --font-heading: "Trebuchet MS", "Segoe UI", Arial, sans-serif;
    --text-muted: #475569;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--dark-color);
    background-color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.3;
}

p {
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 80px 0;
}

.section-padding {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    width: 70px;
    height: 4px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
    outline: 3px solid rgba(245, 158, 11, 0.55);
    outline-offset: 3px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    border-radius: 5px;
    font-weight: 500;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    outline: none;
    gap: 8px;
}

.btn-primary {
    background: linear-gradient(to right, var(--primary-color), var(--primary-dark));
    color: var(--dark-color);
}

.btn-primary:hover {
    background: linear-gradient(to right, var(--primary-dark), var(--primary-color));
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.btn-secondary {
    background-color: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--dark-color);
    transform: translateY(-3px);
}

.text-gradient {
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* ===== Header (Dark Slim Theme) ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(8, 11, 20, 0.65);
    /* thoda transparent */
    backdrop-filter: blur(8px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.35);
    transition: all 0.25s ease;
    border-bottom: none;
    /* lining removed */
}

.header.sticky {
    padding: 0;
    /* extra padding hataya */
    background: rgba(8, 11, 20, 0.85);
    /* scroll pe thoda dark */
}

/* Header inner spacing slim */
.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    /* pehle zyada tha, ab slim */
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    /* gap thoda kam */
    font-size: 1.35rem;
    /* thoda chhota */
    font-weight: 700;
    color: #ffffff;
}

.logo-icon {
    width: 34px;
    /* chhota logo box */
    height: 34px;
    background: transparent;
    color: #0b0f1a;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    overflow: hidden;
}

.logo-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 4px;
    /* logo tight */
}

/* Logo highlight text */
.logo-highlight {
    background: linear-gradient(90deg, #f59e0b, #6366f1);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* Navbar */
.navbar {
    display: flex;
    align-items: center;
}

.nav-links {
    display: flex;
    gap: 22px;
    /* gap kam */
}

.nav-link {
    font-weight: 500;
    /* thoda light */
    font-size: 14.5px;
    /* thoda compact */
    color: #d1d5db;
    /* soft grey */
    position: relative;
    padding: 4px 0;
    /* height kam */
    transition: color .2s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #f59e0b, #6366f1);
    bottom: -2px;
    /* neeche thoda */
    left: 0;
    transition: width .25s ease;
    border-radius: 999px;
}

.nav-link:hover {
    color: #ffffff;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link.active {
    color: #ffffff;
}

/* Mobile menu toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
    /* slim bars */
    border: 0;
    background: transparent;
    padding: 0;
}

.menu-toggle span {
    width: 22px;
    /* thoda chhota */
    height: 2.5px;
    background: #e5e7eb;
    border-radius: 2px;
    transition: all .2s ease;
}

/* Responsive */
@media (max-width: 900px) {
    .menu-toggle {
        display: flex;
    }

    .nav-links {
        position: absolute;
        top: calc(100% + 10px);
        right: 12px;
        width: min(280px, calc(100vw - 24px));
        background: rgba(8, 11, 20, 0.98);
        backdrop-filter: blur(14px);
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: 18px;
        padding: 16px 18px;
        box-shadow: 0 18px 36px rgba(0, 0, 0, 0.58);
        flex-direction: column;
        gap: 6px;
        display: none;
        /* JS toggle */
    }

    .nav-links.open,
    .nav-links.active {
        display: flex;
    }

    .nav-link {
        width: 100%;
        display: block;
        font-size: 15px;
        color: #f3f4f6;
        padding: 10px 8px;
        border-radius: 10px;
        text-align: left;
    }

    .nav-link:hover,
    .nav-link.active {
        color: #ffffff;
        background: rgba(255, 255, 255, 0.06);
    }

    .nav-link::after {
        bottom: 6px;
        left: 8px;
    }
}

/* ===== HERO SECTION (Premium + Video Background | No Image Card) ===== */

.hero {
    position: relative;
    min-height: 110vh;
    /* full screen + thoda extra so next section na dikhe */
    padding: 140px 0 100px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #0b0f1a;
    /* fallback if video fails */
}

/* Background Video */
.hero-bg-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    filter: brightness(0.38) saturate(1.1) contrast(1.05);
}

.hero-bg-video--disabled {
    display: none;
}

/* Overlay for text readability */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
            rgba(11, 15, 26, 0.9) 0%,
            rgba(11, 15, 26, 0.65) 45%,
            rgba(11, 15, 26, 0.95) 100%);
    z-index: 1;
}

/* Layout */
.hero .container {
    position: relative;
    z-index: 2;
    /* content above video */
    min-height: 100%;
    display: flex;
    /* center content horizontally */
    align-items: center;
    /* vertical center */
    justify-content: flex-start;
}

/* Hero content */
.hero-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    text-align: left;
    max-width: 760px;
    margin: 0;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    color: #f8fafc;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 18px;
}

/* Text */
.hero-title {
    font-size: clamp(38px, 5.2vw, 60px);
    font-weight: 900;
    color: #ffffff;
    line-height: 1.08;
    margin-bottom: 18px;
    letter-spacing: -0.02em;
}

.text-gradient {
    background: linear-gradient(90deg, #f59e0b, #22c55e, #6366f1);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-subtitle {
    max-width: 640px;
    color: #cbd5e1;
    font-size: 17px;
    line-height: 1.75;
    margin-bottom: 32px;
}

.hero-audience {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 12px;
    margin-bottom: 30px;
}

.hero-audience span {
    padding: 9px 14px;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.62);
    border: 1px solid rgba(255, 255, 255, 0.14);
    color: #e2e8f0;
    font-size: 14px;
    font-weight: 600;
}

/* Buttons */
.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.btn.btn-primary {
    background: linear-gradient(180deg, #fbbf24, #f59e0b);
    color: #111827;
    border-radius: 999px;
    padding: 13px 22px;
    font-weight: 800;
    box-shadow: 0 14px 34px rgba(245, 158, 11, 0.45);
    transition: transform .15s ease, box-shadow .15s ease, filter .15s ease;
}

.btn.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 40px rgba(245, 158, 11, 0.55);
    filter: brightness(1.05);
}

.btn.btn-secondary {
    border: 1px solid rgba(255, 255, 255, 0.28);
    color: #e5e7eb;
    border-radius: 999px;
    padding: 13px 22px;
    backdrop-filter: blur(6px);
    transition: background .15s ease, border-color .15s ease;
}

.btn.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.4);
}

/* Responsive */
@media (max-width: 900px) {
    .hero {
        min-height: 100svh;
        padding: 108px 0 72px;
        background: #0b0f1a;
    }

    .hero .container {
        justify-content: flex-start;
        align-items: center;
    }

    .hero-content {
        max-width: 92%;
        align-items: flex-start;
        text-align: left;
    }

    .hero-badge {
        font-size: 11px;
        padding: 9px 14px;
    }

    .hero-audience {
        gap: 10px;
    }

    .hero-audience span {
        font-size: 13px;
    }

    .hero-title {
        font-size: clamp(30px, 7vw, 42px);
    }

    .hero-subtitle {
        font-size: 15.5px;
        line-height: 1.7;
    }
}

@media (max-width: 768px) {
    .hero {
        min-height: 100svh;
        padding: 104px 0 68px;
        background: url("images/home%20(2).png") center/cover no-repeat;
    }

    .hero-bg-video {
        display: block;
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center center;
        filter: brightness(0.42) saturate(1.02) contrast(1.02);
    }

    .hero-overlay {
        background: linear-gradient(180deg,
                rgba(11, 15, 26, 0.78) 0%,
                rgba(11, 15, 26, 0.58) 44%,
                rgba(11, 15, 26, 0.92) 100%);
    }
}

@media (max-width: 560px) {
    .hero {
        min-height: 100svh;
        padding: 98px 0 58px;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-title {
        font-size: clamp(28px, 10vw, 38px);
        line-height: 1.12;
        margin-bottom: 14px;
    }

    .hero-subtitle {
        font-size: 14.5px;
        margin-bottom: 26px;
    }

    .hero-buttons {
        width: 100%;
        gap: 12px;
    }

    .hero-buttons .btn {
        width: 100%;
    }
}


/* About Section */
.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
    align-items: start;
}

.about-text p {
    font-size: 1.1rem;
    margin-bottom: 25px;
    color: var(--dark-light);
}

.vision-mission {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 30px;
}

.vision,
.mission {
    background-color: var(--white);
    padding: 25px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    border-top: 4px solid var(--primary-color);
}

.mission {
    border-top-color: var(--secondary-color);
}

.vision h3,
.mission h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.vision h3 i,
.mission h3 i {
    color: var(--primary-color);
}

.mission h3 i {
    color: var(--secondary-color);
}

.about-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.stat {
    background-color: var(--white);
    padding: 25px;
    border-radius: 10px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.stat:hover {
    transform: translateY(-5px);
}

.stat h3 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

/* Services Section */
.services {
    background-color: var(--gray-light);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    color: var(--dark-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
}

.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
}

/* Features Section */
/* ===== Packages Section (White Background) ===== */
.packages {
    background: #ffffff;
    /* white background */
    color: #111827;
    /* dark text */
}

.packages .section-title {
    color: #111827;
}

.packages .section-subtitle {
    color: #6b7280;
    /* soft grey */
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    margin-top: 40px;
}

.package-card {
    background: #ffffff;
    /* white card */
    border-radius: 18px;
    padding: 26px 22px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, .08);
    transition: transform .2s ease, box-shadow .2s ease, border .2s ease;
    border: 1px solid #eef2f7;
    /* subtle border */
    position: relative;
}

.package-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, .12);
    border-color: rgba(245, 158, 11, .5);
    /* orange accent */
}

.package-card h3 {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 6px;
    color: #0f172a;
}

.package-for {
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 16px;
}

.package-card ul {
    list-style: none;
    padding: 0;
    margin: 0 0 22px;
}

.package-card li {
    font-size: 14px;
    margin-bottom: 10px;
    color: #374151;
}

/* Buttons inside cards (reuse your global buttons) */
.packages .btn {
    min-width: 168px;
    padding: 16px 28px;
    border-radius: 999px;
    background: linear-gradient(180deg, #ffc431 0%, #ffb20f 100%);
    color: #111827;
    border: none;
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: -0.01em;
    box-shadow: 0 14px 32px rgba(255, 178, 15, 0.34);
}

.packages .btn.btn-primary,
.packages .btn.btn-secondary {
    background: linear-gradient(180deg, #ffc431 0%, #ffb20f 100%);
    color: #111827;
    border: none;
    box-shadow: 0 14px 32px rgba(255, 178, 15, 0.34);
}

.packages .btn:hover,
.packages .btn.btn-primary:hover,
.packages .btn.btn-secondary:hover {
    background: linear-gradient(180deg, #ffd052 0%, #ffbc21 100%);
    color: #111827;
    transform: translateY(-3px) scale(1.01);
    box-shadow: 0 20px 38px rgba(255, 178, 15, 0.42);
}

/* Responsive */
@media (max-width: 900px) {
    .packages-grid {
        grid-template-columns: 1fr;
    }
}

/* Projects Section */
/* .projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.project-card {
    background-color: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.project-image {
    height: 200px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.project-category {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: var(--white);
    color: var(--dark-color);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

.project-content {
    padding: 25px;
}

.project-content h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.project-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-color);
    font-weight: 500;
    margin-top: 15px;
}

.project-link:hover {
    color: var(--secondary-color);
    gap: 12px;
} */
/* ===== UPDATED PROJECTS SECTION ===== */

.projects {
    background-color: #f8fafc;
}

.projects .section-header {
    max-width: 800px;
    margin: 0 auto 60px;
}

.projects .section-title {
    font-size: 2.8rem;
    margin-bottom: 15px;
    text-align: center;
}

.projects .section-subtitle {
    font-size: 1.2rem;
    color: var(--gray-color);
    text-align: center;
    line-height: 1.6;
}

/* Projects Grid */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.project-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.project-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

/* Project Image */
.project-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.project-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.project-card:hover .project-img {
    transform: scale(1.05);
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom,
            rgba(26, 26, 46, 0.2) 0%,
            rgba(26, 26, 46, 0.6) 100%);
    display: flex;
    align-items: flex-end;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.project-card:hover .project-overlay {
    opacity: 1;
}

.overlay-stats {
    display: flex;
    gap: 20px;
    width: 100%;
}

.overlay-stats .stat {
    background: rgba(255, 255, 255, 0.95);
    padding: 10px 15px;
    border-radius: 10px;
    text-align: center;
    flex: 1;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.overlay-stats .stat h4 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 5px;
    font-weight: 700;
}

.overlay-stats .stat p {
    font-size: 0.8rem;
    color: var(--gray-color);
    margin: 0;
    font-weight: 500;
}

/* Project Content */
.project-content {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.project-category {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--dark-color);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 15px;
    align-self: flex-start;
}

.project-content h3 {
    font-size: 1.6rem;
    margin-bottom: 15px;
    line-height: 1.3;
    color: var(--dark-color);
}

.project-content p {
    color: var(--gray-color);
    margin-bottom: 20px;
    line-height: 1.6;
    flex-grow: 1;
}

/* Project Features */
.project-features {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.project-features .feature {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--gray-light);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    color: var(--dark-color);
    transition: all 0.3s ease;
}

.project-features .feature:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
}

.project-features .feature i {
    color: var(--secondary-color);
    font-size: 0.9rem;
}

/* Project Link */
.project-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1rem;
    padding: 12px 0;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    margin-top: auto;
    transition: all 0.3s ease;
}

.project-link:hover {
    color: var(--secondary-color);
    gap: 15px;
}

.project-link i {
    transition: transform 0.3s ease;
}

.project-link:hover i {
    transform: translateX(5px);
}

/* Large Button */
.btn-large {
    padding: 16px 40px;
    font-size: 1.1rem;
    border-radius: 10px;
}

.text-center {
    text-align: center;
}

/* Animation for project cards */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.project-card {
    animation: fadeInUp 0.6s ease-out;
}

.project-card:nth-child(2) {
    animation-delay: 0.2s;
}

.project-card:nth-child(3) {
    animation-delay: 0.4s;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .projects-grid {
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    }
}

@media (max-width: 992px) {
    .projects .section-title {
        font-size: 2.4rem;
    }

    .projects-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .projects {
        padding: 60px 0;
    }

    .projects .section-title {
        font-size: 2rem;
    }

    .projects .section-subtitle {
        font-size: 1.1rem;
    }

    .projects-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }

    .project-image {
        height: 220px;
    }
}

@media (max-width: 576px) {
    .projects .section-title {
        font-size: 1.8rem;
    }

    .project-content {
        padding: 20px;
    }

    .project-content h3 {
        font-size: 1.4rem;
    }

    .project-features {
        flex-direction: column;
        gap: 10px;
    }

    .btn-large {
        padding: 14px 30px;
        font-size: 1rem;
        width: 100%;
        max-width: 300px;
    }
}

/* Image Optimization Styles */
.project-img {
    filter: brightness(0.95);
    transition: filter 0.3s ease;
}

.project-card:hover .project-img {
    filter: brightness(1);
}

/* For better image display */
.project-image {
    background: linear-gradient(135deg, #f5f7fa 0%, #e4e8f0 100%);
}

.project-img {
    object-fit: contain;
    background: white;
    padding: 10px;
}

/* Testimonials Section 
.testimonials {
    background-color: var(--gray-light);
}

.testimonial-slider {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.testimonial-slide {
    display: none;
    background-color: var(--white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.testimonial-slide.active {
    display: block;
    animation: fadeIn 0.8s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.testimonial-content p {
    font-size: 1.2rem;
    font-style: italic;
    margin-bottom: 30px;
    color: var(--dark-light);
    position: relative;
    padding-left: 30px;
}

.testimonial-content p::before {
    content: '"';
    position: absolute;
    left: 0;
    top: -10px;
    font-size: 4rem;
    color: var(--primary-color);
    opacity: 0.3;
    font-family: Georgia, serif;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-info h4 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.author-info p {
    font-size: 0.9rem;
    color: var(--gray-color);
    margin-bottom: 0;
    font-style: normal;
    padding-left: 0;
}

.author-info p::before {
    content: none;
}

.slider-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.slider-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: var(--white);
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.slider-btn:hover {
    background-color: var(--primary-color);
    color: var(--dark-color);
}

.slider-dots {
    display: flex;
    gap: 10px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--gray-color);
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background-color: var(--primary-color);
    transform: scale(1.2);
} */
.testimonial-columns {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    margin-top: 40px;
}

.testimonial-col {
    background: #f8fafc;
    border-radius: 18px;
    padding: 16px;
    height: 340px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
}

.testimonial-col h4 {
    font-size: 16px;
    margin-bottom: 12px;
}

.testimonial-track {
    display: flex;
    flex-direction: column;
    gap: 12px;
    animation: scrollUp 12s linear infinite;
}

.testimonial-track.slow {
    animation-duration: 15s;
}

.testimonial-track.fast {
    animation-duration: 9s;
}

@keyframes scrollUp {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-50%);
    }
}

.testimonial-col:hover .testimonial-track {
    animation-play-state: paused;
}

.t-card {
    background: #fff;
    border-radius: 16px;
    padding: 14px;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.06);
}

.t-header {
    display: flex;
    gap: 10px;
    margin-bottom: 6px;
}

.t-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #f59e0b;
    color: #111827;
    display: grid;
    place-items: center;
    font-weight: 800;
}

.t-meta h5 {
    margin: 0;
    font-size: 14px;
}

.t-rating {
    color: #f59e0b;
    font-size: 12px;
}

.verified {
    margin-left: 6px;
    background: #dcfce7;
    color: #16a34a;
    padding: 2px 6px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 600;
}

.t-review {
    font-size: 13.5px;
    color: #374151;
}

@media (max-width: 900px) {
    .testimonial-columns {
        grid-template-columns: 1fr;
    }

    .testimonial-col {
        height: 260px;
    }
}

/* Contact Section */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-info h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.contact-details {
    margin: 30px 0;
}

.contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: var(--dark-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-text h4 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background-color: var(--gray-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-links a:hover {
    background-color: var(--primary-color);
    color: var(--dark-color);
    transform: translateY(-3px);
}

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid var(--gray-light);
    border-radius: 5px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    transition: var(--transition);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(255, 193, 7, 0.2);
}

.contact-form button {
    width: 100%;
}

/* Footer */
.footer {
    background-color: var(--dark-color);
    color: var(--white);
    padding: 70px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 2fr;
    gap: 40px;
    margin-bottom: 50px;
}

.footer-logo .logo {
    margin-bottom: 20px;
}

.footer-logo p {
    color: #aaa;
    margin-top: 15px;
}

.footer-links h4,
.footer-services h4,
.footer-newsletter h4 {
    font-size: 1.2rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-links h4::after,
.footer-services h4::after,
.footer-newsletter h4::after {
    content: '';
    position: absolute;
    width: 40px;
    height: 3px;
    background-color: var(--primary-color);
    bottom: 0;
    left: 0;
}

.footer-links ul li,
.footer-services ul li {
    margin-bottom: 12px;
}

.footer-links ul li a:hover,
.footer-services ul li a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-newsletter p {
    color: #aaa;
    margin-bottom: 20px;
}

.newsletter-form {
    display: flex;
    margin-top: 15px;
}

.newsletter-form input {
    flex-grow: 1;
    padding: 12px 15px;
    border: none;
    border-radius: 5px 0 0 5px;
    font-family: 'Inter', sans-serif;
}

.newsletter-form button {
    background-color: var(--primary-color);
    color: var(--dark-color);
    border: none;
    padding: 0 20px;
    border-radius: 0 5px 5px 0;
    cursor: pointer;
    transition: var(--transition);
}

.newsletter-form button:hover {
    background-color: var(--primary-dark);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.footer-legal {
    display: flex;
    gap: 20px;
}

.footer-legal a:hover {
    color: var(--primary-color);
}

/* Responsive Styles */
@media (max-width: 992px) {
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-title {
        font-size: 3rem;
    }

    .services-grid,
    .features-grid,
    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-content {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }

    .nav-links {
        position: fixed;
        top: 72px;
        left: 12px;
        right: 12px;
        width: auto;
        background: rgba(8, 11, 20, 0.98) !important;
        border: 1px solid rgba(255, 255, 255, 0.08) !important;
        backdrop-filter: blur(14px);
        flex-direction: column;
        align-items: stretch;
        padding: 16px;
        box-shadow: 0 18px 36px rgba(0, 0, 0, 0.58) !important;
        transform: translateY(-16px);
        opacity: 0;
        visibility: hidden;
        transition: var(--transition);
        z-index: 999;
        border-radius: 18px;
    }

    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-link {
        color: #f3f4f6 !important;
        background: transparent !important;
        padding: 12px 10px;
        text-align: left;
        border-radius: 12px;
    }

    .nav-link:hover,
    .nav-link.active {
        color: #ffffff !important;
        background: rgba(255, 255, 255, 0.06) !important;
    }

    .nav-link::after {
        left: 10px;
        bottom: 7px;
    }

    .menu-toggle {
        display: flex;
    }

    .menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }

    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    .vision-mission {
        grid-template-columns: 1fr;
    }

    .contact-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {

    .services-grid,
    .features-grid,
    .projects-grid {
        grid-template-columns: 1fr;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 250px;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .about-stats {
        grid-template-columns: 1fr;
    }
}

/* ===== PROJECT DETAIL PAGE STYLES ===== */

/* Breadcrumb */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 30px;
    color: var(--gray-color);
    font-size: 0.9rem;
}

.breadcrumb a {
    color: var(--gray-color);
}

.breadcrumb a:hover {
    color: var(--primary-color);
}

.breadcrumb i {
    font-size: 0.7rem;
}

.breadcrumb .current {
    color: var(--primary-color);
    font-weight: 500;
}

/* Project Header */
.project-header {
    margin-bottom: 50px;
}

.project-category-badge {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--dark-color);
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.project-title {
    font-size: 3rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.project-excerpt {
    font-size: 1.3rem;
    color: var(--gray-color);
    margin-bottom: 30px;
    max-width: 800px;
}

.project-meta {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--gray-color);
}

.meta-item i {
    color: var(--primary-color);
}

/* Project Content */
.project-hero-image {
    width: 95%;
    height: auto;
    /*background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));*/
    text-align: center;
    height: auto;
    /* keeps aspect ratio */
    object-fit: contain;
    /* prevents cropping */
    max-height: 750px;
    /* adjust if needed */
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark-color);
    font-size: 1.5rem;
    font-weight: 600;
}

.project-overview {
    margin-bottom: 60px;
}

.project-overview h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 15px;
}

.project-overview h2::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 4px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    bottom: 0;
    left: 0;
    border-radius: 2px;
}

.project-overview p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--dark-light);
}

.project-highlights {
    background-color: var(--gray-light);
    padding: 30px;
    border-radius: 10px;
    margin-top: 30px;
    border-left: 4px solid var(--primary-color);
}

.project-highlights h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.project-highlights ul {
    list-style-type: none;
}

.project-highlights li {
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

.project-highlights li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

/* Project Features */
.project-features {
    margin-bottom: 60px;
}

.project-features h2 {
    font-size: 2.2rem;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
}

.project-features h2::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 4px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    bottom: 0;
    left: 0;
    border-radius: 2px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.feature-item {
    background-color: var(--white);
    padding: 25px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background-color: var(--primary-color);
    color: var(--dark-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.feature-item h4 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

/* Project Results */
.project-results {
    margin-bottom: 60px;
}

.project-results h2 {
    font-size: 2.2rem;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
}

.project-results h2::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 4px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    bottom: 0;
    left: 0;
    border-radius: 2px;
}

.results-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.result-stat {
    background-color: var(--white);
    padding: 25px;
    border-radius: 10px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.result-stat:hover {
    transform: translateY(-5px);
}

.result-stat h3 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.testimonial-box {
    background-color: var(--primary-color);
    color: var(--dark-color);
    padding: 30px;
    border-radius: 10px;
    position: relative;
}

.testimonial-box::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 30px;
    font-size: 4rem;
    opacity: 0.3;
    font-family: Georgia, serif;
}

.testimonial-box p {
    font-size: 1.2rem;
    font-style: italic;
    margin-bottom: 20px;
    padding-left: 30px;
}

.testimonial-box .author {
    text-align: right;
    font-weight: 600;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: 50px;
    border-radius: 10px;
    text-align: center;
    color: var(--dark-color);
    margin-bottom: 60px;
}

.cta-section h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.btn-large {
    padding: 15px 40px;
    font-size: 1.1rem;
}

/* Book Demo Section */
.book-demo-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.demo-info h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.demo-info ul {
    list-style-type: none;
    margin-bottom: 30px;
}

.demo-info li {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.demo-info li i {
    color: var(--secondary-color);
    margin-top: 4px;
}

.demo-note {
    background-color: var(--gray-light);
    padding: 20px;
    border-radius: 8px;
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.demo-note i {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-top: 3px;
}

/* Demo Form */
.demo-form .form-group {
    margin-bottom: 20px;
}

.demo-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--dark-color);
}

.demo-form input,
.demo-form select,
.demo-form textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid var(--gray-light);
    border-radius: 5px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    transition: var(--transition);
}

.demo-form input:focus,
.demo-form select:focus,
.demo-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(255, 193, 7, 0.2);
}

.demo-form select {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 16px;
    padding-right: 40px;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.checkbox-group input {
    width: auto;
    margin-top: 5px;
}

.checkbox-group label {
    font-size: 0.9rem;
    margin-bottom: 0;
}

.btn-block {
    width: 100%;
}

.form-notice {
    margin-top: 20px;
    padding: 15px;
    background-color: var(--gray-light);
    border-radius: 5px;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.form-notice i {
    color: var(--secondary-color);
    font-size: 1.2rem;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal-content {
    background-color: var(--white);
    padding: 40px;
    border-radius: 10px;
    max-width: 500px;
    width: 100%;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    animation: modalFadeIn 0.3s ease;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-icon {
    font-size: 4rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.modal-content h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.modal-content p {
    margin-bottom: 25px;
    color: var(--gray-color);
}

/* Responsive Styles for Project Detail */
@media (max-width: 992px) {
    .project-title {
        font-size: 2.5rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .results-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .book-demo-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .project-title {
        font-size: 2rem;
    }

    .project-excerpt {
        font-size: 1.1rem;
    }

    .project-meta {
        flex-direction: column;
        gap: 15px;
    }

    .project-hero-image {
        height: 250px;
    }

    .cta-section {
        padding: 30px 20px;
    }

    .results-stats {
        grid-template-columns: 1fr;
    }
}

.project-hero {
    width: 100%;
    text-align: center;
}

.project-hero img {
    width: 100%;
    height: auto;
    /* keeps aspect ratio */
    object-fit: contain;
    /* prevents cropping */
    max-height: 520px;
    /* adjust if needed */
}

/* ===== CONTACT SECTION STYLES ===== */

.contact {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path d="M0,0 L100,0 L100,100 Z" fill="%23FFC107" opacity="0.03"/></svg>');
    background-size: cover;
    pointer-events: none;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 40px;
}

/* Contact Info Styles */
.contact-info h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--dark-color);
}

.contact-info>p {
    color: var(--gray-color);
    margin-bottom: 30px;
    line-height: 1.6;
}

.contact-details {
    margin-bottom: 40px;
}

.contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    padding: 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-left: 4px solid var(--primary-color);
}

.contact-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--dark-color);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.contact-text h4 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: var(--dark-color);
}

.contact-text p {
    color: var(--gray-color);
    margin: 0;
    line-height: 1.5;
}

.contact-hours {
    background: white;
    padding: 25px;
    border-radius: 12px;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border-top: 4px solid var(--secondary-color);
}

.contact-hours h4 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.contact-hours h4 i {
    color: var(--secondary-color);
}

.contact-hours p {
    color: var(--gray-color);
    margin-bottom: 8px;
    padding-left: 25px;
    position: relative;
}

.contact-hours p::before {
    content: '•';
    position: absolute;
    left: 10px;
    color: var(--primary-color);
}

.social-links h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--dark-color);
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 45px;
    height: 45px;
    background: white;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-color);
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
    position: relative;
}

.social-link:hover {
    transform: translateY(-5px);
    color: white;
}

.social-link[title*="Facebook"]:hover {
    background: #1877F2;
}

.social-link[title*="Twitter"]:hover {
    background: #1DA1F2;
}

.social-link[title*="LinkedIn"]:hover {
    background: #0077B5;
}

.social-link[title*="Instagram"]:hover {
    background: linear-gradient(45deg, #405DE6, #5851DB, #833AB4, #C13584, #E1306C, #FD1D1D);
}

.social-link[title*="YouTube"]:hover {
    background: #FF0000;
}

/* Contact Form Styles */
.contact-form {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-top: 5px solid var(--primary-color);
}

.form-header {
    margin-bottom: 30px;
    text-align: center;
}

.form-header h3 {
    font-size: 1.6rem;
    margin-bottom: 10px;
    color: var(--dark-color);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.form-header h3 i {
    color: var(--primary-color);
}

.form-header p {
    color: var(--gray-color);
    margin: 0;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 25px;
    position: relative;
}

.form-group label {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
    font-weight: 500;
    color: var(--dark-color);
    font-size: 0.95rem;
}

.form-group label i {
    color: var(--primary-color);
    font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(255, 193, 7, 0.2);
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 16px;
    padding-right: 45px;
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
    max-height: 300px;
}

.error-message {
    position: absolute;
    bottom: -20px;
    left: 0;
    font-size: 0.85rem;
    color: #f44336;
    display: none;
}

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
    border-color: #f44336;
}

.form-group input.error+.error-message,
.form-group select.error+.error-message,
.form-group textarea.error+.error-message {
    display: block;
}

.form-message {
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 20px;
    font-weight: 500;
    text-align: center;
    display: none;
}

.form-message.success {
    background: rgba(76, 175, 80, 0.1);
    color: #388E3C;
    border: 1px solid #4CAF50;
    display: block;
}

.form-message.error {
    background: rgba(244, 67, 54, 0.1);
    color: #D32F2F;
    border: 1px solid #F44336;
    display: block;
}

.form-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #e9ecef;
}

.form-notice {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    max-width: 60%;
}

.form-notice i {
    color: var(--primary-color);
    margin-top: 3px;
}

.form-notice p {
    font-size: 0.9rem;
    color: var(--gray-color);
    margin: 0;
    line-height: 1.5;
}

.btn-submit {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 35px;
    font-size: 1.05rem;
    font-weight: 600;
    min-width: 180px;
    justify-content: center;
}

.btn-submit .btn-text {
    transition: all 0.3s ease;
}

.btn-submit .btn-spinner {
    font-size: 1rem;
}

.btn-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

/* Success Modal Styles */
.success-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    padding: 20px;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
}

.modal-content {
    position: relative;
    background: white;
    padding: 50px 40px;
    border-radius: 20px;
    max-width: 500px;
    width: 100%;
    text-align: center;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
    animation: modalSlideUp 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border-top: 5px solid var(--primary-color);
}

@keyframes modalSlideUp {
    from {
        opacity: 0;
        transform: translateY(50px) scale(0.9);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.modal-icon {
    font-size: 5rem;
    color: #4CAF50;
    margin-bottom: 25px;
    animation: iconBounce 0.8s ease;
}

@keyframes iconBounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-20px);
    }

    60% {
        transform: translateY(-10px);
    }
}

.modal-content h3 {
    font-size: 1.8rem;
    color: var(--dark-color);
    margin-bottom: 15px;
}

.modal-content p {
    color: var(--gray-color);
    margin-bottom: 15px;
    line-height: 1.6;
}

.modal-content .btn {
    margin-top: 20px;
    padding: 12px 35px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-form {
        padding: 30px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
}

@media (max-width: 768px) {
    .contact {
        padding: 60px 0;
    }

    .contact-form {
        padding: 25px;
    }

    .form-footer {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .form-notice {
        max-width: 100%;
    }

    .contact-item {
        padding: 15px;
    }

    .modal-content {
        padding: 30px 20px;
    }
}

@media (max-width: 576px) {
    .contact-form {
        padding: 20px;
    }

    .form-header h3 {
        font-size: 1.4rem;
    }

    .btn-submit {
        width: 100%;
    }

    .social-icons {
        justify-content: center;
    }
}

/* ===== CONTACT SECTION STYLES ===== */

.contact {
    background-color: var(--gray-light);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

/* Contact Info Styles */
.contact-info h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.contact-info>p {
    color: var(--gray-color);
    margin-bottom: 30px;
}

.contact-details {
    margin: 30px 0;
}

.contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: var(--dark-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-text h4 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.contact-text p {
    color: var(--gray-color);
}

.demo-note {
    background-color: var(--gray-light);
    padding: 20px;
    border-radius: 8px;
    display: flex;
    gap: 15px;
    align-items: flex-start;
    margin: 30px 0;
}

.demo-note i {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-top: 3px;
}

.demo-note p {
    color: var(--gray-color);
    margin: 0;
}

.social-links h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 40px;
    height: 40px;
    background-color: var(--gray-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-link:hover {
    background-color: var(--primary-color);
    color: var(--dark-color);
    transform: translateY(-3px);
}

/* Contact Form Styles */
.contact-form {
    background-color: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.form-header {
    margin-bottom: 30px;
}

.form-header h3 {
    font-size: 1.6rem;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.form-header h3 i {
    color: var(--primary-color);
}

.form-header p {
    color: var(--gray-color);
}

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--dark-color);
    font-size: 0.95rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid var(--gray-light);
    border-radius: 5px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    transition: var(--transition);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(255, 193, 7, 0.2);
}

.contact-form select {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 16px;
    padding-right: 40px;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.checkbox-group input {
    width: auto;
    margin-top: 5px;
}

.checkbox-group label {
    font-size: 0.9rem;
    margin-bottom: 0;
    line-height: 1.4;
    color: var(--gray-color);
}

.btn-block {
    width: 100%;
}

.form-notice {
    margin-top: 20px;
    padding: 15px;
    background-color: var(--gray-light);
    border-radius: 5px;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.form-notice i {
    color: var(--secondary-color);
    font-size: 1.2rem;
}

.form-notice p {
    margin: 0;
    color: var(--gray-color);
}

/* Modal Styles for Contact Form */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal-content {
    background-color: var(--white);
    padding: 40px;
    border-radius: 10px;
    max-width: 500px;
    width: 100%;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    animation: modalFadeIn 0.3s ease;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-icon {
    font-size: 4rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.modal-content h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.modal-content p {
    margin-bottom: 25px;
    color: var(--gray-color);
}

/* Responsive Design */
@media (max-width: 992px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-form {
        padding: 25px;
    }
}

@media (max-width: 768px) {
    .contact {
        padding: 60px 0;
    }

    .form-header h3 {
        font-size: 1.4rem;
    }

    .contact-item {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .contact-icon {
        margin: 0 auto;
    }

    .social-icons {
        justify-content: center;
    }

    .modal-content {
        padding: 30px 20px;
    }
}

@media (max-width: 576px) {
    .contact-form {
        padding: 20px;
    }

    .checkbox-group {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
}

/* Popup & Modal (Enquiry Popup) */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 20, 40, 0.7);
    backdrop-filter: blur(4px);
    z-index: 999;
    display: none;
    /* show karne ke liye JS se flex karo */
    justify-content: center;
    align-items: center;
}

.popup-card {
    background: white;
    max-width: 500px;
    width: 90%;
    padding: 40px;
    border-radius: 50px;
    position: relative;
    box-shadow: 0 30px 50px rgba(0, 0, 0, 0.3);
    animation: popupZoom 0.35s ease;
}

@keyframes popupZoom {
    from {
        transform: scale(0.9);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

.close-popup {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 2rem;
    cursor: pointer;
    color: #888;
    transition: 0.2s;
}

.close-popup:hover {
    color: #000;
}

.popup-card h3 {
    font-size: 2rem;
    color: var(--primary-blue);
    margin-bottom: 15px;
}

.popup-card input,
.popup-card textarea {
    width: 100%;
    padding: 14px 16px;
    margin-bottom: 12px;
    border-radius: 40px;
    border: 1px solid #d1d5db;
    font-size: 14px;
}

.popup-card input:focus,
.popup-card textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
}

.success-msg {
    color: #065f46;
    background: #dcfce7;
    padding: 10px;
    border-radius: 30px;
    text-align: center;
    margin-top: 10px;
}

.error-msg {
    color: #b91c1c;
    background: #fee2e2;
    padding: 10px;
    border-radius: 30px;
    text-align: center;
    margin-top: 10px;
}

/* ===== Enquire Now Popup (Orange Theme, Modern UI) ===== */
/* ===== Enquire Now Popup (Orange Theme, Compact UI) ===== */
#enquiryPopup .popup-card {
    background: #ffffff;
    max-width: 440px;
    /* pehle 520px tha */
    width: 92%;
    padding: 28px 26px 26px;
    /* padding kam */
    border-radius: 22px;
    /* thoda compact */
    position: relative;
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.32);
    text-align: left;
    animation: popupZoom 0.35s ease;
}

/* Close (X) */
#enquiryPopup .close-popup {
    position: absolute;
    top: 12px;
    /* upar se kam */
    right: 14px;
    /* side se kam */
    font-size: 22px;
    /* thoda chhota */
    color: #9ca3af;
    cursor: pointer;
    z-index: 2;
    /* ensure visible */
    transition: 0.2s ease;
}

#enquiryPopup .close-popup:hover {
    color: #111827;
}

/* Heading */
#enquiryPopup h3 {
    font-size: 26px;
    /* pehle 34px tha */
    font-weight: 800;
    color: #f59e0b;
    margin-bottom: 12px;
}

/* Inputs */
#enquiryPopup input,
#enquiryPopup textarea {
    width: 100%;
    padding: 12px 16px;
    /* height kam */
    border-radius: 999px;
    border: 1.5px solid #fde68a;
    font-size: 14px;
    /* text thoda chhota */
    margin-bottom: 10px;
    outline: none;
    transition: 0.2s ease;
}

#enquiryPopup textarea {
    border-radius: 18px;
    min-height: 80px;
    /* pehle 110px tha */
    resize: vertical;
}

/* Focus */
#enquiryPopup input:focus,
#enquiryPopup textarea:focus {
    border-color: #f59e0b;
    box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.18);
}

/* Submit button */
#enquiryPopup .btn {
    width: 100%;
    margin-top: 8px;
    padding: 12px 16px;
    /* button chhota */
    border-radius: 999px;
    background: linear-gradient(180deg, #fbbf24, #f59e0b);
    color: #111827;
    font-weight: 800;
    font-size: 15px;
    /* font size kam */
    border: none;
    cursor: pointer;
    box-shadow: 0 10px 24px rgba(245, 158, 11, 0.4);
    transition: 0.2s ease;
}

#enquiryPopup .btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 14px 30px rgba(245, 158, 11, 0.5);
}

/* Success message (optional) */
#enquiryPopup .success-msg {
    margin: 12px 0;
    padding: 12px 14px;
    border-radius: 14px;
    font-weight: 600;
    color: #065f46;
    background: #dcfce7;
    border: 1px solid #86efac;
    text-align: center;
}

/* Animation */
@keyframes popupZoom {
    from {
        transform: scale(0.95);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

.partners-section {
    background: #ffffff;
    /* dark section like your footer */
    padding: 70px 0 60px;
    text-align: center;
    overflow: hidden;
}

.partners-section h2 {
    color: #0f0f10;
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 8px;
}

.partners-subtitle {
    color: #bdbdbd;
    margin-bottom: 35px;
    font-size: 15px;
}

.partners-slider {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.partners-track {
    display: flex;
    gap: 60px;
    width: max-content;
    animation: partnerScroll 22s linear infinite;
}

.partners-track img {
    height: 150px;
    object-fit: contain;
    /* filter: grayscale(100%); */
    opacity: 0.75;
    transition: 0.3s ease;
}

.partners-track img:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.08);
}

@keyframes partnerScroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}


.nav-links.active {
    display: flex;
}

.packages {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at top left, rgba(245, 158, 11, 0.14), transparent 34%),
        radial-gradient(circle at bottom right, rgba(99, 102, 241, 0.14), transparent 28%),
        linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.packages::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(15, 23, 42, 0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(15, 23, 42, 0.03) 1px, transparent 1px);
    background-size: 32px 32px;
    opacity: 0.35;
    pointer-events: none;
}

.packages .container {
    position: relative;
    z-index: 1;
}

.packages-intro {
    display: grid;
    grid-template-columns: 1.3fr .9fr;
    gap: 24px;
    align-items: stretch;
    margin-bottom: 34px;
}

.packages-intro-card,
.packages-highlights {
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(148, 163, 184, 0.2);
    border-radius: 24px;
    backdrop-filter: blur(16px);
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.08);
}

.packages-intro-card {
    padding: 30px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(245, 158, 11, 0.12);
    color: #b45309;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.packages-intro-card h3 {
    font-size: clamp(1.8rem, 2vw, 2.4rem);
    margin-bottom: 14px;
    color: #0f172a;
}

.packages-intro-card p {
    margin: 0;
    color: #475569;
    font-size: 1.02rem;
    line-height: 1.8;
}

.packages-highlights {
    display: grid;
    gap: 14px;
    padding: 20px;
}

.package-highlight {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(248, 250, 252, 0.95), rgba(255, 255, 255, 0.8));
    border: 1px solid rgba(226, 232, 240, 0.85);
    color: #0f172a;
    font-weight: 600;
}

.package-highlight i,
.package-icon {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f59e0b, #6366f1);
    color: #fff;
    box-shadow: 0 10px 25px rgba(99, 102, 241, 0.18);
}

.packages-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 26px;
}

.package-card {
    padding: 28px;
    border-radius: 24px;
    border: 1px solid rgba(226, 232, 240, 0.9);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 250, 252, 0.96));
    box-shadow: 0 24px 55px rgba(15, 23, 42, 0.08);
}

.package-card::after {
    content: '';
    position: absolute;
    inset: auto 24px 0;
    height: 4px;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(245, 158, 11, 0.9), rgba(99, 102, 241, 0.9));
    opacity: 0;
    transition: opacity .2s ease;
}

.package-card:hover::after {
    opacity: 1;
}

.package-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 18px;
}

.package-tag {
    font-size: 12px;
    font-weight: 600;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.package-card h3 {
    font-size: 1.65rem;
}

.package-for {
    margin-bottom: 18px;
}

.package-card ul {
    display: grid;
    gap: 12px;
}

.package-card li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.95rem;
    line-height: 1.65;
}

.package-card li i {
    color: #16a34a;
    margin-top: 3px;
}

.blog {
    background: linear-gradient(180deg, #0f172a 0%, #111827 100%);
    color: #fff;
}

.blog .section-title,
.blog .section-subtitle {
    color: #fff;
}

.blog .section-subtitle {
    max-width: 780px;
    color: rgba(226, 232, 240, 0.78);
}

.blog-layout {
    display: grid;
    grid-template-columns: minmax(280px, 360px) minmax(0, 1fr);
    gap: 28px;
    align-items: start;
}

.blog-featured-card,
.blog-card,
.blog-empty-state {
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: linear-gradient(180deg, rgba(30, 41, 59, 0.95), rgba(15, 23, 42, 0.98));
    box-shadow: 0 24px 60px rgba(2, 6, 23, 0.35);
}

.blog-featured-card {
    padding: 30px;
    position: relative;
}

.blog-kicker,
.blog-meta span {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    background: rgba(245, 158, 11, 0.12);
    border: 1px solid rgba(245, 158, 11, 0.24);
    color: #fcd34d;
    padding: 6px 12px;
    font-size: 12px;
    font-weight: 600;
}

.blog-featured-card h3 {
    color: #fff;
    font-size: 2rem;
    margin: 18px 0 14px;
}

.blog-featured-card p {
    color: #cbd5e1;
    margin-bottom: 24px;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.blog-card {
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.blog-card-image {
    aspect-ratio: 16 / 9;
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.7), rgba(99, 102, 241, 0.75));
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-card-body {
    padding: 24px;
}

.blog-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 16px;
}

.blog-card h3,
.blog-empty-state h3 {
    color: #fff;
    font-size: 1.4rem;
    margin-bottom: 12px;
}

.blog-card p,
.blog-empty-state p {
    color: #cbd5e1;
    margin-bottom: 0;
}

.blog-empty-state {
    padding: 32px;
    grid-column: 1 / -1;
}

.blog-read-more {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #fbbf24;
    font-weight: 600;
    margin-top: 18px;
}

.faq {
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.faq-list {
    max-width: 960px;
    margin: 0 auto;
    display: grid;
    gap: 16px;
}

.faq-item {
    border-radius: 22px;
    border: 1px solid rgba(226, 232, 240, 0.9);
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.07);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    border: 0;
    background: transparent;
    padding: 22px 26px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    text-align: left;
    font: inherit;
    font-weight: 600;
    color: #0f172a;
    cursor: pointer;
}

.faq-question i {
    transition: transform .2s ease;
    color: #f59e0b;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s ease;
}

.faq-answer p {
    padding: 0 26px 24px;
    margin: 0;
    color: #475569;
}

.faq-item.active .faq-answer {
    max-height: 220px;
}

.faq-item.active .faq-question i {
    transform: rotate(45deg);
}

/* ===== Multi Page Layout ===== */
.page-hero {
    position: relative;
    overflow: hidden;
    padding: 170px 0 110px;
    background:
        radial-gradient(circle at top left, rgba(251, 191, 36, 0.28), transparent 32%),
        radial-gradient(circle at top right, rgba(34, 197, 94, 0.18), transparent 30%),
        linear-gradient(135deg, #08101d 0%, #111827 55%, #172554 100%);
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(120deg, rgba(255, 255, 255, 0.04), transparent 40%),
        linear-gradient(0deg, rgba(8, 16, 29, 0.15), rgba(8, 16, 29, 0.15));
}

.page-hero-content {
    position: relative;
    z-index: 1;
    max-width: 760px;
    color: #fff;
    text-align: left;
}

.page-hero-content .hero-buttons {
    justify-content: flex-start;
}

.page-hero-content .hero-badge {
    align-self: flex-start;
}

.page-hero-content h1 {
    font-size: clamp(38px, 5vw, 60px);
    line-height: 1.08;
    margin-bottom: 18px;
}

.page-hero-content p {
    max-width: 650px;
    font-size: 17px;
    color: #d7e0ee;
    line-height: 1.8;
    margin-bottom: 28px;
}

.home-overview,
.home-paths,
.home-services-preview,
.page-cta-band {
    position: relative;
}

.snippet-section,
.internal-links-band {
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.snippet-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
    margin-bottom: 26px;
}

.snippet-card {
    background: #fff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 24px;
    padding: 28px;
    box-shadow: 0 20px 48px rgba(15, 23, 42, 0.08);
}

.snippet-card h3 {
    margin-bottom: 12px;
}

.snippet-card p,
.snippet-card li {
    color: var(--text-muted);
}

.snippet-list {
    list-style: disc;
    padding-left: 18px;
}

.snippet-list li {
    margin-bottom: 10px;
}

.seo-chip-list {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.seo-chip-list a {
    display: inline-flex;
    align-items: center;
    padding: 10px 16px;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.04);
    border: 1px solid rgba(15, 23, 42, 0.08);
    color: #0f172a;
    font-weight: 600;
}

.seo-chip-list a:hover {
    transform: translateY(-2px);
    background: rgba(245, 158, 11, 0.12);
    border-color: rgba(245, 158, 11, 0.3);
}

.snippet-table-wrap {
    overflow-x: auto;
    margin-top: 10px;
}

.snippet-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 720px;
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 48px rgba(15, 23, 42, 0.08);
}

.snippet-table caption {
    caption-side: top;
    text-align: left;
    font-weight: 700;
    padding: 0 0 14px;
    color: #0f172a;
}

.snippet-table th,
.snippet-table td {
    padding: 18px 20px;
    border-bottom: 1px solid rgba(226, 232, 240, 0.9);
    text-align: left;
    vertical-align: top;
}

.snippet-table thead {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.12), rgba(99, 102, 241, 0.1));
}

.snippet-table td {
    color: var(--text-muted);
}

.home-overview.section-padding,
.snippet-section.section-padding,
.home-paths.section-padding,
.faq.section-padding,
.services.section-padding,
.packages.section-padding,
.product-roadmap.section-padding,
.internal-links-band.section-padding {
    content-visibility: auto;
    contain-intrinsic-size: 1px 900px;
}

.home-overview-grid,
.page-link-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.page-link-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.product-pillars {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: 100%;
    gap: 22px;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 8px 6px 14px;
    scroll-snap-type: x proximity;
    overscroll-behavior-x: contain;
    scroll-behavior: smooth;
}

.product-pillars::-webkit-scrollbar {
    height: 12px;
}

.product-pillars::-webkit-scrollbar-thumb {
    background: linear-gradient(90deg, rgba(245, 158, 11, 0.85), rgba(99, 102, 241, 0.85));
    border-radius: 999px;
}

.product-pillars::-webkit-scrollbar-track {
    background: rgba(226, 232, 240, 0.75);
    border-radius: 999px;
}

.products-intro-panel {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 24px;
    margin-bottom: 30px;
}

.product-carousel-shell {
    position: relative;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 14px;
    align-items: center;
}

.product-carousel-btn {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: 1px solid rgba(148, 163, 184, 0.32);
    background: rgba(255, 255, 255, 0.88);
    color: #0f172a;
    box-shadow: 0 14px 30px rgba(15, 23, 42, 0.12);
    cursor: pointer;
    transition: transform .2s ease, background .2s ease, color .2s ease;
}

.product-carousel-btn:hover {
    transform: translateY(-3px);
    background: linear-gradient(135deg, #f59e0b, #6366f1);
    color: #fff;
}

.product-carousel-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 18px;
}

.product-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background: rgba(148, 163, 184, 0.55);
    cursor: pointer;
    transition: transform .2s ease, background .2s ease;
}

.product-dot.active {
    transform: scale(1.2);
    background: linear-gradient(135deg, #f59e0b, #6366f1);
}

.products-intro-copy,
.products-intro-stats {
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(148, 163, 184, 0.2);
    border-radius: 24px;
    backdrop-filter: blur(16px);
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.08);
}

.products-intro-copy {
    padding: 30px;
}

.products-intro-copy h3 {
    font-size: clamp(1.8rem, 2vw, 2.4rem);
    margin-bottom: 14px;
    color: #0f172a;
}

.products-intro-copy p {
    margin: 0;
    color: #475569;
    font-size: 1.02rem;
    line-height: 1.8;
}

.products-intro-stats {
    display: grid;
    gap: 14px;
    padding: 20px;
}

.product-mini-stat {
    padding: 18px;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(248, 250, 252, 0.95), rgba(255, 255, 255, 0.8));
    border: 1px solid rgba(226, 232, 240, 0.85);
}

.product-mini-stat strong {
    display: block;
    font-size: 2rem;
    color: #0f172a;
    margin-bottom: 4px;
}

.product-mini-stat span {
    color: #475569;
    font-weight: 600;
}

.product-pillar {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 250, 252, 0.98));
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 28px;
    padding: 28px;
    box-shadow: 0 22px 50px rgba(15, 23, 42, 0.08);
    position: relative;
    overflow: hidden;
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
    scroll-snap-align: start;
}

.product-pillar::before {
    content: '';
    position: absolute;
    inset: 0 auto 0 0;
    width: 6px;
    border-radius: 999px;
    background: linear-gradient(180deg, #f59e0b, #6366f1);
    opacity: 0;
    transition: opacity .25s ease;
}

.product-pillar:hover {
    transform: translateY(-8px);
    box-shadow: 0 28px 60px rgba(15, 23, 42, 0.14);
    border-color: rgba(99, 102, 241, 0.28);
}

.product-pillar:hover::before {
    opacity: 1;
}

.product-pillar-head {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 18px;
}

.product-pillar-index {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    height: 42px;
    border-radius: 14px;
    font-weight: 800;
    color: #fff;
}

.product-pillar.orange .product-pillar-index {
    background: linear-gradient(135deg, #f97316, #f59e0b);
}

.product-pillar.blue .product-pillar-index {
    background: linear-gradient(135deg, #2563eb, #0ea5e9);
}

.product-pillar.green .product-pillar-index {
    background: linear-gradient(135deg, #16a34a, #65a30d);
}

.product-pillar.purple .product-pillar-index {
    background: linear-gradient(135deg, #7c3aed, #a855f7);
}

.product-pillar.highlight-wide .product-pillar-index {
    background: linear-gradient(135deg, #334155, #64748b);
}

.product-pillar-head h3 {
    margin-bottom: 4px;
}

.product-pillar-head p,
.product-box p,
.product-box li {
    color: inherit;
}

.product-pillar-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.product-box {
    padding: 20px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(15, 23, 42, 0.08);
    transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease, background .22s ease;
}

.product-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 34px rgba(15, 23, 42, 0.1);
    border-color: rgba(99, 102, 241, 0.28);
    background: rgba(255, 255, 255, 0.92);
}

.product-box h4 {
    margin-bottom: 12px;
}

.product-box ul {
    list-style: disc;
    padding-left: 18px;
}

.product-box li {
    margin-bottom: 8px;
}

.product-roadmap {
    background:
        radial-gradient(circle at top left, rgba(245, 158, 11, 0.12), transparent 30%),
        radial-gradient(circle at bottom right, rgba(34, 197, 94, 0.12), transparent 28%),
        linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.roadmap-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 18px;
}

.roadmap-step {
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(226, 232, 240, 0.9);
    border-radius: 24px;
    padding: 24px;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.07);
    transition: transform .22s ease, box-shadow .22s ease;
}

.roadmap-step:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 48px rgba(15, 23, 42, 0.12);
}

.roadmap-step span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 14px;
    background: linear-gradient(135deg, #f59e0b, #6366f1);
    color: #fff;
    font-weight: 800;
    margin-bottom: 14px;
}

.roadmap-step h3 {
    margin-bottom: 10px;
}

.roadmap-step p {
    margin: 0;
    color: #475569;
}

.home-overview-card,
.page-link-card {
    background: #fff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 24px;
    padding: 28px;
    box-shadow: 0 22px 50px rgba(15, 23, 42, 0.08);
    position: relative;
    overflow: hidden;
}

.home-overview-card::before,
.page-link-card::before {
    content: '';
    position: absolute;
    inset: 0 0 auto;
    height: 4px;
    background: linear-gradient(90deg, rgba(245, 158, 11, 0.95), rgba(99, 102, 241, 0.9));
    opacity: 0;
    transition: opacity .2s ease;
}

.home-overview-card i,
.page-link-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 18px;
    margin-bottom: 16px;
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.18), rgba(34, 197, 94, 0.14));
    color: #0f172a;
    font-size: 22px;
}

.home-overview-card h3,
.page-link-card h3 {
    margin-bottom: 12px;
}

.page-link-card {
    display: block;
    color: inherit;
}

.page-link-card p {
    color: #475569;
    margin-bottom: 16px;
}

.page-link-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 26px 56px rgba(15, 23, 42, 0.12);
}

.home-overview-card:hover::before,
.page-link-card:hover::before {
    opacity: 1;
}

.page-link-cta {
    color: #0f766e;
    font-weight: 700;
}

.page-cta-strip {
    margin-top: 40px;
    padding: 28px 32px;
    border-radius: 28px;
    background: linear-gradient(135deg, #0f172a 0%, #16213e 100%);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.page-cta-strip h3 {
    margin-bottom: 8px;
}

.page-cta-strip p {
    margin-bottom: 0;
    color: #cbd5e1;
}

.about-hero {
    background:
        linear-gradient(90deg, rgba(7, 11, 28, 0.86) 0%, rgba(10, 15, 36, 0.78) 34%, rgba(15, 23, 42, 0.46) 100%),
        url('images/about_hero.png') center center / cover no-repeat;
}

.solutions-hero {
    background:
        linear-gradient(90deg, rgba(7, 11, 28, 0.86) 0%, rgba(10, 15, 36, 0.78) 34%, rgba(15, 23, 42, 0.46) 100%),
        url('images/solutions-hero.png') center center / cover no-repeat;
}

.projects-hero {
    background:
        linear-gradient(90deg, rgba(7, 11, 28, 0.86) 0%, rgba(10, 15, 36, 0.78) 34%, rgba(15, 23, 42, 0.46) 100%),
        url('images/project-hero.png') center center / cover no-repeat;
}

.contact-hero {
    background:
        linear-gradient(90deg, rgba(7, 11, 28, 0.86) 0%, rgba(10, 15, 36, 0.78) 34%, rgba(15, 23, 42, 0.46) 100%),
        url('images/contact-hero.png') center center / cover no-repeat;
}

.blog-hero {
    background:
    linear-gradient(90deg, rgba(7, 11, 28, 0.86) 0%, rgba(10, 15, 36, 0.78) 34%, rgba(15, 23, 42, 0.46) 100%),
    url('images/blog-hero.png') center center / cover no-repeat;
}

@media (max-width: 900px) {
    .page-hero {
        padding: 140px 0 88px;
    }

    .home-overview-grid,
    .page-link-grid,
    .snippet-grid {
        grid-template-columns: 1fr;
    }

    .products-intro-panel,
    .product-pillar-grid,
    .roadmap-grid {
        grid-template-columns: 1fr;
    }

    .product-carousel-shell {
        grid-template-columns: 1fr;
    }

    .product-carousel-btn {
        display: none;
    }

    .product-pillars {
        grid-auto-flow: row;
        grid-auto-columns: unset;
        overflow: visible;
        padding: 0;
    }

    .page-cta-strip {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 992px) {

    .packages-intro,
    .blog-layout {
        grid-template-columns: 1fr;
    }

    .blog-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 900px) {
    .packages-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {

    .packages-intro-card,
    .blog-featured-card,
    .blog-card-body,
    .blog-empty-state,
    .faq-question,
    .faq-answer p {
        padding-left: 20px;
        padding-right: 20px;
    }

    .package-card {
        padding: 22px;
    }

    .package-card-top {
        flex-direction: column;
        align-items: flex-start;
    }

    .page-hero-content h1 {
        font-size: clamp(30px, 9vw, 42px);
    }

    .page-hero-content p {
        font-size: 15px;
        line-height: 1.7;
    }

    .page-hero-content .hero-buttons,
    .page-cta-strip .btn {
        width: 100%;
    }

    .page-hero-content .hero-buttons .btn,
    .page-cta-strip .btn {
        justify-content: center;
    }

    .partners-track img {
        height: 110px;
    }

    .snippet-card,
    .snippet-table th,
    .snippet-table td {
        padding: 20px;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }

    .hero-bg-video {
        display: none;
    }
}

.blog-details {
    margin-top: 18px;
}

.blog-details summary {
    list-style: none;
    cursor: pointer;
}

.blog-details summary::-webkit-details-marker {
    display: none;
}

.blog-full-content {
    margin-top: 16px;
    color: #e2e8f0;
    line-height: 1.8;
}


.blog-page-main {
    min-height: 100vh;
    padding-top: 150px;
}

.blog-page-header {
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
}


.blog-layout-single {
    grid-template-columns: 1fr;
}

.blog-layout-single .blog-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    width: 100%;
    align-items: stretch;
}

.blog-layout-single .blog-card {
    width: 100%;
    height: 100%;
}

.blog-layout-single .blog-card h3 {
    font-size: clamp(1.35rem, 1.8vw, 1.8rem);
    line-height: 1.25;
}

.blog-layout-single .blog-card-image {
    aspect-ratio: 16 / 10;
}

@media (max-width: 1200px) {
    .blog-layout-single .blog-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 992px) {
    .blog-layout-single .blog-grid {
        grid-template-columns: 1fr;
    }
}
