/* ============================================
   DREAM LIGHT - Modern CSS Animations
   Indian Tricolor Theme
   ============================================ */

/* === CSS Variables === */
:root {
    --saffron: #FF9933;
    --saffron-dark: #e68a2e;
    --saffron-light: #ffb366;
    --saffron-glow: rgba(255, 153, 51, 0.4);
    --green: #138808;
    --green-dark: #0f6b06;
    --green-light: #1aad0a;
    --green-glow: rgba(19, 136, 8, 0.4);
    --navy: #000080;
    --navy-dark: #000066;
    --navy-light: #0000aa;
    --navy-glow: rgba(0, 0, 128, 0.4);
    --white: #ffffff;
    --off-white: #f8f9fa;
    --light-gray: #e9ecef;
    --gray: #6c757d;
    --dark-gray: #343a40;
    --text-dark: #212529;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s ease;
    --border-radius: 12px;
}

/* === Global Styles === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    max-width: 100vw;
}

html {
    overflow-x: hidden;
}

a {
    text-decoration: none;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
}

/* === Typography === */
h1, h2, h3, h4, h5, h6 {
    font-family: 'DM Serif Display', serif;
    font-weight: 400;
    line-height: 1.3;
}

.section-padding {
    padding: 100px 0;
}

/* === Preloader === */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--white);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease;
}

#preloader.loaded {
    opacity: 0;
    pointer-events: none;
}

.loader {
    width: 60px;
    height: 60px;
    border: 4px solid var(--light-gray);
    border-top-color: var(--saffron);
    border-right-color: var(--green);
    border-bottom-color: var(--navy);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* === Navbar === */
.navbar {
    padding: 15px 0;
    transition: var(--transition);
    z-index: 1000;
    background: transparent;
}

.navbar.scrolled {
    background: var(--white) !important;
    box-shadow: var(--shadow);
    padding: 10px 0;
}

.navbar-brand {
    font-family: 'DM Serif Display', serif;
    font-size: 1.8rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.navbar-brand .brand-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--saffron), var(--green));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.4rem;
    font-weight: 700;
}

.nav-link {
    font-weight: 500;
    font-size: 0.95rem;
    padding: 8px 18px !important;
    border-radius: 6px;
    transition: var(--transition);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--saffron);
    transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 60%;
}

.navbar-toggler {
    padding: 6px 10px;
}

/* Home page: frosted glass navbar + dark text */
body.page-home .navbar {
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

body.page-home .navbar-brand {
    color: var(--navy) !important;
}

body.page-home .nav-link {
    color: var(--navy) !important;
}

body.page-home .nav-link:hover,
body.page-home .nav-link.active {
    color: var(--saffron) !important;
}

body.page-home .navbar-toggler {
    border-color: var(--navy);
}

body.page-home .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23000080' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

body.page-home .btn-brochure {
    background: var(--saffron);
    color: var(--white) !important;
    border-color: var(--saffron);
}

body.page-home .btn-brochure:hover {
    background: var(--saffron-dark);
    border-color: var(--saffron-dark);
}

/* Other pages: white text on dark page-banner bg */
body.page-inner .navbar-brand {
    color: var(--white) !important;
}

body.page-inner .nav-link {
    color: var(--white) !important;
}

body.page-inner .nav-link:hover,
body.page-inner .nav-link.active {
    color: var(--saffron) !important;
}

body.page-inner .navbar-toggler {
    border-color: var(--white);
}

body.page-inner .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='white' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

body.page-inner .btn-brochure {
    background: var(--saffron);
    color: var(--white) !important;
    border-color: var(--saffron);
}

body.page-inner .btn-brochure:hover {
    background: var(--saffron-dark);
    border-color: var(--saffron-dark);
}

/* Scrolled state: overrides for all pages */
.navbar.scrolled .navbar-brand {
    color: var(--navy) !important;
}

.navbar.scrolled .nav-link {
    color: var(--dark-gray) !important;
}

.navbar.scrolled .nav-link:hover,
.navbar.scrolled .nav-link.active {
    color: var(--saffron) !important;
}

.navbar.scrolled .navbar-toggler {
    border-color: var(--navy);
}

.navbar.scrolled .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23000080' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar.scrolled .btn-brochure {
    background: var(--saffron);
    color: var(--white) !important;
    border-color: var(--saffron);
}

.navbar.scrolled .btn-brochure:hover {
    background: var(--saffron-dark);
    border-color: var(--saffron-dark);
}

.btn-brochure {
    background: var(--saffron);
    color: var(--white) !important;
    padding: 8px 20px !important;
    border-radius: 25px !important;
    font-weight: 600;
    border: 2px solid var(--saffron);
}

.btn-brochure:hover {
    background: transparent;
    color: var(--saffron) !important;
    border-color: var(--saffron);
}

.navbar.scrolled .btn-brochure {
    background: var(--saffron);
    color: var(--white) !important;
    border-color: var(--saffron);
}

.navbar.scrolled .btn-brochure:hover {
    background: var(--saffron-dark);
    border-color: var(--saffron-dark);
}

/* ============================================
   NEW HOME PAGE STYLES
   ============================================ */

/* === Hero Section New === */
.hero-section-new {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(160deg, #FF9933 0%, #ffffff 40%, #138808 100%);
    overflow: hidden;
    padding-top: 80px;
}

.hero-section-new::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 20%, rgba(255, 153, 51, 0.3) 0%, transparent 40%),
        radial-gradient(circle at 80% 80%, rgba(19, 136, 8, 0.2) 0%, transparent 40%),
        radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.4) 0%, transparent 60%);
    z-index: 1;
}

/* Particles Container */
.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.particle {
    position: absolute;
    border-radius: 50%;
    animation: floatParticle 15s infinite ease-in-out;
    opacity: 0.6;
}

@keyframes floatParticle {
    0%, 100% {
        transform: translateY(0) translateX(0) rotate(0deg);
        opacity: 0.6;
    }
    25% {
        transform: translateY(-30px) translateX(20px) rotate(90deg);
        opacity: 0.8;
    }
    50% {
        transform: translateY(-15px) translateX(-15px) rotate(180deg);
        opacity: 0.6;
    }
    75% {
        transform: translateY(-40px) translateX(10px) rotate(270deg);
        opacity: 0.8;
    }
}

/* Floating Shapes */
.floating-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.06;
    animation: floatShape 20s infinite ease-in-out;
}

.shape-saffron {
    width: 300px;
    height: 300px;
    background: var(--saffron);
    top: 10%;
    right: -100px;
    animation-delay: 0s;
}

.shape-green {
    width: 250px;
    height: 250px;
    background: var(--green);
    bottom: 20%;
    left: -80px;
    animation-delay: -5s;
}

.shape-navy {
    width: 200px;
    height: 200px;
    background: var(--white);
    top: 60%;
    right: 20%;
    animation-delay: -10s;
}

.shape-saffron-2 {
    width: 150px;
    height: 150px;
    background: var(--saffron);
    bottom: 10%;
    right: 30%;
    animation-delay: -3s;
}

.shape-green-2 {
    width: 180px;
    height: 180px;
    background: var(--green);
    top: 30%;
    left: 10%;
    animation-delay: -8s;
}

@keyframes floatShape {
    0%, 100% {
        transform: translateY(0) rotate(0deg) scale(1);
    }
    33% {
        transform: translateY(-30px) rotate(120deg) scale(1.1);
    }
    66% {
        transform: translateY(20px) rotate(240deg) scale(0.9);
    }
}

/* Ashoka Chakra */
.ashoka-chakra {
    position: absolute;
    top: 50%;
    right: 5%;
    transform: translateY(-50%);
    width: 300px;
    height: 300px;
    border: 3px solid rgba(0, 0, 128, 0.08);
    border-radius: 50%;
    animation: rotateChakra 30s linear infinite;
    z-index: 1;
    pointer-events: none;
}

.ashoka-chakra::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    border: 3px solid rgba(0, 0, 128, 0.1);
    border-radius: 50%;
}

.ashoka-chakra::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 24px;
    height: 24px;
    background: rgba(0, 0, 128, 0.12);
    border-radius: 50%;
}

@keyframes rotateChakra {
    from { transform: translateY(-50%) rotate(0deg); }
    to { transform: translateY(-50%) rotate(360deg); }
}

/* Hero Content */
.hero-content-new {
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(0, 0, 128, 0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 0, 128, 0.15);
    padding: 10px 20px;
    border-radius: 30px;
    color: var(--navy);
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 25px;
}

.badge-dot {
    width: 10px;
    height: 10px;
    background: var(--green);
    border-radius: 50%;
    animation: pulseDot 2s infinite;
}

@keyframes pulseDot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.2); }
}

.hero-title {
    color: var(--navy);
    font-size: 4rem;
    line-height: 1.15;
    margin-bottom: 25px;
}

.hero-title .line {
    display: block;
    opacity: 0;
    transform: translateY(30px);
    animation: slideUp 0.8s forwards;
}

.hero-title .line-1 {
    animation-delay: 0.2s;
}

.hero-title .line-2 {
    animation-delay: 0.4s;
}

.hero-title .line-3 {
    animation-delay: 0.6s;
}

@keyframes slideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.typed-text {
    color: var(--saffron);
    position: relative;
}

.typed-cursor {
    color: var(--navy);
    animation: blink 0.7s infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

.text-gradient {
    background: linear-gradient(135deg, var(--saffron), var(--green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease infinite;
    background-size: 200% 200%;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.hero-description {
    color: rgba(0, 0, 128, 0.75);
    font-size: 1.15rem;
    margin-bottom: 35px;
    max-width: 550px;
    line-height: 1.8;
}

/* Glow Buttons */
.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.btn-glow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    border: none;
    cursor: pointer;
}

.btn-glow span {
    position: relative;
    z-index: 1;
}

.btn-glow i {
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.btn-glow:hover i {
    transform: translateX(5px);
}

.btn-glow::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.btn-glow:hover::before {
    left: 100%;
}

.btn-saffron {
    background: linear-gradient(135deg, var(--saffron), var(--saffron-dark));
    color: var(--white);
    box-shadow: 0 4px 20px var(--saffron-glow);
}

.btn-saffron:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px var(--saffron-glow);
    color: var(--white);
}

.btn-green {
    background: linear-gradient(135deg, var(--green), var(--green-dark));
    color: var(--white);
    box-shadow: 0 4px 20px var(--green-glow);
}

.btn-green:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px var(--green-glow);
    color: var(--white);
}

.btn-navy {
    background: linear-gradient(135deg, var(--navy), var(--navy-dark));
    color: var(--white);
    box-shadow: 0 4px 20px var(--navy-glow);
}

.btn-navy:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px var(--navy-glow);
    color: var(--white);
}

.btn-outline-white {
    background: transparent;
    color: var(--navy);
    border: 2px solid rgba(0, 0, 128, 0.3);
}

.btn-outline-white:hover {
    background: var(--navy);
    color: var(--white);
    border-color: var(--navy);
    transform: translateY(-3px);
}

.btn-white {
    background: var(--white);
    color: var(--saffron);
    box-shadow: 0 4px 20px rgba(255, 255, 255, 0.3);
}

.btn-white:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255, 255, 255, 0.4);
    color: var(--saffron);
}

/* Trust Badges */
.trust-badges {
    display: flex;
    align-items: center;
    gap: 25px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(0, 0, 128, 0.7);
    font-size: 0.9rem;
}

.trust-item i {
    color: var(--saffron);
    font-size: 1.1rem;
}

.trust-divider {
    width: 1px;
    height: 30px;
    background: rgba(0, 0, 128, 0.2);
}

/* Hero Stats Grid */
.hero-stats-new {
    position: relative;
    z-index: 2;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.stat-card-new {
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 20px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.stat-card-new:hover {
    transform: translateY(-10px) scale(1.02);
    background: rgba(255, 255, 255, 0.7);
    border-color: rgba(255, 255, 255, 0.8);
}

.stat-card-new .stat-icon-new {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--white);
}

.stat-card-1 .stat-icon-new { background: linear-gradient(135deg, var(--saffron), var(--saffron-dark)); }
.stat-card-2 .stat-icon-new { background: linear-gradient(135deg, var(--green), var(--green-dark)); }
.stat-card-3 .stat-icon-new { background: linear-gradient(135deg, var(--navy), var(--navy-dark)); }
.stat-card-4 .stat-icon-new { background: linear-gradient(135deg, var(--saffron), var(--green)); }

.stat-card-new .stat-number {
    font-family: 'DM Serif Display', serif;
    font-size: 2.2rem;
    color: var(--navy);
    margin-bottom: 5px;
}

.stat-card-new .stat-label {
    color: rgba(0, 0, 128, 0.6);
    font-size: 0.85rem;
}

.stat-card-new .stat-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 153, 51, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.stat-card-new:hover .stat-glow {
    opacity: 1;
}

/* Wave Divider */
.wave-divider {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 120px;
    z-index: 2;
}

.wave-divider svg {
    width: 100%;
    height: 100%;
}

.wave {
    animation: waveMove 8s ease-in-out infinite;
}

.wave-saffron {
    animation-delay: 0s;
}

.wave-white {
    animation-delay: -2s;
}

.wave-green {
    animation-delay: -4s;
}

@keyframes waveMove {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(-20px); }
}

/* === Section Headers === */
.section-header-new {
    text-align: center;
    margin-bottom: 60px;
}

.section-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--saffron), var(--saffron-dark));
    color: var(--white);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.section-title-new {
    font-size: 3rem;
    color: var(--navy);
    margin-bottom: 15px;
}

.text-saffron { color: var(--saffron); }
.text-green { color: var(--green); }
.text-navy { color: var(--navy); }

.section-subtitle {
    color: var(--gray);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* === Services Section New === */
.services-section-new {
    background: var(--off-white);
    position: relative;
}

.service-card-new {
    background: var(--white);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
    height: 100%;
    transition: all 0.4s ease;
    transform-style: preserve-3d;
}

.service-card-new:hover {
    transform: translateY(-15px) rotateX(5deg);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.service-card-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--saffron), var(--green), var(--navy));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.service-card-new:hover .service-card-bg {
    transform: scaleX(1);
}

.service-card-content {
    position: relative;
    z-index: 1;
}

.service-icon-new {
    width: 90px;
    height: 90px;
    margin: 0 auto 25px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    color: var(--white);
    transition: all 0.4s ease;
}

.service-icon-new.saffron {
    background: linear-gradient(135deg, var(--saffron-light), var(--saffron));
    box-shadow: 0 10px 30px var(--saffron-glow);
}

.service-icon-new.green {
    background: linear-gradient(135deg, var(--green-light), var(--green));
    box-shadow: 0 10px 30px var(--green-glow);
}

.service-icon-new.navy {
    background: linear-gradient(135deg, var(--navy-light), var(--navy));
    box-shadow: 0 10px 30px var(--navy-glow);
}

.service-icon-new.gradient {
    background: linear-gradient(135deg, var(--saffron), var(--green));
    box-shadow: 0 10px 30px rgba(255, 153, 51, 0.3);
}

.service-icon-new.mixed {
    background: linear-gradient(135deg, var(--green), var(--navy));
    box-shadow: 0 10px 30px rgba(19, 136, 8, 0.3);
}

.service-card-new:hover .service-icon-new {
    transform: scale(1.1) rotate(5deg);
}

.service-card-new h4 {
    font-size: 1.3rem;
    color: var(--navy);
    margin-bottom: 15px;
}

.service-card-new p {
    color: var(--gray);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-link a {
    color: var(--saffron);
    font-weight: 600;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.service-link a:hover {
    color: var(--saffron-dark);
    gap: 12px;
}

.service-card-glow {
    position: absolute;
    bottom: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 153, 51, 0.05) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.service-card-new:hover .service-card-glow {
    opacity: 1;
}

/* === Tricolor Divider === */
.tricolor-divider {
    display: flex;
    height: 6px;
    overflow: hidden;
}

.divider-line {
    flex: 1;
    transition: flex 0.3s ease;
}

.divider-line.saffron { background: var(--saffron); }
.divider-line.white { background: var(--white); }
.divider-line.green { background: var(--green); }

.tricolor-divider:hover .divider-line.saffron { flex: 2; }
.tricolor-divider:hover .divider-line.green { flex: 2; }

/* === About Section New === */
.about-section-new {
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.about-image-new {
    position: relative;
    overflow: visible;
}

.about-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-image-wrapper img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.about-image-wrapper:hover img {
    transform: scale(1.05);
}

.about-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 153, 51, 0.2), rgba(19, 136, 8, 0.2));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.about-image-wrapper:hover .about-image-overlay {
    opacity: 1;
}

.experience-badge-new {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 140px;
    height: 140px;
    background: linear-gradient(135deg, var(--saffron), var(--saffron-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 40px var(--saffron-glow);
    animation: badgePulse 3s ease infinite;
}

@keyframes badgePulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.badge-content {
    text-align: center;
    color: var(--white);
}

.badge-number {
    display: block;
    font-family: 'DM Serif Display', serif;
    font-size: 2.5rem;
    line-height: 1;
}

.badge-text {
    font-size: 0.75rem;
    font-weight: 500;
}

.badge-ring {
    position: absolute;
    top: -10px;
    left: -10px;
    width: 160px;
    height: 160px;
    border: 3px dashed rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    animation: rotateRing 20s linear infinite;
}

@keyframes rotateRing {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.about-content-new .section-badge {
    margin-bottom: 10px;
}

.about-text {
    color: var(--gray);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 15px;
}

.about-features-new {
    margin-top: 30px;
}

.feature-item-new {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
    padding: 15px;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.feature-item-new:hover {
    background: var(--off-white);
    transform: translateX(10px);
}

.feature-icon-new {
    width: 50px;
    height: 50px;
    min-width: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.1rem;
}

.feature-icon-new.saffron {
    background: linear-gradient(135deg, var(--saffron), var(--saffron-dark));
}

.feature-icon-new.green {
    background: linear-gradient(135deg, var(--green), var(--green-dark));
}

.feature-icon-new.navy {
    background: linear-gradient(135deg, var(--navy), var(--navy-dark));
}

.feature-content h5 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 5px;
    font-size: 1rem;
}

.feature-content p {
    color: var(--gray);
    font-size: 0.9rem;
    margin: 0;
}

/* === Stats Section New === */
.stats-section-new {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.stats-bg-shapes .stats-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.05;
}

.stats-shape.shape-1 {
    width: 400px;
    height: 400px;
    background: var(--saffron);
    top: -200px;
    right: -100px;
    animation: floatShape 15s infinite ease-in-out;
}

.stats-shape.shape-2 {
    width: 300px;
    height: 300px;
    background: var(--green);
    bottom: -150px;
    left: -100px;
    animation: floatShape 18s infinite ease-in-out reverse;
}

.stats-shape.shape-3 {
    width: 200px;
    height: 200px;
    background: var(--white);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: floatShape 12s infinite ease-in-out;
}

.stat-item-new {
    text-align: center;
    padding: 30px 20px;
    position: relative;
    z-index: 1;
}

.stat-item-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: rgba(255, 153, 51, 0.15);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--saffron);
    transition: all 0.3s ease;
}

.stat-item-new:hover .stat-item-icon {
    transform: scale(1.1) rotate(5deg);
    background: var(--saffron);
    color: var(--white);
}

.stat-item-new h3 {
    font-size: 3rem;
    color: var(--white);
    margin-bottom: 5px;
    font-family: 'DM Serif Display', serif;
}

.stat-item-new p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
}

.stat-item-bar {
    width: 50px;
    height: 4px;
    margin: 15px auto 0;
    background: linear-gradient(90deg, var(--saffron), var(--green));
    border-radius: 2px;
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.stat-item-new:hover .stat-item-bar {
    transform: scaleX(1);
}

/* === Clients Marquee === */
.clients-section-new {
    background: var(--off-white);
    overflow: hidden;
}

.clients-marquee {
    overflow: hidden;
    padding: 40px 0;
    width: 100%;
}

.marquee-track {
    display: flex;
    animation: marquee 20s linear infinite;
    width: max-content;
}

.client-logo-new {
    flex: 0 0 200px;
    padding: 25px 30px;
    margin: 0 15px;
    background: var(--white);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.client-logo-new:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.client-logo-new img {
    max-height: 50px;
    width: auto;
    filter: grayscale(30%);
    transition: all 0.3s ease;
}

.client-logo-new:hover img {
    filter: grayscale(0);
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* === Why Choose Us Section New === */
.why-section-new {
    background: var(--white);
    position: relative;
}

.why-card-new {
    text-align: center;
    padding: 40px 25px;
    background: var(--off-white);
    border-radius: 20px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    height: 100%;
}

.why-card-new:hover {
    transform: translateY(-10px);
    background: var(--white);
    box-shadow: var(--shadow-lg);
}

.why-card-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--white);
    transition: all 0.4s ease;
}

.why-card-icon.saffron {
    background: linear-gradient(135deg, var(--saffron), var(--saffron-dark));
}

.why-card-icon.green {
    background: linear-gradient(135deg, var(--green), var(--green-dark));
}

.why-card-icon.navy {
    background: linear-gradient(135deg, var(--navy), var(--navy-dark));
}

.why-card-icon.gradient {
    background: linear-gradient(135deg, var(--saffron), var(--green));
}

.why-card-new:hover .why-card-icon {
    transform: scale(1.1) rotate(5deg);
}

.why-card-new h5 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 12px;
    font-size: 1.15rem;
}

.why-card-new p {
    color: var(--gray);
    font-size: 0.95rem;
    line-height: 1.7;
}

.why-card-number {
    position: absolute;
    top: 15px;
    right: 20px;
    font-family: 'DM Serif Display', serif;
    font-size: 3rem;
    color: rgba(0, 0, 128, 0.05);
    font-weight: 700;
}

/* === CTA Section New === */
.cta-section-new {
    background: linear-gradient(135deg, var(--saffron) 0%, var(--saffron-dark) 100%);
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-bg-shapes .cta-shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
}

.cta-shape.shape-1 {
    width: 300px;
    height: 300px;
    top: -100px;
    right: -50px;
    animation: floatShape 15s infinite ease-in-out;
}

.cta-shape.shape-2 {
    width: 200px;
    height: 200px;
    bottom: -80px;
    left: -50px;
    animation: floatShape 12s infinite ease-in-out reverse;
}

.cta-shape.shape-3 {
    width: 150px;
    height: 150px;
    top: 50%;
    left: 30%;
    animation: floatShape 18s infinite ease-in-out;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-size: 3rem;
    color: var(--white);
    margin-bottom: 20px;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.15rem;
    margin-bottom: 35px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* === Bottom CTA Section === */
.bottom-cta-section {
    background: var(--off-white);
    text-align: center;
}

.bottom-cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 30px;
    background: linear-gradient(135deg, var(--saffron), var(--green));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--white);
    animation: iconFloat 3s ease infinite;
}

@keyframes iconFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.bottom-cta-content h2 {
    font-size: 2.5rem;
    color: var(--navy);
    margin-bottom: 20px;
}

.bottom-cta-content p {
    color: var(--gray);
    font-size: 1.1rem;
    margin-bottom: 35px;
    line-height: 1.8;
}

/* ============================================
   SHARED STYLES (Other Pages)
   ============================================ */

/* === Page Banner === */
.page-banner {
    background: linear-gradient(135deg, rgba(0, 0, 128, 0.9), rgba(0, 0, 102, 0.85)),
                url('../images/hero-bg.jpg') center/cover no-repeat;
    padding: 140px 0 80px;
    text-align: center;
    position: relative;
}

.page-banner h1 {
    font-size: 3rem;
    color: var(--white);
    margin-bottom: 15px;
}

.breadcrumb {
    justify-content: center;
}

.breadcrumb-item a {
    color: var(--saffron);
}

.breadcrumb-item.active {
    color: rgba(255, 255, 255, 0.7);
}

.breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.5);
}

/* === About Page === */
.about-mission-vision .card {
    border: none;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    padding: 30px;
    height: 100%;
    transition: var(--transition);
}

.about-mission-vision .card:hover {
    transform: translateY(-5px);
}

.about-mission-vision .card .icon-box {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.about-mission-vision .card:nth-child(1) .icon-box {
    background: rgba(255, 153, 51, 0.12);
    color: var(--saffron);
}

.about-mission-vision .card:nth-child(2) .icon-box {
    background: rgba(19, 136, 8, 0.12);
    color: var(--green);
}

.about-mission-vision .card h4 {
    color: var(--navy);
    margin-bottom: 15px;
}

.about-mission-vision .card p {
    color: var(--gray);
}

/* === Timeline === */
.timeline {
    position: relative;
    padding: 20px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 100%;
    background: linear-gradient(180deg, var(--saffron), var(--green));
}

.timeline-item {
    position: relative;
    margin-bottom: 40px;
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-left: auto;
    margin-right: calc(50% + 30px);
    text-align: right;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-left: calc(50% + 30px);
}

.timeline-dot {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 20px;
    background: var(--saffron);
    border-radius: 50%;
    border: 4px solid var(--white);
    box-shadow: 0 0 0 3px var(--saffron);
    z-index: 1;
}

.timeline-content {
    background: var(--white);
    padding: 20px 25px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    max-width: 400px;
}

.timeline-content h5 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    color: var(--saffron);
    margin-bottom: 5px;
}

.timeline-content h4 {
    color: var(--navy);
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.timeline-content p {
    color: var(--gray);
    font-size: 0.95rem;
    margin: 0;
}

/* === Services Page === */
.service-detail-card {
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: var(--transition);
    height: 100%;
}

.service-detail-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.service-detail-card .card-header-custom {
    padding: 30px;
    text-align: center;
    position: relative;
}

.service-detail-card:nth-child(1) .card-header-custom {
    background: linear-gradient(135deg, var(--saffron), var(--saffron-dark));
}

.service-detail-card:nth-child(2) .card-header-custom {
    background: linear-gradient(135deg, var(--green), var(--green-dark));
}

.service-detail-card:nth-child(3) .card-header-custom {
    background: linear-gradient(135deg, var(--navy), var(--navy-dark));
}

.service-detail-card:nth-child(4) .card-header-custom {
    background: linear-gradient(135deg, var(--saffron), var(--green));
}

.service-detail-card:nth-child(5) .card-header-custom {
    background: linear-gradient(135deg, var(--green), var(--navy));
}

.service-detail-card .card-header-custom i {
    font-size: 3rem;
    color: var(--white);
    margin-bottom: 15px;
}

.service-detail-card .card-header-custom h3 {
    color: var(--white);
    font-size: 1.4rem;
    margin: 0;
}

.service-detail-card .card-body-custom {
    padding: 30px;
}

.service-detail-card .card-body-custom p {
    color: var(--gray);
    margin-bottom: 20px;
}

.service-detail-card .card-body-custom ul {
    list-style: none;
    padding: 0;
}

.service-detail-card .card-body-custom ul li {
    padding: 8px 0;
    color: var(--dark-gray);
    font-size: 0.95rem;
    border-bottom: 1px solid var(--light-gray);
}

.service-detail-card .card-body-custom ul li:last-child {
    border-bottom: none;
}

.service-detail-card .card-body-custom ul li i {
    color: var(--green);
    margin-right: 10px;
    font-size: 0.85rem;
}

/* === Portfolio Page === */
.portfolio-filter {
    margin-bottom: 30px;
}

.portfolio-filter .btn {
    padding: 10px 25px;
    border-radius: 25px;
    font-weight: 500;
    margin: 5px;
    border: 2px solid var(--light-gray);
    background: var(--white);
    color: var(--dark-gray);
    transition: var(--transition);
}

.portfolio-filter .btn.active,
.portfolio-filter .btn:hover {
    background: var(--saffron);
    color: var(--white);
    border-color: var(--saffron);
}

.portfolio-item {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    margin-bottom: 30px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    cursor: pointer;
}

.portfolio-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.portfolio-item img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: var(--transition);
}

.portfolio-item:hover img {
    transform: scale(1.05);
}

.portfolio-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 25px 20px;
    background: linear-gradient(transparent, rgba(0, 0, 128, 0.9));
    transform: translateY(100%);
    transition: var(--transition);
}

.portfolio-item:hover .portfolio-overlay {
    transform: translateY(0);
}

.portfolio-overlay h5 {
    color: var(--white);
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    margin-bottom: 5px;
}

.portfolio-overlay p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    margin: 0;
}

.portfolio-overlay .btn-view {
    color: var(--saffron);
    font-weight: 600;
    font-size: 0.9rem;
}

.portfolio-overlay .btn-view:hover {
    color: var(--white);
}

.portfolio-item.video-item .portfolio-overlay::before {
    content: '\f16a';
    font-family: 'Font Awesome 6 Brands';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -80%);
    width: 60px;
    height: 60px;
    background: var(--saffron);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    opacity: 0;
    transition: var(--transition);
}

.portfolio-item.video-item:hover .portfolio-overlay::before {
    opacity: 1;
}

/* === Contact Page === */
.contact-form-card {
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    padding: 40px;
}

.form-control {
    border: 2px solid var(--light-gray);
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 1rem;
    transition: var(--transition);
}

.form-control:focus {
    border-color: var(--saffron);
    box-shadow: 0 0 0 3px rgba(255, 153, 51, 0.15);
}

.form-label {
    font-weight: 500;
    color: var(--navy);
    margin-bottom: 8px;
}

.btn-submit {
    background: var(--saffron);
    color: var(--white);
    border: none;
    padding: 14px 40px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
}

.btn-submit:hover {
    background: var(--saffron-dark);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 153, 51, 0.3);
}

.contact-info-card {
    background: var(--navy);
    color: var(--white);
    border-radius: var(--border-radius);
    padding: 40px;
    height: 100%;
}

.contact-info-card h3 {
    color: var(--white);
    margin-bottom: 25px;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.contact-info-item i {
    width: 45px;
    min-width: 45px;
    height: 45px;
    background: rgba(255, 153, 51, 0.2);
    color: var(--saffron);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    font-size: 1.1rem;
}

.contact-info-item h5 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 3px;
    color: var(--white);
}

.contact-info-item p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    margin: 0;
}

.contact-info-item a {
    color: rgba(255, 255, 255, 0.7);
}

.contact-info-item a:hover {
    color: var(--saffron);
}

.contact-social {
    margin-top: 30px;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 8px;
    transition: var(--transition);
}

.contact-social a:hover {
    background: var(--saffron);
    color: var(--white);
}

.google-map {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    margin-top: 30px;
}

.google-map iframe {
    width: 100%;
    height: 350px;
    border: none;
}

/* === Brochure Page === */
.brochure-section {
    background: var(--off-white);
}

.brochure-card {
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    padding: 50px;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.brochure-card i {
    font-size: 4rem;
    color: var(--saffron);
    margin-bottom: 20px;
}

.brochure-card h3 {
    color: var(--navy);
    margin-bottom: 15px;
}

.brochure-card p {
    color: var(--gray);
    margin-bottom: 30px;
}

.btn-download {
    background: var(--green);
    color: var(--white);
    border: none;
    padding: 14px 40px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-download:hover {
    background: var(--green-dark);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(19, 136, 8, 0.3);
}

/* === Success/Error Messages === */
.alert-custom {
    border-radius: var(--border-radius);
    padding: 15px 20px;
    border: none;
    margin-bottom: 20px;
}

.alert-success-custom {
    background: rgba(19, 136, 8, 0.1);
    color: var(--green);
    border-left: 4px solid var(--green);
}

.alert-error-custom {
    background: rgba(220, 53, 69, 0.1);
    color: #dc3545;
    border-left: 4px solid #dc3545;
}

/* === Footer === */
.footer {
    background: var(--navy-dark);
    color: rgba(255, 255, 255, 0.8);
    padding: 60px 0 0;
}

.footer-brand {
    font-family: 'DM Serif Display', serif;
    font-size: 1.8rem;
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.footer-brand .brand-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--saffron), var(--green));
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
    font-weight: 700;
}

.footer h5 {
    color: var(--white);
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer h5::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--saffron);
    border-radius: 2px;
}

.footer p {
    font-size: 0.95rem;
    line-height: 1.7;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--saffron);
    padding-left: 5px;
}

.footer-links a i {
    margin-right: 8px;
    font-size: 0.8rem;
    color: var(--saffron);
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 12px;
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact li i {
    width: 35px;
    min-width: 35px;
    height: 35px;
    background: rgba(255, 153, 51, 0.15);
    color: var(--saffron);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    font-size: 0.9rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 8px;
    font-size: 1rem;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--saffron);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
    margin-top: 40px;
}

.footer-bottom p {
    margin: 0;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
}

.footer-bottom a {
    color: var(--saffron);
}

/* === WhatsApp Float === */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    z-index: 999;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    transition: var(--transition);
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    color: var(--white);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.5);
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* === Back to Top === */
.back-to-top {
    position: fixed;
    bottom: 25px;
    right: 100px;
    width: 45px;
    height: 45px;
    background: var(--navy);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--saffron);
    color: var(--white);
    transform: translateY(-3px);
}

/* === Responsive === */

/* === TABLETS & SMALL LAPTOPS (max 1199px) === */
@media (max-width: 1199.98px) {
    .hero-title {
        font-size: 3.2rem;
    }

    .service-card-new {
        padding: 35px 25px;
    }

    .why-card-new {
        padding: 35px 20px;
    }

    .experience-badge-new {
        width: 120px;
        height: 120px;
        bottom: -20px;
        right: 10px;
    }

    .badge-number {
        font-size: 2rem;
    }

    .badge-ring {
        width: 140px;
        height: 140px;
    }
}

/* === TABLETS (max 991px) === */
@media (max-width: 991.98px) {
    .hero-title {
        font-size: 2.8rem;
    }

    .hero-section-new {
        min-height: auto;
        padding: 100px 0 160px;
    }

    /* Navbar mobile dropdown - dark text always on white dropdown bg */
    .navbar-collapse {
        background: var(--white);
        padding: 20px;
        border-radius: var(--border-radius);
        box-shadow: var(--shadow);
        margin-top: 15px;
        border: 1px solid var(--light-gray);
    }

    .navbar-collapse.show .nav-link,
    .navbar-collapse .nav-link {
        color: var(--dark-gray) !important;
        padding: 10px 15px !important;
        display: block;
    }

    .navbar-collapse .nav-link:hover,
    .navbar-collapse .nav-link.active {
        color: var(--saffron) !important;
        background: rgba(255, 153, 51, 0.05);
        border-radius: 8px;
    }

    .navbar-collapse .btn-brochure {
        background: var(--saffron);
        color: var(--white) !important;
        width: 100%;
        text-align: center;
        margin-top: 10px;
        padding: 10px 20px !important;
    }

    .ashoka-chakra {
        width: 200px;
        height: 200px;
        right: -100px;
        opacity: 0.3;
    }

    .floating-shapes .shape {
        opacity: 0.05;
    }

    .shape-saffron {
        width: 200px;
        height: 200px;
        right: -100px;
    }

    .shape-green {
        width: 150px;
        height: 150px;
        left: -80px;
    }

    .shape-navy {
        width: 120px;
        height: 120px;
    }

    .shape-saffron-2,
    .shape-green-2 {
        display: none;
    }

    .hero-stats-new {
        padding-top: 20px;
    }

    .stats-grid {
        gap: 15px;
    }

    .stat-card-new {
        padding: 25px 15px;
    }

    .stat-card-new .stat-number {
        font-size: 1.8rem;
    }

    .stat-card-new .stat-icon-new {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }

    .about-image-wrapper img {
        height: 350px;
    }

    .about-content-new {
        padding-top: 30px;
    }

    .experience-badge-new {
        width: 110px;
        height: 110px;
        bottom: -15px;
        right: 5px;
    }

    .stat-item-new {
        padding: 25px 15px;
    }

    .stat-item-new h3 {
        font-size: 2.5rem;
    }

    .stat-item-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .client-logo-new {
        flex: 0 0 150px;
        padding: 20px;
        margin: 0 10px;
    }

    .client-logo-new img {
        max-height: 40px;
    }

    .cta-section-new {
        padding: 80px 0;
    }

    .cta-content h2 {
        font-size: 2.5rem;
    }

    .bottom-cta-content h2 {
        font-size: 2.2rem;
    }

    .cta-icon {
        width: 80px;
        height: 80px;
        font-size: 2rem;
    }

    .bottom-cta-content .cta-icon {
        width: 80px;
        height: 80px;
    }

    .timeline::before {
        left: 20px;
    }

    .timeline-item:nth-child(odd) .timeline-content,
    .timeline-item:nth-child(even) .timeline-content {
        margin-left: 50px;
        margin-right: 0;
        text-align: left;
    }

    .timeline-dot {
        left: 20px;
    }
}

/* === MOBILE (max 767px) === */
@media (max-width: 767.98px) {
    .section-padding {
        padding: 60px 0;
    }

    .section-title-new {
        font-size: 1.85rem;
    }

    .section-subtitle {
        font-size: 0.95rem;
    }

    .section-header-new {
        margin-bottom: 35px;
    }

    .hero-section-new {
        padding: 105px 0 130px;
        min-height: auto;
    }

    .hero-title {
        font-size: 2rem;
        line-height: 1.2;
    }

    .hero-title .line-3 .text-gradient {
        display: inline;
    }

    .hero-description {
        font-size: 0.93rem;
        line-height: 1.7;
        margin-bottom: 22px;
    }

    .hero-badge {
        font-size: 0.78rem;
        padding: 7px 14px;
        margin-bottom: 18px;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 12px;
    }

    .hero-buttons .btn-glow {
        width: 100%;
        justify-content: center;
        padding: 14px 24px;
    }

    .trust-badges {
        flex-wrap: wrap;
        gap: 10px;
    }

    .trust-divider {
        display: none;
    }

    .trust-item {
        font-size: 0.78rem;
        gap: 6px;
    }

    .trust-item i {
        font-size: 0.85rem;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .stat-card-new {
        padding: 18px 10px;
        border-radius: 14px;
    }

    .stat-card-new .stat-number {
        font-size: 1.5rem;
    }

    .stat-card-new .stat-label {
        font-size: 0.72rem;
    }

    .stat-card-new .stat-icon-new {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
        margin-bottom: 8px;
    }

    .service-card-new {
        padding: 28px 18px;
        border-radius: 15px;
    }

    .service-card-new:hover {
        transform: translateY(-8px);
    }

    .service-icon-new {
        width: 65px;
        height: 65px;
        font-size: 1.6rem;
        margin-bottom: 18px;
    }

    .service-card-new h4 {
        font-size: 1.1rem;
        margin-bottom: 10px;
    }

    .service-card-new p {
        font-size: 0.88rem;
    }

    .about-section-new {
        overflow: visible;
    }

    .about-image-wrapper img {
        height: 260px;
    }

    .experience-badge-new {
        width: 95px;
        height: 95px;
        bottom: -10px;
        right: 10px;
    }

    .badge-number {
        font-size: 1.5rem;
    }

    .badge-text {
        font-size: 0.62rem;
    }

    .badge-ring {
        width: 115px;
        height: 115px;
        top: -10px;
        left: -10px;
    }

    .about-text {
        font-size: 0.93rem;
    }

    .feature-item-new {
        padding: 10px;
        gap: 10px;
    }

    .feature-icon-new {
        width: 38px;
        height: 38px;
        min-width: 38px;
        font-size: 0.85rem;
        border-radius: 10px;
    }

    .feature-content h5 {
        font-size: 0.93rem;
    }

    .feature-content p {
        font-size: 0.83rem;
    }

    .stats-section-new {
        padding: 55px 0;
    }

    .stat-item-new {
        padding: 18px 8px;
    }

    .stat-item-icon {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
        margin-bottom: 12px;
    }

    .stat-item-new h3 {
        font-size: 1.9rem;
    }

    .stat-item-new p {
        font-size: 0.72rem;
        letter-spacing: 0.5px;
    }

    .clients-marquee {
        padding: 25px 0;
    }

    .client-logo-new {
        flex: 0 0 120px;
        padding: 14px;
        margin: 0 6px;
    }

    .client-logo-new img {
        max-height: 32px;
    }

    .why-card-new {
        padding: 28px 18px;
    }

    .why-card-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .why-card-new h5 {
        font-size: 1rem;
    }

    .why-card-new p {
        font-size: 0.88rem;
    }

    .why-card-number {
        font-size: 2.2rem;
    }

    .cta-section-new {
        padding: 55px 0;
    }

    .cta-content h2 {
        font-size: 1.7rem;
    }

    .cta-content p {
        font-size: 0.95rem;
        margin-bottom: 22px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .cta-buttons .btn-glow {
        width: 100%;
        max-width: 260px;
        justify-content: center;
    }

    .bottom-cta-section {
        padding: 55px 0;
    }

    .bottom-cta-content h2 {
        font-size: 1.5rem;
    }

    .bottom-cta-content p {
        font-size: 0.93rem;
    }

    .bottom-cta-content .cta-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .page-banner {
        padding: 110px 0 50px;
    }

    .page-banner h1 {
        font-size: 1.85rem;
    }

    .page-banner p {
        font-size: 0.93rem;
    }

    .contact-form-card {
        padding: 22px 18px;
    }

    .contact-info-card {
        padding: 22px 18px;
    }

    .brochure-card {
        padding: 28px 18px;
    }

    .footer {
        padding: 40px 0 0;
    }

    .footer h5 {
        font-size: 1rem;
        margin-bottom: 15px;
    }

    .footer h5::after {
        width: 30px;
    }

    .footer p {
        font-size: 0.88rem;
    }

    .footer-links li {
        margin-bottom: 8px;
    }

    .footer-links a {
        font-size: 0.88rem;
    }

    .footer-contact li {
        margin-bottom: 12px;
    }

    .footer-contact li i {
        width: 30px;
        min-width: 30px;
        height: 30px;
        margin-right: 10px;
        font-size: 0.8rem;
    }

    .footer-social {
        gap: 10px;
    }

    .footer-social a {
        width: 36px;
        height: 36px;
        font-size: 0.9rem;
        margin-right: 6px;
    }

    .footer-bottom {
        padding: 12px 0;
        margin-top: 20px;
        text-align: center;
    }

    .footer-bottom p {
        font-size: 0.8rem;
    }

    .whatsapp-float {
        width: 48px;
        height: 48px;
        font-size: 1.4rem;
        bottom: 18px;
        right: 18px;
    }

    .back-to-top {
        right: 72px;
        bottom: 18px;
        width: 38px;
        height: 38px;
        font-size: 1rem;
    }

    .wave-divider {
        height: 70px;
    }

    .google-map iframe {
        height: 280px;
    }
}

/* === SMALL MOBILE (max 575px) === */
@media (max-width: 575.98px) {
    .hero-section-new {
        padding: 95px 0 110px;
    }

    .hero-title {
        font-size: 1.6rem;
    }

    .hero-badge {
        font-size: 0.72rem;
        padding: 6px 12px;
    }

    .btn-glow {
        padding: 12px 22px;
        font-size: 0.88rem;
    }

    .section-title-new {
        font-size: 1.5rem;
    }

    .section-badge {
        font-size: 0.7rem;
        padding: 5px 14px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }

    .stat-card-new {
        padding: 14px 8px;
    }

    .stat-card-new .stat-number {
        font-size: 1.3rem;
    }

    .stat-card-new .stat-label {
        font-size: 0.65rem;
    }

    .stat-card-new .stat-icon-new {
        width: 35px;
        height: 35px;
        font-size: 1rem;
        margin-bottom: 6px;
    }

    .stats-section-new .col-md-6,
    .stats-section-new .col-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }

    .stat-item-new h3 {
        font-size: 1.5rem;
    }

    .stat-item-new p {
        font-size: 0.65rem;
    }

    .stat-item-icon {
        width: 42px;
        height: 42px;
        font-size: 1.1rem;
        margin-bottom: 8px;
    }

    .service-card-new {
        padding: 22px 14px;
    }

    .service-card-new h4 {
        font-size: 1rem;
    }

    .service-card-new p {
        font-size: 0.83rem;
    }

    .why-card-new {
        padding: 22px 14px;
    }

    .why-card-icon {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }

    .why-card-new h5 {
        font-size: 0.95rem;
    }

    .why-card-new p {
        font-size: 0.83rem;
    }

    .why-card-number {
        font-size: 1.8rem;
    }

    .about-image-wrapper img {
        height: 220px;
    }

    .experience-badge-new {
        width: 80px;
        height: 80px;
    }

    .badge-number {
        font-size: 1.3rem;
    }

    .badge-ring {
        width: 100px;
        height: 100px;
    }

    .feature-content h5 {
        font-size: 0.88rem;
    }

    .feature-content p {
        font-size: 0.8rem;
    }

    .cta-content h2 {
        font-size: 1.4rem;
    }

    .bottom-cta-content h2 {
        font-size: 1.3rem;
    }

    .cta-buttons .btn-glow {
        max-width: 100%;
        padding: 12px 20px;
    }

    .client-logo-new {
        flex: 0 0 105px;
        padding: 12px;
        margin: 0 5px;
    }

    .client-logo-new img {
        max-height: 26px;
    }

    .page-banner {
        padding: 100px 0 45px;
    }

    .page-banner h1 {
        font-size: 1.65rem;
    }

    .contact-info-item i {
        width: 36px;
        min-width: 36px;
        height: 36px;
        font-size: 0.9rem;
    }

    .contact-info-item h5 {
        font-size: 0.88rem;
    }

    .contact-info-item p {
        font-size: 0.83rem;
    }

    .google-map iframe {
        height: 230px;
    }

    .portfolio-item img {
        height: 200px;
    }

    .wave-divider {
        height: 55px;
    }
}

/* === VERY SMALL MOBILE (max 380px) === */
@media (max-width: 380px) {
    .hero-section-new {
        padding: 85px 0 100px;
    }

    .hero-title {
        font-size: 1.45rem;
    }

    .hero-description {
        font-size: 0.85rem;
    }

    .hero-badge {
        font-size: 0.68rem;
        padding: 5px 10px;
    }

    .btn-glow {
        padding: 11px 18px;
        font-size: 0.82rem;
        gap: 8px;
    }

    .section-title-new {
        font-size: 1.35rem;
    }

    .stat-card-new {
        padding: 12px 8px;
    }

    .stat-card-new .stat-number {
        font-size: 1.15rem;
    }

    .stat-card-new .stat-label {
        font-size: 0.6rem;
    }

    .stat-card-new .stat-icon-new {
        width: 32px;
        height: 32px;
        font-size: 0.9rem;
    }

    .stat-item-new h3 {
        font-size: 1.3rem;
    }

    .stat-item-new p {
        font-size: 0.6rem;
    }

    .about-image-wrapper img {
        height: 190px;
    }

    .cta-content h2 {
        font-size: 1.25rem;
    }

    .bottom-cta-content h2 {
        font-size: 1.15rem;
    }

    .bottom-cta-content p {
        font-size: 0.85rem;
    }

    .service-card-new {
        padding: 18px 12px;
    }

    .service-card-new h4 {
        font-size: 0.95rem;
    }

    .why-card-new h5 {
        font-size: 0.92rem;
    }

    .footer {
        padding: 30px 0 0;
    }

    .whatsapp-float {
        width: 44px;
        height: 44px;
        font-size: 1.25rem;
        bottom: 15px;
        right: 15px;
    }

    .back-to-top {
        right: 64px;
        bottom: 15px;
        width: 34px;
        height: 34px;
    }

    .wave-divider {
        height: 45px;
    }
}

/* === LANDSCAPE MOBILE === */
@media (max-height: 500px) and (orientation: landscape) {
    .hero-section-new {
        padding-top: 75px;
        min-height: auto;
    }

    .hero-title {
        font-size: 1.6rem;
    }

    .hero-buttons {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .cta-buttons {
        flex-direction: row;
    }
}

/* === TOUCH DEVICE IMPROVEMENTS === */
@media (hover: none) and (pointer: coarse) {
    .service-card-new:hover,
    .why-card-new:hover,
    .stat-card-new:hover {
        transform: none;
    }

    .btn-glow:hover {
        transform: none;
    }

    .feature-item-new:hover {
        transform: none;
    }

    .hero-buttons .btn-glow:hover {
        transform: none;
    }

    .cta-buttons .btn-glow:hover {
        transform: none;
    }

    .client-logo-new:hover {
        transform: none;
    }

    .stat-item-new:hover .stat-item-icon {
        transform: none;
    }

    .stat-item-new:hover .stat-item-bar {
        transform: scaleX(0);
    }
}

/* === PRINT STYLES === */
@media print {
    .hero-section-new,
    #preloader,
    .whatsapp-float,
    .back-to-top,
    .clients-marquee,
    .wave-divider,
    .floating-shapes,
    .hero-particles,
    .ashoka-chakra,
    .cta-section-new {
        display: none !important;
    }

    .navbar {
        position: static;
        background: white;
    }

    body {
        font-size: 12pt;
    }
}

/* === Animations === */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.slide-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.slide-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.row > div:nth-child(1) .fade-in,
.row > div:nth-child(1) .slide-in-left,
.row > div:nth-child(1) .slide-in-right { transition-delay: 0s; }

.row > div:nth-child(2) .fade-in,
.row > div:nth-child(2) .slide-in-left,
.row > div:nth-child(2) .slide-in-right { transition-delay: 0.1s; }

.row > div:nth-child(3) .fade-in,
.row > div:nth-child(3) .slide-in-left,
.row > div:nth-child(3) .slide-in-right { transition-delay: 0.2s; }

.row > div:nth-child(4) .fade-in,
.row > div:nth-child(4) .slide-in-left,
.row > div:nth-child(4) .slide-in-right { transition-delay: 0.3s; }

.row > div:nth-child(5) .fade-in,
.row > div:nth-child(5) .slide-in-left,
.row > div:nth-child(5) .slide-in-right { transition-delay: 0.4s; }

.row > div:nth-child(6) .fade-in,
.row > div:nth-child(6) .slide-in-left,
.row > div:nth-child(6) .slide-in-right { transition-delay: 0.5s; }
