/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

/* Bootstrap Custom Overrides */
.btn {
    border-radius: 10px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn:hover {
    transform: translateY(-2px);
}

.form-control {
    border-radius: 10px;
    border: 2px solid #e2e8f0;
    padding: 0.75rem 1rem;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: #06b6d4;
    box-shadow: 0 0 0 0.2rem rgba(6, 182, 212, 0.25);
}

.form-select {
    border-radius: 10px;
    border: 2px solid #e2e8f0;
    padding: 0.75rem 1rem;
}

.card {
    transition: all 0.3s ease;
    border: none !important;
}

.card:hover {
    transform: translateY(-10px);
}

.card-img-top {
    height: 250px;
    object-fit: cover;
}

/* Modern Header and Navigation */
.header-modern {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    z-index: 9999;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 2px 25px rgba(0, 0, 0, 0.08);
}

.header-modern.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.12);
}

.navbar-modern {
    padding: 0;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

/* Brand Styling */
.nav-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.nav-brand:hover {
    transform: scale(1.02);
}

.brand-logo {
    height: 50px;
    width: auto;
    max-width: 140px;
    border-radius: 10px;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.1));
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.brand-name {
    font-size: 1.4rem;
    font-weight: 800;
    color: #1e293b;
    margin: 0;
}

.brand-tagline {
    font-size: 0.8rem;
    font-weight: 500;
    color: #3b82f6;
    margin: 0;
}

/* Desktop Navigation (Hidden on Mobile) */
@media (min-width: 1024px) {
    .nav-menu {
        display: flex !important;
        position: static;
        background: transparent;
        box-shadow: none;
        transform: none;
        width: auto;
        height: auto;
        overflow: visible;
    }
    
    .nav-sidebar {
        display: flex;
        align-items: center;
        padding: 0;
        background: transparent;
        box-shadow: none;
        height: auto;
        overflow: visible;
        position: static;
        width: auto;
        max-width: none;
    }
    
    .nav-header {
        display: none;
    }
    
    .nav-list {
        display: flex;
        flex-direction: row;
        margin: 0;
        padding: 0;
        list-style: none;
        gap: 0.5rem;
        align-items: center;
    }
    
    .nav-item {
        position: relative !important;
        margin: 0;
    }
    
    .nav-item.has-dropdown {
        position: relative !important;
        display: inline-block !important;
    }
    
    .nav-link {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        padding: 0.75rem 1.25rem;
        color: #374151;
        text-decoration: none;
        font-weight: 600;
        font-size: 0.95rem;
        border-radius: 10px;
        transition: all 0.3s ease;
        position: relative;
        white-space: nowrap;
    }
    
    .nav-icon {
        display: none;
    }
    
    .nav-link:hover {
        color: #3b82f6;
        background: rgba(59, 130, 246, 0.1);
        transform: translateY(-1px);
    }
    
    .dropdown-trigger:hover .dropdown-arrow {
        transform: rotate(180deg);
    }
    
    .dropdown-arrow {
        font-size: 0.8rem;
        transition: transform 0.3s ease;
    }
    
    .dropdown-menu {
        position: absolute !important;
        top: 100% !important;
        left: 0 !important;
        min-width: 220px;
        background: rgba(255, 255, 255, 0.98) !important;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15) !important;
        border-radius: 12px;
        padding: 0.75rem 0;
        margin-top: 2px;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        transition: all 0.3s ease;
        z-index: 99999 !important;
        border: 1px solid rgba(59, 130, 246, 0.3) !important;
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        list-style: none !important;
        margin-left: 0 !important;
        padding-left: 0 !important;
        pointer-events: none;
        display: block !important;
    }
    
    /* Add invisible hover bridge to prevent hover gaps */
    .has-dropdown:hover::before {
        content: '';
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        height: 10px;
        background: transparent;
        z-index: 99998;
        pointer-events: auto;
    }
    
    .has-dropdown:hover .dropdown-menu,
    .has-dropdown.active .dropdown-menu {
        opacity: 1 !important;
        visibility: visible !important;
        transform: translateY(0) !important;
        pointer-events: auto !important;
    }
    
    .dropdown-menu li {
        margin: 0;
        padding: 0;
    }
    
    .dropdown-link {
        display: block;
        padding: 0.75rem 1.5rem;
        color: #374151;
        text-decoration: none;
        font-weight: 500;
        transition: all 0.3s ease;
        border-left: 3px solid transparent;
    }
    
    .dropdown-link:hover {
        color: #3b82f6;
        background: rgba(59, 130, 246, 0.05);
        border-left-color: #3b82f6;
        transform: translateX(5px);
    }
    
    .nav-contact,
    .nav-social {
        display: none;
    }
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: rgba(59, 130, 246, 0.1);
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10001;
    position: relative;
}

.mobile-menu-btn:hover {
    background: rgba(59, 130, 246, 0.2);
    transform: scale(1.05);
}

.hamburger {
    width: 20px;
    height: 14px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
}

.line {
    width: 100%;
    height: 2px;
    background: #3b82f6;
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.mobile-menu-btn.active .line1 {
    transform: rotate(45deg) translate(3px, 3px);
}

.mobile-menu-btn.active .line2 {
    opacity: 0;
}

.mobile-menu-btn.active .line3 {
    transform: rotate(-45deg) translate(3px, -3px);
}

/* Mobile Navigation Menu */
@media (max-width: 1023px) {
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(0, 0, 0, 0.5);
        backdrop-filter: blur(10px);
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 10000;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.3);
        z-index: 1;
    }
    
    .nav-sidebar {
        position: absolute;
        top: 0;
        right: -400px;
        width: 400px;
        max-width: 85vw;
        height: 100vh;
        background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
        box-shadow: -10px 0 40px rgba(0, 0, 0, 0.15);
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        overflow-y: auto;
        z-index: 2;
        display: flex;
        flex-direction: column;
        padding-bottom: 2rem;
    }
    
    .nav-menu.active .nav-sidebar {
        right: 0;
    }
    
    .nav-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 1.5rem 2rem;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
        position: sticky;
        top: 0;
        background: white;
        z-index: 3;
    }
    
    .nav-brand-mobile {
        display: flex;
        align-items: center;
        gap: 0.75rem;
    }
    
    .nav-brand-mobile img {
        height: 40px;
        border-radius: 8px;
    }
    
    .nav-brand-mobile span {
        font-weight: 700;
        color: #1e293b;
        font-size: 1.1rem;
    }
    
    .nav-close {
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: rgba(239, 68, 68, 0.1);
        color: #ef4444;
        border: none;
        border-radius: 10px;
        cursor: pointer;
        transition: all 0.3s ease;
    }
    
    .nav-close:hover {
        background: rgba(239, 68, 68, 0.2);
        transform: scale(1.1);
    }
    
    .nav-list {
        list-style: none;
        margin: 0;
        padding: 1.5rem 0;
        flex: 1;
    }
    
    .nav-item {
        margin-bottom: 0.25rem;
    }
    
    .nav-link {
        display: flex;
        align-items: center;
        gap: 1rem;
        padding: 1rem 2rem;
        color: #374151;
        text-decoration: none;
        font-weight: 600;
        transition: all 0.3s ease;
        border-left: 4px solid transparent;
        font-size: 1rem;
    }
    
    .nav-link:hover {
        color: #3b82f6;
        background: rgba(59, 130, 246, 0.08);
        border-left-color: #3b82f6;
        transform: translateX(5px);
    }
    
    .nav-icon {
        width: 20px;
        height: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.1rem;
        color: #6b7280;
        transition: color 0.3s ease;
    }
    
    .nav-link:hover .nav-icon {
        color: #3b82f6;
    }
    
    .dropdown-arrow {
        margin-left: auto;
        font-size: 0.9rem;
        transition: transform 0.3s ease;
        color: #9ca3af;
    }
    
    .dropdown-trigger.active .dropdown-arrow {
        transform: rotate(180deg);
        color: #3b82f6;
    }
    
    /* Mobile dropdown menu styles */
    @media (max-width: 1023px) {
        .dropdown-menu {
            max-height: 0;
            overflow: hidden;
            background: rgba(59, 130, 246, 0.03);
            transition: all 0.3s ease;
            margin: 0;
            position: static !important;
            opacity: 1 !important;
            visibility: visible !important;
            transform: none !important;
            box-shadow: none !important;
            border: none !important;
            backdrop-filter: none !important;
            z-index: auto !important;
            border-radius: 0;
            padding: 0;
            pointer-events: auto !important;
            display: block !important;
        }
        
        .dropdown-menu.active {
            max-height: 500px !important;
            padding: 0.5rem 0;
        }
        
        .dropdown-link {
            display: block;
            padding: 0.75rem 4rem;
            color: #6b7280;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            font-size: 0.95rem;
            border-left: 3px solid transparent;
        }
        
        .dropdown-link:hover {
            color: #3b82f6;
            background: rgba(59, 130, 246, 0.05);
            border-left-color: #3b82f6;
        }
    }

/* General dropdown link styles for desktop */
@media (min-width: 1024px) {
    .dropdown-link {
        display: block;
        padding: 0.75rem 1.5rem;
        color: #374151;
        text-decoration: none;
        font-weight: 500;
        transition: all 0.3s ease;
        border-left: 3px solid transparent;
    }
    
    .dropdown-link:hover {
        color: #3b82f6;
        background: rgba(59, 130, 246, 0.05);
        border-left-color: #3b82f6;
        transform: translateX(5px);
    }
}
    
    .nav-contact {
        padding: 1.5rem 2rem;
        border-top: 1px solid rgba(0, 0, 0, 0.1);
    }
    
    .contact-item {
        display: flex;
        align-items: center;
        gap: 1rem;
        margin-bottom: 1rem;
    }
    
    .contact-item i {
        width: 20px;
        color: #3b82f6;
        font-size: 1.1rem;
    }
    
    .contact-item a {
        color: #374151;
        text-decoration: none;
        font-weight: 500;
        transition: color 0.3s ease;
    }
    
    .contact-item a:hover {
        color: #3b82f6;
    }
    
    .nav-social {
        display: flex;
        justify-content: center;
        gap: 1rem;
        padding: 1rem 2rem 0;
    }
    
    .social-link {
        width: 45px;
        height: 45px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: linear-gradient(135deg, #3b82f6, #10b981);
        color: white;
        text-decoration: none;
        border-radius: 12px;
        transition: all 0.3s ease;
        font-size: 1.1rem;
    }
    
    .social-link:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
    }
}

@media (min-width: 1024px) {
    .mobile-menu-btn {
        display: none;
    }
}

/* Smooth scroll behavior */
html {
    scroll-behavior: smooth;
}

/* Ensure proper spacing for fixed header */
body {
    padding-top: 80px;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

/* Hero Video Background */
.hero-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.hero-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(212, 186, 55, 0.05) 0%, rgba(92, 147, 3, 0.8) 100%);
    z-index: 2;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="%23ffffff" fill-opacity="0.1"><circle cx="30" cy="30" r="1"/></g></svg>');
    animation: float 20s ease-in-out infinite;
    z-index: 3;
}

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

.hero-container {
    padding-top: 100px;
    z-index: 4;
    position: relative;
}

.hero-content {
    animation: slideInLeft 1s ease-out;
    color: white;
}

@keyframes slideInLeft {
    from { opacity: 0; transform: translateX(-50px); }
    to { opacity: 1; transform: translateX(0); }
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.highlight {
    background: linear-gradient(45deg, #fbbf24, #f59e0b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.cta-button {
    background: linear-gradient(45deg, #f59e0b, #fbbf24) !important;
    color: white !important;
    border: none !important;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px !important;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 10px 30px rgba(245, 158, 11, 0.3);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(245, 158, 11, 0.4);
}

.hero-image {
    animation: slideInRight 1s ease-out;
}

@keyframes slideInRight {
    from { opacity: 0; transform: translateX(50px); }
    to { opacity: 1; transform: translateX(0); }
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 1.5rem;
    animation: bounce 2s infinite;
    z-index: 4;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

/* About Section */
.about {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.section-header h2 {
    font-size: 2.8rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.2rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
}

.icon-item {
    transition: transform 0.3s ease;
}

.icon-item:hover {
    transform: translateY(-10px);
}

.icon-item i {
    font-size: 3rem;
    color: #06b6d4;
    margin-bottom: 1rem;
}

.icon-item span {
    font-weight: 600;
    color: #374151;
    font-size: 1.1rem;
}

/* Statistics Section */
.statistics {
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    color: white;
}

.stats-title {
    font-size: 2.5rem;
    font-weight: 700;
}

.stat-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-item i {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #fbbf24;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #fbbf24;
}

.stat-label {
    font-size: 1rem;
    opacity: 0.9;
}

/* Modern Welcome Section */
.welcome-modern {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.welcome-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(59, 130, 246, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(16, 185, 129, 0.03) 0%, transparent 50%);
    z-index: 1;
}

/* Image Container */
.welcome-image-container {
    position: relative;
    min-height: 100vh;
}

.welcome-image-wrapper {
    position: relative;
    height: 100%;
    overflow: hidden;
}

.welcome-main-image {
    width: 100%;
    height: 100vh;
    object-fit: cover;
    object-position: center;
    transition: transform 0.6s ease;
}

.welcome-main-image:hover {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg, 
        rgba(59, 130, 246, 0.1) 0%, 
        rgba(16, 185, 129, 0.15) 50%,
        rgba(6, 182, 212, 0.1) 100%
    );
    z-index: 2;
}

/* Statistics Overlay */
.stats-overlay {
    position: absolute;
    bottom: 40px;
    left: 40px;
    right: 40px;
    display: flex;
    gap: 2rem;
    z-index: 3;
}

.stat-item {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 1.5rem;
    border-radius: 16px;
    text-align: center;
    flex: 1;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #3b82f6, #10b981);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: #64748b;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Content Container */
.welcome-content-container {
    display: flex;
    align-items: center;
    position: relative;
    z-index: 2;
    min-height: 100vh;
    background: white;
}

.welcome-content {
    padding: 4rem;
    max-width: 100%;
}

/* Welcome Badge */
.welcome-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #3b82f6, #10b981);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 2rem;
    box-shadow: 0 4px 20px rgba(59, 130, 246, 0.3);
}

.welcome-badge i {
    font-size: 1rem;
}

/* Title Styling */
.welcome-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #1e293b;
}

.highlight-text {
    background: linear-gradient(135deg, #3b82f6, #10b981);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
}

.welcome-subtitle {
    font-size: 1.25rem;
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 3rem;
    font-weight: 400;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, #f8fafc, #f1f5f9);
    border-radius: 16px;
    border: 1px solid rgba(148, 163, 184, 0.1);
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    background: white;
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #3b82f6, #10b981);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.feature-content h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.feature-content p {
    font-size: 0.9rem;
    color: #64748b;
    margin: 0;
    line-height: 1.5;
}

/* Testimonial Quote */
.testimonial-quote {
    background: linear-gradient(135deg, #f8fafc, #f1f5f9);
    padding: 2rem;
    border-radius: 16px;
    border-left: 4px solid #10b981;
    margin-bottom: 3rem;
    position: relative;
}

.testimonial-quote::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 1rem;
    font-size: 4rem;
    color: #10b981;
    line-height: 1;
    font-family: serif;
}

.testimonial-quote blockquote {
    font-size: 1.1rem;
    font-style: italic;
    color: #374151;
    margin: 0;
    line-height: 1.6;
}

.testimonial-quote cite {
    display: block;
    margin-top: 1rem;
    font-size: 0.9rem;
    color: #64748b;
    font-weight: 600;
}

/* Action Buttons */
.welcome-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-primary-modern {
    background: linear-gradient(135deg, #3b82f6, #10b981);
    color: white;
    border: none;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 20px rgba(59, 130, 246, 0.3);
}

.btn-primary-modern:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(59, 130, 246, 0.4);
}

.btn-secondary-modern {
    background: white;
    color: #3b82f6;
    border: 2px solid #3b82f6;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-secondary-modern:hover {
    background: #3b82f6;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(59, 130, 246, 0.3);
}

/* Responsive Design */
@media (max-width: 991.98px) {
    .welcome-modern {
        min-height: auto;
    }
    
    .welcome-image-container,
    .welcome-content-container {
        min-height: 50vh;
    }
    
    .welcome-main-image {
        height: 50vh;
    }
    
    .welcome-content {
        padding: 3rem 2rem;
    }
    
    .stats-overlay {
        position: relative;
        bottom: auto;
        left: auto;
        right: auto;
        margin-top: 2rem;
        background: white;
        padding: 2rem;
        border-radius: 16px 16px 0 0;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .welcome-actions {
        justify-content: center;
    }
}

@media (max-width: 767.98px) {
    .welcome-content {
        padding: 2rem 1.5rem;
    }
    
    .welcome-title {
        font-size: 2.5rem;
    }
    
    .welcome-subtitle {
        font-size: 1.1rem;
    }
    
    .stats-overlay {
        flex-direction: column;
        gap: 1rem;
    }
    
    .stat-item {
        padding: 1rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .welcome-actions {
        flex-direction: column;
        align-items: stretch;
    }
    
    .btn-primary-modern,
    .btn-secondary-modern {
        justify-content: center;
    }
}

@media (max-width: 575.98px) {
    .welcome-content {
        padding: 1.5rem 1rem;
    }
    
    .feature-item {
        padding: 1rem;
    }
    
    .testimonial-quote {
        padding: 1.5rem;
    }
}

/* Solutions Section */
.solutions {
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
}

.solutions h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e293b;
}

.solution-card .card-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1e293b;
}

.solution-card .card-text {
    color: #64748b;
    line-height: 1.6;
}

.card-btn {
    background: linear-gradient(45deg, #06b6d4, #0ea5e9) !important;
    color: white !important;
    border: none !important;
    padding: 0.75rem 1.5rem;
    border-radius: 8px !important;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
}

.card-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(6, 182, 212, 0.3);
}

/* Modern Cost Savings Calculator Section */
.cost-savings-modern {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: white;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
}

.cost-savings-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(16, 185, 129, 0.1) 0%, transparent 50%);
    z-index: 1;
}

.calculator-section,
.results-section {
    position: relative;
    z-index: 2;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

/* Calculator Container */
.calculator-container {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 3rem;
    margin: 2rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.calculator-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.calculator-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #3b82f6, #10b981);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3);
}

.calculator-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #3b82f6, #10b981);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.calculator-subtitle {
    font-size: 1.1rem;
    opacity: 0.8;
    max-width: 400px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Form Styling */
.calculator-form {
    max-width: 400px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 2rem;
}

.form-group label {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: #e2e8f0;
}

.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.currency-symbol {
    position: absolute;
    left: 1rem;
    font-size: 1.2rem;
    font-weight: 600;
    color: #10b981;
    z-index: 3;
}

.input-wrapper input[type="number"] {
    width: 100%;
    padding: 1rem 1rem 1rem 3rem;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.input-wrapper input[type="number"]:focus {
    outline: none;
    border-color: #3b82f6;
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.unit {
    position: absolute;
    right: 1rem;
    font-size: 0.9rem;
    color: #94a3b8;
}

select {
    width: 100%;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: white;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

select:focus {
    outline: none;
    border-color: #3b82f6;
    background: rgba(255, 255, 255, 0.15);
}

select option {
    background: #1e293b;
    color: white;
}

/* Range Slider */
.range-slider {
    margin-top: 1rem;
}

.range-slider input[type="range"] {
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 3px;
    outline: none;
    -webkit-appearance: none;
}

.range-slider input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, #3b82f6, #10b981);
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(59, 130, 246, 0.3);
}

.range-slider input[type="range"]::-moz-range-thumb {
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, #3b82f6, #10b981);
    border-radius: 50%;
    cursor: pointer;
    border: none;
}

.range-labels {
    display: flex;
    justify-content: space-between;
    margin-top: 0.5rem;
    font-size: 0.85rem;
    color: #94a3b8;
}

/* Calculate Button */
.calculate-button {
    width: 100%;
    padding: 1.25rem;
    background: linear-gradient(135deg, #3b82f6, #10b981);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3);
}

.calculate-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(59, 130, 246, 0.4);
}

/* Results Container */
.results-container {
    background: white;
    color: #1e293b;
    border-radius: 24px;
    padding: 3rem;
    margin: 2rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    height: fit-content;
}

.results-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.results-header h3 {
    font-size: 2rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.results-header p {
    color: #64748b;
    font-size: 1.1rem;
}

/* Savings Cards */
.savings-cards {
    display: grid;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.savings-card {
    background: linear-gradient(135deg, #f8fafc, #f1f5f9);
    border: 1px solid rgba(148, 163, 184, 0.2);
    border-radius: 16px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
}

.savings-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.primary-card {
    background: linear-gradient(135deg, #3b82f6, #10b981);
    color: white;
    transform: scale(1.05);
    border: none;
}

.card-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.primary-card .card-icon {
    background: rgba(255, 255, 255, 0.2);
}

.card-content {
    flex: 1;
}

.savings-amount {
    font-size: 1.8rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 0.25rem;
}

.savings-label {
    font-size: 0.9rem;
    opacity: 0.8;
    font-weight: 600;
}

/* System Details */
.system-details {
    background: linear-gradient(135deg, #f8fafc, #f1f5f9);
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 2rem;
}

.system-details h4 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #1e293b;
}

.system-specs {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.spec-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.spec-item i {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #3b82f6, #10b981);
    color: white;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.spec-item strong {
    display: block;
    font-size: 1.1rem;
    font-weight: 700;
    color: #1e293b;
}

.spec-item span {
    font-size: 0.85rem;
    color: #64748b;
}

/* Environmental Impact */
.environmental-impact {
    background: linear-gradient(135deg, #ecfdf5, #d1fae5);
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 2rem;
}

.environmental-impact h4 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #065f46;
}

.impact-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.impact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.impact-item i {
    width: 40px;
    height: 40px;
    background: #10b981;
    color: white;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.impact-item strong {
    display: block;
    font-size: 1.1rem;
    font-weight: 700;
    color: #065f46;
}

.impact-item span {
    font-size: 0.85rem;
    color: #047857;
}

/* CTA Section */
.cta-section {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-get-quote {
    flex: 1;
    padding: 1rem 1.5rem;
    background: linear-gradient(135deg, #3b82f6, #10b981);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    min-width: 200px;
}

.btn-get-quote:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3);
}

.btn-download-report {
    flex: 1;
    padding: 1rem 1.5rem;
    background: white;
    color: #3b82f6;
    border: 2px solid #3b82f6;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    min-width: 200px;
}

.btn-download-report:hover {
    background: #3b82f6;
    color: white;
    transform: translateY(-2px);
}

/* Features Banner */
.features-banner {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 3rem 0;
    position: relative;
    z-index: 2;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-highlight {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-align: left;
}

.feature-highlight i {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #3b82f6, #10b981);
    color: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.feature-highlight h5 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    color: white;
}

.feature-highlight p {
    font-size: 0.9rem;
    opacity: 0.8;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 991.98px) {
    .calculator-section,
    .results-section {
        min-height: auto;
    }
    
    .calculator-container,
    .results-container {
        margin: 1rem;
        padding: 2rem;
    }
    
    .calculator-title {
        font-size: 2rem;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .system-specs {
        grid-template-columns: 1fr;
    }
    
    .impact-stats {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767.98px) {
    .calculator-container,
    .results-container {
        padding: 1.5rem;
    }
    
    .calculator-title {
        font-size: 1.8rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .cta-section {
        flex-direction: column;
    }
    
    .btn-get-quote,
    .btn-download-report {
        min-width: auto;
    }
}

@media (max-width: 575.98px) {
    .cost-savings-modern {
        min-height: auto;
    }
    
    .calculator-container,
    .results-container {
        margin: 0.5rem;
        padding: 1rem;
    }
    
    .savings-card {
        padding: 1rem;
    }
    
    .system-details,
    .environmental-impact {
        padding: 1.5rem;
    }
}

/* Modern About Us Section */
.about-us-modern {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
}

.about-us-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(59, 130, 246, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(16, 185, 129, 0.05) 0%, transparent 50%);
    z-index: 1;
}

.about-us-modern .container {
    position: relative;
    z-index: 2;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #3b82f6, #10b981);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.about-title {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 800;
    color: #1e293b;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.about-description {
    font-size: 1.1rem;
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.about-image {
    position: relative;
}

.about-image img {
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.about-image:hover img {
    transform: translateY(-10px);
}

.stats-overlay-about {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    display: flex;
    gap: 1rem;
}

.stat-item-about {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 1rem;
    text-align: center;
    flex: 1;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.stat-item-about .stat-number,
.stat-item-about .stat-number-static {
    font-size: 1.5rem;
    font-weight: 800;
    color: #10b981;
    line-height: 1;
}

.stat-item-about .stat-label {
    font-size: 0.8rem;
    color: #64748b;
    font-weight: 600;
}

/* Services Section */
.services-section {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    margin-bottom: 2rem;
}

.section-subtitle {
    font-size: 2rem;
    font-weight: 700;
    color: #1e293b;
    text-align: center;
    margin-bottom: 1rem;
}

.service-card {
    background: linear-gradient(135deg, #f8fafc, #f1f5f9);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(148, 163, 184, 0.1);
    height: 100%;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    background: white;
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #3b82f6, #10b981);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.8rem;
    color: white;
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
}

.service-card h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
}

.service-card p {
    color: #64748b;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Vision & Mission */
.vision-mission-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
}

.vision-mission-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.vm-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #3b82f6, #10b981);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
}

.vision-mission-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
}

.vision-mission-card p {
    color: #64748b;
    line-height: 1.7;
    font-size: 1rem;
}

/* After Sales Section */
.after-sales-section {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    text-align: center;
}

/* Pros of Solar Section */
.pros-of-solar {
    background: white;
    position: relative;
}

.pros-of-solar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 20%, rgba(16, 185, 129, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(59, 130, 246, 0.05) 0%, transparent 50%);
    z-index: 1;
}

.pros-of-solar .container {
    position: relative;
    z-index: 2;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 1rem;
}

.pros-card {
    background: linear-gradient(135deg, #f8fafc, #f1f5f9);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(148, 163, 184, 0.1);
    height: 100%;
}

.pros-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    background: white;
}

.pros-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #10b981, #06d6a0);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.8rem;
    color: white;
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.3);
}

.pros-card h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
}

.pros-card p {
    color: #64748b;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Contact Info Section */
.contact-info-modern {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.contact-info-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 25% 25%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(16, 185, 129, 0.1) 0%, transparent 50%);
    z-index: 1;
}

.contact-info-modern .container {
    position: relative;
    z-index: 2;
}

.contact-info-modern .section-title {
    color: white;
}

.contact-info-modern .section-subtitle {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.2rem;
}

.contact-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
}

.contact-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.contact-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #3b82f6, #10b981);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.8rem;
    color: white;
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
}

.contact-card h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

.contact-card p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    font-size: 1rem;
}

.contact-card a {
    color: #3b82f6;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.contact-card a:hover {
    color: #10b981;
}

/* CTA Section About */
.cta-section-about {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
}

.cta-section-about h3 {
    font-size: 2rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1rem;
}

.cta-section-about p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.btn-contact-now {
    background: linear-gradient(135deg, #3b82f6, #10b981);
    color: white;
    border: none;
    padding: 1.25rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3);
}

.btn-contact-now:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(59, 130, 246, 0.4);
}

/* Responsive Design */
@media (max-width: 991.98px) {
    .stats-overlay-about {
        position: relative;
        bottom: auto;
        left: auto;
        right: auto;
        margin-top: 2rem;
        background: white;
        border-radius: 16px;
        padding: 1.5rem;
    }
    
    .services-section,
    .after-sales-section {
        padding: 2rem;
    }
    
    .vision-mission-card,
    .contact-card {
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 767.98px) {
    .about-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .services-section,
    .after-sales-section,
    .cta-section-about {
        padding: 1.5rem;
    }
    
    .service-card,
    .pros-card,
    .vision-mission-card,
    .contact-card {
        padding: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .stats-overlay-about {
        flex-direction: column;
        gap: 1rem;
    }
}

/* Modern Testimonials Simple Slider Section */
.testimonials-modern {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.testimonials-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(16, 185, 129, 0.1) 0%, transparent 50%);
    z-index: 1;
}

.testimonials-modern .container {
    position: relative;
    z-index: 2;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-badge-testimonials {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #3b82f6, #10b981);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.testimonials-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: white;
    margin-bottom: 1rem;
}

.testimonials-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Simple Slider Container */
.simple-testimonials-slider {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.testimonial-item {
    display: none;
    animation: fadeIn 0.5s ease-in-out;
}

.testimonial-item.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    min-height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testimonial-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.quote-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #3b82f6, #10b981);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: white;
}

.rating {
    display: flex;
    gap: 0.25rem;
}

.rating i {
    color: #fbbf24;
    font-size: 1rem;
}

.testimonial-content {
    flex: 1;
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
}

.testimonial-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    font-style: italic;
}

.client-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.client-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid rgba(255, 255, 255, 0.2);
    flex-shrink: 0;
}

.client-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.client-details {
    text-align: left;
    flex: 1;
}

.client-details h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.25rem;
}

.client-details span {
    font-size: 0.95rem;
    color: #3b82f6;
    font-weight: 600;
    display: block;
    margin-bottom: 0.25rem;
}

.client-location {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.client-location i {
    font-size: 0.8rem;
}

/* Simple Navigation Controls */
.slider-navigation {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 -2rem;
}

.slider-btn {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    z-index: 10;
}

.slider-btn:hover {
    background: linear-gradient(135deg, #3b82f6, #10b981);
    transform: scale(1.1);
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.3);
}

.prev-btn {
    left: -25px;
}

.next-btn {
    right: -25px;
}

/* Simple Dots */
.slider-dots {
    text-align: center;
    margin-top: 2rem;
}

.dot {
    height: 12px;
    width: 12px;
    margin: 0 5px;
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: inline-block;
    transition: all 0.3s ease;
    cursor: pointer;
}

.dot.active, .dot:hover {
    background: linear-gradient(135deg, #3b82f6, #10b981);
    transform: scale(1.2);
}

/* Responsive Design */
@media (max-width: 767.98px) {
    .testimonials-modern {
        padding: 3rem 0;
    }
    
    .testimonial-card {
        padding: 2rem 1.5rem;
        min-height: 350px;
    }
    
    .testimonials-title {
        font-size: 2rem;
    }
    
    .testimonials-subtitle {
        font-size: 1rem;
    }
    
    .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .prev-btn {
        left: -10px;
    }
    
    .next-btn {
        right: -10px;
    }
    
    .client-info {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }
    
    .client-details {
        text-align: center;
    }
}

@media (max-width: 575.98px) {
    .testimonial-card {
        padding: 1.5rem 1rem;
    }
    
    .testimonial-content p {
        font-size: 1rem;
    }
    
    .slider-navigation {
        display: none;
    }
}

/* Trends Section */
.trends {
    background: white;
}

.trends h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e293b;
}

.trends-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.trend-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.trend-card:hover {
    transform: translateY(-10px);
}

.trend-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.trend-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.trend-card:hover .trend-image img {
    transform: scale(1.05);
}

.trend-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: linear-gradient(45deg, #06b6d4, #0ea5e9);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.trend-content {
    padding: 2rem;
}

.trend-content h3 {
    font-size: 1.5rem;
    color: #1e293b;
}

.trend-content p {
    color: #64748b;
    line-height: 1.6;
}

.read-more {
    background: linear-gradient(45deg, #10b981, #06d6a0) !important;
    color: white !important;
    border: none !important;
    padding: 0.75rem 1.5rem;
    border-radius: 8px !important;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
}

.read-more:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.3);
}

/* Modern Newsletter & Contact Section */
.newsletter-modern {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.newsletter-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(16, 185, 129, 0.1) 0%, transparent 50%);
    z-index: 1;
}

.newsletter-wrapper {
    position: relative;
    z-index: 2;
}

.newsletter-header {
    margin-bottom: 4rem;
}

.section-badge-newsletter {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #3b82f6, #10b981);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.newsletter-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    color: white;
    margin-bottom: 1rem;
}

.newsletter-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Contact Info Section */
.contact-info-section {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2.5rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.contact-section-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
    text-align: center;
}

.contact-description {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
    line-height: 1.6;
    text-align: center;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    width: 100%;
    /* max-width: 400px; */
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    text-align: left;
    width: 100%;
}

.contact-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #3b82f6, #10b981);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: white;
    flex-shrink: 0;
    min-width: 56px;
}

.contact-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-details h5 {
    color: white;
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    line-height: 1.2;
}

.contact-details p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    line-height: 1.5;
}

.contact-details a {
    color: #3b82f6;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-details a:hover {
    color: #10b981;
}

/* Quote Form */
.quote-form-container {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2.5rem;
}

.form-header {
    text-align: center;
    margin-bottom: 2rem;
}

.form-header h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
}

.form-header p {
    color: rgba(255, 255, 255, 0.8);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: white;
}

.form-control, .form-select {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    border-radius: 12px;
    padding: 0.875rem 1rem;
    transition: all 0.3s ease;
}

.form-control:focus, .form-select:focus {
    background: rgba(255, 255, 255, 0.15);
    border-color: #3b82f6;
    color: white;
    box-shadow: 0 0 0 0.25rem rgba(59, 130, 246, 0.25);
}

.form-control::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.form-check {
    margin-bottom: 1rem;
}

.form-check-input:checked {
    background-color: #3b82f6;
    border-color: #3b82f6;
}

.form-check-label {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
}

.btn-get-quote {
    background: linear-gradient(135deg, #3b82f6, #10b981);
    color: white;
    border: none;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    overflow: hidden;
}

.btn-get-quote:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(59, 130, 246, 0.4);
}

.btn-arrow {
    transition: transform 0.3s ease;
}

.btn-get-quote:hover .btn-arrow {
    transform: translateX(5px);
}

.form-note {
    margin-top: 1rem;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
}

.form-note i {
    color: #10b981;
    margin-right: 0.5rem;
}

/* Benefits Banner */
.benefits-banner {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
}

.benefit-item {
    text-align: center;
    padding: 1rem;
}

.benefit-item i {
    font-size: 2.5rem;
    color: #10b981;
    margin-bottom: 1rem;
}

.benefit-item h5 {
    color: white;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.benefit-item p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

/* Modern Footer */
.footer-modern {
    background: linear-gradient(135deg, #0c1220 0%, #1e293b 100%);
    color: white;
    position: relative;
}

.footer-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 10% 20%, rgba(59, 130, 246, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(16, 185, 129, 0.05) 0%, transparent 50%);
    z-index: 1;
}

.footer-main {
    position: relative;
    z-index: 2;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Footer Brand */
.footer-brand {
    max-width: 100%;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.footer-logo-img {
    height: auto;
    width: 150px;
    border-radius: 8px;
}

.brand-text h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 0.25rem;
}

.brand-text p {
    font-size: 0.9rem;
    color: #3b82f6;
    margin: 0;
}

.brand-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.certifications h5 {
    color: white;
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.cert-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.cert-badge {
    background: linear-gradient(135deg, #3b82f6, #10b981);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Footer Links */
.footer-links h4 {
    color: white;
    font-weight: 700;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

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

.links-list li {
    margin-bottom: 0.75rem;
}

.links-list a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.25rem 0;
}

.links-list a:hover {
    color: #3b82f6;
    padding-left: 0.5rem;
}

.links-list a i {
    font-size: 0.9rem;
    width: 16px;
}

/* Footer Contact */
.footer-contact h4 {
    color: white;
    font-weight: 700;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.contact-info-footer {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item-footer {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-icon-footer {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #3b82f6, #10b981);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: white;
    flex-shrink: 0;
}

.contact-details-footer h6 {
    color: white;
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.contact-details-footer p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    line-height: 1.5;
}

.contact-details-footer a {
    color: #3b82f6;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-details-footer a:hover {
    color: #10b981;
}

/* Footer Social */
.footer-social {
    position: relative;
    z-index: 2;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.social-section h5 {
    color: white;
    font-weight: 600;
    margin-bottom: 1rem;
}

.social-links-footer {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.05);
    padding: 0.75rem 1rem;
    border-radius: 12px;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-link:hover {
    background: linear-gradient(135deg, #3b82f6, #10b981);
    color: white;
    transform: translateY(-2px);
}

.newsletter-footer h5 {
    color: white;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.newsletter-footer p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
}

.newsletter-form-footer .input-group {
    border-radius: 50px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.newsletter-form-footer .form-control {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    border-radius: 50px 0 0 50px;
    padding: 0.875rem 1.25rem;
}

.newsletter-form-footer .form-control:focus {
    background: rgba(255, 255, 255, 0.15);
    border-color: #3b82f6;
    color: white;
    box-shadow: none;
}

.newsletter-form-footer .form-control::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.btn-newsletter {
    background: linear-gradient(135deg, #3b82f6, #10b981);
    color: white;
    border: none;
    padding: 0.875rem 1.5rem;
    font-weight: 600;
    border-radius: 0 50px 50px 0;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-newsletter:hover {
    background: linear-gradient(135deg, #2563eb, #059669);
    transform: scale(1.05);
}

/* Footer Bottom */
.footer-bottom {
    position: relative;
    z-index: 2;
    padding: 2rem 0 1rem;
}

.copyright p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.footer-legal {
    display: flex;
    gap: 1.5rem;
    justify-content: flex-end;
    flex-wrap: wrap;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: #3b82f6;
}

.footer-disclaimer {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-disclaimer p {
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.5;
}

.footer-disclaimer i {
    color: #3b82f6;
    margin-right: 0.5rem;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #3b82f6, #10b981);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
}

/* Responsive Design */
@media (max-width: 991.98px) {
    .contact-info-section {
        margin-bottom: 2rem;
    }
    
    .footer-legal {
        justify-content: center;
        margin-top: 1rem;
    }
}

@media (max-width: 767.98px) {
    .newsletter-title {
        font-size: 2.5rem;
    }
    
    .contact-info-section,
    .quote-form-container {
        padding: 2rem 1.5rem;
    }
    
    .contact-methods {
        gap: 1rem;
        max-width: 100%;
    }
    
    .contact-method {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
        align-items: center;
    }
    
    .social-links-footer {
        justify-content: center;
    }
    
    .footer-legal {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
}

@media (max-width: 575.98px) {
    .newsletter-title {
        font-size: 2rem;
    }
    
    .contact-info-section,
    .quote-form-container {
        padding: 1.5rem 1rem;
    }
    
    .benefits-banner {
        padding: 1.5rem 1rem;
    }
    
    .btn-get-quote {
        width: 100%;
        justify-content: center;
    }
    
    .social-link span {
        display: none;
    }
    
    .back-to-top {
        bottom: 1rem;
        right: 1rem;
        width: 45px;
        height: 45px;
    }
}

/* Trends Section */
.trends {
    background: #f8fafc;
    padding: 80px 0;
}

.footer-logo span {
    font-size: 1.5rem;
    font-weight: 700;
    color: #06b6d4;
}

.footer-section p {
    color: #94a3b8;
    line-height: 1.6;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #374151;
    color: white;
    border-radius: 50%;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-links a:hover {
    background: #06b6d4;
    transform: translateY(-2px);
}

.footer-section h3 {
    font-size: 1.2rem;
    color: #06b6d4;
}

.footer-section a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #06b6d4;
}

.contact-item i {
    color: #06b6d4;
    width: 20px;
}

.footer-bottom {
    color: #94a3b8;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .section-header h2,
    .stats-title,
    .welcome-text h2,
    .achievements-text h2,
    .savings-text h2,
    .milestones h2,
    .testimonials h2,
    .trends h2,
    .newsletter-content h2 {
        font-size: 2rem;
    }

    .milestone-stats {
        justify-content: center;
        gap: 2rem;
    }

    .hero-container {
        padding: 1rem;
    }

    /* Mobile video optimization */
    .hero-video {
        object-position: center;
    }


    .nav-logo img.logo-image {
        height: 35px;
        max-width: 100px;
    }

    .logo-text {
        font-size: 1.2rem;
    }
    
    /* Renewable section mobile styles */
    .renewable-section {
        padding: 3rem 1rem;
        min-height: 250px;
    }
    
    .renewable-title {
        font-size: 2rem;
    }
    
    .renewable-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    #renewable-svg {
        transform: scale(1.2);
        margin-top: 1rem;
    }
}

@media (max-width: 480px) {
    #renewable-svg {
        transform: scale(1.5);
        height: 200px;
        overflow: visible;
    }
    
    .renewable-title {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .section-header h2,
    .stats-title,
    .welcome-text h2,
    .achievements-text h2,
    .savings-text h2,
    .milestones h2,
    .testimonials h2,
    .trends h2,
    .newsletter-content h2 {
        font-size: 1.8rem;
    }

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

/* Loading Animation */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin 1s ease-in-out infinite;
}

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

/* Utility Classes */
.text-gradient {
    background: linear-gradient(45deg, #06b6d4, #3b82f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.fade-in {
    animation: fadeIn 1s ease-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.pulse {
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

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


/* Our Impact Section */
.impact-section {
    background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
    position: relative;
    overflow: hidden;
    padding: 80px 0;
}

.impact-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(59, 179, 113, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(6, 182, 212, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.impact-section .container {
    position: relative;
    z-index: 1;
}

/* Section Header */
.impact-header {
    margin-bottom: 3rem;
}

.impact-header h2 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    line-height: 1.2;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.impact-subtitle .lead {
    font-size: 1.25rem;
    font-weight: 400;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
}

.header-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 2rem 0;
}

.divider-line {
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #3CB371, transparent);
}

.divider-icon {
    margin: 0 1rem;
    padding: 8px;
    background: white;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Impact Cards */
.impact-card {
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(226, 232, 240, 0.6);
    border-radius: 20px;
    padding: 2.5rem 1.5rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
}

.impact-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(59, 179, 113, 0.08), transparent);
    transition: left 0.8s ease;
}

.impact-card:hover::before {
    left: 100%;
}

.impact-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 40px rgba(59, 179, 113, 0.15);
    border-color: rgba(59, 179, 113, 0.4);
}

.card-inner {
    position: relative;
    z-index: 2;
}

/* Icon Styling */
.impact-icon-wrapper {
    margin-bottom: 1.5rem;
}

.impact-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f7fa 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(59, 179, 113, 0.2);
    transition: all 0.4s ease;
    position: relative;
}

.impact-icon::before {
    content: "";
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: linear-gradient(135deg, #3CB371, #06b6d4);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.impact-card:hover .impact-icon::before {
    opacity: 0.3;
}

.impact-card:hover .impact-icon {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 12px 30px rgba(59, 179, 113, 0.3);
}

.impact-icon img {
    width: 48px;
    height: 48px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
    transition: all 0.3s ease;
}

.impact-card:hover .impact-icon img {
    filter: drop-shadow(0 4px 8px rgba(59, 179, 113, 0.4));
    transform: scale(1.1);
}

/* Content */
.impact-content {
    margin-top: 1rem;
}

.impact-number {
    margin-bottom: 1rem;
    display: flex;
    align-items: baseline;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.25rem;
}

.counter-value {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 800;
    color: #1a202c;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    line-height: 1;
}

.counter-suffix {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    color: #3CB371;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.impact-card:hover .counter-value,
.impact-card:hover .counter-suffix {
    text-shadow: 0 4px 8px rgba(59, 179, 113, 0.3);
    color: #3CB371;
}

.impact-title {
    color: #2d3748;
    font-weight: 600;
    font-size: 1.1rem;
    line-height: 1.4;
    margin: 0;
    transition: all 0.3s ease;
}

.impact-title .text-muted {
    font-weight: 400;
    font-size: 0.95rem;
    color: #64748b !important;
    transition: all 0.3s ease;
}

.impact-card:hover .impact-title {
    color: #1a202c;
}

.impact-card:hover .impact-title .text-muted {
    color: #4a5568 !important;
}

.impact-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(59, 179, 113, 0.1), transparent);
    transition: left 0.8s;
}

.impact-card:hover::before {
    left: 100%;
}

.impact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1) !important;
    border-color: rgba(59, 179, 113, 0.3) !important;
}

.impact-icon {
    transition: all 0.3s ease;
}

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

.impact-icon img {
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.1));
    transition: all 0.3s ease;
}

.impact-card:hover .impact-icon img {
    filter: drop-shadow(0 6px 12px rgba(59, 179, 113, 0.3));
}

.impact-number {
    position: relative;
}

.impact-number .display-4 {
    font-size: clamp(2rem, 4vw, 3rem);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.impact-card:hover .impact-number .display-4 {
    text-shadow: 0 4px 8px rgba(59, 179, 113, 0.3);
}

.impact-card h5 {
    color: #2d3748;
    font-weight: 600;
    font-size: 1rem;
    margin-top: 1rem;
    line-height: 1.4;
    transition: all 0.3s ease;
}

.impact-card:hover h5 {
    color: #3CB371;
}

/* Counter Animation */
@keyframes countUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.counter-animate {
    animation: countUp 0.6s ease-out forwards;
}

/* Responsive Design */
@media (max-width: 768px) {
    .impact-section {
        padding: 3rem 0 !important;
    }
    
    .impact-card {
        margin-bottom: 1.5rem;
    }
    
    .impact-number .display-4 {
        font-size: 2.5rem;
    }
    
    .impact-card h5 {
        font-size: 0.95rem;
    }
}

@media (max-width: 576px) {
    .impact-number .display-4 {
        font-size: 2rem;
    }
    
    .impact-icon img {
        width: 50px;
        height: 50px;
    }
}

/* Counter Animation */
@keyframes countUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.counter-animate {
    animation: countUp 0.8s ease-out forwards;
}

/* Responsive Design */
@media (max-width: 992px) {
    .impact-section {
        padding: 60px 0;
    }
    
    .impact-header h2 {
        font-size: 2.5rem;
    }
    
    .impact-card {
        margin-bottom: 2rem;
        padding: 2rem 1.25rem;
    }
    
    .impact-icon {
        width: 80px;
        height: 80px;
    }
    
    .impact-icon img {
        width: 42px;
        height: 42px;
    }
}

@media (max-width: 768px) {
    .impact-section {
        padding: 50px 0;
    }
    
    .impact-header h2 {
        font-size: 2.25rem;
        margin-bottom: 1rem;
    }
    
    .impact-subtitle .lead {
        font-size: 1.1rem;
    }
    
    .header-divider {
        margin: 1.5rem 0;
    }
    
    .divider-line {
        width: 60px;
    }
    
    .impact-card {
        padding: 1.75rem 1rem;
        border-radius: 16px;
    }
    
    .impact-icon {
        width: 70px;
        height: 70px;
    }
    
    .impact-icon img {
        width: 38px;
        height: 38px;
    }
    
    .counter-value {
        font-size: 2.25rem;
    }
    
    .counter-suffix {
        font-size: 1.5rem;
    }
    
    .impact-title {
        font-size: 1rem;
    }
    
    .impact-title .text-muted {
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .impact-section {
        padding: 40px 0;
    }
    
    .impact-header {
        margin-bottom: 2rem;
    }
    
    .impact-header h2 {
        font-size: 2rem;
    }
    
    .impact-card {
        padding: 1.5rem 0.875rem;
    }
    
    .impact-icon {
        width: 60px;
        height: 60px;
    }
    
    .impact-icon img {
        width: 32px;
        height: 32px;
    }
    
    .counter-value {
        font-size: 2rem;
    }
    
    .counter-suffix {
        font-size: 1.25rem;
    }
    
    .impact-title {
        font-size: 0.95rem;
    }
}

/* Animation enhancements */
.impact-card {
    animation: fadeInUp 0.6s ease-out forwards;
    opacity: 0;
}

.impact-card:nth-child(1) { animation-delay: 0.1s; }
.impact-card:nth-child(2) { animation-delay: 0.2s; }
.impact-card:nth-child(3) { animation-delay: 0.3s; }
.impact-card:nth-child(4) { animation-delay: 0.4s; }

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Loading animation for counters */
.counter-value:not(.animated) {
    opacity: 0.7;
}

.counter-value.animated {
    opacity: 1;
}

/* Renewable Energy SVG Section */
.renewable-section {
    background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.renewable-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 80%, rgba(59, 179, 113, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 70% 20%, rgba(6, 182, 212, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.renewable-section .container-fluid {
    position: relative;
    z-index: 1;
}

.renewable-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    text-align: center;
}

.renewable-subtitle {
    font-size: 1.25rem;
    font-weight: 400;
    color: #64748b;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    line-height: 1.7;
    margin-bottom: 3rem;
}

#renewable-svg {
    width: 100%;
    max-width: 1200px;
    height: auto;
    margin: 2rem auto;
    display: block;
    filter: drop-shadow(0 8px 25px rgba(59, 179, 113, 0.1));
}

.renewable-path {
    fill: none;
    stroke: #3CB371;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-dasharray: 5955.01;
    stroke-dashoffset: 5955.01;
    transition: stroke-dashoffset 3s ease-in-out;
}

.renewable-path.animate {
    stroke-dashoffset: 0;
}

@keyframes drawRenewable {
    from {
        stroke-dashoffset: 5955.01;
    }
    to {
        stroke-dashoffset: 0;
    }
}

.renewable-path.draw-animation {
    animation: drawRenewable 8s ease-in-out forwards;
}

/* Responsive Design for Renewable Section */
@media (max-width: 768px) {
    .renewable-section {
        padding: 60px 0;
    }
    
    .renewable-title {
        font-size: 2.25rem;
        margin-bottom: 1rem;
    }
    
    .renewable-subtitle {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
    
    #renewable-svg {
        margin: 1.5rem auto;
    }
}

@media (max-width: 576px) {
    .renewable-section {
        padding: 50px 0;
    }
    
    .renewable-title {
        font-size: 2rem;
    }
    
    .renewable-subtitle {
        font-size: 1rem;
    }
}
