/* ============================================================
   VRINDAVAN DIGITAL MARKETING — MAIN STYLESHEET
   Color Palette: Sky Blue (#0ea5e9 range) + Orange (#f97316 range)
   ============================================================ */

/* ---- CSS Variables ---- */
:root {
    --sky: #0ea5e9;
    --sky-dark: #0284c7;
    --sky-deeper: #0369a1;
    --sky-light: #e0f2fe;
    --sky-pale: #f0f9ff;

    --orange: #f97316;
    --orange-dark: #ea580c;
    --orange-light: #fff7ed;
    --orange-pale: #ffedd5;
 
    --text-dark: #1e293b;
    --text-mid: #475569;
    --text-light: #94a3b8;
    --white: #ffffff;
    --bg-light: #f8fafc;
    --border: #e2e8f0;

    --shadow-sm: 0 2px 12px rgba(14, 165, 233, 0.10);
    --shadow-md: 0 6px 30px rgba(14, 165, 233, 0.14);
    --shadow-lg: 0 16px 50px rgba(14, 165, 233, 0.18);
    --radius: 12px;
    --radius-lg: 20px;
    --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---- Base Reset ---- */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Nunito', sans-serif;
    color: var(--text-dark);
    background: var(--white);
    overflow-x: hidden;
    line-height: 1.7;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Playfair Display', Georgia, serif;
    color: var(--text-dark);
    line-height: 1.25;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

img {
    max-width: 100%;
    display: block;
}

/* ============================================================
   PRELOADER
   ============================================================ */
#preloader {
    position: fixed;
    inset: 0;
    background: var(--sky-deeper);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

#preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-ring {
    width: 80px;
    height: 80px;
    border: 4px solid rgba(255, 255, 255, 0.2);
    border-top-color: var(--orange);
    border-radius: 50%;
    animation: spin 0.9s linear infinite;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-mark {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 800;
    color: white;
    animation: pulse-logo 0.9s ease-in-out infinite alternate;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

@keyframes pulse-logo {
    to {
        transform: scale(1.15);
        opacity: 0.85;
    }
}


.preloader-logo {
    width: 90px;
    height: auto;
    display: block;
    animation: pulseLogo 1.4s ease-in-out infinite;
}

@keyframes pulseLogo {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.08);
        opacity: 0.85;
    }
}


/* ============================================================
   TOPBAR
   ============================================================ */
.topbar {
    background: var(--sky-deeper);
    font-size: 0.83rem;
    color: rgba(255, 255, 255, 0.9);
}

.topbar a {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.83rem;
}

.topbar a:hover {
    color: var(--orange);
}

.topbar-right a {
    font-size: 1rem;
}

/* ============================================================
   NAVBAR
   ============================================================ */
#mainNav {
    background: var(--white);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    padding: 0;
    transition: var(--transition);
    z-index: 999;
}

#mainNav.scrolled {
    box-shadow: 0 4px 30px rgba(14, 165, 233, 0.15);
}

/* Logo */
.nav-logo-icon {
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, var(--sky), var(--orange));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 800;
    color: white;
    flex-shrink: 0;
    box-shadow: 0 3px 12px rgba(14, 165, 233, 0.35);
}

.nav-logo-icon.sm {
    width: 36px;
    height: 36px;
    font-size: 1.2rem;
}

.nav-logo-text {
    line-height: 1;
}

.brand-main {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--sky-deeper);
    letter-spacing: 0.5px;
}

.brand-sub {
    display: block;
    font-size: 0.68rem;
    font-weight: 600;
    color: var(--orange);
    text-transform: uppercase;
    letter-spacing: 1.2px;
}

/* Image Logo Classes */
.logo-img {
    height: 95px;
    width: auto;
    object-fit: contain;
    transition: var(--transition);
}

.logo-img-footer {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.navbar {
    padding: 10px 0;
}

.nav-link {
    font-weight: 600;
    font-size: 0.88rem;
    color: var(--text-dark) !important;
    padding: 8px 12px !important;
    position: relative;
    border-radius: 6px;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 12px;
    right: 12px;
    height: 2px;
    background: var(--sky);
    transform: scaleX(0);
    border-radius: 2px;
    transition: transform 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    transform: scaleX(1);
}

.nav-link:hover,
.nav-link.active {
    color: var(--sky-dark) !important;
}

.btn-cta-nav {
    background: linear-gradient(135deg, var(--sky), var(--sky-dark));
    color: white !important;
    font-weight: 700;
    font-size: 0.84rem;
    padding: 8px 20px !important;
    border-radius: 50px;
    border: none;
    box-shadow: 0 4px 14px rgba(14, 165, 233, 0.3);
    transition: var(--transition);
}

.btn-cta-nav:hover {
    background: linear-gradient(135deg, var(--orange), var(--orange-dark));
    box-shadow: 0 4px 18px rgba(249, 115, 22, 0.35);
    transform: translateY(-1px);
    color: white !important;
}

/* Dropdown */
.dropdown-menu {
    border: none;
    box-shadow: var(--shadow-lg);
    border-radius: var(--radius);
    padding: 8px;
    min-width: 220px;
    border-top: 3px solid var(--sky);
}

.dropdown-item {
    border-radius: 8px;
    font-size: 0.87rem;
    font-weight: 600;
    padding: 8px 14px;
    color: var(--text-dark);
}

.dropdown-item:hover {
    background: var(--sky-pale);
    color: var(--sky-dark);
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero-section {
    position: relative;
    overflow: hidden;
}

.hero-slider {
    position: relative;
    min-height: 88vh;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    inset: 0;
    background: var(--bg);
    opacity: 0;
    transition: opacity 1.2s cubic-bezier(0.77, 0, 0.18, 1);
    z-index: 1;
    min-height: 88vh;
}

.hero-slide.active {
    opacity: 1;
    z-index: 2;
}

.hero-slide.exit {
    opacity: 0;
    z-index: 1;
}

.slide-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.18);
    z-index: 1;
}

/* Animated Particles */
.slide-particles {
    position: absolute;
    inset: 0;
    z-index: 2;
    overflow: hidden;
    pointer-events: none;
}

.particle {
    position: absolute;
    border-radius: 50%;
    animation: floatParticle linear infinite;
    opacity: 0.18;
}

@keyframes floatParticle {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }

    10% {
        opacity: 0.18;
    }

    90% {
        opacity: 0.12;
    }

    100% {
        transform: translateY(-100px) rotate(720deg);
        opacity: 0;
    }
}

.hero-content {
    position: relative;
    z-index: 3;
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.min-vh-slide {
    min-height: 88vh;
}

/* Slide Animations */
[data-slide-animate]>* {
    opacity: 0;
    transform: translateY(30px);
}

.hero-slide.active [data-slide-animate]>*:nth-child(1) {
    animation: slideUp 0.7s 0.2s forwards ease;
}

.hero-slide.active [data-slide-animate]>*:nth-child(2) {
    animation: slideUp 0.7s 0.4s forwards ease;
}

.hero-slide.active [data-slide-animate]>*:nth-child(3) {
    animation: slideUp 0.7s 0.6s forwards ease;
}

.hero-slide.active [data-slide-animate]>*:nth-child(4) {
    animation: slideUp 0.7s 0.8s forwards ease;
}

@keyframes slideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    font-size: 0.85rem;
    font-weight: 700;
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 1.2rem;
    letter-spacing: 0.5px;
}

.hero-title {
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    font-weight: 800;
    color: white;
    line-height: 1.15;
    margin-bottom: 1.2rem;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
}

.hero-title .highlight {
    color: var(--orange);
    position: relative;
}

.hero-title .highlight::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--orange);
    border-radius: 3px;
    opacity: 0.6;
}

.hero-desc {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.88);
    max-width: 560px;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.hero-btns {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.btn-hero-primary {
    background: var(--orange);
    color: white;
    font-weight: 700;
    padding: 13px 30px;
    border-radius: 50px;
    border: 2px solid transparent;
    font-size: 0.95rem;
    box-shadow: 0 6px 24px rgba(249, 115, 22, 0.45);
    transition: var(--transition);
}

.btn-hero-primary:hover {
    background: var(--orange-dark);
    transform: translateY(-2px);
    color: white;
    box-shadow: 0 10px 30px rgba(249, 115, 22, 0.5);
}

.btn-hero-outline {
    background: transparent;
    color: white;
    font-weight: 700;
    padding: 11px 28px;
    border-radius: 50px;
    border: 2px solid rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    transition: var(--transition);
    backdrop-filter: blur(6px);
}

.btn-hero-outline:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: white;
    color: white;
    transform: translateY(-2px);
}

/* Hero Graphic */
.hero-graphic-wrap {
    position: relative;
    width: 360px;
    height: 360px;
    animation: floatBlock 4s ease-in-out infinite;
}

@keyframes floatBlock {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-16px);
    }
}

.hero-orb {
    position: absolute;
    border-radius: 50%;
    animation: orbPulse 3s ease-in-out infinite;
}

.hero-orb.orb1 {
    width: 260px;
    height: 260px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.15), rgba(14, 165, 233, 0.2));
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.hero-orb.orb2 {
    width: 360px;
    height: 360px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.05), transparent);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    animation-delay: 0.5s;
}

.hero-orb.orange.orb1 {
    background: radial-gradient(circle, rgba(255, 165, 0, 0.2), rgba(249, 115, 22, 0.1));
}

.hero-orb.dark.orb1 {
    background: radial-gradient(circle, rgba(14, 165, 233, 0.25), rgba(2, 132, 199, 0.15));
}

@keyframes orbPulse {

    0%,
    100% {
        transform: translate(-50%, -50%) scale(1);
    }

    50% {
        transform: translate(-50%, -50%) scale(1.05);
    }
}

.hero-circle-stat {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    animation: statFloat 3s ease-in-out infinite;
}

.hero-circle-stat.s1 {
    width: 105px;
    height: 105px;
    top: 10px;
    right: 10px;
    animation-delay: 0s;
}

.hero-circle-stat.s2 {
    width: 90px;
    height: 90px;
    bottom: 60px;
    right: 0;
    animation-delay: 0.8s;
}

.hero-circle-stat.s3 {
    width: 85px;
    height: 85px;
    bottom: 20px;
    left: 40px;
    animation-delay: 1.6s;
}

@keyframes statFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

.hero-circle-stat .num {
    font-family: 'Playfair Display', serif;
    font-weight: 800;
    font-size: 1.35rem;
    color: var(--sky-deeper);
    line-height: 1;
}

.hero-circle-stat .lbl {
    font-size: 0.68rem;
    font-weight: 700;
    color: var(--text-mid);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Slider Controls */
.slider-controls {
    position: absolute;
    bottom: 36px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 16px;
}

.slider-btn {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    color: white;
    font-size: 1.1rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-btn:hover {
    background: var(--orange);
    border-color: var(--orange);
    transform: scale(1.1);
}

.slider-dots {
    display: flex;
    gap: 8px;
    align-items: center;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.45);
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background: var(--orange);
    width: 28px;
    border-radius: 10px;
}

/* Progress Bar */
.slide-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: rgba(255, 255, 255, 0.15);
    z-index: 10;
}

.slide-progress-bar {
    height: 100%;
    background: var(--orange);
    width: 0;
    transition: width linear;
}

/* ============================================================
   CLIENTS TICKER
   ============================================================ */
.clients-bar {
    background: var(--sky-deeper);
    padding: 12px 0;
    overflow: hidden;
}

.ticker-wrap {
    overflow: hidden;
    white-space: nowrap;
}

.ticker-track {
    display: inline-flex;
    align-items: center;
    gap: 20px;
    animation: ticker 28s linear infinite;
    white-space: nowrap;
}

.ticker-track span {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.ticker-track i {
    color: var(--orange);
    font-size: 0.6rem;
}

@keyframes ticker {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* ============================================================
   SECTION UTILITIES
   ============================================================ */
.section-pad {
    padding: 80px 0;
}

.bg-light-vdm {
    background: var(--bg-light);
}

.section-label {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--sky-dark);
    background: var(--sky-light);
    padding: 5px 16px;
    border-radius: 50px;
    margin-bottom: 14px;
    border-left: 3px solid var(--orange);
}

.section-label.light {
    background: rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.9);
}

.section-title {
    font-size: clamp(1.7rem, 3vw, 2.4rem);
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 14px;
}

.section-title.light {
    color: white;
}

.section-subtitle {
    font-size: 1rem;
    color: var(--text-mid);
    max-width: 580px;
    margin: 0 auto;
}

.section-body {
    color: var(--text-mid);
    font-size: 0.97rem;
    margin-bottom: 14px;
}

/* Breadcrumb */
.vdm-breadcrumb {
    background: var(--sky-pale);
    padding: 10px 20px;
    border-radius: var(--radius);
    border-left: 3px solid var(--sky);
}

.vdm-breadcrumb .breadcrumb-item a {
    color: var(--sky-dark);
    font-weight: 600;
}

.vdm-breadcrumb .breadcrumb-item.active {
    color: var(--orange);
    font-weight: 600;
}

.vdm-breadcrumb .breadcrumb-item+.breadcrumb-item::before {
    color: var(--text-light);
}

/* Primary Button */
.btn-primary-vdm {
    background: linear-gradient(135deg, var(--sky), var(--sky-dark));
    color: white;
    font-weight: 700;
    padding: 12px 28px;
    border-radius: 50px;
    border: none;
    font-size: 0.92rem;
    box-shadow: 0 4px 18px rgba(14, 165, 233, 0.3);
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
}

.btn-primary-vdm:hover {
    background: linear-gradient(135deg, var(--orange), var(--orange-dark));
    box-shadow: 0 6px 22px rgba(249, 115, 22, 0.35);
    transform: translateY(-2px);
    color: white;
}

/* ============================================================
   ABOUT SECTION
   ============================================================ */
.about-img-wrap {
    position: relative;
    padding-right: 40px;
    padding-bottom: 60px;
}

.about-img-main {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-img-placeholder {
    background: linear-gradient(135deg, var(--sky-deeper), var(--sky));
    height: 320px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    gap: 14px;
}

.about-img-placeholder i {
    font-size: 4rem;
    opacity: 0.8;
}

.about-img-placeholder span {
    font-size: 1.1rem;
    font-weight: 700;
    opacity: 0.9;
}

.about-img-placeholder.small {
    height: 140px;
}

.about-img-placeholder.small i {
    font-size: 2.2rem;
}

.about-img-placeholder.small span {
    font-size: 0.85rem;
}

.about-exp-badge {
    position: absolute;
    bottom: 30px;
    right: 0;
    background: linear-gradient(135deg, var(--orange), var(--orange-dark));
    color: white;
    padding: 20px 24px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: 0 8px 30px rgba(249, 115, 22, 0.4);
    animation: floatBlock 4s ease-in-out infinite;
}

.exp-num {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1;
}

.exp-txt {
    font-size: 0.78rem;
    font-weight: 700;
    opacity: 0.9;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.about-img-secondary {
    position: absolute;
    bottom: 0;
    left: 20px;
    width: 180px;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 3px solid white;
}

.about-img-secondary .about-img-placeholder {
    background: linear-gradient(135deg, var(--orange), var(--sky-dark));
}

.about-img-main img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    display: block;
    transition: var(--transition);
}

.about-img-main:hover img {
    transform: scale(1.04);
}

.about-img-secondary img {
    width: 100%;
    height: 140px;
    object-fit: cover;
    display: block;
    transition: var(--transition);
}

.about-img-secondary:hover img {
    transform: scale(1.06);
}

.about-features .feat-item {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    background: var(--sky-pale);
    border-radius: 8px;
    border-left: 3px solid var(--sky);
}

.about-features .feat-item i {
    color: var(--sky-dark);
    font-size: 0.95rem;
    flex-shrink: 0;
}

/* ============================================================
   SERVICES SECTION
   ============================================================ */
.service-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    border: 1.5px solid var(--border);
    transition: var(--transition);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--sky), var(--orange));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.service-card:hover {
    border-color: var(--sky-light);
    box-shadow: var(--shadow-lg);
    transform: translateY(-6px);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.svc-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--sky-light), var(--sky-pale));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.7rem;
    color: var(--sky-dark);
    margin-bottom: 18px;
    transition: var(--transition);
}

.service-card:hover .svc-icon {
    background: linear-gradient(135deg, var(--sky), var(--sky-dark));
    color: white;
    transform: rotate(-5deg) scale(1.08);
}

.service-card h4 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.service-card p {
    font-size: 0.9rem;
    color: var(--text-mid);
    margin-bottom: 18px;
    line-height: 1.7;
}

.svc-link {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--sky-dark);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.svc-link:hover {
    color: var(--orange);
    gap: 10px;
}

/* ============================================================
   PROCESS SECTION
   ============================================================ */
.process-section {
    background: linear-gradient(135deg, var(--sky-pale), var(--white), var(--orange-pale));
}

.process-step {
    text-align: center;
    padding: 36px 24px;
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
    border: 1.5px solid var(--border);
}

.process-step:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-6px);
    border-color: var(--sky-light);
}

.step-num {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--sky-light);
    line-height: 1;
    margin-bottom: -10px;
}

.step-icon {
    font-size: 2.2rem;
    color: var(--sky-dark);
    margin-bottom: 14px;
    transition: var(--transition);
}

.process-step:hover .step-icon {
    color: var(--orange);
    transform: scale(1.15);
}

.process-step h5 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.process-step p {
    font-size: 0.88rem;
    color: var(--text-mid);
}

/* ============================================================
   ACHIEVEMENTS
   ============================================================ */
.achievements-section {
    position: relative;
    padding: 80px 0;
    overflow: hidden;
}

.achievements-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--sky-deeper) 0%, var(--sky-dark) 50%, var(--orange-dark) 100%);
    z-index: 0;
}

.achievements-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.achievements-section .container {
    position: relative;
    z-index: 1;
}

.stat-card {
    padding: 32px 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-lg);
    color: white;
    transition: var(--transition);
}

.stat-card:hover {
    background: rgba(255, 255, 255, 0.18);
    transform: translateY(-6px);
}

.stat-icon {
    font-size: 2.2rem;
    color: var(--orange);
    margin-bottom: 12px;
}

.stat-num {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 800;
    color: white;
    display: inline;
    line-height: 1;
}

.stat-plus {
    font-size: 2rem;
    font-weight: 800;
    color: var(--orange);
}

.stat-label {
    font-size: 0.88rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 6px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.award-card {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 22px 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius);
    color: white;
    transition: var(--transition);
}

.award-card:hover {
    background: rgba(255, 255, 255, 0.18);
    transform: translateX(6px);
}

.award-ico {
    font-size: 2rem;
    color: var(--orange);
    flex-shrink: 0;
}

.award-card h6 {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 4px;
    color: white;
}

.award-card p {
    font-size: 0.84rem;
    color: rgba(255, 255, 255, 0.75);
    margin: 0;
    line-height: 1.6;
}

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
    padding: 60px 0;
    background: white;
}

.cta-inner {
    background: linear-gradient(135deg, var(--sky-deeper), var(--sky-dark) 50%, var(--orange-dark));
    border-radius: var(--radius-lg);
    padding: 50px 50px;
    position: relative;
    overflow: hidden;
}

.cta-inner::after {
    content: '';
    position: absolute;
    right: -60px;
    top: -60px;
    width: 280px;
    height: 280px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 50%;
}

.cta-tag {
    display: inline-block;
    background: var(--orange);
    color: white;
    font-size: 0.72rem;
    font-weight: 800;
    padding: 4px 14px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.cta-heading {
    font-size: clamp(1.5rem, 2.5vw, 2.1rem);
    font-weight: 800;
    color: white;
    margin-bottom: 10px;
}

.cta-sub {
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.97rem;
}

.btn-cta-main {
    background: var(--orange);
    color: white;
    font-weight: 700;
    padding: 14px 30px;
    border-radius: 50px;
    border: none;
    font-size: 0.97rem;
    box-shadow: 0 6px 24px rgba(249, 115, 22, 0.45);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.btn-cta-main:hover {
    background: white;
    color: var(--orange-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(249, 115, 22, 0.3);
}

.btn-cta-call {
    background: rgba(255, 255, 255, 0.12);
    color: white;
    font-weight: 700;
    padding: 10px 24px;
    border-radius: 50px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    font-size: 0.88rem;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition);
}

.btn-cta-call:hover {
    background: rgba(255, 255, 255, 0.25);
    color: white;
}

/* ============================================================
   GALLERY
   ============================================================ */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto;
    gap: 16px;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    cursor: pointer;
}

.gallery-item.gal-large {
    grid-column: span 2;
}

.gal-placeholder {
    height: 240px;
    background: linear-gradient(135deg, var(--sky-deeper), var(--sky));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    gap: 10px;
    transition: var(--transition);
}

.gal-placeholder.orange-bg {
    background: linear-gradient(135deg, var(--orange-dark), var(--orange));
}

.gal-placeholder.dark-bg {
    background: linear-gradient(135deg, #1e293b, var(--sky-deeper));
}

.gal-placeholder.blue-bg {
    background: linear-gradient(135deg, var(--sky-dark), #7dd3fc);
}

.gallery-item.gal-large .gal-placeholder {
    height: 320px;
}

.gal-placeholder i {
    font-size: 3rem;
    opacity: 0.7;
}

.gal-placeholder span {
    font-size: 0.9rem;
    font-weight: 600;
    opacity: 0.8;
}

.gal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(2, 100, 149, 0.85);
    display: flex;
    align-items: flex-end;
    padding: 18px;
    opacity: 0;
    transition: var(--transition);
}

.gal-overlay span {
    color: white;
    font-weight: 700;
    font-size: 0.92rem;
}

.gallery-item:hover .gal-overlay {
    opacity: 1;
}

.gallery-item:hover .gal-placeholder {
    transform: scale(1.04);
}

.gal-img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    display: block;
    transition: var(--transition);
}

.gallery-item.gal-large .gal-img {
    height: 320px;
}

.gallery-item:hover .gal-img {
    transform: scale(1.06);
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-section {
    background: linear-gradient(180deg, var(--white), var(--sky-pale));
}

.testi-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    border: 1.5px solid var(--border);
    position: relative;
    height: 100%;
    transition: var(--transition);
}

.testi-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-6px);
    border-color: var(--sky-light);
}

.testi-card.featured {
    background: linear-gradient(135deg, var(--sky-deeper), var(--sky-dark));
    border-color: transparent;
}

.testi-card.featured .testi-text {
    color: rgba(255, 255, 255, 0.9);
}

.testi-card.featured .testi-quote i {
    color: rgba(255, 255, 255, 0.3);
}

.testi-card.featured .testi-stars {
    color: var(--orange);
}

.testi-card.featured strong {
    color: white;
}

.testi-card.featured span {
    color: rgba(255, 255, 255, 0.7);
}

.testi-card.featured .author-avatar {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.testi-quote i {
    font-size: 2.8rem;
    color: var(--sky-light);
    line-height: 1;
    margin-bottom: 12px;
    display: block;
}

.testi-text {
    font-size: 0.92rem;
    color: var(--text-mid);
    line-height: 1.8;
    margin-bottom: 14px;
    font-style: italic;
}

.testi-stars {
    color: var(--orange);
    font-size: 1rem;
    margin-bottom: 18px;
    letter-spacing: 2px;
}

.testi-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--sky), var(--orange));
    color: white;
    font-weight: 800;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.testi-author strong {
    display: block;
    font-size: 0.92rem;
    color: var(--text-dark);
}

.testi-author span {
    font-size: 0.8rem;
    color: var(--text-mid);
}

/* ============================================================
   FAQ
   ============================================================ */
.vdm-accordion .accordion-item {
    border: 1.5px solid var(--border);
    border-radius: var(--radius) !important;
    margin-bottom: 10px;
    overflow: hidden;
}

.vdm-accordion .accordion-button {
    font-weight: 700;
    font-size: 0.93rem;
    color: var(--text-dark);
    background: white;
    padding: 18px 20px;
    border: none;
    box-shadow: none !important;
}

.vdm-accordion .accordion-button:not(.collapsed) {
    background: var(--sky-pale);
    color: var(--sky-deeper);
    border-bottom: 1px solid var(--border);
}

.vdm-accordion .accordion-button::after {
    filter: none;
}

.vdm-accordion .accordion-button:not(.collapsed)::after {
    filter: hue-rotate(190deg) brightness(0.6);
}

.vdm-accordion .accordion-body {
    font-size: 0.9rem;
    color: var(--text-mid);
    line-height: 1.8;
    padding: 16px 20px;
    background: white;
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact-info-wrap {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-info-card {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 18px 20px;
    background: var(--sky-pale);
    border-radius: var(--radius);
    border-left: 4px solid var(--sky);
    transition: var(--transition);
}

.contact-info-card:hover {
    border-left-color: var(--orange);
    background: var(--orange-pale);
}

.ci-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--sky), var(--sky-dark));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.contact-info-card:hover .ci-icon {
    background: linear-gradient(135deg, var(--orange), var(--orange-dark));
}

.contact-info-card h6 {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.contact-info-card p {
    font-size: 0.88rem;
    color: var(--text-mid);
    margin: 0;
    line-height: 1.6;
}

.contact-info-card a {
    color: var(--sky-dark);
    font-weight: 600;
}

.contact-info-card a:hover {
    color: var(--orange);
}

.contact-social {
    padding: 18px 20px;
    background: var(--sky-pale);
    border-radius: var(--radius);
}

.contact-social h6 {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.social-links {
    display: flex;
    gap: 10px;
}

.social-links a {
    width: 38px;
    height: 38px;
    background: white;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--sky-dark);
    font-size: 1rem;
    border: 1.5px solid var(--border);
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--sky);
    color: white;
    border-color: var(--sky);
    transform: translateY(-3px);
}

.contact-form-wrap {
    background: white;
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-md);
    border: 1.5px solid var(--border);
}

.form-heading {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 24px;
    padding-bottom: 14px;
    border-bottom: 2px solid var(--sky-light);
}

.form-label {
    font-size: 0.84rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 6px;
}

.vdm-input {
    border: 1.5px solid var(--border);
    border-radius: 10px;
    padding: 11px 16px;
    font-size: 0.92rem;
    color: var(--text-dark);
    transition: var(--transition);
    background: var(--bg-light);
}

.vdm-input:focus {
    border-color: var(--sky);
    box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.12);
    background: white;
    outline: none;
}

.btn-submit {
    padding: 14px;
    font-size: 1rem;
    font-weight: 700;
    justify-content: center;
}

/* MAP */
.map-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--sky-deeper);
    margin-bottom: 16px;
}

.map-wrap {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 2px solid var(--border);
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
    background: #0c1a2e;
    color: rgba(255, 255, 255, 0.75);
}

.footer-top {
    padding: 60px 0 40px;
}

.footer-about-text {
    font-size: 0.88rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.65);
}

.footer-social {
    display: flex;
    gap: 10px;
}

.footer-social a {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--orange);
    color: white;
    transform: translateY(-3px);
}

.footer-heading {
    font-size: 0.95rem;
    font-weight: 700;
    color: white;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--orange);
    display: inline-block;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.87rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition);
}

.footer-links a i {
    color: var(--orange);
    font-size: 0.7rem;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--sky);
    gap: 10px;
}

.footer-links a:hover i {
    color: var(--sky);
}

.footer-contact-info p {
    font-size: 0.86rem;
    color: rgba(255, 255, 255, 0.65);
    display: flex;
    gap: 10px;
    align-items: flex-start;
    margin-bottom: 10px;
}

.footer-contact-info i {
    color: var(--orange);
    flex-shrink: 0;
    margin-top: 2px;
}

.footer-contact-info a {
    color: rgba(255, 255, 255, 0.75);
}

.footer-contact-info a:hover {
    color: var(--sky);
}

.footer-input {
    background: rgba(255, 255, 255, 0.07);
    border: 1.5px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    color: white;
    font-size: 0.88rem;
    padding: 10px 14px;
}

.footer-input:focus {
    background: rgba(255, 255, 255, 0.12);
    border-color: var(--sky);
    color: white;
    box-shadow: none;
    outline: none;
}

.footer-input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.btn-footer-submit {
    background: linear-gradient(135deg, var(--sky), var(--sky-dark));
    color: white;
    font-weight: 700;
    font-size: 0.88rem;
    padding: 10px;
    border-radius: 8px;
    border: none;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-footer-submit:hover {
    background: linear-gradient(135deg, var(--orange), var(--orange-dark));
    color: white;
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.3);
    padding: 18px 0;
    font-size: 0.84rem;
    color: rgba(255, 255, 255, 0.5);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.55);
}

.footer-bottom a:hover {
    color: var(--sky);
}

/* ============================================================
   FLOATING ELEMENTS
   ============================================================ */
.whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 900;
    background: #25d366;
    color: white;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.4);
    transition: var(--transition);
}

.whatsapp-float:hover {
    transform: scale(1.12) translateY(-3px);
    color: white;
}

.wa-pulse {
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    background: rgba(37, 211, 102, 0.3);
    animation: waPulse 2s ease-out infinite;
}

@keyframes waPulse {
    0% {
        transform: scale(0.9);
        opacity: 0.8;
    }

    100% {
        transform: scale(1.6);
        opacity: 0;
    }
}

.back-to-top {
    position: fixed;
    bottom: 96px;
    right: 28px;
    z-index: 900;
    background: var(--sky-dark);
    color: white;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: none;
    font-size: 1rem;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
}

.back-to-top.visible {
    opacity: 1;
    pointer-events: all;
}

.back-to-top:hover {
    background: var(--orange);
    transform: translateY(-3px);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 991px) {
    .section-pad {
        padding: 60px 0;
    }

    .about-img-wrap {
        padding-right: 20px;
        padding-bottom: 80px;
    }

    .cta-inner {
        padding: 40px 30px;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-item.gal-large {
        grid-column: span 2;
    }
}

@media (max-width: 767px) {
    .section-pad {
        padding: 50px 0;
    }

    .hero-slider {
        min-height: 75vh;
    }

    .hero-slide {
        min-height: 75vh;
    }

    .min-vh-slide {
        min-height: 75vh;
    }

    .hero-title {
        font-size: 2rem;
    }

    .about-img-wrap {
        padding-right: 0;
        padding-bottom: 0;
    }

    .about-img-secondary,
    .about-exp-badge {
        display: none;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-item.gal-large {
        grid-column: span 1;
    }

    .contact-form-wrap {
        padding: 24px 20px;
    }

    .cta-inner {
        padding: 30px 20px;
    }

    .hero-btns {
        flex-direction: column;
        gap: 10px;
    }

    .hero-btns .btn {
        text-align: center;
    }
}

@media (max-width: 575px) {
    .footer-top {
        padding: 40px 0 30px;
    }

    .navbar-brand .nav-logo-text {
        display: none;
    }
}