/* Reset and Base Styles */
:root {
    --primary-blue: #0a3d62;
    --dark-blue: #082a47;
    --light-blue: #1d5b9e;
    --solar-orange: #c96e30;
    --solar-gold: #ffa500;
    --solar-green: #2ecc71;
    --light-green: #4cd964;
    --dark-green: #27ae60;
    --light-gray: #f8f9fa;
    --medium-gray: #e9ecef;
    --dark-gray: #6c757d;
    --text-dark: #333;
    --text-light: #fff;
    --shadow-light: rgba(0, 0, 0, 0.1);
    --shadow-medium: rgba(0, 0, 0, 0.2);
    --shadow-dark: rgba(0, 0, 0, 0.3);
    --gradient-blue: linear-gradient(135deg, #0a3d62 0%, #1d5b9e 100%);
    --gradient-orange: linear-gradient(135deg, #c96e30 0%, #ffa500 100%);
    --gradient-green: linear-gradient(135deg, #2ecc71 0%, #27ae60 100%);
    --gradient-solar: linear-gradient(135deg, #0a3d62 0%, #c96e30 100%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
    background-color: #fff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Preloader */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-blue);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s, visibility 0.5s;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader {
    text-align: center;
    color: white;
}

.solar-panel {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0 auto 20px;
}

.panel-cell {
    position: absolute;
    width: 25%;
    height: 25%;
    background: rgba(255, 255, 255, 0.3);
    border: 2px solid white;
}

.panel-cell:nth-child(1) { top: 0; left: 0; }
.panel-cell:nth-child(2) { top: 0; right: 0; }
.panel-cell:nth-child(3) { bottom: 0; left: 0; }
.panel-cell:nth-child(4) { bottom: 0; right: 0; }

.sun {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    background: var(--solar-orange);
    border-radius: 50%;
    animation: sunPulse 2s infinite;
}

@keyframes sunPulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); }
    50% { transform: translate(-50%, -50%) scale(1.2); }
}

/* Animation Classes */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

.floating {
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* Top Contact Bar */
.top-bar {
    background: var(--gradient-blue);
    color: var(--text-light);
    padding: 12px 0;
    font-size: 14px;
    position: relative;
    z-index: 1001;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.top-bar-left {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

.contact-link {
    color: var(--text-light);
    text-decoration: none;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.contact-link:hover {
    color: var(--solar-orange);
    transform: translateX(5px);
}

.top-bar-right {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: all 0.3s;
    color: white;
    text-decoration: none;
}

.social-icon:hover {
    background: var(--solar-orange);
    transform: translateY(-3px) rotate(10deg);
    box-shadow: 0 5px 15px rgba(201, 110, 48, 0.4);
}

/* Navigation */
.navbar {
    background: white;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
    transition: all 0.3s;
}

.navbar.scrolled {
    padding: 10px 0;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.15);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-img {
    height: 70px;
    width: auto;
    transition: transform 0.3s;
}

.logo:hover .logo-img {
    transform: rotate(5deg) scale(1.05);
}

.logo-text h2 {
    color: var(--primary-blue);
    font-size: 24px;
    margin: 0;
    font-weight: 700;
}

.logo-text p {
    color: var(--solar-orange);
    font-size: 12px;
    margin: 0;
    font-weight: 500;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 10px;
}

.nav-link {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    padding: 12px 20px;
    border-radius: 30px;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-link i {
    font-size: 16px;
    transition: transform 0.3s;
}

.nav-link:hover, .nav-link.active {
    background: var(--gradient-solar);
    color: white;
    box-shadow: 0 5px 15px rgba(10, 61, 98, 0.3);
}

.nav-link:hover i, .nav-link.active i {
    transform: rotate(15deg);
}

.glow-button {
    background: var(--gradient-orange);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.glow-button::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;
}

.glow-button:hover::before {
    left: 100%;
}

.glow-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(201, 110, 48, 0.4);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 6px;
    width: 30px;
}

.hamburger span {
    width: 100%;
    height: 3px;
    background: var(--primary-blue);
    transition: all 0.3s;
    border-radius: 3px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    overflow: hidden;
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide.active {
    opacity: 1;
}



.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding-top: 120px;
    color: white;
}

.hero-tagline {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.hero-tagline span {
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 500;
    backdrop-filter: blur(10px);
    animation: taglineSlide 15s infinite linear;
}

@keyframes taglineSlide {
    0%, 33% { background: rgba(255, 255, 255, 0.2); }
    34%, 66% { background: rgba(201, 110, 48, 0.7); }
    67%, 100% { background: rgba(46, 204, 113, 0.7); }
}

.animate-title {
    font-size: 3.5rem;
    margin-bottom: 20px;
    line-height: 1.2;
    font-weight: 700;
}

.highlight {
    color: var(--solar-orange);
    position: relative;
    display: inline-block;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--solar-orange);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.5s;
}

.animate-title:hover .highlight::after {
    transform: scaleX(1);
    transform-origin: left;
}

.brand {
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.animate-subtitle {
    font-size: 1.2rem;
    margin-bottom: 40px;
    line-height: 1.6;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

.hero-btn {
    padding: 18px 35px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 10px;
    border: none;
}

.primary-btn {
    background: var(--gradient-orange);
    color: white;
}

.secondary-btn {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.hero-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.primary-btn:hover {
    background: var(--solar-orange);
}

.secondary-btn:hover {
    background: white;
    color: var(--primary-blue);
}

.hero-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.scroll-indicator {
    width: 30px;
    height: 50px;
    border: 2px solid white;
    border-radius: 15px;
    position: relative;
}

.scroll-wheel {
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 10px;
    background: white;
    border-radius: 2px;
    animation: scrollWheel 2s infinite;
}

@keyframes scrollWheel {
    0%, 100% { top: 10px; opacity: 1; }
    50% { top: 30px; opacity: 0.5; }
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: none;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 24px;
    z-index: 3;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-btn:hover {
    background: var(--solar-orange);
    transform: translateY(-50%) scale(1.1);
}

.slider-btn.prev {
    left: 30px;
}

.slider-btn.next {
    right: 30px;
}

/* Stats Section */
.stats {
    padding: 80px 0;
    background: var(--light-gray);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.stat-card {
    background: white;
    padding: 40px 20px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gradient-orange);
    transform: scaleX(0);
    transition: transform 0.5s;
}

.stat-card:hover::before {
    transform: scaleX(1);
}

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.stat-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: var(--gradient-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: white;
    transition: all 0.3s;
}

.stat-card:hover .stat-icon {
    background: var(--gradient-orange);
    transform: rotateY(180deg);
}

.stat-content h3 {
    font-size: 48px;
    color: var(--primary-blue);
    margin-bottom: 10px;
    font-weight: 700;
}

.stat-content p {
    color: var(--dark-gray);
    font-weight: 500;
    font-size: 18px;
}

/* About Section */
.about {
    padding: 120px 0;
    background: white;
}

.about-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-images {
    position: relative;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 20px;
    height: 500px;
}

.image-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.main-img {
    grid-column: 1 / 3;
    height: 350px;
}

.side-img {
    height: 150px;
}

.img-animation {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s;
}

.image-container:hover .img-animation {
    transform: scale(1.1) rotate(2deg);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 0%, rgba(10, 61, 98, 0.7) 100%);
    display: flex;
    align-items: flex-end;
    padding: 30px;
}

.circle-text {
    width: 150px;
    height: 150px;
    background: var(--solar-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    padding: 20px;
    animation: rotateText 20s linear infinite;
}

@keyframes rotateText {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.image-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--gradient-green);
    color: white;
    padding: 10px 20px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 600;
    animation: badgePulse 2s infinite;
}

@keyframes badgePulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.section-label {
    color: var(--solar-orange);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 15px;
}

.section-title {
    font-size: 42px;
    color: var(--primary-blue);
    margin-bottom: 25px;
    line-height: 1.3;
}

.section-description {
    color: var(--dark-gray);
    margin-bottom: 40px;
    line-height: 1.8;
    font-size: 18px;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-bottom: 40px;
}

.feature-item {
    background: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    display: flex;
    gap: 20px;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.feature-item:hover {
    border-color: var(--solar-orange);
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(201, 110, 48, 0.1);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-blue);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
    flex-shrink: 0;
    transition: all 0.3s;
}

.feature-item:hover .feature-icon {
    background: var(--gradient-orange);
    transform: rotate(15deg);
}

.feature-content h4 {
    color: var(--primary-blue);
    margin-bottom: 10px;
    font-size: 18px;
}

.feature-content p {
    color: var(--dark-gray);
    font-size: 14px;
    line-height: 1.6;
}

.about-btn {
    background: var(--gradient-orange);
    color: white;
    border: none;
    padding: 18px 40px;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 600;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s;
}

.about-btn:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 25px rgba(201, 110, 48, 0.4);
}

/* Services Section */
.services {
    padding: 120px 0;
    background: var(--light-gray);
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 80px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.service-card {
    background: white;
    padding: 50px 30px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.5s;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gradient-orange);
    transform: scaleX(0);
    transition: transform 0.5s;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-20px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.service-icon {
    position: relative;
    width: 100px;
    height: 100px;
    margin: 0 auto 30px;
}

.icon-wrapper {
    width: 100%;
    height: 100%;
    background: var(--gradient-blue);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 42px;
    color: white;
    position: relative;
    z-index: 2;
    transition: all 0.5s;
}

.service-card:hover .icon-wrapper {
    background: var(--gradient-orange);
    transform: rotateY(180deg);
}

.icon-bg {
    position: absolute;
    top: 10px;
    left: 10px;
    width: 100%;
    height: 100%;
    background: rgba(201, 110, 48, 0.1);
    border-radius: 20px;
    transition: all 0.5s;
}

.service-card:hover .icon-bg {
    top: 0;
    left: 0;
}

.service-card h3 {
    font-size: 24px;
    color: var(--primary-blue);
    margin-bottom: 20px;
    text-align: center;
}

.service-card p {
    color: var(--dark-gray);
    margin-bottom: 25px;
    line-height: 1.6;
    text-align: center;
}

.service-features {
    list-style: none;
    margin-bottom: 30px;
}

.service-features li {
    color: var(--dark-gray);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-features li i {
    color: var(--solar-green);
}

.service-btn {
    background: transparent;
    color: var(--solar-orange);
    border: 2px solid var(--solar-orange);
    padding: 12px 30px;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0 auto;
    transition: all 0.3s;
}

.service-btn:hover {
    background: var(--solar-orange);
    color: white;
    transform: translateX(10px);
}


/* ============================================
   GALLERY SECTION STYLES
============================================ */
.gallery-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.gallery-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;
}

.gallery-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;
}

/* Gallery Filter */
.gallery-filter {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.filter-btn {
    padding: 12px 30px;
    background: white;
    border: 2px solid rgba(29, 91, 158, 0.1);
    border-radius: 30px;
    color: #666;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
    overflow: hidden;
}

.filter-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(29, 91, 158, 0.05), rgba(201, 110, 48, 0.05));
    opacity: 0;
    transition: opacity 0.3s;
}

.filter-btn.active {
    background: linear-gradient(135deg, rgba(29, 91, 158, 0.1), rgba(201, 110, 48, 0.05));
    border-color: #c96e30;
    color: #1d5b9e;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(201, 110, 48, 0.15);
}

.filter-btn.active::before {
    opacity: 1;
}

.filter-btn:hover:not(.active) {
    transform: translateY(-3px);
    border-color: rgba(29, 91, 158, 0.3);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.filter-btn i {
    font-size: 16px;
    transition: transform 0.3s;
}

.filter-btn:hover i {
    transform: scale(1.2);
}

/* Gallery Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

/* Gallery Item */
.gallery-item {
    position: relative;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.6s ease forwards;
}

/* Staggered animations for each item */
.gallery-item:nth-child(1) { animation-delay: 0.1s; }
.gallery-item:nth-child(2) { animation-delay: 0.2s; }
.gallery-item:nth-child(3) { animation-delay: 0.3s; }
.gallery-item:nth-child(4) { animation-delay: 0.4s; }
.gallery-item:nth-child(5) { animation-delay: 0.5s; }
.gallery-item:nth-child(6) { animation-delay: 0.6s; }
.gallery-item:nth-child(7) { animation-delay: 0.7s; }
.gallery-item:nth-child(8) { animation-delay: 0.8s; }
.gallery-item:nth-child(9) { animation-delay: 0.9s; }
.gallery-item:nth-child(10) { animation-delay: 1.0s; }
.gallery-item:nth-child(11) { animation-delay: 1.1s; }
.gallery-item:nth-child(12) { animation-delay: 1.2s; }
.gallery-item:nth-child(13) { animation-delay: 1.3s; }
.gallery-item:nth-child(14) { animation-delay: 1.4s; }
.gallery-item:nth-child(15) { animation-delay: 1.5s; }
.gallery-item:nth-child(16) { animation-delay: 1.6s; }

/* Gallery Card */
.gallery-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(29, 91, 158, 0.1);
    height: 100%;
}

.gallery-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
    border-color: rgba(201, 110, 48, 0.3);
}

/* Gallery Image */
.gallery-img {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.gallery-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.gallery-card:hover .gallery-img img {
    transform: scale(1.1) rotate(2deg);
}

/* Image Overlay */
.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 0%, rgba(10, 61, 98, 0.7) 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
    display: flex;
    align-items: flex-end;
    padding: 25px;
}

.gallery-card:hover .image-overlay {
    opacity: 1;
}

.overlay-content {
    transform: translateY(30px);
    transition: transform 0.5s ease;
}

.gallery-card:hover .overlay-content {
    transform: translateY(0);
}

.project-type {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 30px;
    color: #1d5b9e;
    font-weight: 600;
    font-size: 14px;
    backdrop-filter: blur(10px);
}

.project-type i {
    color: #c96e30;
}

/* Gallery Content */
.gallery-content {
    padding: 25px;
}

.project-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: linear-gradient(135deg, rgba(29, 91, 158, 0.1), rgba(201, 110, 48, 0.1));
    border-radius: 20px;
    color: #1d5b9e;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
    transition: all 0.3s;
}

.gallery-card:hover .project-badge {
    background: linear-gradient(135deg, rgba(29, 91, 158, 0.15), rgba(201, 110, 48, 0.15));
    transform: translateX(5px);
}

.project-badge i {
    color: #c96e30;
}

.gallery-content h4 {
    color: #1d5b9e;
    font-size: 20px;
    margin-bottom: 12px;
    font-weight: 700;
    line-height: 1.3;
    transition: color 0.3s;
}

.gallery-card:hover .gallery-content h4 {
    color: #c96e30;
}

.gallery-content p {
    color: #666;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Project Meta */
.project-meta {
    display: flex;
    gap: 20px;
    padding-top: 15px;
    border-top: 1px solid rgba(29, 91, 158, 0.1);
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #666;
    font-size: 13px;
}

.meta-item i {
    color: #c96e30;
    font-size: 14px;
}

/* View More Button */
.gallery-cta {
    text-align: center;
    margin-top: 40px;
    position: relative;
    z-index: 1;
}

.view-more-btn {
    padding: 18px 45px;
    background: linear-gradient(135deg, #c96e30 0%, #ffa500 100%);
    color: white;
    border: none;
    border-radius: 30px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    position: relative;
    overflow: hidden;
}

.view-more-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;
}

.view-more-btn:hover::before {
    left: 100%;
}

.view-more-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(201, 110, 48, 0.3);
}

.view-more-btn i {
    font-size: 22px;
    transition: transform 0.3s;
}

.view-more-btn:hover i {
    transform: rotate(15deg) scale(1.2);
}

/* Modal Styles for Image Zoom */
.image-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    animation: fadeIn 0.3s ease;
}

.image-modal img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 10px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    animation: scaleIn 0.3s ease;
}

.image-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: white;
    font-size: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.image-modal-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes scaleIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* ============================================
   RESPONSIVE DESIGN
============================================ */
@media (max-width: 1200px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
    }
    
    .gallery-img {
        height: 220px;
    }
}

@media (max-width: 992px) {
    .gallery-section {
        padding: 80px 0;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .filter-btn {
        padding: 10px 20px;
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    .gallery-section {
        padding: 60px 0;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .gallery-img {
        height: 200px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .section-description {
        font-size: 16px;
        padding: 0 15px;
    }
    
    .gallery-filter {
        gap: 10px;
        margin-bottom: 40px;
    }
    
    .filter-btn span {
        display: none;
    }
    
    .filter-btn i {
        margin-right: 0;
    }
    
    .view-more-btn {
        padding: 15px 30px;
        font-size: 16px;
    }
}

@media (max-width: 576px) {
    .gallery-content {
        padding: 20px;
    }
    
    .gallery-content h4 {
        font-size: 18px;
    }
    
    .gallery-content p {
        font-size: 14px;
    }
    
    .project-meta {
        flex-direction: column;
        gap: 10px;
    }
    
    .section-title {
        font-size: 24px;
    }
}

@media (max-width: 400px) {
    .gallery-img {
        height: 180px;
    }
    
    .project-type {
        padding: 8px 15px;
        font-size: 12px;
    }
    
    .project-badge {
        font-size: 12px;
        padding: 6px 12px;
    }
    
    .gallery-content h4 {
        font-size: 16px;
    }
    
    .gallery-content p {
        font-size: 13px;
    }
}

/* Why Choose Us Section */
.why-choose {
    padding: 120px 0;
    background: var(--light-gray);
}

.why-choose-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.section-label-orange {
    color: var(--solar-orange);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 15px;
}

.why-choose-content h2 {
    font-size: 42px;
    color: var(--primary-blue);
    margin-bottom: 25px;
    line-height: 1.3;
}

.why-choose-content p {
    color: var(--dark-gray);
    margin-bottom: 40px;
    line-height: 1.8;
    font-size: 18px;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.benefit-item {
    background: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    display: flex;
    gap: 20px;
    transition: all 0.3s;
}

.benefit-item:hover {
    transform: translateX(10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: white;
    flex-shrink: 0;
    transition: all 0.3s;
}

.benefit-item:hover .benefit-icon {
    transform: rotate(15deg) scale(1.1);
}

.benefit-content h4 {
    color: var(--primary-blue);
    margin-bottom: 8px;
    font-size: 18px;
}

.benefit-content p {
    color: var(--dark-gray);
    font-size: 14px;
    margin: 0;
    line-height: 1.6;
}

.why-choose-image {
    position: relative;
}

.image-frame {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
}

.frame-decoration {
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    border: 2px solid var(--solar-orange);
    border-radius: 30px;
    z-index: -1;
    animation: frameGlow 3s infinite;
}

@keyframes frameGlow {
    0%, 100% { border-color: var(--solar-orange); }
    50% { border-color: var(--light-blue); }
}

/* Contact CTA */
.contact-cta {
    padding: 100px 0;
    background: var(--gradient-blue);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.contact-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 48px;
    color: white;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
}

.cta-btn.large {
    background: var(--gradient-orange);
    color: white;
    border: none;
    padding: 25px 50px;
    border-radius: 30px;
    font-size: 20px;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s;
}

.cta-btn.large:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Footer */
.footer {
    background: var(--dark-blue);
    color: white;
    padding: 80px 0 0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 60px;
}

.footer-column h3 {
    color: white;
    margin-bottom: 25px;
    font-size: 20px;
    position: relative;
    padding-bottom: 15px;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 3px;
    background: var(--solar-orange);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.footer-logo img {
    height: 60px;
}

.footer-logo .logo-text h3 {
    color: white;
    font-size: 22px;
    margin: 0;
}

.footer-logo .logo-text p {
    color: var(--solar-orange);
    font-size: 12px;
    margin: 0;
}

.footer-column p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: 25px;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-column ul li a:hover {
    color: var(--solar-orange);
    transform: translateX(10px);
}

.contact-info li {
    display: flex;
    gap: 15px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
    align-items: flex-start;
}

.contact-info li i {
    color: var(--solar-orange);
    margin-top: 5px;
    font-size: 18px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s;
}

.social-link:hover {
    background: var(--solar-orange);
    transform: translateY(-5px) rotate(15deg);
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.2);
    padding: 25px 0;
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

.footer-bottom p {
    margin: 5px 0;
}

/* WhatsApp Button */
.whatsapp-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 70px;
    height: 70px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 36px;
    z-index: 1000;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
    transition: all 0.3s;
    text-decoration: none;
}

.whatsapp-btn:hover {
    transform: scale(1.1) rotate(15deg);
    box-shadow: 0 15px 35px rgba(37, 211, 102, 0.6);
}

.whatsapp-tooltip {
    position: absolute;
    right: 80px;
    background: white;
    color: #25d366;
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    transform: translateX(20px);
    transition: all 0.3s;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.whatsapp-btn:hover .whatsapp-tooltip {
    opacity: 1;
    transform: translateX(0);
}

/* Scroll to Top Button */
.scroll-top {
    position: fixed;
    bottom: 120px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--solar-orange);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 20px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.scroll-top.show {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    background: var(--primary-blue);
    transform: translateY(-5px);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .animate-title {
        font-size: 2.8rem;
    }
    
    .stats-grid,
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .about-wrapper,
    .why-choose-wrapper {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .about-images {
        height: 400px;
    }
    
    .main-img {
        height: 250px;
    }
    
    .side-img {
        height: 150px;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 130px;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        padding: 30px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        transform: translateY(-150%);
        transition: transform 0.5s;
        z-index: 999;
    }
    
    .nav-menu.active {
        transform: translateY(0);
    }
    
    .nav-link {
        justify-content: center;
        padding: 15px;
    }
    
    .cta-btn {
        display: none;
    }
    
    .hero-content {
        padding-top: 80px;
        text-align: center;
    }
    
    .animate-title {
        font-size: 2.2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .stats-grid,
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .slider-btn {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .slider-btn.prev {
        left: 15px;
    }
    
    .slider-btn.next {
        right: 15px;
    }
    
    .whatsapp-btn {
        width: 60px;
        height: 60px;
        font-size: 28px;
        bottom: 20px;
        right: 20px;
    }
}

@media (max-width: 576px) {
    .hero {
        min-height: 600px;
    }
    
    .animate-title {
        font-size: 1.8rem;
    }
    
    .animate-subtitle {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .about-images {
        grid-template-columns: 1fr;
        height: auto;
    }
    
    .main-img,
    .side-img {
        height: 250px;
    }
    
    .circle-text {
        width: 120px;
        height: 120px;
        font-size: 14px;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-content h2 {
        font-size: 32px;
    }
    
    .cta-btn.large {
        padding: 20px 30px;
        font-size: 16px;
    }
}

/* ============================================
   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;
    }
}

.deepweb-link {
    color: #00ffff;
    border: 2px solid #00ffff;
    padding: 6px 14px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease-in-out;
}

/* Glow animation */
.deepweb-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255,255,255,0.5), transparent);
    transition: 0.5s;
}

.deepweb-link:hover::before {
    left: 100%;
}

.deepweb-link:hover {
    color: #111;
    background: #00ffff;
    box-shadow: 0 0 20px #00ffff, 0 0 40px rgba(0,255,255,0.6);
    transform: translateY(-3px) scale(1.05);
}

/* ============================================
   FOUNDER SECTION STYLES
============================================ */
.founder-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.founder-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(201, 110, 48, 0.1) 0%, transparent 70%);
    z-index: 0;
}

.founder-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(29, 91, 158, 0.1) 0%, transparent 70%);
    z-index: 0;
}

/* Founder Content Layout */
.founder-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

@media (max-width: 992px) {
    .founder-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* Profile Card */
.profile-card {
    background: white;
    border-radius: 25px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(201, 110, 48, 0.1);
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
    transform: translateY(30px);
}

.profile-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
    border-color: rgba(201, 110, 48, 0.3);
}

.profile-image {
    text-align: center;
    margin-bottom: 30px;
}

.image-container {
    position: relative;
    display: inline-block;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    transition: all 0.5s ease;
}

.image-container:hover {
    transform: scale(1.05) rotate(2deg);
}

.image-container img {
    width: 280px;
    height: 320px;
    object-fit: cover;
    transition: all 0.8s ease;
}

.image-container:hover img {
    transform: scale(1.1);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 61, 98, 0.7) 0%, rgba(29, 91, 158, 0.5) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.5s ease;
}

.image-container:hover .image-overlay {
    opacity: 1;
}

.image-overlay i {
    font-size: 60px;
    color: white;
    transform: scale(0) rotate(0deg);
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.image-container:hover .image-overlay i {
    transform: scale(1) rotate(360deg);
}

.experience-badge {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #c96e30, #ffa500);
    color: white;
    padding: 10px 25px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 18px;
    box-shadow: 0 10px 30px rgba(201, 110, 48, 0.4);
    animation: badgePulse 2s infinite;
}

@keyframes badgePulse {
    0%, 100% { transform: translateX(-50%) scale(1); }
    50% { transform: translateX(-50%) scale(1.05); }
}

/* Profile Info */
.profile-info {
    text-align: center;
}

.profile-info h3 {
    font-size: 32px;
    color: #1d5b9e;
    margin-bottom: 10px;
    font-weight: 700;
    position: relative;
    display: inline-block;
}

.profile-info h3::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #c96e30, #ffa500);
}

.designation {
    font-size: 20px;
    color: #c96e30;
    font-weight: 600;
    margin-bottom: 5px;
}

.company {
    font-size: 16px;
    color: #666;
    margin-bottom: 30px;
    font-weight: 500;
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 30px;
}

.stat-item {
    background: linear-gradient(135deg, rgba(29, 91, 158, 0.05), rgba(201, 110, 48, 0.05));
    padding: 20px;
    border-radius: 15px;
    border: 1px solid rgba(29, 91, 158, 0.1);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 15px;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border-color: #c96e30;
}

.stat-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #1d5b9e, #0a3d62);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 22px;
    transition: all 0.3s ease;
}

.stat-item:hover .stat-icon {
    background: linear-gradient(135deg, #c96e30, #ffa500);
    transform: rotate(15deg) scale(1.1);
}

.stat-content {
    flex: 1;
}

.stat-number {
    font-size: 32px;
    font-weight: 700;
    color: #1d5b9e;
    line-height: 1;
    margin-bottom: 5px;
}

.stat-item:hover .stat-number {
    color: #c96e30;
}

.stat-label {
    font-size: 14px;
    color: #666;
    font-weight: 500;
}

/* Social Links */
.social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
}

.social-link {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: white;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s;
}

.social-link:hover::before {
    opacity: 1;
}

.social-link.call {
    background: linear-gradient(135deg, #2ecc71, #27ae60);
}

.social-link.whatsapp {
    background: linear-gradient(135deg, #25d366, #128c7e);
}

.social-link.email {
    background: linear-gradient(135deg, #c96e30, #ffa500);
}

.social-link.linkedin {
    background: linear-gradient(135deg, #0077b5, #0a66c2);
}

.social-link:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* Founder Details */
.founder-details {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* Detail Card */
.detail-card {
    background: white;
    border-radius: 25px;
    padding: 35px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(29, 91, 158, 0.1);
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
    transform: translateY(30px);
}

.detail-card:nth-child(1) { animation-delay: 0.1s; }
.detail-card:nth-child(2) { animation-delay: 0.2s; }
.detail-card:nth-child(3) { animation-delay: 0.3s; }

.detail-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
    border-color: rgba(201, 110, 48, 0.3);
}

/* Card Header */
.card-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
}

.card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #1d5b9e, #0a3d62);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.detail-card:hover .card-icon {
    background: linear-gradient(135deg, #c96e30, #ffa500);
    transform: rotate(15deg) scale(1.1);
}

.card-title h4 {
    font-size: 24px;
    color: #1d5b9e;
    margin-bottom: 8px;
    font-weight: 700;
}

.card-subtitle {
    font-size: 16px;
    color: #c96e30;
    font-weight: 500;
}

/* Card Content */
.card-content {
    color: #555;
    line-height: 1.7;
}

.founder-bio {
    font-size: 17px;
    margin-bottom: 25px;
    color: #444;
}

.founder-bio .highlight {
    color: #c96e30;
    font-weight: 600;
}

.achievements {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.achievement-item {
    display: flex;
    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 ease;
}

.achievement-item:hover {
    transform: translateX(10px);
    border-color: #c96e30;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.achievement-item i {
    color: #c96e30;
    font-size: 24px;
    margin-top: 5px;
    flex-shrink: 0;
}

.achievement-item h5 {
    color: #1d5b9e;
    font-size: 18px;
    margin-bottom: 8px;
    font-weight: 600;
}

.achievement-item p {
    color: #666;
    font-size: 15px;
    line-height: 1.5;
}

/* Blockquote */
blockquote {
    font-size: 18px;
    font-style: italic;
    color: #1d5b9e;
    border-left: 4px solid #c96e30;
    padding-left: 20px;
    margin: 25px 0;
    line-height: 1.8;
}

/* Expertise Grid */
.expertise-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 25px;
}

@media (max-width: 768px) {
    .expertise-grid {
        grid-template-columns: 1fr;
    }
}

.expertise-item {
    display: flex;
    gap: 15px;
    padding: 20px;
    background: white;
    border-radius: 15px;
    border: 1px solid rgba(29, 91, 158, 0.1);
    transition: all 0.3s ease;
}

.expertise-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border-color: #c96e30;
}

.expertise-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;
    color: #1d5b9e;
    font-size: 22px;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.expertise-item:hover .expertise-icon {
    background: linear-gradient(135deg, #1d5b9e, #0a3d62);
    color: white;
    transform: scale(1.1);
}

.expertise-content h5 {
    color: #1d5b9e;
    font-size: 18px;
    margin-bottom: 8px;
    font-weight: 600;
}

.expertise-content p {
    color: #666;
    font-size: 14px;
    line-height: 1.5;
}

/* Message */
.message-text {
    font-size: 17px;
    color: #444;
    margin-bottom: 25px;
    line-height: 1.8;
}

.key-message {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
}

.message-point {
    display: flex;
    align-items: center;
    gap: 12px;
}

.message-point i {
    color: #2ecc71;
    font-size: 20px;
}

.message-point span {
    color: #555;
    font-size: 16px;
    font-weight: 500;
}

/* Signature */
.signature {
    text-align: right;
    padding-top: 20px;
    border-top: 1px solid rgba(29, 91, 158, 0.1);
    margin-top: 30px;
}

.signature-name {
    font-size: 22px;
    color: #1d5b9e;
    font-weight: 700;
    margin-bottom: 5px;
}

.signature-title {
    font-size: 16px;
    color: #c96e30;
    font-weight: 500;
}

/* Founder CTA */
.founder-cta {
    background: linear-gradient(135deg, #1d5b9e, #0a3d62);
    border-radius: 25px;
    padding: 50px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.6s ease 0.4s forwards;
    opacity: 0;
    transform: translateY(30px);
}

.founder-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.founder-cta:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
}

.cta-content {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

@media (max-width: 992px) {
    .cta-content {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
}

.cta-text h3 {
    font-size: 32px;
    color: white;
    margin-bottom: 15px;
    font-weight: 700;
}

.cta-text p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 500px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

@media (max-width: 576px) {
    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }
}

.cta-btn {
    padding: 18px 35px;
    border-radius: 15px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    border: none;
    white-space: nowrap;
}

.cta-btn.primary {
    background: linear-gradient(135deg, #c96e30, #ffa500);
    color: white;
}

.cta-btn.secondary {
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: white;
}

.cta-btn.outline {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.cta-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.cta-btn.primary:hover {
    background: linear-gradient(135deg, #ffa500, #c96e30);
}

.cta-btn.secondary:hover {
    background: linear-gradient(135deg, #128c7e, #25d366);
}

.cta-btn.outline:hover {
    background: white;
    color: #1d5b9e;
}

.cta-btn i {
    font-size: 20px;
    transition: transform 0.3s;
}

.cta-btn:hover i {
    transform: rotate(15deg) scale(1.2);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .founder-content {
        gap: 30px;
    }
    
    .profile-card,
    .detail-card {
        padding: 30px;
    }
    
    .cta-content {
        gap: 40px;
    }
}

@media (max-width: 992px) {
    .founder-section {
        padding: 80px 0;
    }
    
    .founder-cta {
        padding: 40px 30px;
    }
    
    .cta-text h3 {
        font-size: 28px;
    }
    
    .cta-text p {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .founder-section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .section-description {
        font-size: 16px;
    }
    
    .image-container img {
        width: 240px;
        height: 280px;
    }
    
    .profile-info h3 {
        font-size: 28px;
    }
    
    .designation {
        font-size: 18px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .card-header {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .card-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .card-title h4 {
        font-size: 22px;
    }
    
    .founder-cta {
        padding: 30px 20px;
    }
    
    .cta-text h3 {
        font-size: 24px;
    }
    
    .cta-btn {
        padding: 15px 25px;
        font-size: 16px;
    }
}

@media (max-width: 576px) {
    .section-title {
        font-size: 28px;
    }
    
    .image-container img {
        width: 200px;
        height: 240px;
    }
    
    .profile-card {
        padding: 25px 20px;
    }
    
    .detail-card {
        padding: 25px 20px;
    }
    
    .cta-buttons {
        width: 100%;
    }
    
    .cta-btn {
        width: 100%;
        justify-content: center;
    }
}

/* ============================================
   ELECTRICAL & PROTECTION SOLUTIONS STYLES
============================================ */

:root {
    --primary-blue: #0a3d62;
    --light-blue: #1d5b9e;
    --accent-orange: #ff6b35;
    --accent-green: #2ecc71;
    --light-gray: #f8f9fa;
    --medium-gray: #e9ecef;
    --dark-gray: #666;
}

/* Reset for Electrical Section Only */
.electrical-solutions-section * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.electrical-solutions-section {
    padding: 80px 0;
    background: white;
    position: relative;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    width: 100%;
    overflow: hidden;
}

/* Container - Scoped to this section only */
.electrical-solutions-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

/* Section Header */
.electrical-solutions-section .section-header {
    text-align: center;
    margin-bottom: 60px;
    width: 100%;
}

.electrical-solutions-section .section-title {
    font-size: 42px;
    color: var(--primary-blue);
    margin-bottom: 15px;
    font-weight: 700;
    position: relative;
    display: inline-block;
    line-height: 1.2;
}

.electrical-solutions-section .section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--accent-orange);
    border-radius: 2px;
}

.electrical-solutions-section .section-subtitle {
    font-size: 18px;
    color: var(--dark-gray);
    max-width: 600px;
    margin: 30px auto 0;
    line-height: 1.6;
}

/* Product Sections */
.electrical-solutions-section .product-section {
    margin-bottom: 80px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
    width: 100%;
}

.electrical-solutions-section .product-section.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Product Grid */
.electrical-solutions-section .product-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    width: 100%;
}

.electrical-solutions-section .product-grid.reverse {
    direction: rtl;
}

.electrical-solutions-section .product-grid.reverse > * {
    direction: ltr;
}

/* Product Image */
.electrical-solutions-section .product-image {
    position: relative;
    width: 100%;
}

.electrical-solutions-section .image-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.5s ease;
    width: 100%;
    height: 400px;
}

.electrical-solutions-section .image-container:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.electrical-solutions-section .main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.8s ease;
}

.electrical-solutions-section .image-container:hover .main-image {
    transform: scale(1.05);
}

.electrical-solutions-section .image-label {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: var(--accent-orange);
    color: white;
    padding: 10px 25px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    z-index: 2;
    max-width: calc(100% - 40px);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* Product Content */
.electrical-solutions-section .product-content {
    padding: 20px;
    width: 100%;
}

.electrical-solutions-section .product-title {
    font-size: 32px;
    color: var(--primary-blue);
    margin-bottom: 15px;
    font-weight: 700;
    line-height: 1.3;
}

.electrical-solutions-section .capacity-range {
    display: inline-block;
    background: var(--light-blue);
    color: white;
    padding: 8px 25px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 30px;
}

/* Features */
.electrical-solutions-section .features {
    display: flex;
    flex-direction: column;
    gap: 25px;
    width: 100%;
}

.electrical-solutions-section .feature-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    opacity: 0;
    transform: translateX(-20px);
    transition: all 0.6s ease;
    width: 100%;
}

.electrical-solutions-section .feature-item.animated {
    opacity: 1;
    transform: translateX(0);
}

.electrical-solutions-section .feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-blue), var(--light-blue));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    flex-shrink: 0;
    transition: all 0.4s ease;
}

.electrical-solutions-section .feature-item:hover .feature-icon {
    background: linear-gradient(135deg, var(--accent-orange), #ff9f43);
    transform: rotate(15deg) scale(1.1);
}

.electrical-solutions-section .feature-text h4 {
    color: var(--primary-blue);
    font-size: 20px;
    margin-bottom: 8px;
    font-weight: 600;
}

.electrical-solutions-section .feature-text p {
    color: var(--dark-gray);
    line-height: 1.6;
    font-size: 16px;
}

/* AC Section Specific */
.electrical-solutions-section .ac-features {
    display: flex;
    flex-direction: column;
    gap: 30px;
    width: 100%;
}

.electrical-solutions-section .capacity-types {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-bottom: 20px;
}

.electrical-solutions-section .type-item {
    text-align: center;
    padding: 20px;
    background: var(--light-gray);
    border-radius: 15px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.electrical-solutions-section .type-item:hover {
    background: var(--accent-green);
    color: white;
    transform: translateY(-5px);
}

.electrical-solutions-section .type-item h4 {
    font-size: 24px;
    margin-bottom: 5px;
    color: var(--primary-blue);
    transition: color 0.3s ease;
}

.electrical-solutions-section .type-item:hover h4 {
    color: white;
}

.electrical-solutions-section .type-item p {
    font-size: 14px;
    color: var(--dark-gray);
    transition: color 0.3s ease;
}

.electrical-solutions-section .type-item:hover p {
    color: white;
}

.electrical-solutions-section .brands h4 {
    color: var(--primary-blue);
    margin-bottom: 15px;
    font-size: 18px;
}

.electrical-solutions-section .brand-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.electrical-solutions-section .brand-item {
    padding: 8px 20px;
    background: var(--light-gray);
    color: var(--primary-blue);
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
}

.electrical-solutions-section .brand-item:hover {
    background: var(--light-blue);
    color: white;
    transform: translateY(-3px);
}

/* ============================================
   RESPONSIVE DESIGN
============================================ */

@media (max-width: 992px) {
    .electrical-solutions-section .section-title {
        font-size: 36px;
    }
    
    .electrical-solutions-section .product-grid {
        gap: 40px;
    }
    
    .electrical-solutions-section .product-title {
        font-size: 28px;
    }
    
    .electrical-solutions-section .feature-text h4 {
        font-size: 18px;
    }
    
    .electrical-solutions-section .image-container {
        height: 350px;
    }
}

@media (max-width: 768px) {
    .electrical-solutions-section {
        padding: 60px 0;
    }
    
    .electrical-solutions-section .section-header {
        margin-bottom: 40px;
    }
    
    .electrical-solutions-section .section-title {
        font-size: 32px;
    }
    
    .electrical-solutions-section .section-subtitle {
        font-size: 16px;
        padding: 0 20px;
    }
    
    .electrical-solutions-section .product-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .electrical-solutions-section .product-grid.reverse {
        direction: ltr;
    }
    
    .electrical-solutions-section .product-content {
        text-align: center;
        padding: 0;
    }
    
    .electrical-solutions-section .feature-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 15px;
    }
    
    .electrical-solutions-section .feature-icon {
        margin: 0 auto;
    }
    
    .electrical-solutions-section .capacity-types {
        grid-template-columns: 1fr;
        max-width: 300px;
        margin: 0 auto 20px;
    }
    
    .electrical-solutions-section .image-container {
        height: 300px;
    }
    
    .electrical-solutions-section .brand-list {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .electrical-solutions-section .section-title {
        font-size: 28px;
    }
    
    .electrical-solutions-section .product-title {
        font-size: 24px;
    }
    
    .electrical-solutions-section .capacity-range {
        font-size: 14px;
        padding: 6px 20px;
    }
    
    .electrical-solutions-section .image-label {
        font-size: 12px;
        padding: 8px 20px;
    }
    
    .electrical-solutions-section .image-container {
        height: 250px;
    }
    
    .electrical-solutions-section .brand-item {
        font-size: 13px;
        padding: 6px 15px;
    }
}

/* Animation Delay Classes */
.electrical-solutions-section .delay-1 { transition-delay: 0.1s; }
.electrical-solutions-section .delay-2 { transition-delay: 0.2s; }
.electrical-solutions-section .delay-3 { transition-delay: 0.3s; }
.electrical-solutions-section .delay-4 { transition-delay: 0.4s; }
.electrical-solutions-section .delay-5 { transition-delay: 0.5s; }

/* Image Loading Animation */
.electrical-solutions-section .main-image {
    opacity: 0;
    animation: imageFadeIn 0.5s ease forwards;
}

@keyframes imageFadeIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}