@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

/* ==================== ROOT & RESET ==================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --color-primary: #000000;
    --color-secondary: #ffffff;
    --color-accent: #1da63b;
    --color-gray-100: #f5f5f5;
    --color-gray-200: #e5e5e5;
    --color-gray-700: #404040;
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

html,
body {
    width: 100%;
    height: 100%;
    overflow: hidden;
    font-family: var(--font-primary);
}

/* ==================== HEADER ==================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 92px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0px 60px;
    background: #ffffff;
    backdrop-filter: blur(20px);
    z-index: 1100;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.logo {
    cursor: pointer;
    display: block;
    height: 85px;
}

.logo-text {
    color: var(--color-primary);
}

.topmenus {
    display: flex;
    gap: 20px;
    align-items: center;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 30px;
}

.social-icons {
    display: flex;
    gap: 20px;
}

.social-icons i {
    color: #05439a;
}

.social-icons a {
    color: var(--color-primary);
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    color: var(--color-accent);
    transform: translateY(-2px);
}

.hamburger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
    z-index: 1100;
}

.hamburger-menu span {
    display: block;
    width: 100%;
    height: 3px;
    background: var(--color-primary);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.hamburger-menu.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.hamburger-menu.active span:nth-child(2) {
    opacity: 0;
}

.hamburger-menu.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

.topmenus .item a {
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #1c2b52;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

/* ==================== MOBILE NAVIGATION OVERLAY ==================== */
.mobile-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #ffffff;
    z-index: 1050;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateX(100%);
    transition: transform 0.5s cubic-bezier(0.77, 0, 0.175, 1);
}

.mobile-nav.active {
    transform: translateX(0);
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    margin-bottom: 50px;
}

.mobile-nav-links a {
    font-size: 20px;
    font-weight: 800;
    text-transform: uppercase;
    color: #1c2b52;
    text-decoration: none;
    letter-spacing: -0.02em;
    transition: all 0.3s ease;
}

.mobile-nav-links a:hover {
    color: var(--color-accent);
}

.mobile-social-icons {
    display: flex;
    gap: 30px;
    justify-content: center;
}

.mobile-social-icons a {
    font-size: 1.5rem;
    color: var(--color-primary);
    transition: all 0.3s ease;
}

.mobile-social-icons a:hover {
    color: var(--color-accent);
}

.topmenus .item a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-primary);
    transition: width 0.3s ease;
}

.topmenus .item a:hover::after {
    width: 100%;
}

.quote-btn {
    padding: 12px 30px;
    background: #1c2b52;
    color: var(--color-secondary);
    border: none;
    font-weight: 700;
    font-size: 0.875rem;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 5px;
}

.quote-btn:hover {
    background: #1c2b52;
    transform: translateY(-2px);
}

@media (max-width: 991px) {
    .header {
        padding: 0 20px;
    }

    .topmenus {
        display: none;
    }
}

/* ==================== SWIPER CONTAINER ==================== */
.product-page {
    width: 100%;
    height: 100vh;
    position: relative;
}

.product-main-swiper {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(32 48 89 / 10%);
}

/* ==================== COMMON TITLE STYLES ==================== */
.common-title-content {
    padding: 0 20px 0 0px;
    z-index: 9999 !important;
}

.s-title {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.dot {
    position: relative;
    width: 18px;
    height: 18px;
    margin-right: 15px;
    /* Added spacing */
}

.dot div {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: #05439a;
    /* Deep blue base */
}

.dot .light-blur {
    background-color: #1da63b;
    /* Keep accent color */
    transform: translateX(35%);
    animation: twoDotAn 1s linear infinite alternate;
}

.dot .dark-blur {
    background-color: #05439a;
    transform: translateX(70%);
    animation: twoDotAn 1s linear infinite alternate-reverse;
}

@keyframes twoDotAn {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(70%);
        z-index: 3;
    }
}

.s-title p {
    font-size: 39px;
    font-weight: 700;
    color: #ffffff !important;
}

.b-title {
    font-size: 30px;
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: 0;
    max-width: 800px;
    padding: 0 0 15px;
    color: #ffffff;
}

/* ==================== HERO SLIDE ==================== */
.hero-slide {
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
}

.hero-slide .slide-bg {
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2;
}

.hero-content-center {
    position: relative;
    z-index: 3;
}

.hero-content-center {
    text-align: center;
    max-width: 1200px;
    padding: 0 40px;
    color: var(--color-secondary);
}

.hero-badge {
    display: inline-block;
    padding: 8px 20px;
    color: #1da63b;
    font-size: 30px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 30px;
    animation: fadeInUp 0.8s ease;
}

.main-title {
    font-size: 50px;
    font-weight: 900;
    line-height: 52px;
    margin-bottom: 30px;
    letter-spacing: -0.02em;
    animation: fadeInUp 0.8s ease 0.2s backwards;
}

.subtitle {
    font-size: 25px;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.9);
    animation: fadeInUp 0.8s ease 0.4s backwards;
}

.trust-text {
    font-size: 1.125rem;
    color: var(--color-accent);
    font-weight: 600;
    margin-bottom: 40px;
    animation: fadeInUp 0.8s ease 0.5s backwards;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.6s backwards;
}

.btn-primary,
.btn-outline {
    padding: 10px 15px;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border: 2px solid var(--color-secondary);
    cursor: pointer;
    transition: all 0.4s ease;
    border-radius: 5px;
}

.btn-primary {
    background: var(--color-secondary);
    color: #e9722b;
}

.btn-primary:hover {
    background: transparent;
    color: var(--color-secondary);
    transform: translateY(-3px);
}

.btn-outline {
    background: transparent;
    color: var(--color-secondary);
}

.btn-outline:hover {
    background: var(--color-secondary);
    color: var(--color-primary);
    transform: translateY(-3px);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==================== ABOUT SLIDE ==================== */
.about-slide {
    padding: 70px 60px 60px;
    position: relative;
}

.about-slide .slide-bg {
    background-image: url('../images/aboutus.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.about-slide .slide-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.about-slide .s-title p,
.about-slide .b-title,
.about-slide .intro-text,
.about-slide .why-choose-list h3 {
    color: #ffffff;
}

.about-slide .about-text p {
    color: rgba(255, 255, 255, 0.9);
}

.about-slide .common-title-content,
.about-slide .about-content-main {
    position: relative;
    z-index: 2;
}

.about-content-main {
    margin-top: 80px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
    max-width: 1400px;
}

.about-text {
    padding-right: 0;
    max-width: 800px;
}

.intro-text {
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: 20px;
    line-height: 1.7;
    color: var(--color-primary);
}

.about-text p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--color-gray-700);
}

.why-choose-list h3 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 40px;
}

@media (min-width: 992px) {
    .why-choose-content {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

.feature-box {
    padding: 10px;
    background: var(--color-secondary);
    border: 2px solid var(--color-gray-200);
    transition: all 0.3s ease;
    border-radius: 10px;
}

.feature-box:hover {
    border-color: var(--color-primary);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.feature-box .icon {
    font-size: 2rem;
    margin-bottom: 15px;
}

.feature-box h4 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.feature-box p {
    font-size: 0.95rem;
    color: var(--color-gray-700);
    line-height: 1.6;
}

@media (max-width: 991px) {
    .about-content-main {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .feature-grid {
        grid-template-columns: 1fr;
    }
}

/* ==================== SERVICES SLIDE (BREAK-THROUGH STYLE) ==================== */
.break-through-content {
    background: #203059;
    position: relative;
    overflow: hidden;
}

.break-through-content .product-pic {
    position: absolute !important;
    left: 0px;
    bottom: 0;
    width: 30%;
    z-index: 1;
}

.break-through-content .product-pic img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.break-through-content .content {

    /* Re-added absolute position for desktop layout */

    right: 10%;

    top: 50%;

    /* Re-added transform centering */


    /* Re-added width constraint */

    z-index: 2;

    padding-left: 40px;

    border-left: 1px solid rgba(255, 255, 255, 0.2);
    /* Lighter border for dark bg */
}

.break-through-content .content .title {
    font-size: 1.5rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 10px;
    margin-top: 30px;
}

.break-through-content .content .title:first-child {
    margin-top: 0;
}

.break-through-content .content .text p {
    font-size: 1rem;
    color: #ffffff;
    line-height: 1.6;
}

.download-pdf {
    margin-top: 40px;
}

.download-pdf a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
    font-weight: 700;
    color: #1da63b;
    text-decoration: none;
    padding-bottom: 5px;
    border-bottom: 2px solid #1da63b;
    transition: all 0.3s ease;
}

.download-pdf a:hover {
    color: #15803d;
    border-color: #15803d;
}

.download-pdf a img {
    width: 20px;
    height: 20px;
}

@media (max-width: 991px) {
    .break-through-content .product-pic {
        position: relative;
        top: 0;
        left: 0;
        transform: none;
        width: 80%;
        margin: 120px auto 40px;
    }

    .break-through-content .content {
        position: relative;
        right: 0;
        top: 0;
        transform: none;
        width: 100%;
        padding: 0 40px;
        border-left: none;
    }
}

/* ==================== BENEFITS SLIDE ==================== */
.benefits-slide {
    padding: 140px 60px 60px;
    background: var(--color-gray-100);
}

.benefits-slide .slide-bg {
    background: var(--color-gray-100);
}

.benefits-grid-main {
    margin-top: 100px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    max-width: 1400px;
}

.benefit-box {
    background: var(--color-secondary);
    padding: 50px 30px;
    text-align: center;
    border: 2px solid var(--color-gray-200);
    transition: all 0.4s ease;
}

.benefit-box:hover {
    border-color: var(--color-primary);
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
    font-size: 4.5rem;
    margin-bottom: 25px;
}

.benefit-box h3 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.benefit-box p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--color-gray-700);
}

@media (max-width: 1200px) {
    .benefits-grid-main {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .benefits-grid-main {
        grid-template-columns: 1fr;
    }
}

/* ==================== CONTACT SLIDE ==================== */
.contact-slide {
    background: transparent;
    color: var(--color-secondary);
    padding: 140px 60px 60px;
    position: relative;
}

.contact-slide .slide-bg {
    background-image: url('../images/footer.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.contact-slide .slide-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(28 43 82 / 90%);
    /* Strong dark overlay for footer */
    z-index: 1;
}

.contact-main {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-main h2 {
    font-size: 30px;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.contact-subtitle {
    font-size: 1.375rem;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.9);
}

.service-area {
    font-size: 30px;
    margin-bottom: 20px;
    color: #ec772f;
    font-weight: 600;
}

.service-area strong {
    color: var(--color-accent);
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 25px;
}

.contact-box {
    background: rgba(255, 255, 255, 0.1);
    padding: 15px 30px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    border-radius: 10px;
}

.contact-box:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--color-accent);
    transform: translateY(-5px);
    border-radius: 10px;
}

.c-icon {
    font-size: 2rem;
    margin-bottom: 10px;
}

.contact-box h4 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.contact-box p {
    font-size: 1rem;
    line-height: 1.6;
}

.contact-box a {
    color: var(--color-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-box a:hover {
    color: var(--color-accent);
}

.btn-primary-large {
    padding: 10px 20px;
    background: var(--color-secondary);
    color: #1c2b52;
    border: 2px solid var(--color-secondary);
    font-weight: 700;
    font-size: 1.125rem;
    cursor: pointer;
    transition: all 0.4s ease;
    margin-bottom: 20px;
    border-radius: 10px;
}

.btn-primary-large:hover {
    background: transparent;
    color: var(--color-secondary);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
}

.footer-bottom {
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-bottom p {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
}

.backtotop {
    position: absolute;
    bottom: 15px;
    right: 68px;
    width: 40px;
    height: 40px;
    background: var(--color-secondary);
    color: var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 100;
}

.backtotop:hover {
    background: var(--color-accent);
    color: var(--color-secondary);
    transform: translateY(-5px);
}

@media (max-width: 767px) {}

/* ==================== BENEFITS SLIDE SPECIFIC ==================== */
.benefits-slide .slide-bg {
    background-image: url('../images/whysolar.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.benefits-slide .slide-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(32, 48, 89, 0.85);
    z-index: 1;
}

#benefits .common-title-content {
    z-index: 2;
}

#benefits {
    background: transparent;
}

/* ==================== MOUSE SCROLL INDICATOR ==================== */
.mouse-tips {
    position: fixed;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    z-index: 100;
    color: #ffffff;
    animation: fadeIn 1s ease 1.5s backwards;
}

.hero-slide~.mouse-tips {
    color: #ffffff;
}

.mouse-tips .icon {
    margin-bottom: 10px;
}

.mouse-tips p {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-weight: 600;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* ==================== MODAL STYLES ==================== */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.8);
    animation: fadeIn 0.3s ease;
}

.modal-content {
    background-color: var(--color-secondary);
    margin: 5% auto;
    padding: 50px;
    border: none;
    border-top: 5px solid var(--color-accent);
    width: 90%;
    max-width: 600px;
    position: relative;
    animation: slideDown 0.4s ease;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    border-radius: 10px;
}

@keyframes slideDown {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.close {
    color: var(--color-gray-700);
    position: absolute;
    right: 25px;
    top: 25px;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.close:hover {
    color: var(--color-primary);
}

.modal-content h2 {
    margin-bottom: 10px;
    font-size: 2rem;
    font-weight: 900;
    color: #1c2b52;
}

.modal-subtitle {
    color: var(--color-gray-700);
    margin-bottom: 30px;
    font-size: 1rem;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--color-primary);
    font-size: 0.9rem;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 15px;
    border: 2px solid var(--color-gray-200);
    font-family: var(--font-primary);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--color-accent);
    box-shadow: 0 0 10px rgba(29, 166, 59, 0.1);
}

.form-note {
    display: block;
    margin-top: 8px;
    font-size: 0.8rem;
    color: var(--color-gray-700);
    font-style: italic;
}

.btn-submit {
    width: 100%;
    padding: 18px;
    background: var(--color-accent);
    color: var(--color-secondary);
    border: none;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
    border-radius: 5px;
}

.btn-submit:hover {
    background: #15803d;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(29, 166, 59, 0.3);
}

.thank-you-content {
    text-align: center;
    padding: 60px 50px;
}

.thank-you-icon {
    width: 80px;
    height: 80px;
    background: var(--color-accent);
    color: var(--color-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    margin: 0 auto 30px;
    animation: scaleIn 0.5s ease;
}

@keyframes scaleIn {
    from {
        transform: scale(0);
    }

    to {
        transform: scale(1);
    }
}

.thank-you-message {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 15px;
}

.thank-you-note {
    color: var(--color-gray-700);
    margin-bottom: 30px;
}

/* ==================== WHATSAPP FLOATING BUTTON ==================== */
.whatsapp-float {
    position: fixed;
    bottom: 18px;
    right: 12px;
    width: 40px;
    height: 40px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 1500;
    transition: all 0.3s ease;
    animation: whatsappPulse 2s infinite;
    text-decoration: none;
    outline: none;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
    text-decoration: none;
}

.whatsapp-float i {
    font-size: 32px;
    color: #ffffff;
}

@keyframes whatsappPulse {

    0%,
    100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }

    50% {
        box-shadow: 0 4px 30px rgba(37, 211, 102, 0.7);
    }
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1200px) {
    .benefits-grid-main {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 991px) {
    .header {
        height: 80px;
        padding: 0 30px;
    }

    .topmenus,
    .header-socials {
        display: none;
    }

    .hamburger-menu {
        display: flex;
    }

    .logo img {
        width: 140px;
        height: auto;
    }

    .technology-list {
        grid-template-columns: 1fr;
        margin-top: 40px;
    }

    .technology-item {
        padding: 30px;
    }

    .about-content-main {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    /* Override feature-grid if still present */
    .feature-grid {
        grid-template-columns: 1fr !important;
    }

    #about {
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        padding-top: 100px;
        padding-bottom: 80px;
        overflow-y: auto !important;
        height: 100vh;
    }

    .about-content-main {
        margin-top: 40px;
        overflow: visible;
    }
}

@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
    }

    .whatsapp-float i {
        font-size: 26px;
    }





    .s-title p {
        font-size: 28px;
    }

    .about-slide,
    .services-slide,
    .benefits-slide,
    .contact-slide,
    .technology-content {
        padding: 100px 20px 40px;
    }

    .hero-slide {
        padding: 0 20px;
    }

    .main-title {
        font-size: 32px;
        line-height: 1.2;
    }

    .hero-badge {
        font-size: 20px;
    }

    .contact-info-grid {
        gap: 20px;
    }

    .benefits-grid-main {
        grid-template-columns: 1fr;
        margin-top: 40px;
    }

    .modal-content {
        margin: 10% auto;
        padding: 30px 20px;
        width: 95%;
    }

    .thank-you-content {
        padding: 40px 30px;
    }

    .backtotop {
        right: 20px;
        bottom: 20px;
    }
}

/* ==================== SERVICES SLIDE (TECHNOLOGY STYLE) ==================== */
.technology-content {
    background: transparent;
    position: relative;
    padding: 40px 60px 60px;
}

.technology-content .slide-bg {
    background-image: url('../images/services.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.technology-content .slide-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(32, 48, 89, 0.85);
    /* Dark blue overlay */
    z-index: 1;
}

.technology-list {
    margin-top: 80px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1400px;
    position: relative;
    z-index: 2;
}

.technology-item {
    padding: 20px;
    border: 1px solid #e5e5e5;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border: 1px solid #ffffff;
    border-radius: 10px;
}

.technology-item:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border-color: #1da63b;
    transform: translateY(-5px);
}

.technology-item .top-title {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.technology-item .top-title .icon {
    font-size: 2.5rem;
    width: 60px;
    height: 60px;
    background: #f0fdf4;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.technology-item .top-title .icon img {
    width: 70%;
    height: 70%;
    object-fit: contain;
}

.technology-item .top-title p {
    font-size: 1.5rem;
    font-weight: 800;
    color: #ffffffff;
}

.technology-item .text p {
    font-size: 1.1rem;
    color: #ffffff;
    line-height: 1.6;
}

.solar-img img {
    object-fit: contain;
    width: 100%;
}

.footer-bottom h3 {
    padding-bottom: 20px;
}

.benefit-list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    list-style: none;
    padding: 20px 0;
    justify-content: center;
}

.benefit-list .benefit-item {
    flex: 1;
    min-width: 250px;
    max-width: 400px;
    background: #ffffff;
    border-radius: 12px;
    padding: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
    margin-bottom: 20px;
    /* Added margin for stacking if flex wraps */
}

.benefit-list .benefit-item:hover {
    transform: translateY(-5px);
}

.benefit-list .benefit-item img {
    width: 100%;
    height: 167px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
}

.benefit-cnt p:first-child {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: #1c2b52;
}

.benefit-cnt p:last-child {
    font-size: 0.9rem;
    color: #555;
    line-height: 1.4;
}

.benefits-text {
    color: #1c2b52 !important;
}

.common-title-content-benifits {
    position: relative;
    padding: 20px 0;
    text-align: center;
    width: 100%;
    z-index: 10;
}

/* Benefits Section Desktop Layout */
@media (min-width: 992px) {
    .benefits-slide {
        padding: 140px 60px 80px !important;
        display: flex !important;
        flex-direction: column;
        height: auto !important;
        min-height: 100vh;
    }

    .benefit-list {
        display: flex !important;
        flex-wrap: wrap;
        justify-content: center;
        gap: 30px;
        margin-top: 60px;
        max-width: 1400px;
        margin-left: auto;
        margin-right: auto;
        /* Reset any mobile slider overrides */
        transform: none !important;
    }

    .benefit-item {
        flex: 1 1 350px;
        max-width: 450px;
        display: block !important;
    }
}

/* Structural Fixes for Slider Slides on mobile */
@media (max-width: 991px) {

    #about,
    #services,
    #benefits {
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        padding-top: 100px;
        padding-bottom: 100px;
        /* Space for dots */
        overflow-y: auto !important;
        height: 100vh;
    }

    .why-choose-content,
    .technology-list,
    .benefit-list {
        margin-top: 1px !important;
        overflow: visible !important;
        padding-bottom: 40px;
    }
}

.benefit-list {
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.solar-img {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 0px;
}

.solar-img img {
    max-width: 100%;
    object-fit: contain;
}

.start-earning {
    color: #dea22c;

}

/* Responsive Media Queries */
@media (max-width: 1200px) {
    .logo {
        height: auto;
    }

    .feature-box .icon {
        font-size: 17px;
        margin-bottom: 5px;
    }

    .feature-grid {
        gap: 10px;
    }

    .why-choose-list h3 {
        margin-bottom: 8px;
    }

}

@media (max-width: 991px) {

    .slide-bg {
        z-index: 0;
    }

    /* Mobile Slider Styles (Slick) */
    .mobile-slider {
        width: 100%;
        display: block;
        padding-bottom: 40px;
        /* Increased space for dots */
    }

    .why-choose-content,
    .technology-list,
    .benefit-list {
        display: block;
        /* Override grid/flex for slider */
    }

    .slick-slide {
        margin: 0 10px;
        /* Gap between slides */
        height: auto;
    }

    .slick-track {
        display: flex !important;
        align-items: stretch;
    }

    .slick-slide {
        display: flex !important;
        height: auto !important;
        flex-direction: column;
        justify-content: center;
    }

    /* Slick Dots Customization */
    .slick-dots {
        bottom: -15px;
        /* Adjust position */
        z-index: 10;
    }

    .slick-dots li button:before {
        font-size: 10px;
        color: #fff;
        opacity: 0.5;
    }

    .slick-dots li.slick-active button:before {
        color: var(--color-accent);
        opacity: 1;
    }

    /* Ensure cards take full height */
    .feature-box,
    .technology-item,
    .benefit-item {
        height: 100%;
        background: #ffffff;
        /* Force white background for all cards */
        color: #1c2b52;
        /* Dark text for contrast */
        border-radius: 10px;
        padding: 20px;
    }

    /* Fix for Slick Slider when used with feature-grid */
    .mobile-slider.slick-initialized {
        display: block !important;
        padding: 0 40px;
        /* Space for arrows */
    }

    .slick-dots {
        position: relative !important;
        bottom: -20px !important;
        display: block !important;
        text-align: center;
        width: 100%;
        padding: 10px 0;
        z-index: 100;
    }

    .slick-dots li {}

    .slick-dots li button:before {
        font-size: 14px !important;
        color: #fff !important;
        opacity: 0.5 !important;
    }

    .slick-dots li.slick-active button:before {
        color: var(--color-accent) !important;
        opacity: 1 !important;
    }

    /* Slick Arrows Styling */
    .slick-prev,
    .slick-next {
        width: 40px;
        height: 40px;
        z-index: 10;
        border-radius: 50%;
        transition: all 0.3s ease;
    }

    .slick-prev:hover,
    .slick-next:hover {
        background: rgba(255, 255, 255, 0.4);
    }

    .slick-prev {
        left: -10px;
    }

    .slick-next {
        right: -10px;
    }

    .slick-prev:before,
    .slick-next:before {
        font-family: 'Font Awesome 6 Free';
        font-weight: 900;
        font-size: 18px;
        color: #fff;
        opacity: 1;
    }

    .slick-prev:before {
        content: '\f053';
        /* FA Chevron Left */
    }

    .slick-next:before {
        content: '\f054';
        /* FA Chevron Right */
    }

    /* Fix text colors inside cards for mobile */
    .technology-item .top-title p,
    .technology-item .text p,
    .feature-box p {
        color: #1c2b52 !important;
        /* Force dark text */
    }

    .technology-item .top-title .icon {
        background: #f0fdf4;
        /* Ensure icon bg is visible */
    }

    .feature-box .icon {
        font-size: 2.5rem;
        margin-bottom: 10px;
    }

    /* Benefits Grid - Specific reset for slider */
    .benefit-list li,
    .benefit-item {}


    #benefits {
        padding: 100px 40px 40px;
    }

    .benefit-list li {}

    .contact-box h4 {
        margin-bottom: 5px;
    }

}

@media (max-width: 768px) {
    .b-title {
        margin-top: 15px !important;
    }

    .about-text p {
        font-size: 13px;
        margin-bottom: 8px;
    }

    .s-title {
        margin-bottom: 10px;
    }

    .about-content-main {
        margin-top: 20px;
    }

    .technology-content {
        padding: 90px 20px 50px;
        z-index: 99999;
    }

    .hero-content-center {
        padding: 110px 0px 0;
    }

    .swiper-slide {
        display: block;
    }

    #benefits {
        padding: 90px 20px 40px;
    }

    .service-area {
        font-size: 15px;
    }

    .benefit-list {
        flex-direction: column;
        align-items: center;
    }

    .benefit-list li {}

    .benefit-list li img {
        height: 250px;
    }

    .common-title-content-benifits {
        padding-bottom: 20px;
    }

    .solar-img {
        padding: 130px 20px;
        background: #1c2b52;
    }

    .quote-btn {
        padding: 12px 10px;
    }

    .contact-box {
        padding: 10px 5px;
        margin-bottom: 5px;
    }

    .contact-info-grid {
        display: block;
    }

    .c-icon {
        font-size: 15px;
    }

    .contact-main h2 {
        margin-bottom: 10px;
    }

    .footer-bottom {
        padding-top: 15px;
    }

    .mobile-slider.slick-initialized {
        padding: 0 20px;
    }
}

@media (max-width: 450px) {
    .logo img {
        width: 115px;
        height: auto;
    }

    .quote-btn {
        padding: 10px 5px;
        width: 100px;
        font-size: 9px;
    }

    .header-right {
        gap: 9px;
    }

    .header {
        padding: 0 10px;
    }

    .technology-item .top-title .icon {
        font-size: 15px;
        width: 50px;
        height: 50px;
    }

    .technology-item .top-title p {
        font-size: 15px;

    }

    .technology-item .text p {
        font-size: 13px;
    }

    .benefit-list .benefit-item {
        min-width: 187px;
    }

    .b-title {
        text-align: center;
        margin-top: 10px !important;
        font-size: 18px;
    }

    .contact-main h2 {
        font-size: 20px;
    }

    .about-text p {
        text-align: center;
    }

    .solar-img img {
        padding: 50px 0 0;
    }

    .main-title {
        font-size: 25px;
        margin-bottom: 10px;
    }

    .hero-badge {
        font-size: 15px;
        margin-bottom: 10px;
    }

    .subtitle {
        font-size: 15px;
    }

    .feature-box .icon {
        font-size: 15px;
    }
}