/* CSS Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Primary Colors */
    --primary-red: #e30613;
    --primary-orange: #ff6b00;
    --primary-blue: #0066cc;
    --primary-green: #10b981;
    --primary-light-blue: #e6f2ff;
    
    /* Color Variations */
    --dark-red: #b30000;
    --light-red: #ff4d4d;
    --dark-orange: #cc5500;
    --light-orange: #ffa500;
    --dark-blue: #0052a3;
    --light-blue: #4da6ff;
    --dark-green: #059669;
    --light-green: #34d399;
    
    /* Neutral Colors */
    --white: #ffffff;
    --light-gray: #f8f9fa;
    --medium-gray: #e9ecef;
    --dark-gray: #495057;
    --text-dark: #212529;
    
    /* Design Tokens */
    --shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 15px 40px rgba(0, 0, 0, 0.12);
    --transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    --border-radius: 12px;
    --border-radius-lg: 20px;
    --section-padding: 100px 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    line-height: 1.7;
    overflow-x: hidden;
    background-color: var(--white);
}

.container {
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 25px;
}

section {
    padding: var(--section-padding);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
}

h1 { 
    font-size: 3.5rem; 
    color: var(--primary-blue);
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-red));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

h2 { 
    font-size: 2.8rem; 
    color: var(--text-dark);
}

h3 { 
    font-size: 2rem; 
    color: var(--primary-blue);
}

h4 { 
    font-size: 1.5rem; 
    color: var(--primary-red);
}

p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    color: var(--dark-gray);
}

.highlight {
    color: var(--primary-red);
    position: relative;
    display: inline-block;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background: linear-gradient(90deg, var(--primary-orange), transparent);
    opacity: 0.3;
    z-index: -1;
}

.highlight-text {
    color: var(--primary-red);
    font-weight: 700;
}

/* Buttons */
.btn-primary, .btn-secondary, .btn-signup, .btn-outline, .btn-solution, .btn-utl {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 35px;
    border-radius: var(--border-radius);
    font-weight: 700;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    font-size: 1rem;
    border: none;
    outline: none;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary::before, .btn-secondary::before, .btn-signup::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;
    z-index: -1;
}

.btn-primary:hover::before, .btn-secondary:hover::before, .btn-signup:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-red), var(--dark-red));
    color: var(--white);
    box-shadow: 0 8px 25px rgba(227, 6, 19, 0.3);
}

.btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(227, 6, 19, 0.4);
    background: linear-gradient(135deg, var(--dark-red), var(--primary-red));
}

.btn-secondary {
    background: linear-gradient(135deg, var(--primary-blue), var(--dark-blue));
    color: var(--white);
    box-shadow: 0 8px 25px rgba(0, 102, 204, 0.3);
}

.btn-secondary:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 102, 204, 0.4);
    background: linear-gradient(135deg, var(--dark-blue), var(--primary-blue));
}

.btn-signup {
    background: linear-gradient(135deg, var(--primary-green), var(--dark-green));
    color: var(--white);
    padding: 12px 28px;
    border-radius: 30px;
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.3);
}

.btn-signup:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(16, 185, 129, 0.4);
    background: linear-gradient(135deg, var(--dark-green), var(--primary-green));
}

.btn-outline {
    background: transparent;
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
    width: 100%;
    margin-top: 20px;
}

.btn-outline:hover {
    background: var(--primary-blue);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 102, 204, 0.2);
}

.btn-solution {
    background: linear-gradient(135deg, var(--primary-orange), var(--dark-orange));
    color: var(--white);
    width: 100%;
    margin-top: 25px;
    box-shadow: 0 8px 20px rgba(255, 107, 0, 0.3);
}

.btn-solution:hover {
    background: linear-gradient(135deg, var(--dark-orange), var(--primary-orange));
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(255, 107, 0, 0.4);
}

.btn-utl {
    background: linear-gradient(135deg, #ffd700, #ffa500);
    color: #333;
    font-weight: 700;
    box-shadow: 0 8px 20px rgba(255, 165, 0, 0.3);
}

.btn-utl:hover {
    background: linear-gradient(135deg, #ffa500, #ffd700);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(255, 165, 0, 0.4);
}

/* Animation Classes */
.animate-text {
    opacity: 0;
    transform: translateY(40px);
    animation: fadeInUp 0.8s ease forwards;
}

.animate-card {
    opacity: 0;
    transform: translateY(50px);
    animation: fadeInUp 0.8s ease forwards;
}

.animate-header {
    opacity: 0;
    transform: translateY(40px);
    animation: fadeInUp 0.8s ease forwards;
}

.animate-badge {
    opacity: 0;
    transform: translateX(-40px);
    animation: fadeInRight 0.8s ease forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Navigation */
.navbar {
    background-color: var(--white);
    box-shadow: var(--shadow);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 15px 0;
    transition: var(--transition);
}

.navbar.scrolled {
    padding: 10px 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 20px;
}

.logo-icon {
    width: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
}

.logo-icon img {
    width: 100%;
    height: auto;
    object-fit: contain;
    filter: none;   /* IMPORTANT */
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-text h1 {
    font-size: 1.8rem;
    margin-bottom: 5px;
    background: linear-gradient(135deg, var(--primary-red), var(--primary-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.logo-text p {
    font-size: 0.9rem;
    color: var(--dark-gray);
    margin: 0;
}

.logo-subtext {
    font-size: 0.8rem !important;
    color: var(--primary-orange) !important;
    font-weight: 600;
}


.nav-menu {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-links li {
    position: relative;
}

.nav-link {
    font-weight: 600;
    color: var(--text-dark);
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 0;
    position: relative;
}

.nav-link i {
    font-size: 12px;
    transition: var(--transition);
}

.nav-link:hover, .nav-link.active {
    color: var(--primary-red);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-red), var(--primary-orange));
    border-radius: 3px;
}

.dropdown-content {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--white);
    box-shadow: var(--shadow-lg);
    border-radius: var(--border-radius);
    min-width: 220px;
    padding: 15px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: var(--transition);
    z-index: 100;
}

.dropdown:hover .dropdown-content {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-content a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 25px;
    color: var(--text-dark);
    transition: var(--transition);
    border-left: 3px solid transparent;
}

.dropdown-content a:hover {
    background: linear-gradient(90deg, var(--primary-light-blue), transparent);
    color: var(--primary-blue);
    border-left-color: var(--primary-red);
    padding-left: 30px;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 6px;
}

.hamburger span {
    width: 30px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-red), var(--primary-blue));
    transition: var(--transition);
    border-radius: 3px;
}

/* Hero Section with Image Background */
.hero {
    position: relative;
    height: 100vh;
    min-height: 800px;
    max-height: 1200px;
    margin-top: 80px;
    overflow: hidden;
}

.slideshow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.2s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.slide.active {
    opacity: 1;
    z-index: 1;
}

.slide picture,
.slide img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Different image positions for mobile vs desktop */
@media (max-width: 768px) {
    .slide img {
        object-position: center 30%; /* Focus on upper part for mobile */
    }
}

@media (min-width: 769px) {
    .slide img {
        object-position: center center;
    }
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    
    z-index: 1;
}

.slide-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    max-width: 1200px;
    padding: 0 30px;
    margin: 0 auto;
}

.slide-title {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 800;
    margin-bottom: 25px;
    color: var(--white);
    text-shadow: 
        0 4px 12px rgba(0, 0, 0, 0.5),
        0 0 30px rgba(227, 6, 19, 0.3);
    line-height: 1.2;
    letter-spacing: -0.5px;
    animation-delay: 0.3s;
}

.slide-subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
    line-height: 1.6;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 300;
    animation-delay: 0.5s;
}

.slide-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    animation-delay: 0.7s;
}

.slide-buttons .btn-primary,
.slide-buttons .btn-secondary {
    min-width: 220px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.slide-buttons .btn-primary {
    background: linear-gradient(135deg, var(--primary-red), var(--primary-orange));
    color: var(--white);
    border: none;
    box-shadow: 
        0 10px 30px rgba(227, 6, 19, 0.4),
        inset 0 1px 1px rgba(255, 255, 255, 0.2);
}

.slide-buttons .btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 15px 40px rgba(227, 6, 19, 0.6),
        inset 0 1px 1px rgba(255, 255, 255, 0.3);
}

.slide-buttons .btn-secondary {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.slide-buttons .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: var(--white);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

/* Slide Indicators */
.slide-indicators {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 10;
}

.indicator {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.indicator::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-red), var(--primary-orange));
    transition: left 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.indicator.active {
    transform: scale(1.3);
    box-shadow: 0 0 20px rgba(227, 6, 19, 0.5);
}

.indicator.active::before {
    left: 0;
}

.indicator:hover {
    transform: scale(1.2);
    background-color: rgba(255, 255, 255, 0.5);
}

/* Slide Navigation */
.slide-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 30px;
    transform: translateY(-50%);
    z-index: 10;
}

.prev-slide, .next-slide {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.2);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 20px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    align-items: center;
    justify-content: center;
}

.prev-slide:hover, .next-slide:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: var(--primary-red);
    transform: scale(1.15);
    box-shadow: 
        0 0 30px rgba(227, 6, 19, 0.4),
        inset 0 0 15px rgba(255, 255, 255, 0.1);
}

/* Trust Badge */
.trust-badge {
    position: absolute;
    bottom: 40px;
    right: 40px;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.95) 0%, 
        rgba(255, 255, 255, 0.9) 100%);
    border-radius: var(--border-radius-lg);
    padding: 25px;
    box-shadow: 
        var(--shadow-lg),
        0 0 40px rgba(227, 6, 19, 0.2);
    display: flex;
    align-items: center;
    gap: 20px;
    max-width: 400px;
    animation-delay: 1.2s;
    border-left: 5px solid var(--primary-red);
    animation: float 3s ease-in-out infinite;
    z-index: 10;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.badge-icon {
    background: linear-gradient(135deg, var(--primary-red), var(--primary-orange));
    color: var(--white);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    flex-shrink: 0;
    box-shadow: 0 10px 25px rgba(227, 6, 19, 0.4);
}

.badge-text h3 {
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: var(--primary-red);
    font-weight: 700;
}

.badge-text p {
    font-size: 0.95rem;
    color: var(--dark-gray);
    margin: 0;
    font-weight: 500;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .hero {
        min-height: 600px;
        max-height: 800px;
        margin-top: 70px;
    }
    
    .slide-title {
        font-size: 2.2rem;
        margin-bottom: 20px;
    }
    
    .slide-subtitle {
        font-size: 1.1rem;
        margin-bottom: 30px;
        padding: 0 20px;
    }
    
    .slide-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
        padding: 0 20px;
    }
    
    .slide-buttons .btn-primary,
    .slide-buttons .btn-secondary {
        width: 100%;
        max-width: 300px;
        height: 55px;
    }
    
    .slide-nav {
        padding: 0 15px;
    }
    
    .prev-slide, .next-slide {
        width: 50px;
        height: 50px;
        font-size: 18px;
    }
    
    .trust-badge {
        position: relative;
        bottom: auto;
        right: auto;
        max-width: 350px;
        margin: -50px auto 40px;
        padding: 20px;
    }
    
    .slide-indicators {
        bottom: 120px;
    }
}

@media (max-width: 480px) {
    .hero {
        min-height: 500px;
        max-height: 700px;
    }
    
    .slide-title {
        font-size: 1.8rem;
    }
    
    .slide-subtitle {
        font-size: 1rem;
    }
    
    .trust-badge {
        flex-direction: column;
        text-align: center;
        padding: 20px;
        max-width: 300px;
    }
    
    .badge-icon {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
}

/* Floating animation */
@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Fade in animations */
.animate-text {
    animation: fadeInUp 1s cubic-bezier(0.175, 0.885, 0.32, 1.275) both;
}

.animate-btn {
    animation: fadeInUp 1s cubic-bezier(0.175, 0.885, 0.32, 1.275) both;
}

.animate-badge {
    animation: fadeIn 1.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Stats Section */
.stats-section {
    background: linear-gradient(135deg, var(--primary-light-blue), var(--white));
    padding: 80px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.stat-card {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 40px 30px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border-top: 4px solid var(--primary-red);
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, transparent, rgba(227, 6, 19, 0.03));
    opacity: 0;
    transition: var(--transition);
}

.stat-card:hover {
    transform: translateY(-15px);
    box-shadow: var(--shadow-lg);
}

.stat-card:hover::before {
    opacity: 1;
}

.stat-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-red));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: var(--white);
    box-shadow: 0 10px 25px rgba(0, 102, 204, 0.3);
}

.stat-content h3 {
    font-size: 2.8rem;
    margin-bottom: 10px;
    color: var(--primary-blue);
    font-weight: 900;
}

.stat-content p {
    font-size: 1.1rem;
    color: var(--dark-gray);
    margin: 0;
    font-weight: 600;
}

/* UTL Section */
.utl-section {
    background: linear-gradient(135deg, #fff9e6, #fff);
    position: relative;
    overflow: hidden;
}

.utl-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 165, 0, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

.utl-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.utl-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #ffd700, #ffa500);
    color: #333;
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 700;
    margin-bottom: 25px;
    box-shadow: 0 5px 15px rgba(255, 165, 0, 0.2);
}

.utl-left h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 15px;
}

.utl-subtitle {
    font-size: 1.2rem;
    color: var(--dark-gray);
    margin-bottom: 30px;
}

.utl-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 35px;
}

.utl-feature {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.utl-feature:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.utl-feature i {
    color: var(--primary-green);
    font-size: 20px;
}

.utl-right {
    position: relative;
}

.utl-image {
    height: 500px;
    background: linear-gradient(135deg, #4a69bd, #1e3799);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow-lg);
}

.utl-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    color: var(--white);
    padding: 40px;
}

.utl-overlay h3 {
    color: var(--white);
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.utl-overlay ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.utl-overlay li {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.1rem;
}

.utl-overlay li::before {
    content: '✓';
    color: var(--primary-green);
    font-weight: bold;
    font-size: 1.2rem;
}

/* Calculator Section */
.calculator-section {
    background: linear-gradient(135deg, #f8fafc, #f1f5f9);
    position: relative;
    overflow: hidden;
}

.calculator-section::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(227, 6, 19, 0.08) 0%, transparent 70%);
    animation: float 6s ease-in-out infinite;
}

.calculator-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 102, 204, 0.08) 0%, transparent 70%);
    animation: float 8s ease-in-out infinite alternate;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.section-header h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-red), var(--primary-orange));
    border-radius: 2px;
}

.section-description {
    font-size: 1.2rem;
    color: var(--dark-gray);
    max-width: 700px;
    margin: 0 auto;
}

.calculator-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    position: relative;
    z-index: 1;
}

.input-section, .results-section {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
}

.input-section:hover, .results-section:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

.input-section {
    border-top: 5px solid var(--primary-blue);
}

.results-section {
    border-top: 5px solid var(--primary-green);
}

.input-header, .results-header {
    padding: 40px 40px 30px;
    text-align: center;
    background: linear-gradient(135deg, var(--primary-light-blue), transparent);
}

.input-icon, .results-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, var(--primary-blue), var(--dark-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: var(--white);
    box-shadow: 0 15px 30px rgba(0, 102, 204, 0.3);
    animation: pulse 2s infinite;
}

.results-icon {
    background: linear-gradient(135deg, var(--primary-green), var(--dark-green));
    box-shadow: 0 15px 30px rgba(16, 185, 129, 0.3);
}

.input-header h3, .results-header h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: var(--primary-blue);
}

.results-header h3 {
    color: var(--primary-green);
}

.input-header p, .results-header p {
    color: var(--dark-gray);
    margin: 0;
}

.input-group {
    padding: 0 40px 30px;
}

.input-group label {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--primary-blue);
    font-weight: 700;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.input-group label i {
    color: var(--primary-red);
    background: rgba(227, 6, 19, 0.1);
    padding: 10px;
    border-radius: 10px;
}

.property-type-selector, .battery-selector {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 25px;
}

.property-btn, .battery-btn {
    padding: 25px 20px;
    background: var(--white);
    border: 2px solid rgba(0, 102, 204, 0.2);
    border-radius: var(--border-radius);
    color: var(--dark-gray);
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    font-weight: 600;
    position: relative;
    overflow: hidden;
}

.property-btn::before, .battery-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.1), transparent);
    opacity: 0;
    transition: var(--transition);
}

.property-btn.active, .battery-btn.active {
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.1), transparent);
    border-color: var(--primary-blue);
    color: var(--primary-blue);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 102, 204, 0.15);
}

.property-btn.active::before, .battery-btn.active::before {
    opacity: 1;
}

.property-btn i, .battery-btn i {
    font-size: 32px;
    color: var(--primary-blue);
}

.property-btn.active i, .battery-btn.active i {
    color: var(--primary-red);
    animation: pulse 1.5s infinite;
}

.btn-badge, .battery-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: linear-gradient(135deg, var(--primary-green), var(--dark-green));
    color: var(--white);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    animation: pulse 2s infinite;
}

.battery-badge {
    background: linear-gradient(135deg, #ffd700, #ffa500);
    color: #333;
}

.property-info, .battery-info {
    padding: 20px;
    background: rgba(16, 185, 129, 0.1);
    border-radius: var(--border-radius);
    color: var(--dark-green);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 15px;
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.battery-info {
    background: rgba(255, 165, 0, 0.1);
    color: #cc5500;
    border-color: rgba(255, 165, 0, 0.2);
}

.input-wrapper {
    position: relative;
    margin-bottom: 25px;
}

.input-wrapper input {
    width: 100%;
    padding: 20px 60px 20px 25px;
    background: var(--white);
    border: 2px solid rgba(0, 102, 204, 0.2);
    border-radius: var(--border-radius);
    color: var(--text-dark);
    font-size: 1.2rem;
    font-weight: 600;
    transition: var(--transition);
}

.input-wrapper input:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 4px rgba(0, 102, 204, 0.1);
}

.input-symbol {
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary-blue);
    font-weight: 700;
    font-size: 1.5rem;
}

.input-focus-line {
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-blue), var(--primary-red));
    transition: var(--transition);
    transform: translateX(-50%);
}

.input-wrapper input:focus + .input-focus-line {
    width: 100%;
}

.input-slider {
    margin-top: 30px;
}

.input-slider input[type="range"] {
    width: 100%;
    height: 10px;
    background: linear-gradient(90deg, var(--primary-red), var(--primary-orange));
    border-radius: 5px;
    outline: none;
    -webkit-appearance: none;
}

.input-slider input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 30px;
    height: 30px;
    background: var(--white);
    border: 3px solid var(--primary-blue);
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(0, 102, 204, 0.3);
    transition: var(--transition);
}

.input-slider input[type="range"]::-webkit-slider-thumb:hover {
    transform: scale(1.2);
    box-shadow: 0 12px 30px rgba(0, 102, 204, 0.4);
}

.slider-labels {
    display: flex;
    justify-content: space-between;
    margin-top: 15px;
    color: var(--dark-gray);
    font-weight: 600;
}

.select-wrapper {
    position: relative;
}

.select-wrapper select {
    width: 100%;
    padding: 20px 60px 20px 25px;
    background: var(--white);
    border: 2px solid rgba(0, 102, 204, 0.2);
    border-radius: var(--border-radius);
    color: var(--text-dark);
    font-size: 1.1rem;
    font-weight: 500;
    appearance: none;
    cursor: pointer;
    transition: var(--transition);
}

.select-wrapper select:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 4px rgba(0, 102, 204, 0.1);
}

.select-arrow {
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary-blue);
    font-size: 20px;
    pointer-events: none;
}

.quick-info {
    padding: 30px;
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.05), transparent);
    border-radius: var(--border-radius);
    border: 2px solid rgba(0, 102, 204, 0.1);
    margin: 30px 40px;
}

.quick-info h4 {
    color: var(--primary-blue);
    font-size: 1.3rem;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.facts-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.fact-item {
    text-align: center;
    padding: 20px;
    background: var(--white);
    border-radius: var(--border-radius);
    border: 2px solid rgba(0, 102, 204, 0.1);
    transition: var(--transition);
}

.fact-item:hover {
    transform: translateY(-10px);
    border-color: var(--primary-blue);
    box-shadow: 0 15px 30px rgba(0, 102, 204, 0.1);
}

.fact-value {
    font-size: 2rem;
    font-weight: 900;
    color: var(--primary-red);
    margin-bottom: 10px;
}

.fact-label {
    font-size: 0.9rem;
    color: var(--dark-gray);
    font-weight: 600;
}

.calculate-btn {
    width: calc(100% - 80px);
    margin: 0 40px 40px;
    padding: 22px;
    background: linear-gradient(135deg, var(--primary-red), var(--dark-red));
    color: var(--white);
    border: none;
    border-radius: var(--border-radius);
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
}

.calculate-btn:hover {
    background: linear-gradient(135deg, var(--dark-red), var(--primary-red));
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(227, 6, 19, 0.3);
}

.initial-state {
    padding: 60px 40px;
    text-align: center;
}

.initial-icon {
    position: relative;
    width: 150px;
    height: 150px;
    margin: 0 auto 40px;
}

.sun-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.sun {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ffd700, #ffa500);
    border-radius: 50%;
    box-shadow: 0 0 40px rgba(255, 165, 0, 0.5);
    animation: rotate 10s linear infinite;
}

.ray {
    position: absolute;
    top: 50%;
    left: 50%;
    transform-origin: left center;
    width: 60px;
    height: 5px;
    background: linear-gradient(90deg, #ffd700, transparent);
    border-radius: 3px;
}

.ray1 { transform: translate(-50%, -50%) rotate(0deg); }
.ray2 { transform: translate(-50%, -50%) rotate(90deg); }
.ray3 { transform: translate(-50%, -50%) rotate(180deg); }
.ray4 { transform: translate(-50%, -50%) rotate(270deg); }

.initial-state i {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 50px;
    color: var(--primary-blue);
    z-index: 2;
}

.initial-state h4 {
    font-size: 1.8rem;
    color: var(--primary-blue);
    margin-bottom: 20px;
}

.initial-state p {
    color: var(--dark-gray);
    font-size: 1.1rem;
    line-height: 1.8;
    max-width: 400px;
    margin: 0 auto;
}

.results-display {
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.property-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.1), transparent);
    color: var(--primary-blue);
    padding: 12px 25px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 0.95rem;
    border: 2px solid rgba(0, 102, 204, 0.2);
    width: fit-content;
}

.property-badge i {
    color: var(--primary-red);
}

.main-result {
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.05), transparent);
    padding: 35px;
    border-radius: var(--border-radius);
    border: 2px solid rgba(0, 102, 204, 0.1);
}

.result-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.result-item {
    text-align: center;
}

.result-label {
    font-size: 1rem;
    color: var(--dark-gray);
    margin-bottom: 15px;
    font-weight: 600;
}

.result-value {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary-blue);
}

.result-value.highlight {
    background: linear-gradient(135deg, var(--primary-red), var(--primary-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.detailed-results {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.result-item.detailed {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 25px;
    background: var(--white);
    border-radius: var(--border-radius);
    border: 2px solid rgba(0, 102, 204, 0.1);
    transition: var(--transition);
}

.result-item.detailed:hover {
    transform: translateX(10px);
    border-color: var(--primary-blue);
    box-shadow: 0 15px 30px rgba(0, 102, 204, 0.1);
}

.result-info {
    display: flex;
    align-items: center;
    gap: 20px;
}

.result-icon {
    width: 50px;
    height: 50px;
    background: rgba(0, 102, 204, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-blue);
    font-size: 22px;
}

.result-text {
    display: flex;
    flex-direction: column;
}

.result-title {
    font-weight: 700;
    color: var(--text-dark);
    font-size: 1.1rem;
}

.result-desc {
    font-size: 0.9rem;
    color: var(--dark-gray);
}

.result-amount {
    font-weight: 900;
    font-size: 1.5rem;
    color: var(--primary-blue);
}

.result-amount.highlight-green {
    background: linear-gradient(135deg, var(--primary-green), var(--dark-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.additional-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.info-item {
    background: var(--white);
    padding: 25px;
    border-radius: var(--border-radius);
    border: 2px solid rgba(0, 102, 204, 0.1);
    display: flex;
    align-items: center;
    gap: 20px;
    transition: var(--transition);
}

.info-item:hover {
    transform: translateY(-10px);
    border-color: var(--primary-blue);
    box-shadow: 0 15px 30px rgba(0, 102, 204, 0.1);
}

.info-icon {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.1), transparent);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-blue);
    font-size: 24px;
    flex-shrink: 0;
}

.info-content {
    flex: 1;
}

.info-value {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--primary-blue);
    margin-bottom: 5px;
}

.info-label {
    font-size: 0.9rem;
    color: var(--dark-gray);
    font-weight: 600;
}

.results-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    padding: 22px;
    background: linear-gradient(135deg, var(--primary-green), var(--dark-green));
    color: var(--white);
    border: none;
    border-radius: var(--border-radius);
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    margin-top: 20px;
}

.results-cta:hover {
    background: linear-gradient(135deg, var(--dark-green), var(--primary-green));
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(16, 185, 129, 0.3);
}

/* Solutions Section */
.solutions-section {
    background: linear-gradient(135deg, #f8fafc, #e6f2ff);
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.solution-card {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    border-top: 5px solid var(--primary-red);
}

.solution-card:hover {
    transform: translateY(-20px);
    box-shadow: var(--shadow-lg);
}

.solution-card:nth-child(2) {
    border-top-color: var(--primary-blue);
}

.solution-card:nth-child(3) {
    border-top-color: var(--primary-green);
}

.solution-image {
    height: 250px;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-red));
    position: relative;
    overflow: hidden;
}

.solution-card:nth-child(1) .solution-image {
    background: linear-gradient(135deg, #ff6b6b, #ffa500);
}

.solution-card:nth-child(2) .solution-image {
    background: linear-gradient(135deg, #4ecdc4, #44a08d);
}

.solution-card:nth-child(3) .solution-image {
    background: linear-gradient(135deg, #ff9a9e, #fad0c4);
}

.solution-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--white);
    color: var(--primary-red);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    z-index: 2;
}

.solution-card:nth-child(2) .solution-icon {
    color: var(--primary-blue);
}

.solution-card:nth-child(3) .solution-icon {
    color: var(--primary-green);
}

.solution-badge {
    position: absolute;
    top: 25px;
    right: 25px;
    background: var(--primary-red);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 700;
    box-shadow: 0 5px 15px rgba(227, 6, 19, 0.3);
}

.solution-card:nth-child(2) .solution-badge {
    background: var(--primary-blue);
}

.solution-card:nth-child(3) .solution-badge {
    background: var(--primary-green);
}

.solution-tag {
    position: absolute;
    bottom: 25px;
    left: 25px;
    background: rgba(255, 255, 255, 0.9);
    color: var(--primary-blue);
    padding: 6px 15px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
}

.solution-content {
    padding: 35px;
}

.solution-content h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.solution-content p {
    color: var(--dark-gray);
    margin-bottom: 25px;
    line-height: 1.8;
}

.solution-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 30px;
}

.solution-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
    color: var(--dark-gray);
}

.solution-features i {
    color: var(--primary-green);
    font-size: 18px;
}

/* Subsidy Section */
.subsidy-section {
    background: linear-gradient(135deg, #e6f7ff, #f0f9ff);
    position: relative;
    overflow: hidden;
}

.subsidy-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.1) 0%, transparent 70%);
    animation: float 8s ease-in-out infinite;
}

.subsidy-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.subsidy-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--primary-green), var(--dark-green));
    color: var(--white);
    padding: 12px 25px;
    border-radius: 30px;
    font-weight: 700;
    margin-bottom: 30px;
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.3);
}

.subsidy-left h2 {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.subsidy-subtitle {
    font-size: 1.3rem;
    color: var(--primary-green);
    margin-bottom: 40px;
    font-weight: 600;
}

.subsidy-steps {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 40px;
}

.subsidy-step {
    display: flex;
    align-items: center;
    gap: 25px;
    padding: 25px;
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.subsidy-step::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 5px;
    background: linear-gradient(to bottom, var(--primary-green), var(--primary-blue));
}

.subsidy-step:hover {
    transform: translateX(15px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-green), var(--dark-green));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content h4 {
    color: var(--primary-blue);
    margin-bottom: 8px;
    font-size: 1.2rem;
}

.step-content p {
    color: var(--dark-gray);
    margin: 0;
}

.subsidy-card {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-lg);
    border-top: 5px solid var(--primary-green);
}

.subsidy-card h3 {
    font-size: 1.8rem;
    color: var(--primary-green);
    margin-bottom: 30px;
    text-align: center;
}

.subsidy-benefits {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 35px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: rgba(16, 185, 129, 0.05);
    border-radius: var(--border-radius);
    border: 1px solid rgba(16, 185, 129, 0.1);
}

.benefit-item i {
    color: var(--primary-green);
    font-size: 20px;
}

.subsidy-cta {
    padding: 25px;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), transparent);
    border-radius: var(--border-radius);
    border: 2px dashed var(--primary-green);
    text-align: center;
}

.subsidy-cta p {
    margin-bottom: 20px;
    color: var(--text-dark);
    font-size: 1.1rem;
}

/* Why Choose Section */
.why-choose-section {
    background: linear-gradient(135deg, #fff9f9, #fff);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 35px;
}

.why-card {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 40px 30px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.why-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-red), var(--primary-orange));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.why-card:hover::before {
    transform: scaleX(1);
}

.why-card:hover {
    transform: translateY(-15px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(227, 6, 19, 0.1);
}

.why-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 30px;
    background: linear-gradient(135deg, var(--primary-red), var(--primary-orange));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: var(--white);
    box-shadow: 0 15px 30px rgba(227, 6, 19, 0.2);
}

.why-card:nth-child(2) .why-icon {
    background: linear-gradient(135deg, var(--primary-blue), var(--light-blue));
}

.why-card:nth-child(3) .why-icon {
    background: linear-gradient(135deg, var(--primary-green), var(--light-green));
}

.why-card:nth-child(4) .why-icon {
    background: linear-gradient(135deg, #ff6b00, #ffa500);
}

.why-card:nth-child(5) .why-icon {
    background: linear-gradient(135deg, #8a2be2, #9370db);
}

.why-card:nth-child(6) .why-icon {
    background: linear-gradient(135deg, #00b4d8, #90e0ef);
}

.why-card h3 {
    font-size: 1.4rem;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.why-card p {
    color: var(--dark-gray);
    margin: 0;
    font-size: 1rem;
    line-height: 1.7;
}

/* Reviews Section */
.reviews-section {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
}

.reviews-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.reviews-left {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.reviews-header h2 {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.subtitle {
    font-size: 1.2rem;
    color: var(--dark-gray);
    margin-bottom: 30px;
}

.video-container {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.video-thumbnail {
    display: block;
    height: 300px;
    background: linear-gradient(135deg, #ff0000, #cc0000);
    position: relative;
    overflow: hidden;
    text-decoration: none;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: #ff0000;
    transition: var(--transition);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.video-thumbnail:hover .play-button {
    transform: translate(-50%, -50%) scale(1.2);
    background: var(--white);
}

.video-thumbnail p {
    position: absolute;
    bottom: 30px;
    left: 0;
    right: 0;
    text-align: center;
    color: var(--white);
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0;
    padding: 0 20px;
}

.review-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    background: var(--white);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.review-stat {
    text-align: center;
}

.review-stat h3 {
    font-size: 2.5rem;
    color: var(--primary-red);
    margin-bottom: 10px;
    font-weight: 900;
}

.review-stat p {
    color: var(--dark-gray);
    margin: 0;
    font-weight: 600;
}

.reviews-slider {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-lg);
    position: relative;
    min-height: 400px;
}

.review-card {
    position: absolute;
    top: 40px;
    left: 40px;
    right: 40px;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.review-card.active {
    opacity: 1;
    visibility: visible;
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 30px;
    padding-bottom: 25px;
    border-bottom: 2px solid rgba(0, 102, 204, 0.1);
}

.reviewer-info {
    display: flex;
    align-items: center;
    gap: 20px;
}

.reviewer-avatar {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-red));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
}

.reviewer-details h4 {
    margin-bottom: 8px;
    font-size: 1.2rem;
    color: var(--text-dark);
}

.reviewer-details p {
    color: var(--dark-gray);
    margin-bottom: 8px;
}

.reviewer-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 165, 0, 0.1);
    color: #cc5500;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.review-rating {
    color: #ffd700;
    font-size: 18px;
}

.review-content {
    background: linear-gradient(135deg, var(--primary-light-blue), transparent);
    padding: 30px;
    border-radius: var(--border-radius);
    border-left: 4px solid var(--primary-blue);
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-dark);
}

.review-indicators {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
}

.review-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--medium-gray);
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.review-indicator::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, var(--primary-red), var(--primary-orange));
    transition: 0.5s;
}

.review-indicator.active {
    transform: scale(1.3);
}

.review-indicator.active::before {
    left: 0;
}

/* Areas Section */
.areas-section {
    background: linear-gradient(135deg, var(--white), var(--light-gray));
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 35px;
    margin-bottom: 50px;
}

.area-card {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 40px 30px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 2px solid transparent;
}

.area-card:hover {
    transform: translateY(-15px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(0, 102, 204, 0.2);
}

.area-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-red));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
}

.area-card h3 {
    color: var(--primary-blue);
    margin-bottom: 25px;
    font-size: 1.4rem;
}

.area-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.area-list li {
    padding: 12px;
    background: rgba(0, 102, 204, 0.05);
    border-radius: var(--border-radius);
    color: var(--text-dark);
    font-weight: 500;
    transition: var(--transition);
}

.area-list li:hover {
    background: rgba(0, 102, 204, 0.1);
    transform: translateX(5px);
}

.areas-cta {
    text-align: center;
    padding: 40px;
    background: linear-gradient(135deg, var(--primary-light-blue), transparent);
    border-radius: var(--border-radius-lg);
    border: 2px dashed var(--primary-blue);
}

.areas-cta p {
    font-size: 1.3rem;
    margin-bottom: 25px;
    color: var(--text-dark);
}

/* Blog Section */
.blog-section {
    background: linear-gradient(135deg, #f8fafc, #f1f5f9);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.blog-card {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.blog-card:hover {
    transform: translateY(-15px);
    box-shadow: var(--shadow-lg);
}

.blog-image {
    height: 220px;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-red));
    position: relative;
}

.blog-category {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--primary-red);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 700;
}

.blog-content {
    padding: 30px;
}

.blog-content h3 {
    font-size: 1.4rem;
    color: var(--text-dark);
    margin-bottom: 15px;
    line-height: 1.4;
}

.blog-excerpt {
    color: var(--dark-gray);
    margin-bottom: 25px;
    line-height: 1.7;
}

.blog-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 2px solid rgba(0, 102, 204, 0.1);
}

.blog-meta span {
    color: var(--dark-gray);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.blog-read {
    color: var(--primary-blue);
    font-weight: 700;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.blog-read:hover {
    color: var(--primary-red);
    gap: 12px;
}

.blog-cta {
    text-align: center;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #1e3799, #0c2461);
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

.cta-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 3rem;
    color: var(--white);
    margin-bottom: 25px;
}

.cta-content p {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
}

.cta-features {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 25px;
    margin-bottom: 50px;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 15px 25px;
    border-radius: 30px;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.cta-feature i {
    color: var(--primary-green);
}

.cta-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 25px;
    margin-bottom: 40px;
}

.cta-btn {
    min-width: 200px;
}

.cta-note {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 20px;
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: inline-block;
}

.cta-note p {
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 1.1rem;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #1a1a1a, #0d0d0d);
    color: var(--white);
    padding: 80px 0 30px;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-red), var(--primary-orange), var(--primary-green), var(--primary-blue));
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 50px;
    margin-bottom: 60px;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-logo .logo-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-red), var(--primary-orange));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--white);
}

.footer-logo .logo-text h3 {
    font-size: 1.8rem;
    color: var(--white);
    margin-bottom: 5px;
}

.footer-tagline {
    color: var(--primary-orange) !important;
    font-weight: 600;
    font-size: 1rem !important;
    margin-bottom: 20px !important;
}

.footer-description {
    color: #aaa;
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 30px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
}

.social-links a {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: var(--transition);
    text-decoration: none;
}

.social-links a:hover {
    background: var(--primary-red);
    transform: translateY(-5px);
}

.footer-awards {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.award-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.05);
    padding: 10px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.award-item i {
    color: var(--primary-orange);
}

.footer-section h4 {
    color: var(--white);
    font-size: 1.3rem;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
}

.footer-section h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-red), var(--primary-orange));
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-links li {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-links a {
    color: #aaa;
    transition: var(--transition);
    text-decoration: none;
    font-size: 1rem;
}

.footer-links a:hover {
    color: var(--primary-orange);
    padding-left: 10px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.contact-item i {
    color: var(--primary-red);
    font-size: 20px;
    margin-top: 5px;
    flex-shrink: 0;
}

.contact-item div p {
    color: #aaa;
    margin-bottom: 5px;
    font-size: 1rem;
}

.contact-item div p:first-child {
    color: var(--white);
    font-weight: 600;
    margin-bottom: 8px;
}

.emergency-contact {
    margin-top: 30px;
    padding: 20px;
    background: linear-gradient(135deg, rgba(227, 6, 19, 0.1), transparent);
    border-radius: var(--border-radius);
    border: 2px solid rgba(227, 6, 19, 0.2);
}

.emergency-contact h5 {
    color: var(--primary-red);
    margin-bottom: 10px;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.emergency-contact p {
    color: #aaa;
    margin: 0;
    font-size: 1rem;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    gap: 30px;
}

.footer-bottom-left p {
    color: #aaa;
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.footer-highlight {
    color: var(--primary-orange) !important;
    font-weight: 600;
    font-size: 1rem !important;
}

.designer-credit {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #aaa;
    font-size: 0.9rem;
}

.deepweb-link {
    font-weight: 700;
    text-decoration: none;
    color: #0ef;
    position: relative;
    animation: deepwebGlow 2.5s infinite alternate;
    transition: all 0.4s ease;
}

@keyframes deepwebGlow {
    0% {
        text-shadow: 0 0 5px rgba(0, 238, 255, 0.4);
        transform: scale(1);
    }
    100% {
        text-shadow: 0 0 18px rgba(0, 238, 255, 1);
        transform: scale(1.05);
    }
}

.deepweb-link:hover {
    color: var(--white);
    transform: scale(1.15);
    text-shadow: 
        0 0 10px #0ef,
        0 0 20px #0ef,
        0 0 30px #0ef;
}

.footer-bottom-links {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

.footer-bottom-links a {
    color: #aaa;
    font-size: 0.9rem;
    text-decoration: none;
    transition: var(--transition);
}

.footer-bottom-links a:hover {
    color: var(--primary-orange);
}

.footer-notes {
    margin-top: 40px;
    padding: 25px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    color: #aaa;
    line-height: 1.6;
}

.footer-notes strong {
    color: var(--primary-orange);
}

/* Quick Contact Widget */
.quick-contact {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 999;
}

.quick-contact-item {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--white);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    transition: var(--transition);
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.quick-contact-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    transform: scale(0);
    transition: transform 0.3s;
    border-radius: 50%;
}

.quick-contact-item:hover::before {
    transform: scale(1);
}

.quick-contact-item span {
    position: absolute;
    right: 70px;
    white-space: nowrap;
    background: var(--white);
    color: var(--text-dark);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    opacity: 0;
    transform: translateX(10px);
    transition: all 0.3s;
}

.quick-contact-item:hover span {
    opacity: 1;
    transform: translateX(0);
}

.quick-contact-item.phone {
    background: linear-gradient(135deg, var(--primary-green), var(--dark-green));
}

.quick-contact-item.whatsapp {
    background: linear-gradient(135deg, #25D366, #128C7E);
}

.quick-contact-item.email {
    background: linear-gradient(135deg, var(--primary-blue), var(--dark-blue));
}

.quick-contact-item.calculator {
    background: linear-gradient(135deg, var(--primary-orange), var(--dark-orange));
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 120px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-red), var(--primary-orange));
    color: var(--white);
    border: none;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    cursor: pointer;
    transition: var(--transition);
    z-index: 999;
    box-shadow: 0 10px 25px rgba(227, 6, 19, 0.3);
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(227, 6, 19, 0.4);
}

/* Tooltip */
.tooltip {
    position: absolute;
    background: var(--text-dark);
    color: var(--white);
    padding: 8px 15px;
    border-radius: var(--border-radius);
    font-size: 0.9rem;
    white-space: nowrap;
    z-index: 10000;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.tooltip::before {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid var(--text-dark);
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .container {
        max-width: 1000px;
        padding: 0 20px;
    }
    
    h1 { font-size: 3rem; }
    h2 { font-size: 2.5rem; }
    
    .slide-title {
        font-size: 3.2rem;
    }
    
    .utl-content,
    .calculator-container,
    .subsidy-content,
    .reviews-container {
        gap: 40px;
    }
}

@media (max-width: 992px) {
    .container {
        padding: 0 15px;
    }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: var(--white);
        flex-direction: column;
        padding: 40px 20px;
        transition: var(--transition);
        overflow-y: auto;
        gap: 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-links {
        flex-direction: column;
        width: 100%;
        gap: 0;
        margin-right: 0;
    }
    
    .nav-links li {
        margin: 0;
        width: 100%;
    }
    
    .nav-link {
        padding: 20px 0;
        border-bottom: 1px solid var(--medium-gray);
        width: 100%;
    }
    
    .dropdown-content {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border-radius: 0;
        padding-left: 30px;
        display: none;
        background: var(--light-gray);
        margin-top: 10px;
    }
    
    .dropdown.active .dropdown-content {
        display: block;
    }
    
    .hamburger {
        display: flex;
    }
    
    .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, -7px);
    }
    
    .hero {
        min-height: 700px;
    }
    
    .slide-content {
        text-align: center;
    }
    
    .slide-title {
        font-size: 2.5rem;
    }
    
    .slide-subtitle {
        font-size: 1.2rem;
    }
    
    .slide-buttons {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    
    .trust-badge {
        position: relative;
        bottom: auto;
        right: auto;
        max-width: 100%;
        margin: 40px auto 0;
        justify-content: center;
    }
    
    .utl-content,
    .calculator-container,
    .subsidy-content,
    .reviews-container {
        grid-template-columns: 1fr;
    }
    
    .facts-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .result-row,
    .additional-info {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .quick-contact {
        bottom: 20px;
        right: 20px;
    }
    
    .back-to-top {
        bottom: 110px;
        right: 20px;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 80px 0;
    }
    
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2.2rem; }
    h3 { font-size: 1.8rem; }
    
    .section-header h2 {
        font-size: 2.2rem;
    }
    
    .stat-content h3 {
        font-size: 2.2rem;
    }
    
    .utl-image {
        height: 400px;
    }
    
    .input-header, .results-header {
        padding: 30px;
    }
    
    .input-group {
        padding: 0 30px 30px;
    }
    
    .calculate-btn {
        width: calc(100% - 60px);
        margin: 0 30px 30px;
    }
    
    .quick-info {
        margin: 30px;
        padding: 25px;
    }
    
    .solutions-grid,
    .why-grid,
    .areas-grid,
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-features {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-feature {
        width: 100%;
        justify-content: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 576px) {
    .logo-text h1 {
        font-size: 1.5rem;
    }
    
    .btn-signup {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .slide-title {
        font-size: 2rem;
    }
    
    .slide-subtitle {
        font-size: 1rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .property-type-selector,
    .battery-selector {
        grid-template-columns: 1fr;
    }
    
    .facts-grid {
        grid-template-columns: 1fr;
    }
    
    .input-section, .results-section {
        padding: 0;
    }
    
    .input-header, .results-header {
        padding: 25px;
    }
    
    .input-group {
        padding: 0 25px 25px;
    }
    
    .quick-info {
        margin: 25px;
        padding: 20px;
    }
    
    .calculate-btn {
        width: calc(100% - 50px);
        margin: 0 25px 25px;
    }
    
    .results-display {
        padding: 25px;
    }
    
    .footer-section h4 {
        font-size: 1.2rem;
    }
    
    .quick-contact {
        bottom: 15px;
        right: 15px;
    }
    
    .quick-contact-item {
        width: 50px;
        height: 50px;
        font-size: 18px;
    }
    
    .back-to-top {
        bottom: 85px;
        right: 15px;
        width: 45px;
        height: 45px;
        font-size: 16px;
    }
}

@media (max-width: 400px) {
    .logo {
        gap: 10px;
    }
    
    .logo-icon {
        width: 100px;
        height: 70px;
    }
    
    .logo-text h1 {
        font-size: 1.3rem;
    }
    
    .logo-text p {
        font-size: 0.8rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-btn {
        width: 100%;
    }
}







.blog-grid{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.blog-card{
    background: #ffffff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover{
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

/* IMAGE BOX */
.blog-image{
    position: relative;
    height: 200px;
    overflow: hidden;
}

.blog-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-image img{
    transform: scale(1.1);
}

/* CATEGORY TAG */
.blog-category{
    position: absolute;
    top: 15px;
    left: 15px;
    background: #ff9800;
    color: #fff;
    padding: 6px 14px;
    font-size: 12px;
    font-weight: 600;
    border-radius: 20px;
}

/* CONTENT */
.blog-content{
    padding: 20px;
}

.blog-content h3{
    font-size: 18px;
    margin-bottom: 10px;
}

.blog-excerpt{
    font-size: 14px;
    color: #555;
    margin-bottom: 15px;
}

.blog-meta{
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
}

.blog-read{
    color: #ff9800;
    font-weight: 600;
    text-decoration: none;
}

.blog-read:hover{
    text-decoration: underline;
}

/* MOBILE */
@media(max-width:768px){
    .blog-image{
        height: 180px;
    }
}


.solution-image {
    position: relative;
    height: 320px;              /* image height */
    overflow: hidden;
    border-radius: 16px 16px 0 0;
}

.solution-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;          /* FULL COVER */
    display: block;
}

/* Badge */
.solution-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #00c853;
    color: #fff;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
}

/* Tag */
.solution-tag {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: rgba(0,0,0,0.7);
    color: #fff;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
}

/* Grid */
.solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 30px;
}


/* Layout */
.utl-content{
    display: flex;
    gap: 30px;
    align-items: stretch;
}

/* Right Container */
.utl-right{
    flex: 1;
    border-radius: 18px;
    overflow: hidden;
}

/* Background Image Full Cover */
.utl-image{
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 420px;

    background-image: url("img/utl set.png"); /* 👈 IMAGE FROM FOLDER */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Dark Overlay for readability */
.utl-image::before{
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        rgba(0,0,0,0.6),
        rgba(0,0,0,0.6)
    );
}

/* Content above image */
.utl-overlay{
    position: relative;
    z-index: 2;
    height: 100%;
    padding: 40px;
    color: #fff;

    display: flex;
    flex-direction: column;
    justify-content: center;
}

.utl-overlay h3{
    font-size: 26px;
    margin-bottom: 15px;
}

.utl-overlay ul{
    padding-left: 18px;
}

.utl-overlay li{
    margin-bottom: 10px;
    font-size: 16px;
}

/* Responsive */
@media(max-width: 991px){
    .utl-content{
        flex-direction: column;
    }
    .utl-image{
        min-height: 320px;
    }
}





