/* ===== CSS RESET & BASE STYLES ===== */
:root {
    /* Color Palette - Solar Energy Theme */
    --primary-orange: #ff6b00;
    --primary-orange-light: #ff8c42;
    --primary-yellow: #ffd166;
    --primary-blue: #0a3d62;
    --primary-blue-light: #1e5d8a;
    --dark-bg: #0f172a;
    --dark-bg-light: #1e293b;
    --light-bg: #f8fafc;
    --light-gray: #e2e8f0;
    --text-dark: #1e293b;
    --text-light: #ffffff;
    --text-muted: #64748b;
    --success-green: #10b981;
    --warning-yellow: #f59e0b;
    
    /* Spacing Scale */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 2rem;
    --space-lg: 3rem;
    --space-xl: 5rem;
    --space-xxl: 8rem;
    
    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-round: 50%;
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.2);
    --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.3);
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Poppins', 'Segoe UI', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    background-color: #ffffff;
}

.container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: var(--space-sm);
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.8rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.2rem; }
h6 { font-size: 1rem; }

p {
    margin-bottom: var(--space-sm);
    line-height: 1.8;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-normal);
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    border: none;
    border-radius: var(--radius-md);
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition-normal);
    gap: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-orange), var(--primary-orange-light));
    color: var(--text-light);
    box-shadow: 0 4px 15px rgba(255, 107, 0, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-orange-light), var(--primary-orange));
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 107, 0, 0.4);
}

.btn-outline {
    background-color: transparent;
    color: var(--primary-orange);
    border: 2px solid var(--primary-orange);
}

.btn-outline:hover {
    background-color: var(--primary-orange);
    color: var(--text-light);
    transform: translateY(-3px);
}

/* ===== HEADER & NAVIGATION ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
}

.header.scrolled {
    box-shadow: var(--shadow-md);
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.logo-icon{
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none !important;   /* 🔥 background remove */
    border-radius: 0 !important;   /* 🔥 shape normal */
    padding: 0;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.company-name {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-orange);
    line-height: 1.2;
    margin: 0;
}

/* ===== LOGO IMAGE STYLE ===== */

.logo-container{
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon{
    width: 80px;      /* Desktop size */
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent !important;
    border-radius: 0 !important;
    padding: 0;
}

.site-logo{
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.logo-container,
.logo-icon img,
.site-logo{
    background: transparent !important;
}


/* Text alignment */
.logo-text h1{
    font-size: 24px;
    margin: 0;
}

.company-tagline{
    font-size: 12px;
    opacity: .8;
}


/* ===== MOBILE RESPONSIVE ===== */
@media (max-width: 768px){
    .logo-icon{
        width: 50px;
        height: 50px;
    }

    .logo-text h1{
        font-size: 18px;
    }

    .company-tagline{
        font-size: 10px;
    }
}


.company-tagline {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 500;
    letter-spacing: 0.5px;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: var(--space-md);
    align-items: center;
}

.nav-link {
    font-weight: 600;
    padding: 0.5rem 1rem;
    position: relative;
    color: var(--text-dark);
    white-space: nowrap;
    font-size: 0.95rem;
}

.nav-link.active {
    color: var(--primary-orange);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 1rem;
    right: 1rem;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-orange), var(--primary-yellow));
    border-radius: 3px;
}

.nav-link:hover {
    color: var(--primary-orange);
}

.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--text-light);
    min-width: 200px;
    box-shadow: var(--shadow-lg);
    border-radius: var(--radius-md);
    padding: var(--space-sm);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition-normal);
    z-index: 100;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu a {
    display: block;
    padding: 0.75rem 1rem;
    color: var(--text-dark);
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
}

.dropdown-menu a:hover {
    background-color: var(--light-bg);
    color: var(--primary-orange);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--text-dark);
    transition: var(--transition-normal);
}







/* ===== HERO SECTION ===== */
.hero-section {
    height: 140vh;
    position: relative;
    overflow: hidden;
}

.hero-slider {
    height: 100%;
    position: relative;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease;
}

.hero-slide.active {
    opacity: 1;
}

.slide-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

.slide-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.4));
}

.hero-content {
    position: relative;
    z-index: 2;
    height: 140vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: var(--text-light);
    max-width: 800px;
    padding-top: 80px;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: var(--space-md);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 1s ease-out;
}

.hero-subtitle {
    font-size: 1.8rem;
    margin-bottom: var(--space-sm);
    color: var(--primary-yellow);
    font-weight: 600;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: var(--space-lg);
    opacity: 0.9;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.hero-cta {
    display: flex;
    gap: var(--space-md);
    animation: fadeInUp 1s ease-out 0.6s both;
}

.slider-controls {
    position: absolute;
    bottom: var(--space-xl);
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-lg);
    z-index: 3;
}

.slider-prev,
.slider-next {
    width: 50px;
    height: 50px;
    border-radius: var(--radius-round);
    background-color: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: var(--text-light);
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition-normal);
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
}

.slider-prev:hover,
.slider-next:hover {
    background-color: var(--primary-orange);
    border-color: var(--primary-orange);
    transform: scale(1.1);
}

.slider-dots {
    display: flex;
    gap: var(--space-sm);
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: var(--radius-round);
    background-color: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: var(--transition-normal);
}

.dot.active {
    background-color: var(--primary-orange);
    width: 30px;
    border-radius: 6px;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    z-index: 3;
    animation: bounce 2s infinite;
}

.scroll-mouse {
    width: 30px;
    height: 50px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 20px;
    display: flex;
    justify-content: center;
    padding-top: 10px;
}

.mouse-wheel {
    width: 4px;
    height: 10px;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 2px;
    animation: scrollWheel 2s infinite;
}

.scroll-text {
    color: var(--text-light);
    font-size: 0.9rem;
    letter-spacing: 1px;
}



/* ---------- MOBILE SLIDER IMAGES ONLY ---------- */
@media (max-width: 768px) {
    .hero-section {
        height: 80vh;
    }

    .hero-slide {
        height: 80vh;
    }

    .hero-slide .slide-image {
        background-size: cover;
        background-position: center;
    }

    /* Mobile Image 1 */
    .hero-slide:nth-child(1) .slide-image {
        background-image: url('img/aadya\ mobile01.png') !important;
    }

    /* Mobile Image 2 */
    .hero-slide:nth-child(2) .slide-image {
        background-image: url('img/aadya\ mobile02.png') !important;
    }

    /* Mobile Image 3 */
    .hero-slide:nth-child(3) .slide-image {
        background-image: url('img/aadya\ mobile03.png') !important;
    }

    /* Mobile Image 4 */
    .hero-slide:nth-child(4) .slide-image {
        background-image: url('img/aadya\ mobile04.png') !important;
    }

    /* Text responsiveness */
    .hero-title {
        font-size: 24px;
        text-align: center;
    }

    .hero-subtitle {
        font-size: 16px;
        text-align: center;
    }

    .hero-description {
        font-size: 14px;
        text-align: center;
    }

    .hero-cta {
        justify-content: center;
        flex-wrap: wrap;
        gap: 10px;
    }
}




/* ===== STATS SECTION ===== */
.stats-section {
    padding: var(--space-xl) 0;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-bg) 100%);
    color: var(--text-light);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-lg);
}

.stat-item {
    text-align: center;
    padding: var(--space-lg);
    position: relative;
    overflow: hidden;
    transition: var(--transition-normal);
}

.stat-item:hover {
    transform: translateY(-10px);
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 107, 0, 0.1), rgba(255, 209, 102, 0.1));
    border-radius: var(--radius-lg);
    z-index: -1;
}

.stat-icon {
    font-size: 3rem;
    color: var(--primary-yellow);
    margin-bottom: var(--space-md);
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary-yellow);
    line-height: 1;
    display: inline-block;
    margin-bottom: 0;
}

.stat-plus,
.stat-unit {
    font-size: 2rem;
    color: var(--primary-yellow);
    font-weight: 700;
}

.stat-label {
    font-size: 1.1rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    margin-top: var(--space-sm);
}

/* ===== SECTION HEADER ===== */
.section-header {
    text-align: center;
    margin-bottom: var(--space-xl);
}

.section-title {
    color: var(--primary-blue);
    margin-bottom: var(--space-sm);
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-orange), var(--primary-yellow));
    border-radius: 2px;
}

.section-subtitle {
    color: var(--text-muted);
    max-width: 700px;
    margin: var(--space-md) auto 0;
    font-size: 1.1rem;
}


/* ============================================
   ABOUT SECTION - STYLISH DESIGN
============================================ */
.about-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    position: relative;
    overflow: hidden;
}

/* Background Elements */
.about-bg-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

.bg-circle.ab-1 {
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 107, 0, 0.08) 0%, transparent 70%);
    top: -100px;
    left: -100px;
    border-radius: 50%;
    animation: float 25s infinite ease-in-out;
}

.bg-circle.ab-2 {
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(10, 61, 98, 0.06) 0%, transparent 70%);
    bottom: -50px;
    right: -50px;
    border-radius: 50%;
    animation: float 20s infinite ease-in-out reverse;
}

.floating-icon {
    position: absolute;
    font-size: 2.5rem;
    color: rgba(255, 107, 0, 0.15);
    animation: floatRotate 20s infinite linear;
}

.sun-icon {
    top: 20%;
    right: 15%;
    animation-delay: 0s;
}

.bolt-icon {
    bottom: 30%;
    left: 10%;
    animation-delay: -10s;
}

/* Section Header */
.about-section .section-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
    z-index: 2;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 12px 30px;
    background: linear-gradient(135deg, rgba(255, 107, 0, 0.1), rgba(59, 130, 246, 0.1));
    border: 1px solid rgba(255, 107, 0, 0.3);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--primary-orange);
    margin-bottom: 30px;
    box-shadow: 0 4px 15px rgba(255, 107, 0, 0.1);
    animation: badgePulse 3s infinite;
}

.section-badge i {
    color: var(--primary-blue);
    font-size: 0.8rem;
}

.about-section .section-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

.title-main {
    color: var(--primary-blue);
    display: block;
}

.title-gradient {
    background: linear-gradient(135deg, var(--primary-orange), var(--primary-yellow));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
    animation: textShimmer 3s infinite;
}

.about-section .section-subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* About Content Grid */
.about-content-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    position: relative;
    z-index: 2;
}

@media (max-width: 1200px) {
    .about-content-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
}

/* Content Card */
.content-card {
    background: var(--text-light);
    border-radius: 30px;
    padding: 50px;
    box-shadow: var(--shadow-xl);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.content-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-orange), var(--primary-yellow), var(--primary-blue));
    z-index: 1;
}

/* Company Intro */
.company-intro {
    display: flex;
    gap: 25px;
    margin-bottom: 40px;
    align-items: flex-start;
}

.intro-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-orange), var(--primary-yellow));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: 2rem;
    flex-shrink: 0;
    box-shadow: 0 10px 30px rgba(255, 107, 0, 0.3);
    animation: floatIcon 3s infinite ease-in-out;
}

.intro-text {
    flex: 1;
}

.intro-title {
    font-size: 2.2rem;
    color: var(--primary-blue);
    margin-bottom: 15px;
    font-weight: 700;
}

.intro-title .highlight {
    color: var(--primary-orange);
    position: relative;
}

.intro-title .highlight::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    right: 0;
    height: 6px;
    background: rgba(255, 107, 0, 0.2);
    z-index: -1;
}

.intro-description {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* Stats Counter - UPDATED FOR BLUE NUMBERS */
.stats-counter {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin: 40px 0;
    background: linear-gradient(135deg, rgba(10, 61, 98, 0.05), rgba(255, 107, 0, 0.05));
    padding: 30px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

@media (max-width: 992px) {
    .stats-counter {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .stats-counter {
        grid-template-columns: 1fr;
    }
}

.stat-item {
    text-align: center;
    padding: 20px;
    background: var(--text-light);
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-orange);
}

/* UPDATED: Always blue, orange on hover */
.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-blue); /* Blue color always */
    line-height: 1;
    margin-bottom: 5px;
    transition: all 0.3s ease;
}

.stat-item:hover .stat-number {
    color: var(--primary-orange); /* Orange on hover */
    transform: scale(1.1);
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* Highlights Grid */
.highlights-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 40px 0;
}

@media (max-width: 768px) {
    .highlights-grid {
        grid-template-columns: 1fr;
    }
}

.highlight-card {
    display: flex;
    gap: 15px;
    padding: 25px;
    background: var(--text-light);
    border-radius: 20px;
    border: 1px solid var(--light-gray);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.highlight-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-orange);
    background: linear-gradient(135deg, rgba(255, 107, 0, 0.02), rgba(10, 61, 98, 0.02));
}

.highlight-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-orange), var(--primary-yellow));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: 1.2rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.highlight-card:hover .highlight-icon {
    transform: rotate(15deg) scale(1.1);
}

.highlight-content {
    flex: 1;
}

.highlight-content h4 {
    font-size: 1.1rem;
    color: var(--primary-blue);
    margin-bottom: 8px;
    font-weight: 600;
}

.highlight-content p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin: 0;
}

.highlight-glow {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 60px;
    height: 60px;
    background: radial-gradient(circle, rgba(255, 107, 0, 0.2), transparent 70%);
    filter: blur(10px);
    opacity: 0;
    transition: opacity 0.3s;
}

.highlight-card:hover .highlight-glow {
    opacity: 1;
}

/* Detailed Description */
.detailed-description {
    margin: 40px 0;
    padding: 30px;
    background: linear-gradient(135deg, rgba(10, 61, 98, 0.03), rgba(255, 107, 0, 0.03));
    border-radius: 20px;
    border-left: 4px solid var(--primary-orange);
}

.detailed-description p {
    font-size: 1.1rem;
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 20px;
}

.detailed-description p:last-child {
    margin-bottom: 0;
}

.highlight-text {
    color: var(--primary-orange);
    font-weight: 600;
    position: relative;
}

.highlight-text::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    right: 0;
    height: 3px;
    background: rgba(255, 107, 0, 0.2);
    z-index: -1;
}

/* CTA Buttons */
.about-cta-buttons {
    display: flex;
    gap: 20px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.cta-btn {
    flex: 1;
    min-width: 200px;
    padding: 0;
    border: none;
    border-radius: 15px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

@media (max-width: 768px) {
    .cta-btn {
        min-width: 100%;
    }
}

.cta-btn:hover {
    transform: translateY(-5px);
}

.btn-content {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 22px 30px;
    position: relative;
    z-index: 2;
}

.cta-btn i {
    font-size: 1.3rem;
}

.primary-cta {
    background: linear-gradient(135deg, var(--primary-orange), var(--primary-yellow));
    color: var(--text-light);
    box-shadow: 0 10px 30px rgba(255, 107, 0, 0.3);
}

.primary-cta:hover {
    box-shadow: 0 15px 40px rgba(255, 107, 0, 0.4);
}

.btn-text {
    display: flex;
    flex-direction: column;
}

.btn-title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 3px;
}

.btn-subtitle {
    font-size: 1.2rem;
    font-weight: 700;
}

.secondary-cta {
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-blue-light));
    color: var(--text-light);
    box-shadow: 0 10px 30px rgba(10, 61, 98, 0.2);
}

.secondary-cta:hover {
    box-shadow: 0 15px 40px rgba(10, 61, 98, 0.3);
}

.outline-cta {
    background: transparent;
    border: 2px solid var(--primary-orange);
    color: var(--primary-orange);
}

.outline-cta:hover {
    background: var(--primary-orange);
    color: var(--text-light);
}

.btn-wave {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s;
}

.cta-btn:hover .btn-wave {
    left: 100%;
}

/* Image Gallery Section */
.about-image-gallery {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* Main Image Card */
.main-image-card {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    height: 500px;
}

.image-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.main-image-card:hover .image-container img {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(10, 61, 98, 0.9) 0%, transparent 100%);
    display: flex;
    align-items: flex-end;
    padding: 40px;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.main-image-card:hover .image-overlay {
    opacity: 1;
}

.overlay-content {
    color: var(--text-light);
}

.overlay-content i {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--primary-yellow);
}

.overlay-content h4 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.overlay-content p {
    font-size: 1rem;
    opacity: 0.9;
}

.image-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: shine 3s infinite;
}

/* Experience Badge 3D - UPDATED FOR BLUE NUMBERS */
.experience-badge-3d {
    position: absolute;
    top: 30px;
    right: 30px;
    width: 120px;
    height: 120px;
    animation: badgeFloat 4s infinite ease-in-out;
}

.badge-inner {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-blue-light)); /* Blue background */
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    z-index: 2;
    box-shadow: 0 15px 40px rgba(10, 61, 98, 0.4); /* Blue shadow */
}

.badge-inner .years {
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1;
    color: var(--text-light); /* White text on blue */
}

.badge-inner .text {
    font-size: 0.8rem;
    text-align: center;
    font-weight: 600;
    margin-top: 5px;
    line-height: 1.2;
    color: var(--text-light); /* White text on blue */
}

.badge-ring {
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border: 2px dashed rgba(10, 61, 98, 0.5); /* Blue dashed */
    border-radius: 50%;
    animation: rotateRing 10s infinite linear;
}

.badge-sparkles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.sparkle {
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--text-light);
    border-radius: 50%;
    filter: blur(1px);
    animation: sparkle 2s infinite;
}

.sparkle:nth-child(1) { top: 20%; left: 20%; animation-delay: 0s; }
.sparkle:nth-child(2) { top: 60%; left: 60%; animation-delay: 0.5s; }
.sparkle:nth-child(3) { top: 40%; left: 80%; animation-delay: 1s; }

/* Location Tag */
.location-tag {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 12px 20px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: var(--primary-blue);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.location-tag i {
    color: var(--primary-orange);
}

/* Brands Showcase */
.brands-showcase {
    background: var(--text-light);
    border-radius: 25px;
    padding: 30px;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.brands-showcase h4 {
    text-align: center;
    color: var(--primary-blue);
    margin-bottom: 25px;
    font-size: 1.3rem;
    font-weight: 700;
}

.brands-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

@media (max-width: 768px) {
    .brands-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.brand-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 20px;
    background: var(--light-bg);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.brand-logo:hover {
    transform: translateY(-5px);
    background: linear-gradient(135deg, rgba(255, 107, 0, 0.05), rgba(10, 61, 98, 0.05));
    box-shadow: var(--shadow-sm);
}

.brand-logo i {
    font-size: 2rem;
    color: var(--primary-orange);
}

.brand-logo span {
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-blue);
}

/* Certification Badges */
.certification-badges {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

@media (max-width: 768px) {
    .certification-badges {
        grid-template-columns: 1fr;
    }
}

.cert-badge {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: var(--text-light);
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--light-gray);
    transition: all 0.3s ease;
}

.cert-badge:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-orange);
}

.cert-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-blue-light));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.cert-content h5 {
    font-size: 1rem;
    color: var(--primary-blue);
    margin-bottom: 5px;
    font-weight: 600;
}

.cert-content p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin: 0;
}

/* Animations */
@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    33% { transform: translateY(-20px) rotate(120deg); }
    66% { transform: translateY(20px) rotate(240deg); }
}

@keyframes floatRotate {
    0% { transform: rotate(0deg) translateX(0) translateY(0); }
    25% { transform: rotate(90deg) translateX(20px) translateY(-20px); }
    50% { transform: rotate(180deg) translateX(0) translateY(0); }
    75% { transform: rotate(270deg) translateX(-20px) translateY(20px); }
    100% { transform: rotate(360deg) translateX(0) translateY(0); }
}

@keyframes badgePulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.05); opacity: 0.8; }
}

@keyframes textShimmer {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
}

@keyframes floatIcon {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes shine {
    0% { left: -100%; }
    20%, 100% { left: 100%; }
}

@keyframes badgeFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(5deg); }
}

@keyframes rotateRing {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes sparkle {
    0%, 100% { opacity: 0; transform: scale(0.5); }
    50% { opacity: 1; transform: scale(1); }
}

/* Scroll Reveal Animation */
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.reveal-on-scroll.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 1400px) {
    .about-section .section-title {
        font-size: 3rem;
    }
    
    .intro-title {
        font-size: 2rem;
    }
}

@media (max-width: 1200px) {
    .about-content-grid {
        grid-template-columns: 1fr;
    }
    
    .main-image-card {
        height: 400px;
    }
}

@media (max-width: 992px) {
    .about-section {
        padding: 80px 0;
    }
    
    .content-card {
        padding: 40px 30px;
    }
    
    .company-intro {
        flex-direction: column;
        text-align: center;
    }
    
    .intro-icon {
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .about-section .section-title {
        font-size: 2.5rem;
    }
    
    .section-badge {
        font-size: 0.8rem;
        padding: 10px 20px;
    }
    
    .intro-title {
        font-size: 1.8rem;
    }
    
    .main-image-card {
        height: 350px;
    }
    
    .experience-badge-3d {
        width: 100px;
        height: 100px;
    }
    
    .badge-inner .years {
        font-size: 1.8rem;
    }
}

@media (max-width: 576px) {
    .about-section .section-title {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .content-card {
        padding: 30px 20px;
        border-radius: 20px;
    }
    
    .stats-counter {
        padding: 20px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .main-image-card {
        height: 300px;
    }
    
    .location-tag {
        bottom: 20px;
        left: 20px;
        padding: 10px 15px;
        font-size: 0.9rem;
    }
}

/* Additional Counter Styling for Other Sections */
/* If you have counters in other sections, add these styles too */

/* For Founder Section Counters */
.founder-section .stat-number {
    color: var(--primary-blue) !important;
}

.founder-section .stat-item:hover .stat-number {
    color: var(--primary-orange) !important;
}

/* For Calculator Section Numbers */
.calculator-section .result-value {
    color: var(--primary-blue) !important;
}

.calculator-section .result-value.highlight {
    color: var(--primary-orange) !important;
}

/* For Stats Section */
.stats-section .stat-number {
    color: var(--primary-blue) !important;
}

.stats-section .stat-item:hover .stat-number {
    color: var(--primary-yellow) !important;
}

/* Ensure all number counters follow the same pattern */
.stat-number,
.counter-number,
.count-number,
.result-number {
    color: var(--primary-blue) !important;
    transition: color 0.3s ease;
}

.stat-number:hover,
.counter-number:hover,
.count-number:hover,
.result-number:hover {
    color: var(--primary-orange) !important;
}

/* Make sure experience badge numbers are also blue */
.experience-badge .years,
.exp-number,
.badge-number {
    color: var(--primary-blue) !important;
}

/* ============================================
   BRANDS SECTION - PREMIUM DESIGN
============================================ */
.brands-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #0a0f1c 0%, #1a2036 50%, #0a0f1c 100%);
    position: relative;
    overflow: hidden;
    color: #ffffff;
}

/* Background Elements */
.brands-bg-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

.bg-circle.brand-1 {
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
    top: -100px;
    left: -100px;
    border-radius: 50%;
    animation: float 25s infinite ease-in-out;
}

.bg-circle.brand-2 {
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 107, 0, 0.08) 0%, transparent 70%);
    bottom: -50px;
    right: -50px;
    border-radius: 50%;
    animation: float 20s infinite ease-in-out reverse;
}

.floating-element {
    position: absolute;
    opacity: 0.05;
    animation: floatRotate 20s infinite linear;
}

.floating-element.brand-elem-1 {
    top: 20%;
    left: 10%;
    width: 60px;
    height: 60px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23ffffff'%3E%3Cpath d='M12 2L2 7l10 5 10-5-10-5zM2 17l10 5 10-5M2 12l10 5 10-5'/%3E%3C/svg%3E");
}

.floating-element.brand-elem-2 {
    top: 60%;
    right: 15%;
    width: 80px;
    height: 80px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23ffffff'%3E%3Cpath d='M12 2L2 7l10 5 10-5-10-5zM2 17l10 5 10-5M2 12l10 5 10-5'/%3E%3C/svg%3E");
    animation-delay: -5s;
}

.floating-element.brand-elem-3 {
    bottom: 30%;
    left: 20%;
    width: 50px;
    height: 50px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23ffffff'%3E%3Cpath d='M21 16v-2l-8-5V3.5c0-.83-.67-1.5-1.5-1.5S10 2.67 10 3.5V9l-8 5v2l8-2.5V19l-2 1.5V22l3.5-1 3.5 1v-1.5L13 19v-5.5l8 2.5z'/%3E%3C/svg%3E");
    animation-delay: -10s;
}

/* Section Header */
.brands-section .section-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
    z-index: 2;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 12px 30px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.15), rgba(255, 107, 0, 0.15));
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #3b82f6;
    margin-bottom: 30px;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.2);
    animation: badgePulse 3s infinite;
}

.section-badge i {
    color: #ff6b00;
    font-size: 0.8rem;
    animation: crownBob 2s infinite ease-in-out;
}

.brands-section .section-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

.title-main {
    color: #ffffff;
    display: block;
}

.title-gradient {
    background: linear-gradient(135deg, #3b82f6, #60a5fa, #93c5fd);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
    animation: textShimmer 3s infinite;
}

.brands-section .section-subtitle {
    font-size: 1.2rem;
    color: #94a3b8;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Brands Grid 3D */
.brands-grid-3d {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 80px;
    position: relative;
    z-index: 2;
}

@media (max-width: 1200px) {
    .brands-grid-3d {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .brands-grid-3d {
        grid-template-columns: 1fr;
    }
}

/* Brand Card */
.brand-card {
    perspective: 1500px;
    height: 380px;
    position: relative;
}

.brand-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform-style: preserve-3d;
}

.brand-card:hover .brand-card-inner {
    transform: rotateY(180deg);
}

.brand-card-front,
.brand-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 25px;
    overflow: hidden;
}

/* Brand Card Front */
.brand-card-front {
    background: linear-gradient(145deg, rgba(30, 41, 59, 0.9), rgba(15, 23, 42, 0.95));
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 35px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    position: relative;
}

.brand-card-front::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #3b82f6, #ff6b00);
    z-index: 1;
}

.brand-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 2;
    box-shadow: 0 5px 15px rgba(59, 130, 246, 0.3);
}

.brand-logo-3d {
    display: flex;
    align-items: center;
    gap: 20px;
    margin: 40px 0 30px;
}

.logo-icon {
    position: relative;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.4);
    flex-shrink: 0;
}

.icon-glow {
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.3), transparent 70%);
    border-radius: 25px;
    z-index: -1;
    animation: glowPulse 2s infinite;
}

.logo-text {
    flex: 1;
}

.logo-text h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 5px;
    color: white;
}

.logo-tag {
    font-size: 0.85rem;
    color: #60a5fa;
    font-weight: 500;
    padding: 4px 12px;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 15px;
    display: inline-block;
}

.brand-stats {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
}

.stat {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: #94a3b8;
}

.stat i {
    color: #ff6b00;
}

.brand-description {
    color: #cbd5e1;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 30px;
    flex: 1;
}

.brand-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #60a5fa;
    font-weight: 600;
    transition: all 0.3s ease;
}

.brand-card:hover .brand-cta {
    color: #ff6b00;
}

.brand-cta i {
    transition: transform 0.3s ease;
}

.brand-card:hover .brand-cta i {
    transform: translateX(5px);
}

/* Brand Card Back */
.brand-card-back {
    background: linear-gradient(145deg, rgba(30, 41, 59, 0.95), rgba(15, 23, 42, 0.98));
    border: 1px solid rgba(255, 107, 0, 0.3);
    padding: 35px;
    transform: rotateY(180deg);
    display: flex;
    flex-direction: column;
    box-shadow: 0 20px 60px rgba(255, 107, 0, 0.2);
}

.brand-card-back::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ff6b00, #ffd166);
    z-index: 1;
}

.back-content h4 {
    font-size: 1.5rem;
    color: white;
    margin-bottom: 25px;
    font-weight: 700;
    text-align: center;
}

.features-list {
    list-style: none;
    margin-bottom: 30px;
}

.features-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    color: #cbd5e1;
    font-size: 0.95rem;
    line-height: 1.5;
}

.features-list i {
    color: #10b981;
    margin-top: 3px;
    flex-shrink: 0;
}

.warranty-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(59, 130, 246, 0.1));
    padding: 15px;
    border-radius: 15px;
    border: 1px solid rgba(16, 185, 129, 0.3);
    color: #10b981;
    font-weight: 600;
    margin-top: auto;
}

.warranty-badge i {
    font-size: 1.2rem;
}

/* Brand Shine Effect */
.brand-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: shine 3s infinite;
    border-radius: 25px;
    pointer-events: none;
}

/* Authorized Partner Badge */
.authorized-partner-badge {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(255, 107, 0, 0.1));
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 25px;
    padding: 40px;
    margin-bottom: 60px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.badge-content {
    display: flex;
    align-items: center;
    gap: 25px;
    position: relative;
    z-index: 2;
}

.badge-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.4);
    flex-shrink: 0;
    animation: floatIcon 3s infinite ease-in-out;
}

.badge-text h4 {
    font-size: 1.8rem;
    color: white;
    margin-bottom: 10px;
    font-weight: 700;
}

.badge-text p {
    font-size: 1.1rem;
    color: #94a3b8;
    line-height: 1.6;
}

.badge-sparkles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.badge-sparkles .sparkle {
    position: absolute;
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 50%;
    filter: blur(1px);
    animation: sparkle 2s infinite;
}

.badge-sparkles .sparkle:nth-child(1) { top: 20%; left: 10%; animation-delay: 0s; }
.badge-sparkles .sparkle:nth-child(2) { top: 60%; left: 80%; animation-delay: 0.5s; }
.badge-sparkles .sparkle:nth-child(3) { top: 80%; left: 30%; animation-delay: 1s; }

/* Brands CTA */
.brands-cta {
    background: linear-gradient(145deg, rgba(30, 41, 59, 0.9), rgba(15, 23, 42, 0.95));
    border-radius: 30px;
    padding: 60px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.cta-content h3 {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 20px;
    font-weight: 700;
}

.cta-content p {
    font-size: 1.2rem;
    color: #94a3b8;
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cta-btn {
    padding: 20px 35px;
    border-radius: 15px;
    font-size: 1.1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.cta-btn:hover {
    transform: translateY(-5px);
}

.brand-consult-btn {
    background: linear-gradient(135deg, #ff6b00, #ffa500);
    color: white;
    box-shadow: 0 10px 30px rgba(255, 107, 0, 0.3);
}

.brand-consult-btn:hover {
    box-shadow: 0 15px 40px rgba(255, 107, 0, 0.4);
}

.brand-catalog-btn {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: white;
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3);
}

.brand-catalog-btn:hover {
    box-shadow: 0 15px 40px rgba(59, 130, 246, 0.4);
}

.cta-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s;
}

.cta-btn:hover::before {
    left: 100%;
}

/* Animations */
@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    33% { transform: translateY(-20px) rotate(120deg); }
    66% { transform: translateY(20px) rotate(240deg); }
}

@keyframes floatRotate {
    0% { transform: rotate(0deg) translateX(0) translateY(0); }
    25% { transform: rotate(90deg) translateX(20px) translateY(-20px); }
    50% { transform: rotate(180deg) translateX(0) translateY(0); }
    75% { transform: rotate(270deg) translateX(-20px) translateY(20px); }
    100% { transform: rotate(360deg) translateX(0) translateY(0); }
}

@keyframes badgePulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.05); opacity: 0.8; }
}

@keyframes crownBob {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

@keyframes textShimmer {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
}

@keyframes glowPulse {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.1); }
}

@keyframes shine {
    0% { left: -100%; }
    20%, 100% { left: 100%; }
}

@keyframes floatIcon {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes sparkle {
    0%, 100% { opacity: 0; transform: scale(0.5); }
    50% { opacity: 1; transform: scale(1); }
}

/* Scroll Reveal Animation */
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.reveal-on-scroll.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 1400px) {
    .brands-section .section-title {
        font-size: 3rem;
    }
    
    .brand-card {
        height: 360px;
    }
}

@media (max-width: 1200px) {
    .brands-grid-3d {
        gap: 25px;
    }
    
    .brand-card-front,
    .brand-card-back {
        padding: 30px;
    }
    
    .logo-icon {
        width: 60px;
        height: 60px;
        font-size: 1.8rem;
    }
}

@media (max-width: 992px) {
    .brands-section {
        padding: 80px 0;
    }
    
    .brand-card {
        height: 350px;
    }
    
    .brand-logo-3d {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .authorized-partner-badge {
        padding: 30px;
    }
    
    .brands-cta {
        padding: 40px 30px;
    }
}

@media (max-width: 768px) {
    .brands-section .section-title {
        font-size: 2.5rem;
    }
    
    .section-badge {
        font-size: 0.8rem;
        padding: 10px 20px;
    }
    
    .brand-card {
        height: 340px;
    }
    
    .brand-stats {
        flex-direction: column;
        gap: 10px;
    }
    
    .badge-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cta-content h3 {
        font-size: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .cta-btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .brands-section .section-title {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .brand-card {
        height: 320px;
    }
    
    .brand-card-front,
    .brand-card-back {
        padding: 25px;
        border-radius: 20px;
    }
    
    .logo-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    .logo-text h3 {
        font-size: 1.5rem;
    }
    
    .badge-text h4 {
        font-size: 1.5rem;
    }
    
    .badge-icon {
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }
    
    .brands-cta {
        padding: 30px 20px;
    }
    
    .cta-content h3 {
        font-size: 1.8rem;
    }
    
    .cta-content p {
        font-size: 1rem;
    }
    
    .cta-btn {
        padding: 18px 25px;
        font-size: 1rem;
    }
}

/* ===== SERVICES SECTION ===== */
.services-section {
    padding: var(--space-xl) 0;
    background-color: var(--light-bg);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-lg);
}

.service-card {
    padding: var(--space-lg);
    background: var(--text-light);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-15px);
    box-shadow: var(--shadow-lg);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-orange), var(--primary-yellow));
}

.service-icon {
    font-size: 3rem;
    color: var(--primary-orange);
    margin-bottom: var(--space-md);
}

.service-card h3 {
    color: var(--primary-blue);
    margin-bottom: var(--space-sm);
}

.service-card p {
    color: var(--text-muted);
    margin-bottom: var(--space-md);
}

.service-features {
    list-style: none;
    margin-bottom: var(--space-lg);
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-dark);
}

.service-features i {
    color: var(--success-green);
    font-size: 0.8rem;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-orange);
    font-weight: 600;
    transition: var(--transition-normal);
}

.service-link:hover {
    gap: 0.75rem;
    color: var(--primary-orange-light);
}

/* ===== SYSTEM TYPES SECTION ===== */
.system-types-section {
    padding: var(--space-xl) 0;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-bg) 100%);
    color: var(--text-light);
}

.system-types-section .section-title,
.system-types-section .section-subtitle {
    color: var(--text-light);
}

.system-types {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
    margin-top: var(--space-lg);
}

.system-card {
    padding: var(--space-xl);
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition-normal);
    text-align: center;
}

.system-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-10px);
    border-color: var(--primary-orange);
}

.system-icon {
    font-size: 3rem;
    color: var(--primary-yellow);
    margin-bottom: var(--space-md);
}

.system-card h3 {
    color: var(--text-light);
    margin-bottom: var(--space-md);
}

.system-card p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: var(--space-lg);
}

.system-benefits {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.system-benefits span {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--primary-yellow);
}

.system-benefits i {
    color: var(--success-green);
}


/* ===== KITS SECTION ===== */
.kits-section {
    padding: var(--space-xl) 0;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    overflow: hidden;
}

.kits-slider-container {
    position: relative;
    margin-top: var(--space-lg);
    padding: 0 60px;
}

.kits-slider {
    display: flex;
    gap: var(--space-lg);
    overflow: hidden;
    scroll-behavior: smooth;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
}

/* Desktop: Show all 3 kits */
.kit-card {
    flex: 0 0 calc(33.333% - var(--space-lg));
    min-width: calc(33.333% - var(--space-lg));
    background: var(--text-light);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: all 0.4s ease;
    position: relative;
}

.kit-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.kit-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: linear-gradient(135deg, var(--primary-orange), var(--primary-yellow));
    color: var(--text-light);
    padding: 0.5rem 1.5rem;
    font-weight: 700;
    font-size: 0.9rem;
    z-index: 10;
    border-radius: var(--radius-md);
    clip-path: polygon(0 0, 100% 0, 90% 100%, 0% 100%);
}

.kit-image {
    height: 200px;
    overflow: hidden;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.kit-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-normal);
}

.kit-card:hover .kit-image img {
    transform: scale(1.1);
}

.kit-info {
    padding: var(--space-lg);
}

.kit-info h3 {
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

.kit-description {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: var(--space-md);
}

.kit-specs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-sm);
    margin-bottom: var(--space-md);
    padding-bottom: var(--space-md);
    border-bottom: 1px solid var(--light-gray);
}

.spec {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.25rem;
}

.spec i {
    color: var(--primary-orange);
    font-size: 1.2rem;
}

.spec span {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-dark);
}

.kit-features {
    list-style: none;
    margin-bottom: var(--space-lg);
}

.kit-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-dark);
}

.kit-features i {
    color: var(--success-green);
    font-size: 0.8rem;
}

.kit-cta {
    display: flex;
    gap: var(--space-sm);
    align-items: center;
}

.kit-cta .btn {
    flex: 1;
}

.btn-phone {
    width: 50px;
    height: 50px;
    border-radius: var(--radius-round);
    background: var(--success-green);
    color: var(--text-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: var(--transition-normal);
}

.btn-phone:hover {
    background: #0da86d;
    transform: scale(1.1);
}

/* Slider Navigation */
.slider-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--space-lg);
    margin-top: var(--space-xl);
    position: relative;
}

.slider-nav-btn {
    width: 50px;
    height: 50px;
    border-radius: var(--radius-round);
    background: var(--text-light);
    border: 2px solid var(--primary-orange);
    color: var(--primary-orange);
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition-normal);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
    flex-shrink: 0;
    z-index: 10;
}

.slider-nav-btn:hover:not(:disabled) {
    background: var(--primary-orange);
    color: var(--text-light);
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(255, 107, 0, 0.4);
}

.slider-nav-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    border-color: var(--light-gray);
    color: var(--light-gray);
}

/* Slider Dots Container */
.slider-dots-container {
    display: none;
    justify-content: center;
    gap: 0.75rem;
    margin: 0 var(--space-md);
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: var(--radius-round);
    background: var(--light-gray);
    cursor: pointer;
    transition: var(--transition-normal);
    border: none;
    padding: 0;
}

.slider-dot.active {
    background: var(--primary-orange);
    width: 30px;
    border-radius: 6px;
}

/* Tablet: Show 2 kits */
@media (max-width: 1200px) {
    .kits-slider-container {
        padding: 0 40px;
    }
    
    .kit-card {
        flex: 0 0 calc(50% - var(--space-lg));
        min-width: calc(50% - var(--space-lg));
    }
    
    .slider-nav-btn {
        display: none;
    }
    
    .slider-dots-container {
        display: flex;
    }
}

/* Mobile: Show 1 kit */
@media (max-width: 768px) {
    .kits-slider-container {
        padding: 0 20px;
    }
    
    .kit-card {
        flex: 0 0 calc(100% - var(--space-lg));
        min-width: calc(100% - var(--space-lg));
    }
    
    .slider-nav-btn {
        display: none;
    }
    
    .slider-dots-container {
        display: flex;
    }
    
    .kit-image {
        height: 180px;
    }
}

@media (max-width: 576px) {
    .kits-slider-container {
        padding: 0 10px;
    }
    
    .kit-specs {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
    
    .kit-cta {
        flex-direction: column;
    }
    
    .kit-cta .btn {
        width: 100%;
    }
    
    .btn-phone {
        width: 100%;
        height: 45px;
        border-radius: var(--radius-md);
        margin-top: 0.5rem;
    }
}

/* ===== SUBSIDY SECTION ===== */
.subsidy-section {
    padding: var(--space-xl) 0;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

.subsidy-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    align-items: center;
}

.subsidy-info h3 {
    color: var(--primary-blue);
    font-size: 2rem;
    margin-bottom: var(--space-md);
}

.subsidy-info p {
    color: var(--text-muted);
    margin-bottom: var(--space-lg);
    font-size: 1.1rem;
}

.subsidy-details {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
    margin: var(--space-lg) 0;
}

.subsidy-card {
    padding: var(--space-lg);
    background: var(--text-light);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: var(--transition-normal);
}

.subsidy-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.subsidy-icon {
    font-size: 2.5rem;
    color: var(--primary-orange);
    margin-bottom: var(--space-md);
}

.subsidy-card h4 {
    color: var(--primary-blue);
    margin-bottom: var(--space-sm);
}

.subsidy-amount {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-orange);
    margin-bottom: 0.5rem;
}

.subsidy-desc {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin: 0;
}

.subsidy-process {
    margin: var(--space-lg) 0;
}

.subsidy-process h4 {
    color: var(--primary-blue);
    margin-bottom: var(--space-md);
}

.subsidy-process ol {
    padding-left: var(--space-lg);
    color: var(--text-muted);
}

.subsidy-process li {
    margin-bottom: var(--space-sm);
    line-height: 1.6;
}

.subsidy-cta {
    display: flex;
    gap: var(--space-md);
    margin-top: var(--space-lg);
}

.subsidy-image {
    position: relative;
}

.image-container {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.image-container img {
    width: 100%;
    height: auto;
    display: block;
}

.subsidy-badge {
    position: absolute;
    top: -20px;
    right: -20px;
    background: linear-gradient(135deg, var(--primary-orange), var(--primary-yellow));
    color: var(--text-light);
    width: 120px;
    height: 120px;
    border-radius: var(--radius-round);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    animation: pulse 2s infinite;
}

.subsidy-badge span:first-child {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
}

.subsidy-badge span:last-child {
    font-size: 0.8rem;
    text-align: center;
    margin-top: 5px;
}

/* ===== GALLERY SECTION ===== */
.gallery-section {
    padding: var(--space-xl) 0;
    background-color: var(--light-bg);
}

.gallery-filters {
    display: flex;
    justify-content: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-xl);
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.75rem 1.5rem;
    background: var(--text-light);
    border: 2px solid var(--light-gray);
    border-radius: var(--radius-md);
    font-weight: 600;
    color: var(--text-dark);
    cursor: pointer;
    transition: var(--transition-normal);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary-orange);
    border-color: var(--primary-orange);
    color: var(--text-light);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-md);
    margin-bottom: var(--space-xl);
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 250px;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-normal);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    color: var(--text-light);
    padding: var(--space-md);
    transform: translateY(100%);
    transition: var(--transition-normal);
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h3 {
    color: var(--text-light);
    margin-bottom: 0.25rem;
    font-size: 1.2rem;
}

.gallery-overlay p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    font-size: 0.9rem;
}

.gallery-cta {
    text-align: center;
}

/* ===== CONTACT SECTION ===== */
.contact-section {
    padding: var(--space-xl) 0;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-bg) 100%);
    color: var(--text-light);
}

.contact-section .section-title,
.contact-section .section-subtitle {
    color: var(--text-light);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    margin-top: var(--space-lg);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.contact-card {
    display: flex;
    gap: var(--space-md);
    align-items: flex-start;
    padding: var(--space-lg);
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition-normal);
}

.contact-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
    border-color: var(--primary-orange);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-orange);
    color: var(--text-light);
    border-radius: var(--radius-round);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.contact-details h3 {
    color: var(--text-light);
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.contact-details p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.contact-details a {
    color: var(--primary-yellow);
    text-decoration: underline;
}

.contact-details a:hover {
    color: var(--primary-orange);
}

.contact-note {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 0.5rem !important;
}

.social-contact {
    margin-top: var(--space-md);
}

.social-contact h3 {
    color: var(--text-light);
    margin-bottom: var(--space-md);
}

.social-links {
    display: flex;
    gap: var(--space-sm);
}

.social-link {
    width: 50px;
    height: 50px;
    border-radius: var(--radius-round);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--text-light);
    transition: var(--transition-normal);
}

.social-link.facebook { background: #1877f2; }
.social-link.instagram { background: #e4405f; }
.social-link.whatsapp { background: #25d366; }
.social-link.youtube { background: #ff0000; }

.social-link:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: var(--shadow-md);
}

.contact-form {
    background: var(--text-light);
    padding: var(--space-xl);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
}

.contact-form h3 {
    color: var(--primary-blue);
    margin-bottom: var(--space-lg);
    text-align: center;
    font-size: 1.8rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
    margin-bottom: var(--space-md);
}

.form-group {
    margin-bottom: var(--space-md);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem 1.5rem;
    border: 2px solid var(--light-gray);
    border-radius: var(--radius-md);
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: var(--transition-normal);
    background: var(--light-bg);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-orange);
    background: var(--text-light);
    box-shadow: 0 0 0 3px rgba(255, 107, 0, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-form .btn {
    width: 100%;
    padding: 1.2rem;
    font-size: 1.1rem;
    margin-top: var(--space-md);
}

/* ===== FOOTER ===== */
.footer {
    background-color: var(--dark-bg);
    color: var(--text-light);
    padding: var(--space-xl) 0 var(--space-md);
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: var(--space-xl);
    margin-bottom: var(--space-xl);
}

.footer-col h4 {
    color: var(--text-light);
    margin-bottom: var(--space-lg);
    font-size: 1.3rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-orange), var(--primary-yellow));
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-md);
}

.footer-logo .logo-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-orange), var(--primary-yellow));
    border-radius: var(--radius-round);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--text-light);
}

.footer-logo-text h3 {
    color: var(--text-light);
    font-size: 1.5rem;
    margin: 0 0 0.25rem;
}

.footer-logo-text p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin: 0;
}

.footer-about {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: var(--space-md);
    line-height: 1.7;
    font-size: 0.95rem;
}

.footer-social {
    display: flex;
    gap: var(--space-sm);
    margin-top: var(--space-md);
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-round);
    background-color: var(--dark-bg-light);
    color: var(--text-light);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-normal);
}

.footer-social a:hover {
    background: linear-gradient(135deg, var(--primary-orange), var(--primary-yellow));
    transform: translateY(-3px);
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 0.75rem;
}

.footer-col ul a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition-normal);
    font-size: 0.95rem;
}

.footer-col ul a:hover {
    color: var(--primary-orange);
    padding-left: 5px;
}

.footer-contact p {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

.footer-contact i {
    color: var(--primary-orange);
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.footer-contact a {
    color: var(--primary-yellow);
}

.footer-contact a:hover {
    color: var(--primary-orange);
    text-decoration: underline;
}

.footer-middle {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: var(--space-lg) 0;
    margin: var(--space-lg) 0;
}

.certification h4 {
    color: var(--text-light);
    margin-bottom: var(--space-md);
    text-align: center;
}

.cert-badges {
    display: flex;
    justify-content: center;
    gap: var(--space-lg);
    flex-wrap: wrap;
}

.cert-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
}

.cert-badge i {
    color: var(--success-green);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--space-md);
    padding-top: var(--space-md);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    font-size: 0.9rem;
}

.footer-bottom-right {
    display: flex;
    gap: var(--space-lg);
}

.footer-bottom-right a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.footer-bottom-right a:hover {
    color: var(--primary-orange);
}

/* ===== FLOAT BUTTONS ===== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25d366;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    border-radius: 50px;
    box-shadow: var(--shadow-lg);
    z-index: 999;
    transition: var(--transition-normal);
    text-decoration: none;
}

.whatsapp-float:hover {
    background: #128c7e;
    transform: scale(1.05);
    box-shadow: var(--shadow-xl);
}

.whatsapp-float i {
    font-size: 1.5rem;
}

.whatsapp-text {
    font-weight: 600;
    font-size: 0.9rem;
}

.call-float {
    position: fixed;
    bottom: 100px;
    right: 30px;
    background: var(--primary-orange);
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    border-radius: 50px;
    box-shadow: var(--shadow-lg);
    z-index: 999;
    transition: var(--transition-normal);
    text-decoration: none;
}

.call-float:hover {
    background: var(--primary-orange-light);
    transform: scale(1.05);
    box-shadow: var(--shadow-xl);
}

.call-float i {
    font-size: 1.5rem;
}

.call-text {
    font-weight: 600;
    font-size: 0.9rem;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes scrollWheel {
    0% {
        transform: translateY(0);
        opacity: 1;
    }
    100% {
        transform: translateY(20px);
        opacity: 0;
    }
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1200px) {
    .container {
        padding: 0 var(--space-lg);
    }
    
    h1 { font-size: 3rem; }
    h2 { font-size: 2.2rem; }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .brands-slider,
    .services-grid,
    .system-types,
    .gallery-grid,
    .footer-top {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .kit-card {
        flex: 0 0 calc(50% - var(--space-lg));
    }
    
    .subsidy-content {
        grid-template-columns: 1fr;
    }
    
    .subsidy-image {
        order: -1;
    }
}

@media (max-width: 992px) {
    .hero-content {
        text-align: center;
        align-items: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.5rem;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-cta .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .stats-grid,
    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .about-image {
        order: -1;
    }
    
    .kits-slider-container {
        padding: 0;
    }
    
    .kit-card {
        flex: 0 0 calc(100% - var(--space-lg));
    }
    
    .slider-nav-btn {
        display: none;
    }
    
    .nav {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background-color: var(--text-light);
        flex-direction: column;
        padding: var(--space-lg);
        transition: var(--transition-normal);
        box-shadow: var(--shadow-lg);
        z-index: 999;
        overflow-y: auto;
    }
    
    .nav.active {
        left: 0;
    }
    
    .nav-list {
        flex-direction: column;
        width: 100%;
        align-items: flex-start;
    }
    
    .nav-link {
        width: 100%;
        padding: 1rem 0;
        border-bottom: 1px solid var(--light-gray);
    }
    
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        padding: var(--space-sm) 0 var(--space-sm) var(--space-md);
        margin-top: var(--space-sm);
        border-left: 3px solid var(--primary-orange);
        display: none;
    }
    
    .dropdown.active .dropdown-menu {
        display: block;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }
    
    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }
    
    .whatsapp-float .whatsapp-text,
    .call-float .call-text {
        display: none;
    }
    
    .whatsapp-float,
    .call-float {
        width: 60px;
        height: 60px;
        border-radius: var(--radius-round);
        padding: 0;
        justify-content: center;
    }
    
    .call-float {
        bottom: 110px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 var(--space-md);
    }
    
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    h3 { font-size: 1.5rem; }
    
    .hero-section {
        height: auto;
        min-height: 100vh;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .slider-controls {
        bottom: var(--space-lg);
    }
    
    .brands-slider,
    .services-grid,
    .system-types,
    .gallery-grid,
    .subsidy-details,
    .footer-top {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .kit-cta {
        flex-direction: column;
    }
    
    .kit-cta .btn {
        width: 100%;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: var(--space-md);
    }
    
    .footer-bottom-right {
        flex-wrap: wrap;
        justify-content: center;
        gap: var(--space-md);
    }
}

@media (max-width: 576px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.8rem; }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .company-name {
        font-size: 1.2rem;
    }
    
    .company-tagline {
        font-size: 0.7rem;
    }
    
    .logo-icon {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .whatsapp-float,
    .call-float {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
    }
    
    .call-float {
        bottom: 80px;
    }
}


/* Designer Section */
.designer-section {
    margin-top: 3rem;
    padding: 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.designer-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    flex-wrap: wrap;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.2) 0%, rgba(26, 35, 126, 0.1) 100%);
    border-radius: 20px;
    position: relative;
    z-index: 1;
}

.designer-content::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, 
        #ff6b00, #ffb300, #1e40af, #3b82f6, #10b981);
    border-radius: 22px;
    z-index: -1;
    animation: borderGlow 3s linear infinite;
    background-size: 400% 400%;
}

.designed-by {
    color: #cbd5e1;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.agency-link {
    text-decoration: none;
    position: relative;
    display: inline-block;
    padding: 0.5rem 1.5rem;
    border-radius: 12px;
    background: linear-gradient(135deg, #1a237e 0%, #283593 100%);
    transition: all 0.3s ease;
    overflow: hidden;
}

.agency-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(26, 35, 126, 0.4);
}

.agency-link:hover .agency-text .deep {
    color: #3b82f6;
}

.agency-link:hover .agency-text .web {
    color: #10b981;
}

.agency-link:hover .agency-text .agency {
    color: #f59e0b;
}

.agency-text {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-family: 'Segoe UI', system-ui, sans-serif;
    font-weight: 800;
    font-size: 1.3rem;
    position: relative;
    z-index: 2;
}

.agency-text .deep {
    color: #3b82f6;
    text-shadow: 0 0 10px rgba(59, 130, 246, 0.5);
    transition: all 0.3s ease;
}

.agency-text .web {
    color: #10b981;
    text-shadow: 0 0 10px rgba(16, 185, 129, 0.5);
    transition: all 0.3s ease;
}

.agency-text .agency {
    color: #f59e0b;
    text-shadow: 0 0 10px rgba(245, 158, 11, 0.5);
    transition: all 0.3s ease;
}

.glow-effect {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(59, 130, 246, 0.1) 25%, 
        rgba(16, 185, 129, 0.1) 50%, 
        rgba(245, 158, 11, 0.1) 75%, 
        transparent 100%);
    animation: glowMove 3s linear infinite;
    z-index: 1;
}

.pulse-dot {
    position: absolute;
    width: 6px;
    height: 6px;
    background: #3b82f6;
    border-radius: 50%;
    opacity: 0;
    z-index: 1;
}

.pulse-dot.dot-1 {
    top: 20%;
    left: 10%;
    animation: pulse 2s ease-in-out infinite;
}

.pulse-dot.dot-2 {
    top: 50%;
    left: 50%;
    background: #10b981;
    animation: pulse 2s ease-in-out infinite 0.5s;
}

.pulse-dot.dot-3 {
    bottom: 20%;
    right: 10%;
    background: #f59e0b;
    animation: pulse 2s ease-in-out infinite 1s;
}

.designer-tag {
    background: linear-gradient(135deg, #ff6b00, #ffb300);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
    padding-left: 1.5rem;
}

.designer-tag::before {
    content: '✦';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    color: #ff6b00;
    animation: spin 4s linear infinite;
}

/* Animations */
@keyframes borderGlow {
    0% {
        background-position: 0% 50%;
        opacity: 0.7;
    }
    50% {
        background-position: 100% 50%;
        opacity: 1;
    }
    100% {
        background-position: 0% 50%;
        opacity: 0.7;
    }
}

@keyframes glowMove {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 0;
        transform: scale(0.5);
    }
    50% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes spin {
    0% {
        transform: translateY(-50%) rotate(0deg);
    }
    100% {
        transform: translateY(-50%) rotate(360deg);
    }
}

@keyframes textShimmer {
    0% {
        background-position: -200% center;
    }
    100% {
        background-position: 200% center;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .designer-content {
        flex-direction: column;
        gap: 0.5rem;
        padding: 1rem;
    }
    
    .agency-text {
        font-size: 1.1rem;
    }
    
    .agency-link {
        padding: 0.4rem 1rem;
    }
    
    .designed-by {
        font-size: 0.8rem;
    }
    
    .designer-tag {
        font-size: 0.75rem;
        padding-left: 1.2rem;
    }
}

@media (max-width: 480px) {
    .agency-text {
        font-size: 1rem;
    }
    
    .designer-content {
        padding: 0.75rem;
    }
}

/* ============================================
   SOLAR CALCULATOR SECTION STYLES
============================================ */
.calculator-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.calculator-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(201, 110, 48, 0.1) 0%, transparent 70%);
    z-index: 0;
}

.calculator-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(29, 91, 158, 0.1) 0%, transparent 70%);
    z-index: 0;
}

/* Calculator Container */
.calculator-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    position: relative;
    z-index: 1;
}

@media (max-width: 992px) {
    .calculator-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* Input Section */
.input-section {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(201, 110, 48, 0.1);
}

.input-section:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
    border-color: rgba(201, 110, 48, 0.3);
}

.input-header {
    text-align: center;
    margin-bottom: 40px;
}

.input-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #1d5b9e, #0a3d62);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 32px;
    color: white;
    box-shadow: 0 10px 30px rgba(29, 91, 158, 0.3);
    animation: float 3s ease-in-out infinite;
}

.input-header h3 {
    font-size: 28px;
    color: #1d5b9e;
    margin-bottom: 10px;
    font-weight: 700;
}

.input-header p {
    color: #666;
    font-size: 16px;
}

/* Input Groups */
.input-group {
    margin-bottom: 35px;
}

.input-group label {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #1d5b9e;
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 16px;
    transition: color 0.3s;
}

.input-group label i {
    font-size: 18px;
    color: #c96e30;
}

/* Property Type Selector */
.property-type-selector {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 20px;
}

.property-btn {
    position: relative;
    padding: 20px;
    background: white;
    border: 2px solid rgba(201, 110, 48, 0.2);
    border-radius: 15px;
    color: #666;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    font-weight: 500;
    overflow: hidden;
}

.property-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(201, 110, 48, 0.1), rgba(29, 91, 158, 0.1));
    opacity: 0;
    transition: opacity 0.3s;
}

.property-btn.active {
    background: linear-gradient(135deg, rgba(201, 110, 48, 0.1), rgba(29, 91, 158, 0.05));
    border-color: #c96e30;
    color: #1d5b9e;
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(201, 110, 48, 0.15);
}

.property-btn.active::before {
    opacity: 1;
}

.property-btn i {
    font-size: 28px;
    color: #c96e30;
    transition: all 0.3s;
}

.property-btn.active i {
    color: #1d5b9e;
    transform: scale(1.2);
}

.property-btn span {
    font-weight: 600;
    font-size: 18px;
}

.btn-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #2ecc71;
    color: white;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.property-info {
    padding: 15px;
    background: rgba(46, 204, 113, 0.1);
    border-radius: 10px;
    color: #27ae60;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1px solid rgba(46, 204, 113, 0.2);
    transition: all 0.3s;
}

.property-info:hover {
    background: rgba(46, 204, 113, 0.15);
    transform: translateX(5px);
}

.property-info i {
    font-size: 18px;
}

/* Input Wrapper */
.input-wrapper {
    position: relative;
    margin-bottom: 20px;
}

.input-wrapper input {
    width: 100%;
    padding: 18px 50px 18px 20px;
    background: white;
    border: 2px solid rgba(29, 91, 158, 0.2);
    border-radius: 12px;
    color: #333;
    font-size: 18px;
    font-weight: 500;
    transition: all 0.3s;
}

.input-wrapper input:focus {
    outline: none;
    border-color: #c96e30;
    box-shadow: 0 0 0 3px rgba(201, 110, 48, 0.1);
}

.input-symbol {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #1d5b9e;
    font-weight: 700;
    font-size: 20px;
}

.input-focus-line {
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #c96e30, #1d5b9e);
    transition: all 0.3s;
    transform: translateX(-50%);
}

.input-wrapper input:focus + .input-focus-line {
    width: 100%;
}

/* Input Slider */
.input-slider {
    margin-top: 25px;
}

.input-slider input[type="range"] {
    width: 100%;
    height: 8px;
    background: linear-gradient(90deg, #c96e30 0%, #1d5b9e 100%);
    border-radius: 4px;
    outline: none;
    -webkit-appearance: none;
    transition: all 0.3s;
}

.input-slider input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 28px;
    height: 28px;
    background: white;
    border: 3px solid #c96e30;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s;
}

.input-slider input[type="range"]::-webkit-slider-thumb:hover {
    transform: scale(1.2);
    box-shadow: 0 8px 20px rgba(201, 110, 48, 0.3);
}

.slider-labels {
    display: flex;
    justify-content: space-between;
    margin-top: 12px;
    color: #666;
    font-size: 14px;
    font-weight: 500;
}

/* Select Wrapper */
.select-wrapper {
    position: relative;
}

.select-wrapper select {
    width: 100%;
    padding: 18px 50px 18px 20px;
    background: white;
    border: 2px solid rgba(29, 91, 158, 0.2);
    border-radius: 12px;
    color: #333;
    font-size: 16px;
    font-weight: 500;
    appearance: none;
    cursor: pointer;
    transition: all 0.3s;
}

.select-wrapper select:focus {
    outline: none;
    border-color: #c96e30;
    box-shadow: 0 0 0 3px rgba(201, 110, 48, 0.1);
}

.select-arrow {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #1d5b9e;
    font-size: 18px;
    pointer-events: none;
    transition: transform 0.3s;
}

.select-wrapper select:focus + .select-arrow {
    transform: translateY(-50%) rotate(180deg);
}

/* Quick Info */
.quick-info {
    margin-top: 40px;
    padding: 25px;
    background: linear-gradient(135deg, rgba(29, 91, 158, 0.05), rgba(201, 110, 48, 0.05));
    border-radius: 15px;
    border: 1px solid rgba(29, 91, 158, 0.1);
    transition: all 0.3s;
}

.quick-info:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border-color: rgba(29, 91, 158, 0.2);
}

.quick-info h4 {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #1d5b9e;
    margin-bottom: 25px;
    font-size: 20px;
    font-weight: 600;
}

.quick-info h4 i {
    color: #c96e30;
    font-size: 24px;
}

.facts-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

@media (max-width: 768px) {
    .facts-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.fact-item {
    text-align: center;
    padding: 20px 15px;
    background: white;
    border-radius: 12px;
    border: 1px solid rgba(29, 91, 158, 0.1);
    transition: all 0.3s;
}

.fact-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border-color: #c96e30;
}

.fact-value {
    font-size: 28px;
    font-weight: 700;
    color: #1d5b9e;
    margin-bottom: 8px;
}

.fact-label {
    font-size: 12px;
    color: #666;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Calculate Button */
.calculate-btn {
    width: 100%;
    padding: 20px;
    margin-top: 30px;
    background: linear-gradient(135deg, #c96e30 0%, #ffa500 100%);
    color: white;
    border: none;
    border-radius: 15px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    position: relative;
    overflow: hidden;
}

.calculate-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: 0.5s;
}

.calculate-btn:hover::before {
    left: 100%;
}

.calculate-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(201, 110, 48, 0.3);
}

.calculate-btn i {
    font-size: 22px;
    transition: transform 0.3s;
}

.calculate-btn:hover i {
    transform: rotate(15deg) scale(1.2);
}

/* Results Section */
.results-section {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(201, 110, 48, 0.1);
}

.results-section:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
    border-color: rgba(201, 110, 48, 0.3);
}

.results-header {
    text-align: center;
    margin-bottom: 40px;
}

.results-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #c96e30, #ffa500);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 32px;
    color: white;
    box-shadow: 0 10px 30px rgba(201, 110, 48, 0.3);
    animation: float 3s ease-in-out infinite;
}

.results-header h3 {
    font-size: 28px;
    color: #1d5b5e;
    margin-bottom: 10px;
    font-weight: 700;
}

.results-header p {
    color: #666;
    font-size: 16px;
}

/* Initial State */
.initial-state {
    text-align: center;
    padding: 60px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 400px;
}

.initial-icon {
    position: relative;
    width: 150px;
    height: 150px;
    margin-bottom: 30px;
}

.sun-animation {
    position: relative;
    width: 100%;
    height: 100%;
}

.sun {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ffa500, #c96e30);
    border-radius: 50%;
    box-shadow: 0 0 40px rgba(201, 110, 48, 0.5);
    animation: sunGlow 3s infinite alternate;
}

@keyframes sunGlow {
    0%, 100% { box-shadow: 0 0 40px rgba(201, 110, 48, 0.5); }
    50% { box-shadow: 0 0 60px rgba(201, 110, 48, 0.8); }
}

.ray {
    position: absolute;
    background: linear-gradient(135deg, #ffa500, #c96e30);
    border-radius: 10px;
}

.ray1 { width: 100px; height: 10px; top: 20px; left: 25px; animation: rayRotate 4s infinite linear; }
.ray2 { width: 10px; height: 100px; top: 25px; left: 20px; animation: rayRotate 4s infinite linear reverse; }
.ray3 { width: 70px; height: 10px; top: 70px; left: 40px; transform: rotate(45deg); animation: rayPulse 2s infinite; }
.ray4 { width: 10px; height: 70px; top: 40px; left: 70px; transform: rotate(45deg); animation: rayPulse 2s infinite reverse; }

@keyframes rayRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes rayPulse {
    0%, 100% { opacity: 0.7; }
    50% { opacity: 1; }
}

.initial-state i {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 40px;
    color: white;
    z-index: 2;
}

.initial-state h4 {
    color: #1d5b9e;
    margin-bottom: 15px;
    font-size: 24px;
    font-weight: 700;
}

.initial-state p {
    max-width: 400px;
    color: #666;
    line-height: 1.6;
    font-size: 16px;
}

/* Results Display */
.results-display {
    display: flex;
    flex-direction: column;
    gap: 30px;
    animation: fadeIn 0.6s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Property Badge */
.property-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 25px;
    background: linear-gradient(135deg, rgba(29, 91, 158, 0.1), rgba(201, 110, 48, 0.1));
    border-radius: 30px;
    color: #1d5b9e;
    font-size: 14px;
    font-weight: 600;
    border: 1px solid rgba(29, 91, 158, 0.2);
    width: fit-content;
    animation: badgeSlide 0.5s ease;
}

@keyframes badgeSlide {
    from { transform: translateX(-20px); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

.property-badge i {
    color: #c96e30;
}

/* Main Result */
.main-result {
    background: linear-gradient(135deg, rgba(29, 91, 158, 0.05), rgba(201, 110, 48, 0.05));
    border-radius: 20px;
    padding: 30px;
    border: 1px solid rgba(29, 91, 158, 0.1);
    animation: scaleIn 0.6s ease;
}

@keyframes scaleIn {
    from { transform: scale(0.9); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.result-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

@media (max-width: 576px) {
    .result-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

.result-item {
    text-align: center;
}

.result-label {
    font-size: 14px;
    color: #666;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
}

.result-value {
    font-size: 36px;
    font-weight: 700;
    color: #1d5b9e;
}

.highlight {
    color: #c96e30;
}

.highlight-green {
    color: #2ecc71;
}

/* Detailed Results */
.detailed-results {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.result-item.detailed {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: white;
    border-radius: 15px;
    border: 1px solid rgba(29, 91, 158, 0.1);
    transition: all 0.3s;
    animation: slideInRight 0.6s ease backwards;
}

@keyframes slideInRight {
    from { transform: translateX(-20px); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

.result-item.detailed:nth-child(1) { animation-delay: 0.1s; }
.result-item.detailed:nth-child(2) { animation-delay: 0.2s; }
.result-item.detailed:nth-child(3) { animation-delay: 0.3s; }
.result-item.detailed:nth-child(4) { animation-delay: 0.4s; }

.result-item.detailed:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border-color: #c96e30;
}

.result-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.result-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(29, 91, 158, 0.1), rgba(201, 110, 48, 0.1));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #1d5b9e;
    transition: all 0.3s;
}

.result-item.detailed:hover .result-icon {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, rgba(29, 91, 158, 0.2), rgba(201, 110, 48, 0.2));
}

.subsidy-item .result-icon {
    background: linear-gradient(135deg, rgba(46, 204, 113, 0.1), rgba(39, 174, 96, 0.1));
    color: #2ecc71;
}

.result-text {
    display: flex;
    flex-direction: column;
}

.result-title {
    color: #1d5b9e;
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 4px;
}

.result-desc {
    color: #666;
    font-size: 13px;
}

.result-amount {
    font-weight: 700;
    font-size: 20px;
    color: #1d5b5e;
}

/* Additional Info */
.additional-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

@media (max-width: 576px) {
    .additional-info {
        grid-template-columns: 1fr;
    }
}

.info-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: linear-gradient(135deg, rgba(29, 91, 158, 0.05), rgba(201, 110, 48, 0.05));
    border-radius: 15px;
    border: 1px solid rgba(29, 91, 158, 0.1);
    transition: all 0.3s;
    animation: fadeInUp 0.6s ease backwards;
}

.info-item:nth-child(1) { animation-delay: 0.5s; }
.info-item:nth-child(2) { animation-delay: 0.6s; }

@keyframes fadeInUp {
    from { transform: translateY(20px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.info-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border-color: #c96e30;
}

.info-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(29, 91, 158, 0.1), rgba(201, 110, 48, 0.1));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #1d5b9e;
    transition: all 0.3s;
}

.info-item:hover .info-icon {
    transform: scale(1.1);
    background: linear-gradient(135deg, rgba(29, 91, 158, 0.2), rgba(201, 110, 48, 0.2));
}

.info-content {
    display: flex;
    flex-direction: column;
}

.info-value {
    color: #1d5b5e;
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 4px;
}

.info-label {
    color: #666;
    font-size: 13px;
}

/* Results CTA Button */
.results-cta {
    width: 100%;
    padding: 20px;
    background: linear-gradient(135deg, #1d5b9e, #0a3d62);
    color: white;
    border: none;
    border-radius: 15px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.6s ease 0.7s backwards;
}

.results-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: 0.5s;
}

.results-cta:hover::before {
    left: 100%;
}

.results-cta:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(29, 91, 158, 0.3);
}

.results-cta i {
    font-size: 22px;
    transition: transform 0.3s;
}

.results-cta:hover i {
    transform: rotate(15deg) scale(1.2);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .calculator-container {
        gap: 30px;
    }
    
    .input-section,
    .results-section {
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .calculator-section {
        padding: 80px 0;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .input-header h3,
    .results-header h3 {
        font-size: 24px;
    }
    
    .initial-state {
        padding: 40px 20px;
        min-height: 300px;
    }
    
    .initial-icon {
        width: 120px;
        height: 120px;
    }
    
    .sun {
        width: 60px;
        height: 60px;
    }
    
    .fact-value {
        font-size: 24px;
    }
    
    .result-value {
        font-size: 28px;
    }
}

@media (max-width: 576px) {
    .calculator-section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .input-section,
    .results-section {
        padding: 25px 20px;
    }
    
    .property-type-selector {
        grid-template-columns: 1fr;
    }
    
    .input-group {
        margin-bottom: 25px;
    }
    
    .input-wrapper input,
    .select-wrapper select {
        padding: 15px 40px 15px 15px;
        font-size: 16px;
    }
    
    .calculate-btn,
    .results-cta {
        padding: 18px;
        font-size: 16px;
    }
    
    .result-item.detailed {
        padding: 15px;
    }
    
    .result-icon {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
}


/* ============================================
   FOUNDER SECTION - MODERN 3D DESIGN
============================================ */
.founder-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #0a0f1c 0%, #1a2036 50%, #0a0f1c 100%);
    position: relative;
    overflow: hidden;
    color: #ffffff;
}

/* Animated Background */
.background-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

.bg-circle {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.15;
    animation: float 20s infinite ease-in-out;
}

.bg-circle.circle-1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, #ff6b00, transparent 70%);
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.bg-circle.circle-2 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, #3b82f6, transparent 70%);
    bottom: 15%;
    right: 10%;
    animation-delay: -5s;
}

.bg-circle.circle-3 {
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, #10b981, transparent 70%);
    top: 60%;
    left: 80%;
    animation-delay: -10s;
}

.floating-solar-panel {
    position: absolute;
    width: 100px;
    height: 100px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23ffffff' opacity='0.1'%3E%3Cpath d='M4 2a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2V4a2 2 0 0 0-2-2H4zm0 2h16v12H4V4zm2 2v8h4V6H6zm6 0v8h4V6h-4z'/%3E%3C/svg%3E");
    animation: floatRotate 25s infinite linear;
    top: 20%;
    right: 15%;
}

.floating-bolt {
    position: absolute;
    width: 80px;
    height: 80px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23ff6b00' opacity='0.2'%3E%3Cpath d='M11 1.5v9H3l8 10.5v-9H21L11 1.5z'/%3E%3C/svg%3E");
    animation: floatBounce 15s infinite ease-in-out;
    bottom: 25%;
    left: 10%;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
    z-index: 2;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 12px 30px;
    background: linear-gradient(90deg, rgba(255, 107, 0, 0.1), rgba(59, 130, 246, 0.1));
    border: 1px solid rgba(255, 107, 0, 0.3);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #ff6b00;
    margin-bottom: 30px;
    animation: pulseBadge 2s infinite;
}

.section-badge i {
    color: #3b82f6;
    animation: spinSlow 10s infinite linear;
}

.section-title {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.1;
}

.title-line {
    display: block;
    font-size: 1.5rem;
    color: #94a3b8;
    font-weight: 500;
    margin-bottom: 10px;
}

.title-main {
    position: relative;
    display: inline-block;
}

.title-text {
    background: linear-gradient(135deg, #ff6b00, #ffd166, #3b82f6);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: textShimmer 3s infinite;
    position: relative;
    z-index: 2;
}

.title-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 150%;
    background: radial-gradient(circle, rgba(255, 107, 0, 0.3), transparent 70%);
    filter: blur(30px);
    z-index: 1;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #94a3b8;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Founder Content Wrapper */
.founder-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    position: relative;
    z-index: 2;
    margin-bottom: 80px;
}

@media (max-width: 1200px) {
    .founder-content-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* 3D Profile Card */
.founder-profile-3d {
    perspective: 1500px;
}

.profile-card-3d {
    background: linear-gradient(145deg, rgba(30, 41, 59, 0.8), rgba(15, 23, 42, 0.9));
    border-radius: 30px;
    padding: 40px;
    transform-style: preserve-3d;
    transform: rotateY(-5deg);
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    transition: transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.profile-card-3d:hover {
    transform: rotateY(0deg) translateY(-10px);
}

.profile-card-3d::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ff6b00, #3b82f6, #10b981);
    z-index: 3;
}

/* Profile Image 3D */
.profile-image-3d {
    position: relative;
    margin-bottom: 40px;
}

.image-frame {
    position: relative;
    width: 280px;
    height: 280px;
    margin: 0 auto;
    transform-style: preserve-3d;
    transform: rotateX(5deg) rotateY(-10deg);
    transition: transform 0.6s ease;
}

.profile-card-3d:hover .image-frame {
    transform: rotateX(0deg) rotateY(0deg);
}

.image-container {
    width: 100%;
    height: 100%;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.05);
    transform: translateZ(30px);
}

.image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.profile-card-3d:hover .image-container img {
    transform: scale(1.05);
}

.image-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: shine 3s infinite;
}

.image-glow {
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: radial-gradient(circle, rgba(255, 107, 0, 0.2), transparent 70%);
    filter: blur(20px);
    z-index: -1;
}

/* Experience Floating Badge */
.experience-floating {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 120px;
    height: 120px;
    animation: floatRotate 20s infinite linear;
}

.experience-inner {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #ff6b00, #ffd166);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #0f172a;
    font-weight: 800;
    transform: translateZ(40px);
    box-shadow: 0 10px 40px rgba(255, 107, 0, 0.4);
}

.exp-number {
    font-size: 2rem;
    line-height: 1;
}

.exp-text {
    font-size: 0.8rem;
    text-align: center;
    font-weight: 600;
    margin-top: 5px;
}

.exp-orbit {
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border: 2px dashed rgba(255, 107, 0, 0.5);
    border-radius: 50%;
    animation: orbitSpin 10s infinite linear;
}

/* Achievements Ring */
.achievements-ring {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 20px;
    background: rgba(15, 23, 42, 0.8);
    padding: 15px 30px;
    border-radius: 50px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.ring-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.ring-item i {
    color: #ffd166;
    font-size: 1.2rem;
}

.ring-item span {
    font-size: 0.8rem;
    color: #94a3b8;
    font-weight: 500;
}

/* Profile Info 3D */
.profile-info-3d {
    position: relative;
    z-index: 2;
}

.name-title {
    text-align: center;
    margin-bottom: 30px;
}

.founder-name {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 10px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.name-part {
    background: linear-gradient(135deg, #ffffff, #94a3b8);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    position: relative;
}

.name-part:first-child::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #ff6b00, transparent);
}

.title-glow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    color: #ff6b00;
    font-size: 1.2rem;
    font-weight: 600;
}

.title-glow i {
    animation: crownBob 2s infinite ease-in-out;
}

.company-info {
    text-align: center;
    margin-bottom: 40px;
}

.company-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 700;
    color: #3b82f6;
    margin-bottom: 10px;
}

.company-logo i {
    color: #ffd166;
    animation: sunRotate 20s infinite linear;
}

.company-tagline {
    color: #94a3b8;
    font-size: 1rem;
}

/* Stats Counter 3D */
.stats-counter-3d {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 40px;
}

.stat-item-3d {
    background: linear-gradient(145deg, rgba(30, 41, 59, 0.6), rgba(15, 23, 42, 0.8));
    border-radius: 20px;
    padding: 25px;
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: transform 0.3s ease;
}

.stat-item-3d:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 107, 0, 0.3);
}

.stat-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ff6b00, #ffa500);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.stat-content {
    flex: 1;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.9rem;
    color: #94a3b8;
    font-weight: 500;
}

.stat-sparkle {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 60px;
    height: 60px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1), transparent 70%);
    filter: blur(10px);
    opacity: 0;
    transition: opacity 0.3s;
}

.stat-item-3d:hover .stat-sparkle {
    opacity: 1;
}

/* Social Media 3D */
.social-media-3d {
    margin-top: 40px;
}

.social-media-3d h4 {
    text-align: center;
    color: #94a3b8;
    margin-bottom: 20px;
    font-size: 1.1rem;
    font-weight: 500;
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.social-btn {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px;
    border-radius: 15px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-btn i {
    font-size: 1.2rem;
}

.social-btn.whatsapp {
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: white;
}

.social-btn.facebook {
    background: linear-gradient(135deg, #1877f2, #0a5ac1);
    color: white;
}

.social-btn.instagram {
    background: linear-gradient(135deg, #e4405f, #c13584);
    color: white;
}

.social-btn.linkedin {
    background: linear-gradient(135deg, #0a66c2, #004182);
    color: white;
}

.social-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    z-index: 2;
}

.btn-wave {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s;
}

.social-btn:hover .btn-wave {
    transform: translateX(100%);
}

/* Founder Details 3D */
.founder-details-3d {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Accordion Styles */
.detail-accordion {
    background: linear-gradient(145deg, rgba(30, 41, 59, 0.8), rgba(15, 23, 42, 0.9));
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.detail-accordion.active {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transform: translateY(-5px);
}

.accordion-header {
    padding: 25px 30px;
    display: flex;
    align-items: center;
    gap: 20px;
    cursor: pointer;
    background: linear-gradient(90deg, rgba(255, 107, 0, 0.1), transparent);
    transition: background 0.3s;
}

.accordion-header:hover {
    background: linear-gradient(90deg, rgba(255, 107, 0, 0.2), transparent);
}

.accordion-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ff6b00, #ffa500);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.accordion-title h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 5px;
    color: #ffffff;
}

.accordion-title p {
    font-size: 0.9rem;
    color: #94a3b8;
}

.accordion-arrow {
    margin-left: auto;
    transition: transform 0.4s;
}

.detail-accordion.active .accordion-arrow {
    transform: rotate(180deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.detail-accordion.active .accordion-content {
    max-height: 1000px;
}

/* Vision Statement */
.vision-statement {
    padding: 30px;
    position: relative;
}

.vision-icon {
    position: absolute;
    top: 30px;
    left: 30px;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
}

.vision-quote {
    font-size: 1.2rem;
    font-style: italic;
    color: #e2e8f0;
    line-height: 1.6;
    border-left: 4px solid #ff6b00;
    padding-left: 20px;
    margin-left: 50px;
    position: relative;
}

/* Expertise Grid 3D */
.expertise-grid-3d {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    padding: 30px;
}

.expertise-card {
    perspective: 1000px;
    height: 140px;
}

.expertise-front, .expertise-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 15px;
    padding: 20px;
    transition: transform 0.8s;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.expertise-front {
    background: linear-gradient(145deg, rgba(30, 41, 59, 0.8), rgba(15, 23, 42, 0.9));
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.expertise-back {
    background: linear-gradient(145deg, rgba(255, 107, 0, 0.1), rgba(59, 130, 246, 0.1));
    border: 1px solid rgba(255, 107, 0, 0.2);
    transform: rotateY(180deg);
    color: #e2e8f0;
    font-size: 0.9rem;
    line-height: 1.4;
}

.expertise-card:hover .expertise-front {
    transform: rotateY(180deg);
}

.expertise-card:hover .expertise-back {
    transform: rotateY(0deg);
}

.expertise-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ff6b00, #ffa500);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.expertise-front h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: #ffffff;
}

.expertise-front p {
    font-size: 0.85rem;
    color: #94a3b8;
}

/* Message Wrapper */
.message-wrapper {
    padding: 30px;
}

.message-quote {
    position: relative;
    margin-bottom: 30px;
}

.quote-icon {
    position: absolute;
    color: #ff6b00;
    font-size: 2rem;
    opacity: 0.5;
}

.quote-icon.start {
    top: 0;
    left: 0;
}

.quote-icon.end {
    bottom: 0;
    right: 0;
}

.message-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #e2e8f0;
    text-align: center;
    padding: 0 40px;
}

.key-points {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 40px;
}

.point-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border-left: 3px solid #10b981;
}

.point-icon {
    color: #10b981;
    font-size: 1.2rem;
    margin-top: 2px;
}

.point-content h5 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: #ffffff;
}

.point-content p {
    font-size: 0.9rem;
    color: #94a3b8;
}

/* Signature Block */
.signature-block {
    text-align: right;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.signature-line {
    width: 200px;
    height: 1px;
    background: linear-gradient(90deg, transparent, #ff6b00, transparent);
    margin: 0 auto 20px;
}

.signature-content {
    display: inline-block;
    text-align: center;
}

.signature-name {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 5px;
    position: relative;
    display: inline-block;
}

.name-sparkle {
    position: absolute;
    top: -5px;
    right: -15px;
    width: 15px;
    height: 15px;
    background: #ffd166;
    border-radius: 50%;
    filter: blur(2px);
    animation: sparkle 2s infinite;
}

.signature-title {
    font-size: 1rem;
    color: #ff6b00;
    font-weight: 500;
    position: relative;
}

.title-underline {
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #ff6b00, transparent);
}

/* Timeline 3D */
.timeline-3d {
    padding: 30px;
    position: relative;
}

.timeline-track {
    position: absolute;
    top: 50%;
    left: 50px;
    right: 50px;
    height: 2px;
    background: linear-gradient(90deg, #ff6b00, #3b82f6, #10b981);
    transform: translateY(-50%);
    z-index: 1;
}

.milestone-item {
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
    z-index: 2;
}

.milestone-year {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ff6b00, #ffa500);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
    color: white;
    flex-shrink: 0;
    position: relative;
    box-shadow: 0 10px 20px rgba(255, 107, 0, 0.3);
}

.milestone-content {
    background: rgba(30, 41, 59, 0.8);
    padding: 20px;
    border-radius: 15px;
    flex: 1;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.milestone-content h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: #ffffff;
}

.milestone-content p {
    font-size: 0.9rem;
    color: #94a3b8;
}

.milestone-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(255, 107, 0, 0.2), transparent 70%);
    filter: blur(10px);
    z-index: -1;
}

/* Founder CTA 3D */
.founder-cta-3d {
    background: linear-gradient(145deg, rgba(30, 41, 59, 0.9), rgba(15, 23, 42, 0.95));
    border-radius: 30px;
    padding: 60px;
    position: relative;
    overflow: hidden;
    z-index: 2;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.cta-content-3d {
    position: relative;
    z-index: 2;
}

.cta-text {
    text-align: center;
    margin-bottom: 40px;
}

.cta-text h3 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #ffffff, #94a3b8);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.cta-text p {
    font-size: 1.2rem;
    color: #94a3b8;
    max-width: 600px;
    margin: 0 auto;
}

.cta-buttons-3d {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cta-btn-3d {
    position: relative;
    padding: 0;
    border: none;
    background: none;
    cursor: pointer;
    border-radius: 20px;
    overflow: hidden;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.cta-btn-3d:hover {
    transform: translateY(-5px) scale(1.05);
}

.btn-inner {
    padding: 20px 35px;
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 20px;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.call-btn .btn-inner {
    background: linear-gradient(135deg, #ff6b00, #ffa500);
    color: white;
}

.whatsapp-btn .btn-inner {
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: white;
}

.book-btn .btn-inner {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: white;
}

.btn-ripple {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    opacity: 0;
}

.cta-btn-3d:hover .btn-ripple {
    animation: ripple 0.6s ease-out;
}

/* Animations */
@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    33% { transform: translateY(-20px) rotate(120deg); }
    66% { transform: translateY(20px) rotate(240deg); }
}

@keyframes floatRotate {
    0% { transform: rotate(0deg) translateX(0) translateY(0); }
    25% { transform: rotate(90deg) translateX(20px) translateY(-20px); }
    50% { transform: rotate(180deg) translateX(0) translateY(0); }
    75% { transform: rotate(270deg) translateX(-20px) translateY(20px); }
    100% { transform: rotate(360deg) translateX(0) translateY(0); }
}

@keyframes floatBounce {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-30px) rotate(180deg); }
}

@keyframes pulseBadge {
    0%, 100% { box-shadow: 0 0 0 0 rgba(255, 107, 0, 0.4); }
    50% { box-shadow: 0 0 0 10px rgba(255, 107, 0, 0); }
}

@keyframes spinSlow {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes textShimmer {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
}

@keyframes shine {
    0% { left: -100%; }
    20%, 100% { left: 100%; }
}

@keyframes orbitSpin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes crownBob {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

@keyframes sunRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes sparkle {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.8); }
}

@keyframes ripple {
    0% { width: 0; height: 0; opacity: 1; }
    100% { width: 300px; height: 300px; opacity: 0; }
}

/* Scroll Reveal Animation */
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.reveal-on-scroll.revealed {
    opacity: 1;
    transform: translateY(0);
}

.reveal-text {
    opacity: 0;
    animation: revealText 1s ease forwards;
    animation-delay: 0.3s;
}

@keyframes revealText {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 1400px) {
    .section-title {
        font-size: 3.5rem;
    }
    
    .founder-name {
        font-size: 2.5rem;
    }
}

@media (max-width: 1200px) {
    .founder-content-wrapper {
        grid-template-columns: 1fr;
    }
    
    .profile-card-3d {
        max-width: 600px;
        margin: 0 auto;
    }
    
    .expertise-grid-3d {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .founder-section {
        padding: 80px 0;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .section-badge {
        font-size: 12px;
        padding: 10px 20px;
    }
    
    .image-frame {
        width: 220px;
        height: 220px;
    }
    
    .experience-floating {
        width: 100px;
        height: 100px;
        top: -15px;
        right: -15px;
    }
    
    .exp-number {
        font-size: 1.5rem;
    }
    
    .founder-name {
        font-size: 2rem;
    }
    
    .stats-counter-3d {
        grid-template-columns: 1fr;
    }
    
    .social-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-text h3 {
        font-size: 2rem;
    }
    
    .cta-buttons-3d {
        flex-direction: column;
    }
    
    .cta-btn-3d {
        width: 100%;
    }
    
    .btn-inner {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .profile-card-3d {
        padding: 25px;
    }
    
    .accordion-header {
        padding: 20px;
    }
    
    .message-text {
        font-size: 1rem;
        padding: 0 20px;
    }
    
    .milestone-item {
        flex-direction: column;
        text-align: center;
    }
    
    .timeline-track {
        display: none;
    }
}

.footer-logo{
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Footer Logo Image Box */
.footer-logo-image{
    width: 75px;
    height: 75px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent !important;      /* NO BOX */
}

/* Image Fit Perfect */
.footer-logo-image img{
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: transparent !important;
}

