﻿/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #e04000;
    --secondary-color: #0070c0;
    --accent-color: #7aaa20;
    --dark-color: #0d1b2e;
    --blackdarkgrey:#273743;
    --light-color: #f4f7fb;
    --text-color: #2c2c2c;
    --text-white-color: #ffffff;
    --white: #ffffff;
    --gradient: linear-gradient(135deg, #e04000 0%, #ff6000 100%);
    --gradient-blue: linear-gradient(135deg, #0070c0 0%, #0090e0 100%);
    --shadow: 0 10px 30px rgba(0,0,0,0.1);
    --transition: all 0.3s ease;


}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    overflow-x: hidden;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--gradient);
    color: var(--white);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(224, 64, 0, 0.3);
}

.btn-secondary {
    background: var(--dark-color);
    color: var(--white);
}

.btn-secondary:hover {
    background: var(--primary-color);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--white);
    color: var(--white);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--primary-color);
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: var(--blackdarkgrey);
    box-shadow: var(--shadow);
}


.about-section {
    padding: 45px 0;
    background-color: #ffffff;
    background-image: url(https://www.transparenttextures.com/patterns/clean-textile.png);
}


.products-section {
    padding: 45px 0;
    background-color: #ffffff;
    background-image: url(../images/overlay.jpg)!important;
    background-attachment:fixed!important;
    background-size:cover!important;

}

.why-choose-section {
    padding: 45px 0;
    background-color: #ffffff;
    background-image: url(https://www.transparenttextures.com/patterns/clean-textile.png);
}

.testimonials-section {
    padding: 45px 0;
    background-color: #ffffff;
    background-image: url(../images/overlay1.jpg) !important;
    background-attachment: fixed !important;
    background-size: cover !important;
}
.top-bar {
   
    background: linear-gradient(to right, #0070c0, #0d1b2e);
    padding: 5px 2px;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-info a {
    color: var(--white);
    margin-right: 20px;
}

.contact-info i {
    margin-right: 5px;
        color: #ffffff;
}

.social-links a {
    color: var(--white);
    margin-left: 15px;
    font-size: 16px;
}

.social-links a:hover {
    color: var(--primary-color);
}

/* Navbar */
.navbar {
    padding: 3px 0;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 80px;
    margin-right: 10px;
}

.logo span {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
}

.nav-list {
    display: flex;
    list-style: none;
    align-items: center;
}

.nav-list li {
    position: relative;
    margin-left: 15px;
}

.nav-link {
    color: var(--text-white-color);
    font-weight: 500;
    padding: 8px 0;
    display: inline-block;
}

.nav-link:hover {
    color: var(--primary-color);
}

.btn-nav {
    background: var(--gradient);
    color: var(--white) !important;
    padding: 8px 20px;
    border-radius: 25px;
}

/* Mega Menu */
.has-mega-menu {
    position: relative;
}

.mega-menu {
    position: absolute;
    top: 100%;
    left: -100px;
    width: 600px;
    background: var(--white);
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
    border-radius: 10px;
    padding: 30px;
    margin-top: 10px;
}

.has-mega-menu:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mega-menu-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.mega-menu-content1 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.mega-menu-column h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 16px;
}

.mega-menu-column ul {
    list-style: none;
}

.mega-menu-column ul li {
    margin: 0 0 10px 0;
}

.mega-menu-column ul li a {
    color: var(--text-color);
    font-size: 14px;
}

.mega-menu-column ul li a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    margin: 3px 0;
    transition: var(--transition);
}

/* Hero Slider */
.hero-slider {
    position: relative;
    height: 80vh;
    /*   margin-top: 120px;*/
    overflow: hidden;
    padding: 3px 0;
}

.slider-container {
    position: relative;
    height: 100%;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.slide-content {
    position: relative;
    z-index: 1;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: var(--white);
    padding: 0 20px;
}

.slide-title {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.slide-text {
    font-size: 24px;
    margin-bottom: 30px;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.3);
    color: var(--white);
    border: none;
    padding: 15px 20px;
    cursor: pointer;
    font-size: 24px;
    transition: var(--transition);
    z-index: 2;
}

.slider-btn:hover {
    background: var(--primary-color);
}

.slider-btn.prev {
    left: 5px;
}

.slider-btn.next {
    right: 5px;
}

.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 2;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: var(--transition);
}

.dot.active,
.dot:hover {
    background: var(--primary-color);
    transform: scale(1.2);
}

/* Section Styles */
section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 22px;
}

.section-title {
    font-size: 42px;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 15px;
}

.title-underline {
    width: 80px;
    height: 4px;
    background: var(--gradient);
    margin: 0 auto;
    border-radius: 2px;
}

.section-subtitle {
    font-size: 18px;
    color: #666;
    margin-top: 15px;
}

/* About Section */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image img {
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.about-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: var(--gradient);
    color: var(--white);
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow);
}

.badge-number {
    display: block;
    font-size: 36px;
    font-weight: 700;
}

.badge-text {
    font-size: 14px;
}

.about-text h3 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--dark-color);
}

.about-text p {
    margin-bottom: 20px;
    line-height: 1.8;
    color: #666;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin: 30px 0;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.feature-item i {
    color: var(--primary-color);
    font-size: 20px;
}

/* Products Section */
.products-section {
    background: var(--light-color);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.product-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    transition: var(--transition);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow);
}

.product-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-icon i {
    font-size: 36px;
    color: var(--white);
}

.product-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.product-card p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.product-link {
    color: var(--primary-color);
    font-weight: 600;
}

.product-link:hover {
    gap: 10px;
}

.product-link i {
    margin-left: 5px;
    transition: var(--transition);
}

.product-link:hover i {
    margin-left: 10px;
}

/* Why Choose Section */
.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.why-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    transition: var(--transition);
    border: 2px solid transparent;
}

.why-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
}

.why-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, rgba(224, 64, 0, 0.1) 0%, rgba(0, 112, 192, 0.08) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.why-icon i {
    font-size: 32px;
    color: var(--primary-color);
}

.why-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.why-card p {
    color: #666;
    line-height: 1.6;
}

/* Testimonials Section - New Design */
.testimonials-section {
    background: var(--light-color);
    padding: 80px 0;
}

.testimonials-wrapper {
    margin-top: 50px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card-new {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    position: relative;
    border: 2px solid transparent;
}

.testimonial-card-new:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-color);
}

.quote-icon-new {
    position: absolute;
    top: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(224, 64, 0, 0.1) 0%, rgba(0, 112, 192, 0.08) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.quote-icon-new i {
    font-size: 28px;
    color: var(--primary-color);
}

.rating-new {
    display: flex;
    gap: 5px;
    margin-bottom: 20px;
}

.rating-new i {
    color: #ffc107;
    font-size: 18px;
}

.testimonial-text-new {
    font-size: 15px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 30px;
    min-height: 120px;
}

.testimonial-author-new {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-top: 20px;
    border-top: 2px solid var(--light-color);
}

.testimonial-author-new img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--light-color);
}

.author-details h4 {
    font-size: 18px;
    color: var(--dark-color);
    margin-bottom: 5px;
    font-weight: 600;
}

.author-details span {
    display: block;
    font-size: 14px;
    color: #999;
    margin-bottom: 3px;
}

.author-details .location {
    color: var(--primary-color);
    font-weight: 500;
}

.author-details .location i {
    font-size: 12px;
    margin-right: 5px;
}

/* CTA Section */
.cta-section {
    background: var(--gradient);
    color: var(--white);
    text-align: center;
}

.cta-content h2 {
    font-size: 42px;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 20px;
    margin-bottom: 30px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

/* Footer */
.footer {
    background: var(--dark-color);
    color: var(--white);
}

.footer-top {
    padding: 60px 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.footer-logo img {
    height: 100px;
}

.footer-logo h3 {
    font-size: 20px;
}

.footer-column p {
    line-height: 1.8;
    margin-bottom: 20px;
    color: #ccc;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--primary-color);
}

.footer-column h4 {
    font-size: 20px;
    margin-bottom: 20px;
    color: var(--white);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #ccc;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-contact {
    list-style: none;
}

.footer-contact li {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    color: #ccc;
}

.footer-contact i {
    color: var(--primary-color);
    font-size: 18px;
    margin-top: 3px;
}

.footer-contact a {
    color: #ccc;
}

.footer-contact a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
}

.footer-bottom-links a {
    color: #ccc;
}

.footer-bottom-links a:hover {
    color: var(--primary-color);
}

/* Scroll to Top */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gradient);
    color: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
}

.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    transform: translateY(-5px);
}


/* WhatsApp Float */
.comments-float {
    position: fixed;
    bottom: 245px;
    right: 0px;
    background: #fb7f29;
    color: var(--white);
    border-radius: 10px;
    padding: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    box-shadow: var(--shadow);
    z-index: 999;
    animation: pulse 2s infinite;
    rotate: 90deg;
}


/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25d366;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: var(--shadow);
    z-index: 999;
    animation: pulse 2s infinite;
}

/* Call Float */
.call-float {
    position: fixed;
    bottom: 170px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #e04000, #ff6000);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    box-shadow: var(--shadow);
    z-index: 999;
    animation: pulse 2s infinite;
    transition: transform 0.3s ease;
}
.call-float:hover {
    transform: scale(1.1);
    color: var(--white);
}

/* Page Hero */
.page-hero {
    
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 90px;
}

.page-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
}

.page-hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: var(--white);
}

.page-hero-content h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 15px;
}

.page-hero-content p {
    font-size: 20px;
}

/* About Detail Section */
.about-detail-section {
    padding: 80px 0;
}

.about-detail-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-detail-text h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--dark-color);
}

.about-detail-text p {
    margin-bottom: 20px;
    line-height: 1.8;
    color: #666;
}

.about-detail-image img {
    border-radius: 15px;
    box-shadow: var(--shadow);
}

/* Mission Vision Section */
.mission-vision-section {
    background: var(--light-color);
    padding: 80px 0;
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.mission-card,
.vision-card {
    background: var(--white);
    padding: 50px;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.mv-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.mv-icon i {
    font-size: 36px;
    color: var(--white);
}

.mission-card h3,
.vision-card h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: var(--dark-color);
}

.mission-card p,
.vision-card p {
    line-height: 1.8;
    color: #666;
}

/* Values Section */
.values-section {
    padding: 80px 0;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.value-card {
    text-align: center;
    padding: 30px;
    background: var(--light-color);
    border-radius: 15px;
    transition: var(--transition);
}

.value-card:hover {
    transform: translateY(-5px);
    background: var(--white);
    box-shadow: var(--shadow);
}

.value-card i {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.value-card h4 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--dark-color);
}

.value-card p {
    color: #666;
    line-height: 1.6;
}

/* Products Detail Section */
.products-detail-section {
    padding: 80px 0;
}

.products-detail-section.bg-light {
    background: var(--light-color);
}

.brands-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.brand-card {
    background: var(--white);
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    transition: var(--transition);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.brand-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow);
}

.brand-card img {
    height: 80px;
    object-fit: contain;
    margin-bottom: 20px;
}

.brand-card h4 {
    font-size: 18px;
    color: var(--dark-color);
}

.accessories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.accessory-item {
    background: var(--white);
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    transition: var(--transition);
}

.accessory-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.accessory-item i {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.accessory-item h4 {
    font-size: 20px;
    color: var(--dark-color);
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
    background: #f8f9fb;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 50px;
    align-items: start;
}

.contact-info-side {
    background: #fff;
    border-radius: 18px;
    padding: 40px 35px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
}

.contact-info-side h2 {
    font-size: 30px;
    margin-bottom: 12px;
    color: var(--dark-color);
    font-weight: 700;
}

.contact-info-side > p {
    margin-bottom: 30px;
    color: #666;
    line-height: 1.8;
    font-size: 15px;
    border-bottom: 1px solid #f0f0f0;
    padding-bottom: 25px;
}

.contact-info-items {
    margin-bottom: 30px;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 25px;
    background: #fff;
    border-radius: 12px;
    padding: 18px 20px;
    box-shadow: 0 3px 12px rgba(0,0,0,0.07);
    transition: all 0.3s ease;
    border-left: 4px solid var(--primary-color);
}

.contact-info-item:hover {
    transform: translateX(5px);
    box-shadow: 0 6px 20px rgba(224,64,0,0.12);
}

.contact-icon {
    width: 52px;
    height: 52px;
    min-width: 52px;
    background: var(--gradient);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    font-size: 20px;
    color: var(--white);
}

.contact-details h4 {
    font-size: 14px;
    margin-bottom: 4px;
    color: #999;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-details p {
    color: var(--dark-color);
    line-height: 1.5;
    font-weight: 500;
    font-size: 15px;
}

.contact-details a {
    color: var(--primary-color);
    font-weight: 600;
}

.contact-details a:hover {
    text-decoration: underline;
}

.contact-social {
    padding-top: 20px;
    border-top: 1px solid #f0f0f0;
}

.contact-social h4 {
    font-size: 15px;
    margin-bottom: 12px;
    color: var(--dark-color);
    font-weight: 600;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    width: 45px;
    height: 45px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 20px;
    transition: var(--transition);
}

.social-icons a:hover {
    transform: translateY(-5px);
}

/* Contact Form */
.contact-form-side {
    background: var(--white);
    padding: 40px 35px;
    border-radius: 18px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
}

.contact-form h3 {
    font-size: 26px;
    margin-bottom: 8px;
    color: var(--dark-color);
    font-weight: 700;
}

.contact-form > p {
    color: #888;
    margin-bottom: 25px;
    font-size: 14px;
}

.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    margin-bottom: 6px;
    font-size: 13px;
    font-weight: 600;
    color: var(--dark-color);
}

.form-control {
    width: 100%;
    padding: 13px 15px;
    border: 1.5px solid #e5e7eb;
    border-radius: 8px;
    font-size: 15px;
    font-family: 'Poppins', sans-serif;
    transition: var(--transition);
    background: #fafafa;
    color: var(--text-color);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(224,64,0,0.08);
}

.btn-block {
    width: 100%;
}

.map-section {
    padding: 0;
}

/* Enquiry Section */
.enquiry-section {
    padding: 80px 0;
}

.enquiry-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.enquiry-info h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: var(--dark-color);
}

.benefits-list {
    list-style: none;
    margin-bottom: 40px;
}

.benefits-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 18px;
    color: #666;
}

.benefits-list i {
    color: var(--primary-color);
    font-size: 20px;
}

.enquiry-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.stat-item {
    text-align: center;
    padding: 30px;
    background: var(--light-color);
    border-radius: 15px;
}

.stat-item h3 {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.stat-item p {
    color: #666;
}

.enquiry-form-container {
    background: var(--light-color);
    padding: 50px;
    border-radius: 15px;
}

.enquiry-form h3 {
    font-size: 28px;
    margin-bottom: 10px;
    color: var(--dark-color);
}

.enquiry-form > p {
    margin-bottom: 30px;
    color: #666;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--dark-color);
}

select.form-control {
    cursor: pointer;
}

/* Calculator Section */
.calculator-section {
    padding: 80px 0;
    background: var(--light-color);
}

.calculator-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    
    padding: 50px;
  
   
}

.calculator-form h2 {
    font-size: 28px;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.calculator-form > p {
    margin-bottom: 30px;
    color: #666;
}

.form-group small {
    display: block;
    margin-top: 5px;
    color: #999;
    font-size: 14px;
}

.calculator-results h3 {
    font-size: 24px;
    margin-bottom: 30px;
    color: var(--dark-color);
}

.result-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: var(--light-color);
    border-radius: 10px;
    margin-bottom: 20px;
}

.result-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.result-icon i {
    font-size: 24px;
    color: var(--white);
}

.result-info h4 {
    font-size: 14px;
    color: #666;
    margin-bottom: 5px;
}

.result-value {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
}

.cta-box {
    background: var(--gradient);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    color: var(--white);
    margin-top: 20px;
}

.cta-box p {
    margin-bottom: 20px;
    font-size: 18px;
}

.cta-box .btn {
    background: var(--white);
    color: var(--primary-color);
}

/* EPC Sections */
.epc-intro-section {
    padding: 80px 0;
}

.epc-intro-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.epc-intro-text h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--dark-color);
}

.epc-intro-text p {
    margin-bottom: 20px;
    line-height: 1.8;
    color: #666;
}

.epc-intro-image img {
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.epc-process-section {
    background: var(--light-color);
    padding: 80px 0;
}

.process-timeline {
    max-width: 900px;
    margin: 0 auto;
}

.process-step {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    position: relative;
}

.process-step::before {
    content: '';
    position: absolute;
    left: 35px;
    top: 80px;
    width: 2px;
    height: calc(100% + 40px);
    background: var(--primary-color);
}

.process-step:last-child::before {
    display: none;
}

.step-number {
    width: 70px;
    height: 70px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    color: var(--white);
    flex-shrink: 0;
}

.step-content {
    flex: 1;
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.step-content h3 {
    font-size: 24px;
    margin-bottom: 10px;
    color: var(--dark-color);
}

.step-content p {
    color: #666;
    line-height: 1.6;
}

.epc-services-section {
    padding: 80px 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.service-card {
    background: var(--light-color);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-10px);
    background: var(--white);
    box-shadow: var(--shadow);
}

.service-card i {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.service-card p {
    color: #666;
    line-height: 1.6;
}

/* Certifications Section */
.certifications-section {
    padding: 80px 0;
}

.certifications-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.cert-card {
    background: var(--white);
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: var(--transition);
}

.cert-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow);
}

.cert-image {
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.cert-image img {
    max-height: 100%;
    object-fit: contain;
}

.cert-card h4 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--dark-color);
}

.cert-card p {
    color: #666;
}

.awards-section {
    background: var(--light-color);
    padding: 80px 0;
}

.awards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.award-card {
    background: var(--white);
    padding: 50px 30px;
    border-radius: 15px;
    text-align: center;
    transition: var(--transition);
}

.award-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow);
}

.award-card i {
    font-size: 64px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.award-card h4 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.award-card p {
    color: #666;
    line-height: 1.6;
}

/* Success Stories Section */
.success-stories-section {
    padding: 80px 0;
}

.story-category {
    margin-bottom: 60px;
}

.category-title {
    font-size: 32px;
    margin-bottom: 30px;
    color: var(--dark-color);
    padding-bottom: 15px;
    border-bottom: 3px solid var(--primary-color);
}

.stories-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.story-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: var(--transition);
}

.story-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow);
}

.story-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.story-content {
    padding: 30px;
}

.story-content h4 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.story-stats {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
}

.story-stats span {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-color);
    font-weight: 600;
}

.story-stats i {
    font-size: 16px;
}

.story-content p {
    color: #666;
    line-height: 1.6;
}

/* Apply Section */
.apply-section {
    padding: 80px 0;
}

.apply-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.apply-info h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--dark-color);
}

.apply-info > p {
    margin-bottom: 40px;
    color: #666;
    line-height: 1.8;
}

.financing-options {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.financing-card {
    display: flex;
    gap: 20px;
    padding: 30px;
    background: var(--light-color);
    border-radius: 15px;
}

.financing-card i {
    font-size: 48px;
    color: var(--primary-color);
}

.financing-card h4 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--dark-color);
}

.financing-card p {
    color: #666;
    line-height: 1.6;
}

.apply-form-container {
    background: var(--light-color);
    padding: 50px;
    border-radius: 15px;
}

.apply-form h3 {
    font-size: 28px;
    margin-bottom: 30px;
    color: var(--dark-color);
}

/* Content Section for Terms and Privacy */
.content-section {
    padding: 80px 0;
}

.content-wrapper {
    max-width: 900px;
    margin: 0 auto;
    background: var(--white);
    padding: 50px;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.content-wrapper h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--dark-color);
}

.content-wrapper h3 {
    font-size: 24px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.content-wrapper p {
    margin-bottom: 15px;
    line-height: 1.8;
    color: #666;
}

.content-wrapper ul {
    margin-bottom: 20px;
    padding-left: 30px;
}

.content-wrapper ul li {
    margin-bottom: 10px;
    line-height: 1.6;
    color: #666;
}

.products-showcase-section {
    padding: 80px 0;
    position: relative;
    background-image: url('../images/products-hero.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--white);
}

.products-showcase-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(69, 69, 67, 0.92) 0%, rgba(4, 28, 2, 0.88) 100%);
    z-index: 0;
}

.products-showcase-section .container {
    position: relative;
    z-index: 1;
}
.products-showcase-section .section-title {
    color: var(--white);
}

.products-tabs-container {
    margin-top: 50px;
}

.products-tabs {
    display: flex;
    justify-content: center;
    gap: 0;
    margin-bottom: 50px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    padding: 5px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.tab-btn {
    flex: 1;
    padding: 15px 30px;
    background: transparent;
    border: none;
    color: var(--white);
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    border-radius: 50px;
}

.tab-btn.active {
    background: var(--gradient);
    box-shadow: 0 5px 15px rgba(224, 64, 0, 0.3);
}

.tab-content {
    display: none;
    animation: fadeIn 0.5s ease-in-out;
}

.tab-content.active {
    display: block;
}

.tab-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.tab-content-text h3 {
    font-size: 36px;
    margin-bottom: 10px;
    color: var(--white);
}

.power-range {
    font-size: 20px;
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 20px;
}

.tab-content-text p {
    line-height: 1.8;
    margin-bottom: 25px;
    color: rgba(255, 255, 255, 0.9);
}

.product-features {
    list-style: none;
    margin-bottom: 25px;
}

.product-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    color: var(--white);
}

.product-features i {
    color: var(--secondary-color);
    font-size: 18px;
}

.brands-available {
    padding: 15px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    margin-bottom: 25px;
}

.tab-content-image {
    position: relative;
}

.circular-image {
    position: relative;
    width: 400px;
    height: 400px;
    margin: 0 auto;
}

.circular-image::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: calc(100% + 40px);
    height: calc(100% + 40px);
    transform: translate(-50%, -50%);
    border: 3px solid var(--secondary-color);
    border-radius: 50%;
  /*  animation: rotate 20s linear infinite;*/
    z-index: -1;
}

.circular-image::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: calc(100% + 20px);
    height: calc(100% + 20px);
    transform: translate(-50%, -50%);
    border: 2px dashed rgba(255, 255, 255, 0.3);
    border-radius: 50%;
   /* animation: rotate 15s linear infinite reverse;*/
    z-index: -1;
}

.circular-image img {
    position: relative;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    z-index: 1;
}

/* Solar Systems Section */
.solar-systems-section {
    padding: 70px 0;
    background: #f4f7fb;
    background-image: url(https://www.transparenttextures.com/patterns/clean-textile.png);
}

.solar-systems-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}

.solar-system-card {
    background: #ffffff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 6px 24px rgba(0,0,0,0.08);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.solar-system-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 18px 48px rgba(224, 64, 0, 0.15);
}

.solar-system-image {
    position: relative;
   
    overflow: hidden;
}

.solar-system-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.solar-system-card:hover .solar-system-image img {
    transform: scale(1.07);
}

.solar-system-badge {
    position: absolute;
    bottom: -22px;
    right: 20px;
    width: 48px;
    height: 48px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 14px rgba(224, 64, 0, 0.35);
    z-index: 2;
}

.solar-system-badge i {
    font-size: 20px;
    color: #ffffff;
}

.solar-system-body {
    padding: 32px 24px 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.solar-system-title {
    font-size: 19px;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 12px;
}

.solar-system-desc {
    font-size: 14px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 16px;
    flex: 1;
}

.solar-system-features {
    list-style: none;
    margin-bottom: 22px;
}

.solar-system-features li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #444;
    margin-bottom: 7px;
}

.solar-system-features li i {
    color: var(--accent-color);
    font-size: 14px;
    flex-shrink: 0;
}

.btn-solar-apply {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--gradient);
    color: #ffffff;
    padding: 11px 24px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    transition: var(--transition);
    align-self: flex-start;
}

.btn-solar-apply:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 22px rgba(224, 64, 0, 0.35);
    color: #ffffff;
}

/* Statistics Section */
.statistics-section {
    padding: 80px 0;
    background: var(--light-color);
}

.statistics-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.stat-box {
    text-align: center;
    padding: 40px 20px;
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.stat-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.stat-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, rgba(224, 64, 0, 0.1) 0%, rgba(0, 112, 192, 0.08) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-icon i {
    font-size: 36px;
    color: var(--primary-color);
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.stat-number::after {
    content: '+';
}

.stat-label {
    font-size: 16px;
    color: #666;
    font-weight: 500;
}

/* Gallery Section - Full Width Style */
.gallery-section {
    padding: 80px 0 0 0;
    background: var(--white);
}

.gallery-section .section-header {
    padding: 0 20px 60px;
}

.container-fluid {
    width: 100%;
    padding: 0;
}

.gallery-grid-full {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    width: 100%;
}

.gallery-item-full {
    position: relative;
    height: 400px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-number {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.9);
    color: var(--dark-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    z-index: 3;
    transition: var(--transition);
}

.gallery-item-full:hover .gallery-number {
    background: var(--gradient);
    color: var(--white);
}

.gallery-item-full img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-overlay-full {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.7) 60%, transparent 100%);
    padding: 40px 30px;
    transform: translateY(100%);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 2;
}

.gallery-item-full:hover .gallery-overlay-full {
    transform: translateY(0);
}

.gallery-item-full:hover {
    z-index: 10;
    transform: scale(1.05);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.gallery-item-full:hover img {
    transform: scale(1.1);
}

.gallery-content h4 {
    color: var(--white);
    font-size: 22px;
    margin-bottom: 15px;
    font-weight: 600;
}

.gallery-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.gallery-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--gradient);
    color: var(--white);
    padding: 10px 25px;
    border-radius: 25px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
}

.gallery-btn:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(224, 64, 0, 0.4);
}

.gallery-btn i {
    font-size: 14px;
}

/* Custom Cursor for Gallery */
.gallery-item-full {
    cursor: pointer;
}

.gallery-item-full:hover {
    cursor: zoom-in;
}

/* Smooth transitions for all gallery items */
.gallery-item-full * {
    transition: all 0.3s ease;
}


/*  Website logo Slider animation */

.client-logo-slider {
    position: relative;
    overflow: hidden;
    width: 100%;
}

.client-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: none;
    background: #ffcc00;
    color: #000;
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10;

    display: flex;
    align-items: center;
    justify-content: center;

    box-shadow: 0 4px 12px rgba(0,0,0,0.25);
    transition: all 0.3s ease;
}

.client-nav:hover {
    background: #000;
    color: #ffcc00;
}

/* LEFT */
.client-prev {
    left: 5px;   /* half button bahar rahe */
}

/* RIGHT */
.client-next {
    right: 5px;
}


.client-logo-track {
    display: flex;
    transition: transform 0.5s ease;
}

.client-logo-item {
    flex: 0 0 20%; /* Desktop default: 5 logos */
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 5px;
}



.client-logo-item img {
    /* max-width: 140px; */
    width: 96%;
    height: auto;
    object-fit: contain;
    border: 2px solid #ffcc00;
    padding: 10px;
    background: #fff;
}

/* Laptop */
@media (max-width: 1199px) {
    .client-logo-item {
        flex: 0 0 25%; /* 4 logos */
    }
}

/* Tablet */
@media (max-width: 991px) {
    .client-logo-item {
        flex: 0 0 33.333%; /* 3 logos */
    }
}

/* Mobile */
@media (max-width: 767px) {

    .client-prev {
        left: 5px;
    }
    .client-next {
        right: 5px;
    }

    .client-logo-item {
        flex: 0 0 100%; /* 1 logo */
    }

    

.client-logo-item img {
    max-width: 221px;
    width: 100%;
    height: auto;
    object-fit: contain;
    border: 2px solid #ffcc00;
    padding: 10px;
    background: #fff;
    border-radius: 13px;
}

}

/* Solar System Pages Styles */
.system-intro-section {
    padding: 80px 0;
    background: var(--light-color);
}

.system-intro-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.system-intro-text h2 {
    font-size: 36px;
    color: var(--dark-color);
    margin-bottom: 20px;
}

.system-intro-text p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
}

.system-benefits {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 30px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.benefit-item i {
    color: var(--primary-color);
    font-size: 20px;
    width: 25px;
}

.benefit-item span {
    font-weight: 600;
    color: var(--dark-color);
}

.system-intro-image img {
    width: 100%;
    max-width: 400px;
    height: auto;
}

/* System Components Section */
.system-components-section {
    padding: 80px 0;
    background: var(--white);
}

.components-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.component-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: var(--transition);
}

.component-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow);
}

.component-icon {
    margin-bottom: 20px;
}

.component-icon img {
    width: 80px;
    height: 80px;
    object-fit: contain;
}

.component-icon i {
    font-size: 60px;
    color: var(--primary-color);
}

.component-card h3 {
    font-size: 22px;
    color: var(--dark-color);
    margin-bottom: 15px;
}

.component-card p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.component-card ul {
    list-style: none;
    text-align: left;
}

.component-card ul li {
    color: #666;
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.component-card ul li::before {
    content: "âœ“";
    color: var(--primary-color);
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* System Working Section */
.system-working-section {
    padding: 80px 0;
    background: var(--light-color);
}

.working-process {
    max-width: 1000px;
    margin: 0 auto;
}

.process-flow {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.flow-step {
    text-align: center;
    flex: 1;
    min-width: 200px;
}

.step-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.step-icon i {
    font-size: 30px;
    color: var(--white);
}

.flow-step h4 {
    font-size: 18px;
    color: var(--dark-color);
    margin-bottom: 10px;
}

.flow-step p {
    color: #666;
    font-size: 14px;
}

.flow-arrow {
    font-size: 24px;
    color: var(--primary-color);
    font-weight: bold;
}

/* Working Modes for Hybrid */
.working-modes {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.mode-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: var(--transition);
}

.mode-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.mode-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.mode-icon i {
    font-size: 30px;
    color: var(--white);
}

.mode-card h3 {
    font-size: 20px;
    color: var(--dark-color);
    margin-bottom: 15px;
}

.mode-card p {
    color: #666;
    line-height: 1.6;
}

/* System Packages Section */
.system-packages-section {
    padding: 80px 0;
    background: var(--white);
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.package-card {
    background: var(--white);
    border: 2px solid #e9ecef;
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    transition: var(--transition);
    position: relative;
}

.package-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.package-card.featured {
    border-color: var(--primary-color);
    transform: scale(1.05);
}

.package-header {
    margin-bottom: 30px;
}

.package-header h3 {
    font-size: 24px;
    color: var(--dark-color);
    margin-bottom: 10px;
}

.package-price {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-color);
}

.popular-badge {
    background: var(--gradient);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.package-features ul {
    list-style: none;
    text-align: left;
    margin-bottom: 30px;
}

.package-features ul li {
    color: #666;
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

.package-features ul li::before {
    content: "âœ“";
    color: var(--primary-color);
    font-weight: bold;
    position: absolute;
    left: 0;
}

.package-btn {
    background: var(--gradient);
    color: var(--white);
    padding: 12px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    display: inline-block;
}

.package-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(224, 64, 0, 0.3);
}

/* Advantages Section */
.advantages-section {
    padding: 80px 0;
    background: var(--light-color);
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.advantage-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: var(--transition);
}

.advantage-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.advantage-card i {
    font-size: 50px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.advantage-card h3 {
    font-size: 20px;
    color: var(--dark-color);
    margin-bottom: 15px;
}

.advantage-card p {
    color: #666;
    line-height: 1.6;
}

.advantages-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.advantages-text {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.advantage-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.advantage-item i {
    color: var(--primary-color);
    font-size: 24px;
    margin-top: 5px;
}

.advantage-item h4 {
    font-size: 18px;
    color: var(--dark-color);
    margin-bottom: 8px;
}

.advantage-item p {
    color: #666;
    line-height: 1.6;
}

.advantages-image img {
    width: 100%;
    border-radius: 15px;
}

/* Applications Section */
.applications-section {
    padding: 80px 0;
    background: var(--white);
}

.applications-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.application-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: var(--transition);
    border: 2px solid transparent;
}

.application-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: var(--shadow);
}

.application-card i {
    font-size: 50px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.application-card h3 {
    font-size: 20px;
    color: var(--dark-color);
    margin-bottom: 15px;
}

.application-card p {
    color: #666;
    line-height: 1.6;
}

/* Installation Process Section */
.installation-process-section {
    padding: 80px 0;
    background: var(--white);
}

.installation-timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.installation-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--primary-color);
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    align-items: center;
    margin-bottom: 50px;
    position: relative;
}

.timeline-item:nth-child(odd) {
    flex-direction: row-reverse;
}

.timeline-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.timeline-icon i {
    font-size: 30px;
    color: var(--white);
}

.timeline-content {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    margin: 0 40px;
    flex: 1;
    position: relative;
}

.timeline-content h3 {
    font-size: 20px;
    color: var(--dark-color);
    margin-bottom: 10px;
}

.timeline-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 10px;
}

.timeline-duration {
    background: var(--primary-color);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
}

/* Comparison Section */
.comparison-section {
    padding: 80px 0;
    background: var(--light-color);
}

.comparison-table {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.comparison-table table {
    width: 100%;
    border-collapse: collapse;
}

.comparison-table th,
.comparison-table td {
    padding: 20px;
    text-align: center;
    border-bottom: 1px solid #e9ecef;
}

.comparison-table th {
    background: var(--gradient);
    color: var(--white);
    font-weight: 600;
}

.comparison-table td {
    color: var(--text-color);
}

.text-success {
    color: #28a745;
}

.text-danger {
    color: #dc3545;
}

/* Technical Specs Section */
.technical-specs-section {
    padding: 80px 0;
    background: var(--white);
}

.specs-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.spec-card {
    background: var(--light-color);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    transition: var(--transition);
}

.spec-card:hover {
    transform: translateY(-5px);
    background: var(--white);
    box-shadow: var(--shadow);
}

.spec-card h3 {
    font-size: 20px;
    color: var(--dark-color);
    margin-bottom: 15px;
}

.spec-card p {
    color: #666;
    line-height: 1.6;
}


/* ===================================
   Commercial Projects Page Styles
   =================================== */

.tp-portfolio {
  padding: 60px 0;
  background: #f8f9fa;
}

.tp-portfolio .row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}

.tp-portfolio .col-lg-3 {
  flex: 0 0 25%;
  max-width: 25%;
  padding-right: 15px;
  padding-left: 15px;
}

.tp-portfolio .col-md-6 {
  flex: 0 0 50%;
  max-width: 50%;
}

.tp-portfolio .card {
  border: none;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  margin-bottom: 30px;
  background: #fff;
}

.tp-portfolio .card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

    .tp-portfolio .card-img-top {
        width: 100%;
        /* height: 250px; */
        /* object-fit: cover; */
        /* background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); */
    }


    .tp-portfolio .card-body {
        padding: 12px;
        text-align: center;
    }

.tp-portfolio .card-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 6px;


  align-items: center;
}

    .tp-portfolio .project-subtitle {
        font-size: 1.3rem;
        color: #e67e22;
        font-weight: 600;
        margin-bottom: 5px;
        align-items: center;
    }


    .tp-portfolio .project-subtitle1 {
        font-size: 1rem;
        color: #e67e22;
        font-weight: 600;
        margin-bottom: 10px;
        align-items: center;
    }


.tp-portfolio .project-subtitle::before {
  content: "âš¡";
  margin-right: 8px;
  font-size: 1.2rem;
}

.tp-portfolio .project-location {
  font-size: 0.9rem;
  color: #7f8c8d;

  align-items: center;
}

.tp-portfolio .project-location::before {
  content: "ðŸ“";
  margin-right: 8px;
}

/* Values Grid */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
  padding-bottom: 60px;
}

.value-card {
  background: #fff;
  padding: 40px 30px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.value-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.value-card i {
  font-size: 3rem;
  color: #e67e22;
  margin-bottom: 20px;
}

.value-card h4 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 15px;
}

.value-card p {
  font-size: 1rem;
  color: #7f8c8d;
  line-height: 1.6;
}

/* Responsive adjustments */
@media (max-width: 991px) {
  .tp-portfolio .col-lg-3 {
    flex: 0 0 50%;
    max-width: 50%;
  }
}

@media (max-width: 768px) {
  .tp-portfolio .col-lg-3,
  .tp-portfolio .col-md-6 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  
  .tp-portfolio .card-img-top {
    height: 200px;
  }
  
  .tp-portfolio .card-title {
    font-size: 1.1rem;
    min-height: auto;
  }
  
  .values-grid {
    grid-template-columns: 1fr;
  }
}



/* =============================================
   PM Surya Ghar Muft Bijli Yojana Section
   ============================================= */
.pm-surya-section {
    position: relative;
    background-image: url(../images/slider1.jpg);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 139px 0px 56px 0px;
    overflow: hidden;
    margin-top: 50px;
}

.pm-surya-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgb(10 10 10 / 88%) 0%, rgb(47 47 47 / 91%) 100%);
    z-index: 1;
}

.pm-surya-section .container {
    position: relative;
    z-index: 2;
}

.pm-surya-content {
    max-width: 860px;
    margin: 0 auto;
    text-align: center;
    color: #fff;
}

.pm-surya-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(6px);
    color: #ffe082;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 6px 18px;
    border-radius: 50px;
    margin-bottom: 20px;
}

.pm-surya-badge i {
    color: #ffd740;
    font-size: 1rem;
}

.pm-surya-title {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 10px;
    color: #fff;
}

.pm-surya-title span {
    color: #ffd740;
}

.pm-surya-subtitle {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 18px;
    font-weight: 400;
}

.pm-surya-desc {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    margin-bottom: 40px;
}

.pm-surya-desc strong {
    color: #ffd740;
}

/* Highlights Grid */
.pm-surya-highlights {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 40px;
}

.pm-surya-highlight-item {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(8px);
    border-radius: 14px;
    padding: 20px 14px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    transition: transform 0.3s ease, background 0.3s ease;
}

.pm-surya-highlight-item:hover {
    transform: translateY(-4px);
    background: rgba(255, 215, 64, 0.15);
}

.highlight-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #ffd740, #ff9800);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #0d1b2e;
}

.highlight-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
}

.highlight-text strong {
    font-size: 0.95rem;
    font-weight: 700;
    color: #fff;
}

.highlight-text span {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.65);
}

/* CTA Buttons */
.pm-surya-cta {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-pm-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #ffd740, #ff9800);
    color: #0d1b2e;
    font-weight: 700;
    font-size: 1rem;
    padding: 14px 32px;
    border-radius: 50px;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 6px 20px rgba(255, 152, 0, 0.4);
}

.btn-pm-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 28px rgba(255, 152, 0, 0.55);
    color: #0d1b2e;
}

.btn-pm-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: #fff;
    font-weight: 600;
    font-size: 1rem;
    padding: 13px 30px;
    border-radius: 50px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-pm-secondary:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: #fff;
    transform: translateY(-3px);
    color: #fff;
}

/* Responsive */
@media (max-width: 900px) {
    .pm-surya-highlights {
        grid-template-columns: repeat(2, 1fr);
    }
    .pm-surya-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 576px) {
    .pm-surya-section {
        padding: 60px 0;
        background-attachment: scroll;
    }
    .pm-surya-highlights {
        grid-template-columns: repeat(2, 1fr);
    }
    .pm-surya-title {
        font-size: 1.8rem;
    }
    .pm-surya-cta {
        flex-direction: column;
        align-items: center;
    }
    .btn-pm-primary,
    .btn-pm-secondary {
        width: 100%;
        justify-content: center;
    }
}
