.header {
    background-color: #ffffff;
    color: #010101;
    padding: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100px;
    margin-bottom: 10px;
    text-align: center;
    box-shadow: 0px 0px 20px black;
}

/* Logo Styles */
.logo {
    padding: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-img {
    max-height: 80px;
    width: auto;
    transition: transform 0.3s ease;
}

.logo-img:hover {
    transform: scale(1.05);
}

.logo-link {
    display: inline-block;
    text-decoration: none;
}

/* Navigation Styles */
.navbar-nav {
    display: flex;
    align-items: center;
    justify-content: center;
}

.navbar-nav .nav-item {
    margin: 0 10px;
    position: relative;
}

.navbar-nav .nav-link {
    color: #333 !important;
    font-weight: 500;
    font-size: 16px;
    padding: 8px 15px !important;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 5px;
}

.navbar-nav .nav-link::after {
    display: none;
}

.navbar-nav .nav-link:hover {
    color: #2196F3 !important;
}

.navbar-nav .dropdown-toggle::after {
    font-family: "Font Awesome 5 Free";
    content: "\f107";
    border: none;
    font-weight: 900;
    font-size: 14px;
    margin-left: auto;
    transition: transform 0.3s ease;
}

.navbar-nav .dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(180deg);
}

.navbar-nav .dropdown-menu {
    border: none;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 0.5rem 0;
    margin-top: 5px;
    min-width: 200px;
}

.navbar-nav .dropdown-item {
    padding: 0.7rem 1.5rem;
    color: #666;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.navbar-nav .dropdown-item:hover {
    background: linear-gradient(45deg, rgba(33, 150, 243, 0.1), rgba(0, 188, 212, 0.1));
    color: #2196F3;
    transform: translateX(5px);
}

/* Mobile Navigation Adjustments */
@media (max-width: 991.98px) {
    .navbar-nav .nav-link {
        justify-content: space-between;
    }

    .navbar-nav .dropdown-menu {
        box-shadow: none;
        border-radius: 0;
        margin-top: 0;
        padding: 0;
        background-color: #f8f9fa;
    }

    .navbar-nav .dropdown-item {
        padding: 0.7rem 2rem;
    }
}

.navbar-nav .dropdown-toggle::after {
    font-family: "Font Awesome 5 Free";
    content: "\f107";
    border: none;
    vertical-align: middle;
    font-weight: 900;
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.navbar-nav .dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(180deg);
}

.navbar-nav .nav-item {
    position: relative;
    margin: 0 5px;
}


/* Product card image standardization */
.products-section .card-img-top {
    height: 200px;
    width: 100%;
    object-fit: contain;
    padding: 15px;
    background-color: #f8f9fa;
}

.products-section .card {
    border: 1px solid rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.products-section .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Button Styles */
.custom-enquire-btn {
    padding: 12px 28px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 30px;
    background: linear-gradient(45deg, #2196F3, #00BCD4);
    border: none;
    box-shadow: 0 4px 15px rgba(33, 150, 243, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: visible;
    z-index: 1000;
    color: white;
}

.dropdown-menu {
    z-index: 1001;
    border: none;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 0.5rem 0;
    margin-top: 5px;
    min-width: 200px;
}

.dropdown-menu .dropdown-item {
    padding: 0.7rem 1.5rem;
    color: #666;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.dropdown-menu .dropdown-item:hover {
    background: linear-gradient(45deg, rgba(33, 150, 243, 0.1), rgba(0, 188, 212, 0.1));
    color: #2196F3;
    transform: translateX(5px);
}

.custom-enquire-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(33, 150, 243, 0.4);
    background: linear-gradient(45deg, #00BCD4, #2196F3);
}

.custom-enquire-btn:active {
    transform: translateY(1px);
    box-shadow: 0 2px 10px rgba(33, 150, 243, 0.3);
}

.custom-enquire-btn .btn-text {
    position: relative;
    z-index: 1;
}

.custom-enquire-btn i {
    transition: transform 0.3s ease;
}

.custom-enquire-btn:hover i {
    transform: translateX(5px);
}

/* back to top Styles */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: none;
    z-index: 99;
    width: 45px;
    height: 45px;
    padding: 0;
    border-radius: 50%;
    background: linear-gradient(45deg, #2196F3, #00BCD4);
    border: none;
    box-shadow: 0 4px 15px rgba(33, 150, 243, 0.3);
    transition: all 0.3s ease;
    cursor: pointer;
}

.back-to-top i {
    color: white;
    font-size: 20px;
    line-height: 45px;
}

.back-to-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px reba(33, 150, 243, 0.4);
    background: linear-gradient(45deg, #00BCD4, #2196F3);
}

.back-to-top:active {
    transform: translateY(1px);
    box-shadow: 0 2px 10px rgba(33, 150, 243, 0.3);
}

/* Testimonial Styles */
.testimonial-card {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    height: 100%;
}

.testimonial-content p {
    font-style: italic;
    margin-bottom: 1.5rem;
    color: #666;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #2196F3;
}

.testimonial-author-info h4 {
    margin: 0;
    color: #333;
    font-size: 1.1rem;
}

.testimonial-author-info p {
    margin: 0;
    color: #666;
    font-size: 0.9rem;
}

/* Footer Styles */
.footer {
    background-color: #1a1a1a;
    padding: 60px 0 30px;
}

.footer-logo {
    max-height: 80px;
    margin-bottom: 20px;
    background-color: white;
    padding: 10px;
    border-radius: 5px;
}

.footer p {
    color: #ffffff;
    /* Changed from #b3b3b3 to #ffffff for better visibility */
    line-height: 1.6;
    opacity: 0.9;
}

.footer h4 {
    color: #ffffff;
    font-size: 1.25rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background-color: #0d6efd;
}

.footer .social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    transition: all 0.3s ease;
    text-decoration: none;
    /* Added this line */
    margin-right: 10px;
    /* Added this line */
}


.footer .social-links a:hover {
    background-color: #0d6efd;
    color: #ffffff;
    transform: translateY(-3px);
}

.footer ul li {
    margin-bottom: 12px;
}

.footer ul li a {
    color: #b3b3b3;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer ul li a:hover {
    color: #ffffff;
    padding-left: 5px;
}

.footer hr {
    border-color: rgba(255, 255, 255, 0.1);
    margin: 30px 0;
}

.footer .copyright-section {
    color: #b3b3b3;
}

.footer .copyright-section a {
    color: #b3b3b3;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer .copyright-section a:hover {
    color: #ffffff;
}

.footer-contact li {
    margin-bottom: 15px;
    color: #b3b3b3;
}

.footer-contact li i {
    color: #0d6efd;
}

/* Hero Section Enhancement */
.hero-section {
    padding: 120px 0;
    background: linear-gradient(135deg, rgba(33, 150, 243, 0.1), rgba(0, 188, 212, 0.1));
    position: relative;
    overflow: hidden;
}

.hero-section h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: linear-gradient(45deg, #2196F3, #00BCD4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: fadeInUp 0.8s ease;
}

.hero-section .lead {
    font-size: 1.25rem;
    color: #666;
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease;
}

/* Feature Cards Enhancement */
.feature-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #2196F3, #00BCD4);
    opacity: 0;
    z-index: -1;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    color: white;
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card:hover i,
.feature-card:hover h3,
.feature-card:hover p {
    color: white;
}

/* Product Cards Enhancement */
.products-section .card {
    border: none;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.products-section .card-img-top {
    transition: transform 0.5s ease;
}

.products-section .card:hover .card-img-top {
    transform: scale(1.05);
}

/* Testimonial Enhancement */
.testimonial-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 120px;
    color: rgba(33, 150, 243, 0.1);
    font-family: serif;
    line-height: 1;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Contact Form Enhancement */
.contact-form .form-control {
    border: 2px solid #eee;
    padding: 0.8rem;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.contact-form .form-control:focus {
    border-color: #2196F3;
    box-shadow: 0 0 0 0.2rem rgba(33, 150, 243, 0.25);
}

.contact-form .input-group-text {
    border: none;
    background: linear-gradient(45deg, #2196F3, #00BCD4);
    color: white;
    border-radius: 10px 0 0 10px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
    transition: transform 0.3s ease;
}

.contact-item:hover {
    transform: translateX(10px);
}

.contact-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, #2196F3, #00BCD4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    box-shadow: 0 4px 15px rgba(33, 150, 243, 0.2);
}

.contact-icon i {
    color: white;
    font-size: 1.2rem;
}

.contact-details h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: #333;
}

.contact-details p {
    color: #666;
    margin-bottom: 0.25rem;
    font-size: 0.95rem;
}

/* Modal Enhancement */
.modal {
    height: 100vh !important;
    background-color: rgba(0, 0, 0, 0.5) !important;
    backdrop-filter: blur(5px);
}

.modal-dialog {
    max-width: 600px;
    margin: 0 auto;
}

.modal-dialog.modal-lg {
    max-width: 800px;
    margin: 1.75rem auto;
}

.modal-content {
    border: none;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.modal-header {
    background: linear-gradient(45deg, #2196F3, #00BCD4);
    color: white;
    border: none;
    padding: 1.5rem;
    border-bottom: 1px solid #dee2e6;
    border-radius: 20px 20px 0 0;
}

.modal-header .btn-close {
    color: white;
    opacity: 1;
    background: transparent;
    padding: 1rem;
}

.modal-body {
    padding: 2rem;
}

.modal-footer {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    padding: 1.5rem;
    border-radius: 0 0 20px 20px;
}

/* Calculator Form Styles */
#calculatorForm .input-group {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

#calculatorForm .input-group-text {
    background: linear-gradient(45deg, #2196F3, #00BCD4);
    color: white;
    border: none;
    padding: 0.75rem 1rem;
}

#calculatorForm .form-control,
#calculatorForm .form-select {
    border: 1px solid rgba(0, 0, 0, 0.1);
    padding: 0.75rem;
}

#calculatorForm .form-control:focus,
#calculatorForm .form-select:focus {
    box-shadow: none;
    border-color: #2196F3;
}

/* Scroll Animation */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Navigation Styles */
.navbar-nav .nav-item {
    position: relative;
    margin: 0 10px;
}

/* Navigation Styles */
.navbar-nav .dropdown-toggle::after {
    display: none;
    /* Hide all default dropdown arrows */
}

/* Show dropdown indicator for About, Services and Products */
.navbar-nav .nav-item:nth-child(2) .dropdown-toggle::after,
.navbar-nav .nav-item:nth-child(3) .dropdown-toggle::after,
.navbar-nav .nav-item:nth-child(4) .dropdown-toggle::after {
    display: inline-block;
    font-family: "Font Awesome 5 Free";
    content: "\f107";
    border: none;
    font-weight: 900;
    font-size: 14px;
    margin-left: 8px;
    opacity: 1;
    transition: transform 0.3s ease;
}

/* Hover effect for About, Services and Products dropdown indicators */
.navbar-nav .nav-item:nth-child(2):hover .dropdown-toggle::after,
.navbar-nav .nav-item:nth-child(3):hover .dropdown-toggle::after,
.navbar-nav .nav-item:nth-child(4):hover .dropdown-toggle::after {
    transform: rotate(180deg);
}

/* Remove any existing before pseudo-elements */
.navbar-nav .nav-link::before {
    display: none;
}

/* Mobile adjustments */
@media (max-width: 991.98px) {
    .navbar-nav .dropdown .nav-link::before {
        right: auto;
        left: 0;
    }

    .navbar-nav .dropdown>.nav-link {
        padding-left: 20px !important;
    }
}

/* Team Section Styles */
.team-member-card {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    margin-bottom: 30px;
    overflow: hidden;
    position: relative;
}

.team-member-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.member-image {
    position: relative;
    overflow: hidden;
}

.member-image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.team-member-card:hover .member-image img {
    transform: scale(1.05);
}

.member-info {
    padding: 25px 20px;
    text-align: center;
    position: relative;
    background: linear-gradient(to bottom, #ffffff, #f8f9fa);
}

.member-info h4 {
    margin: 0 0 5px;
    color: #2196F3;
    font-size: 1.25rem;
    font-weight: 600;
}

.member-info p {
    color: #666;
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.social-links {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: #f8f9fa;
    color: #2196F3;
    margin: 0 5px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #2196F3;
    color: #fff;
    transform: translateY(-3px);
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    padding-bottom: 20px;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(45deg, #2196F3, #00BCD4);
    border-radius: 3px;
}

/* Why Choose Us Page Styles */
.why-choose-us-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
}

.why-choose-us-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('/images/subtle-pattern.png') repeat;
    opacity: 0.1;
    pointer-events: none;
}

.cta-box {
    background: linear-gradient(45deg, #2196F3, #00BCD4);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(33, 150, 243, 0.2);
    transition: all 0.3s ease;
}

.cta-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(33, 150, 243, 0.3);
}

.page-title-section {
    background: linear-gradient(rgba(33, 150, 243, 0.9), rgba(33, 150, 243, 0.9)), url('/images/solar-pattern.png');
    background-size: cover;
    background-position: center;
    z-index: -1;
    position: relative;
}

/* Why Choose Us Page Specific Styles */
.why-choose-us-section .feature-card {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 15px;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 2rem;
}

.why-choose-us-section .icon-box {
    margin-bottom: 1.5rem;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.why-choose-us-section .feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    min-height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.why-choose-us-section .feature-card p {
    flex: 1;
    margin-bottom: 0;
    display: flex;
    align-items: center;
    text-align: center;
}

.why-choose-us-section .feature-card:hover {
    transform: translateY(-10px);
    background: linear-gradient(45deg, #2196F3, #00BCD4);
    box-shadow: 0 15px 30px rgba(33, 150, 243, 0.2);
}

.why-choose-us-section .feature-card:hover h3,
.why-choose-us-section .feature-card:hover p {
    color: white;
}

.why-choose-us-section .feature-card:hover .icon-box i {
    color: white !important;
    transform: scale(1.1);
}

/* Residential Solar Page Styles */
.intro-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.intro-section::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: url('/images/solar-pattern.png') repeat;
    opacity: 0.05;
}

.intro-section img {
    transform: perspective(1000px) rotateY(-15deg);
    transition: transform 0.6s ease;
    box-shadow: 30px 30px 60px rgba(0, 0, 0, 0.15);
    max-width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.5s ease;
}

.intro-section img:hover {
    transform: perspective(1000px) rotateY(0deg);
}

/* Benefits Cards */
.benefits-section {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

.benefit-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
}

.benefit-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #2196F3, #00BCD4);
    opacity: 0;
    transition: all 0.4s ease;
    z-index: 0;
}

.benefit-card:hover {
    transform: translateY(-10px);
}

.benefit-card:hover::after {
    opacity: 1;
}

.benefit-card:hover * {
    color: white !important;
    position: relative;
    z-index: 1;
}

/* Installation Process Timeline */
.timeline {
    position: relative;
    padding: 2rem 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: linear-gradient(to bottom, #2196F3, #00BCD4);
}

.timeline-item {
    margin-bottom: 3rem;
    position: relative;
    width: 50%;
    padding: 0 2rem;
}

.timeline-item:nth-child(odd) {
    left: 0;
    text-align: right;
}

.timeline-item:nth-child(even) {
    left: 50%;
    text-align: left;
}

.timeline-content {
    background: white;
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
}

/* Call to Action Section Styles */
.cta-section.bg-gradient {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.cta-wrapper {
    position: relative;
    transition: transform 0.3s ease;
}

.cta-wrapper:hover {
    transform: translateY(-5px);
}

.cta-buttons .btn {
    transition: all 0.3s ease;
}

.cta-buttons .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.cta-buttons .btn-primary {
    background: linear-gradient(135deg, var(--bs-primary) 0%, #0056b3 100%);
    border: none;
}

.cta-buttons .btn-outline-primary:hover {
    background: linear-gradient(135deg, var(--bs-primary) 0%, #0056b3 100%);
    border-color: transparent;
}

/* Call to Action Section */
.cta-section {
    background: linear-gradient(45deg, #2196F3, #00BCD4);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.1), transparent);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% {
        transform: translateX(-100%) rotate(45deg);
    }

    100% {
        transform: translateX(100%) rotate(45deg);
    }
}

/* Commercial Page Specific Styles */
.commercial-image-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.commercial-image {
    transition: transform 0.5s ease;
}

.commercial-image-container:hover .commercial-image {
    transform: scale(1.05);
}

.stats-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-around;
    padding: 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: white;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 1.5rem;
    font-weight: bold;
}

.stat-text {
    font-size: 0.9rem;
    opacity: 0.9;
}

.commercial-content {
    padding: 2rem;
    background: linear-gradient(145deg, #ffffff, #f8f9fa);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.commercial-content .badge {
    font-size: 1rem;
    padding: 0.5rem 1rem;
    border-radius: 30px;
}

.commercial-content .display-4 {
    font-weight: 700;
    background: linear-gradient(45deg, #2048BB, #1E88E5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Maintenance Page Styles */
.maintenance-image-container {
    position: relative;
    padding: 20px;
}

.experience-badge {
    position: absolute;
    bottom: 30px;
    right: 0;
    background: var(--bs-primary);
    color: white;
    padding: 15px;
    border-radius: 10px;
    text-align: center;
}

.experience-badge .years {
    font-size: 2rem;
    font-weight: bold;
    display: block;
}

.service-card {
    background: white;
    border-radius: 10px;
    padding: 25px;
    transition: transform 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.service-card:hover {
    transform: translateY(-5px);
}

.plan-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.plan-card:hover {
    transform: translateY(-5px);
}

.plan-card.featured {
    border: 2px solid var(--bs-primary);
    transform: scale(1.05);
}

.plan-header {
    background: #f8f9fa;
}

.plan-header .price {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--bs-primary);
}

.plan-header .price span {
    font-size: 1rem;
    color: #6c757d;
}

.feature-card {
    padding: 35px !important;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Maintenance Page - Why Choose Us Section */
.maintenance-why-choose {
    position: relative;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.maintenance-why-choose .header-line {
    width: 80px;
    height: 3px;
    background: linear-gradient(45deg, #2196F3, #00BCD4);
    margin: 20px auto;
    border-radius: 3px;
}

.maintenance-feature-card {
    background: #ffffff;
    border-radius: 15px;
    padding: 30px;
    height: 100%;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.maintenance-feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #2196F3, #00BCD4);
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 1;
}

.maintenance-feature-card .icon-box {
    width: 80px;
    height: 80px;
    background: rgba(33, 150, 243, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.maintenance-feature-card .icon-box i {
    font-size: 2rem;
    color: #2196F3;
    transition: all 0.3s ease;
}

.maintenance-feature-card .content {
    position: relative;
    z-index: 2;
}

.maintenance-feature-card h4 {
    color: #333;
    font-size: 1.25rem;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.maintenance-feature-card p {
    color: #666;
    margin-bottom: 0;
    transition: all 0.3s ease;
}

.maintenance-feature-card:hover {
    transform: translateY(-10px);
}

.maintenance-feature-card:hover::before {
    opacity: 1;
}

.maintenance-feature-card:hover .icon-box {
    background: rgba(255, 255, 255, 0.2);
}

.maintenance-feature-card:hover .icon-box i,
.maintenance-feature-card:hover h4,
.maintenance-feature-card:hover p {
    color: #ffffff;
}

/* Maintenance Page Specific Styles */
.maintenance-intro {
    background: linear-gradient(120deg, #ffffff 0%, #f0f7ff 100%);
    position: relative;
    padding: 80px 0;
    overflow: hidden;
}

.maintenance-intro::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: url('/images/pattern.png') repeat;
    opacity: 0.03;
    top: 0;
    left: 0;
}

.maintenance-badge {
    background: linear-gradient(45deg, #2196F3, #00BCD4);
    padding: 14px 28px;
    font-size: 1.1rem;
    border-radius: 50px;
    color: white;
    display: inline-block;
    box-shadow: 0 8px 25px rgba(33, 150, 243, 0.25);
    transform: translateY(0);
    transition: all 0.4s ease;
}

.maintenance-badge:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(33, 150, 243, 0.35);
}

.maintenance-title {
    font-size: 4rem;
    font-weight: 800;
    background: linear-gradient(45deg, #1e3c72, #2a5298);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 1.5rem 0;
    line-height: 1.1;
    letter-spacing: -0.5px;
}

.maintenance-description {
    font-size: 1.25rem;
    color: #546e7a;
    line-height: 1.8;
    margin-bottom: 2.5rem;
    max-width: 90%;
}

.maintenance-cta-buttons {
    display: flex;
    gap: 25px;
    margin-top: 2.5rem;
}

.maintenance-btn {
    padding: 16px 35px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: none;
}

.maintenance-btn.primary {
    background: linear-gradient(45deg, #1e3c72, #2a5298);
    color: white;
    box-shadow: 0 8px 25px rgba(33, 150, 243, 0.3);
}

.maintenance-btn.secondary {
    background: white;
    color: #1e3c72;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    border: 2px solid rgba(30, 60, 114, 0.1);
}

.maintenance-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(33, 150, 243, 0.4);
}

.maintenance-image-wrapper {
    position: relative;
    padding: 30px;
}

.maintenance-image-wrapper .image-container {
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    transform: perspective(1000px) rotateY(-8deg);
    transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.maintenance-image-wrapper .image-container:hover {
    transform: perspective(1000px) rotateY(0deg) translateY(-10px);
    box-shadow: 0 35px 60px rgba(0, 0, 0, 0.2);
}

.maintenance-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
}

.maintenance-image-wrapper .experience-badge {
    position: absolute;
    bottom: 40px;
    right: 20px;
    /* Added right margin */
    background: #2196F3;
    /* Changed to blue background */
    padding: 25px 35px;
    /* Increased padding */
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    /* Enhanced shadow */
    z-index: 2;
    transform: translateY(0);
    /* Ensure proper positioning */
}

.maintenance-image-wrapper .experience-badge .years {
    font-size: 2.8rem;
    /* Increased font size */
    font-weight: 800;
    color: #ffffff;
    /* Changed to white text */
    display: block;
    line-height: 1;
    margin-bottom: 5px;
    /* Added margin */
}

.maintenance-image-wrapper .experience-badge .text {
    color: #ffffff;
    /* Changed to white text */
    font-size: 1.1rem;
    /* Increased font size */
    margin-top: 5px;
    display: block;
    opacity: 0.9;
}

@media (max-width: 991px) {
    .maintenance-title {
        font-size: 2.5rem;
    }

    .maintenance-image-wrapper {
        margin-top: 3rem;
    }

    .maintenance-cta-buttons {
        flex-direction: column;
    }

    .maintenance-btn {
        width: 100%;
    }
}

/* Consulting Page Specific Styles */
.consulting-intro {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 80px 0;
}

.consulting-badge {
    background: linear-gradient(45deg, #2196F3, #00BCD4);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.consulting-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin: 20px 0;
    background: linear-gradient(45deg, #1565C0, #2196F3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.2;
}

.consulting-description {
    font-size: 1.1rem;
    color: #6c757d;
    line-height: 1.8;
    margin-bottom: 30px;
}

.consulting-cta-buttons {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

.consulting-btn {
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.consulting-btn.primary {
    background: linear-gradient(45deg, #2196F3, #00BCD4);
    color: white;
    border: none;
}

.consulting-btn.secondary {
    background: white;
    color: #2196F3;
    border: 2px solid #2196F3;
}

.consulting-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(33, 150, 243, 0.3);
}

.consulting-image-wrapper {
    position: relative;
    padding: 20px;
}

.consulting-image-wrapper .image-container {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.consulting-image-wrapper img {
    width: 100%;
    height: auto;
    transition: transform 0.5s ease;
}

.consulting-image-wrapper:hover img {
    transform: scale(1.05);
}

.experience-badge {
    position: absolute;
    bottom: 40px;
    right: 0;
    background: white;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.experience-badge .years {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #2196F3;
    line-height: 1;
}

.experience-badge .text {
    font-size: 0.9rem;
    color: #6c757d;
}

/* Services Section Styles */
.services-section {
    background-color: #f8f9fa;
}

.service-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

/* Why Choose Us Section Styles */
.consulting-why-choose {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}


.consulting-why-choose .subtitle {
    color: #2196F3;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 10px;
}

.consulting-why-choose .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #333;
}

.consulting-why-choose .section-line {
    width: 80px;
    height: 4px;
    background: linear-gradient(45deg, #2196F3, #00BCD4);
    margin: 0 auto;
    border-radius: 2px;
}

.why-choose-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.why-choose-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.why-choose-card .icon-wrapper {
    margin-bottom: 25px;
    position: relative;
}

.why-choose-card .icon-circle {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, rgba(33, 150, 243, 0.1), rgba(0, 188, 212, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.why-choose-card .icon-circle::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #2196F3, #00BCD4);
    border-radius: 50%;
    opacity: 0;
    transition: all 0.3s ease;
    z-index: -1;
}

.why-choose-card:hover .icon-circle::before {
    opacity: 1;
}

.why-choose-card .icon-circle i {
    font-size: 35px;
    color: #2196F3;
    transition: all 0.3s ease;
}

.why-choose-card:hover .icon-circle i {
    color: white;
}

.why-choose-card .content {
    text-align: center;
}

.why-choose-card h4 {
    color: #333;
    font-size: 1.25rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.why-choose-card p {
    color: #6c757d;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.why-choose-card .hover-content {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.why-choose-card:hover .hover-content {
    opacity: 1;
    transform: translateY(0);
}

.why-choose-card .feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.why-choose-card .feature-list li {
    color: #6c757d;
    font-size: 0.9rem;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
}

.why-choose-card .feature-list li i {
    color: #2196F3;
    margin-right: 10px;
    font-size: 1rem;
}

@media (max-width: 991.98px) {
    .consulting-why-choose .section-title {
        font-size: 2rem;
    }

    .why-choose-card {
        margin-bottom: 20px;
    }
}

@media (max-width: 767.98px) {
    .consulting-why-choose .section-title {
        font-size: 1.75rem;
    }
}



.consulting-feature-card {
    text-align: center;
    padding: 30px;
    border-radius: 15px;
    transition: all 0.3s ease;
    background: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.consulting-feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.consulting-feature-card .icon-box {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(45deg, rgba(33, 150, 243, 0.1), rgba(0, 188, 212, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.consulting-feature-card .icon-box i {
    font-size: 35px;
    background: linear-gradient(45deg, #2196F3, #00BCD4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.consulting-feature-card h4 {
    margin: 15px 0;
    color: #333;
    font-size: 1.25rem;
}

.consulting-feature-card p {
    color: #6c757d;
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
    .consulting-title {
        font-size: 2.5rem;
    }

    .consulting-cta-buttons {
        flex-direction: column;
    }

    .consulting-image-wrapper {
        margin-top: 40px;
    }

    .consulting-feature-card {
        margin-bottom: 20px;
    }
}

@media (max-width: 767.98px) {
    .consulting-intro {
        padding: 40px 0;
    }

    .consulting-title {
        font-size: 2rem;
    }

    .experience-badge {
        bottom: 20px;
        padding: 15px;
    }
}

/* Solar Panels Page Styles */
/* Solar Introduction Section Styles */
.solar-intro {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
    padding: 100px 0;
}

.solar-content {
    position: relative;
    z-index: 2;
}

.section-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: #2196F3;
    border-radius: 50%;
}

.badge-text {
    color: #2196F3;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
}

.section-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 25px;
    background: linear-gradient(45deg, #1565C0, #2196F3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.features-grid {
    display: grid;
    gap: 20px;
    margin: 40px 0;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: rgba(33, 150, 243, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon i {
    font-size: 24px;
    color: #2196F3;
}

.feature-text h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: #333;
}

.feature-text p {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
}

.solar-image-wrapper {
    position: relative;
    padding: 40px;
    perspective: 1000px;
}

.image-container {
    position: relative;
    z-index: 2;
    transform-style: preserve-3d;
    animation: floatAnimation 6s ease-in-out infinite;
}

.main-image {
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(33, 150, 243, 0.15);
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
}

.main-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, rgba(33, 150, 243, 0.2), transparent);
    border-radius: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.image-container:hover .main-image::after {
    opacity: 1;
}


.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(33, 150, 243, 0.2);
    backdrop-filter: blur(10px);
    animation: cardFloat 4s ease-in-out infinite;
    transition: transform 0.3s ease;
}

.floating-card.efficiency {
    top: 30px;
    right: -30px;
    animation-delay: 1s;
}

.floating-card.warranty {
    bottom: 30px;
    left: -30px;
    animation-delay: 2s;
}

.floating-card:hover {
    transform: translateY(-5px) scale(1.05);
}

.floating-card i {
    font-size: 28px;
    background: linear-gradient(45deg, #2196F3, #00BCD4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 15px;
}

.floating-card h4 {
    font-size: 1.4rem;
    margin: 8px 0;
    color: #333;
    font-weight: 700;
}

.floating-card p {
    font-size: 1rem;
    color: #666;
    margin: 0;
}

.animate-left {
    animation: slideInLeft 1s ease-out;
}

.animate-right {
    animation: slideInRight 1s ease-out;
}


@keyframes floatAnimation {

    0%,
    100% {
        transform: translateY(0) rotateY(-5deg);
    }

    50% {
        transform: translateY(-20px) rotateY(5deg);
    }
}

@keyframes cardFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

@media (max-width: 991.98px) {
    .solar-image-wrapper {
        padding: 20px;
        margin-top: 60px;
    }

    .floating-card {
        padding: 15px;
    }

    .floating-card.efficiency {
        right: 0;
    }

    .floating-card.warranty {
        left: 0;
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@media (max-width: 991.98px) {
    .section-title {
        font-size: 2.5rem;
    }

    .solar-image-wrapper {
        margin-top: 50px;
    }

    .floating-card {
        position: static;
        display: inline-block;
        margin: 10px;
    }
}

.solar-badge {
    background: linear-gradient(45deg, #2196F3, #00BCD4);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.solar-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 20px 0;
    color: #333;
}

.features-list {
    margin: 20px 0;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.feature-item i {
    color: #2196F3;
    margin-right: 10px;
}

.solar-image-wrapper {
    position: relative;
    padding: 20px;
}

.efficiency-badge {
    position: absolute;
    bottom: 30px;
    right: 0;
    background: white;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.efficiency-badge .number {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: #2196F3;
}

.efficiency-badge .text {
    font-size: 0.9rem;
    color: #6c757d;
}

/* Product Cards */
.product-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.product-card:hover {
    transform: translateY(-10px);
}

.product-image {
    position: relative;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.product-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #2196F3;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
}

.product-info {
    padding: 20px;
}

.product-info h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #333;
}

.specs {
    margin-bottom: 20px;
}

.spec-item {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.spec-item i {
    color: #2196F3;
    margin-right: 10px;
    width: 20px;
}

/* Features Section */
.feature-box {
    padding: 30px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.feature-box:hover {
    transform: translateY(-10px);
}

.feature-box .icon-wrapper {
    width: 70px;
    height: 70px;
    background: linear-gradient(45deg, rgba(33, 150, 243, 0.1), rgba(0, 188, 212, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.feature-box .icon-wrapper i {
    font-size: 30px;
    background: linear-gradient(45deg, #2196F3, #00BCD4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.feature-box h4 {
    margin-bottom: 15px;
    color: #333;
}

.feature-box p {
    color: #6c757d;
    margin: 0;
}

@media (max-width: 991.98px) {
    .solar-content h2 {
        font-size: 2rem;
    }

    .solar-image-wrapper {
        margin-top: 40px;
    }
}

@media (max-width: 767.98px) {
    .product-card {
        margin-bottom: 20px;
    }

    .feature-box {
        margin-bottom: 20px;
    }
}

/* Products Section Styling */
.products-section {
    background: #f8f9fa;
    padding: 80px 0;
}

.section-header .subtitle {
    color: #2196F3;
    font-size: 1.1rem;
    font-weight: 600;
    display: block;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section-header .section-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #333;
}

.title-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
}

.title-divider span {
    width: 50px;
    height: 2px;
    background: #2196F3;
}

.title-divider i {
    color: #2196F3;
    font-size: 24px;
}

.product-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.product-image {
    position: relative;
    overflow: hidden;
    padding-top: 75%;
    /* 4:3 Aspect Ratio */
}

.product-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(33, 150, 243, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.product-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #2196F3;
    color: white;
    padding: 8px 15px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    z-index: 2;
}

.product-info {
    padding: 25px;
}

.product-info h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #333;
}

.specs {
    margin-bottom: 20px;
}

.spec-item {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    color: #666;
}

.spec-item i {
    width: 25px;
    color: #2196F3;
    margin-right: 10px;
}

.spec-item:last-child {
    margin-bottom: 0;
}

@media (max-width: 991.98px) {
    .section-header .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 767.98px) {
    .products-section {
        padding: 60px 0;
    }

    .product-card {
        margin-bottom: 30px;
    }
}

/* Products Section Styling */
.products-section {
    background: #f8f9fa;
    padding: 80px 0;
}

.section-header .subtitle {
    color: #2196F3;
    font-size: 1.1rem;
    font-weight: 600;
    display: block;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section-header .section-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #333;
}

.title-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
}

.title-divider span {
    width: 50px;
    height: 2px;
    background: #2196F3;
}

.title-divider i {
    color: #2196F3;
    font-size: 24px;
}

.product-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.product-image {
    position: relative;
    overflow: hidden;
    padding-top: 75%;
    /* 4:3 Aspect Ratio */
}

.product-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(33, 150, 243, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.product-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #2196F3;
    color: white;
    padding: 8px 15px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    z-index: 2;
}

.product-info {
    padding: 25px;
}

.product-info h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #333;
}

.specs {
    margin-bottom: 20px;
}

.spec-item {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    color: #666;
}

.spec-item i {
    width: 25px;
    color: #2196F3;
    margin-right: 10px;
}

.spec-item:last-child {
    margin-bottom: 0;
}

@media (max-width: 991.98px) {
    .section-header .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 767.98px) {
    .products-section {
        padding: 60px 0;
    }

    .product-card {
        margin-bottom: 30px;
    }
}

/* Inverter Introduction Section Styles */
.inverter-intro {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
    padding: 100px 0;
}

.inverter-content {
    position: relative;
    z-index: 2;
}

.tech-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(33, 150, 243, 0.1);
    padding: 8px 16px;
    border-radius: 50px;
    margin-bottom: 25px;
}

.badge-icon {
    background: #2196F3;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
}

.badge-icon i {
    color: white;
    font-size: 14px;
}

.badge-text {
    color: #2196F3;
    font-weight: 600;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.inverter-title {
    font-size: 3.5rem;
    font-weight: 700;
    background: linear-gradient(45deg, #1565C0, #2196F3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 25px;
}

.tech-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.tech-item {
    background: white;
    border-radius: 15px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.tech-item:hover {
    transform: translateY(-5px);
}

.tech-icon {
    width: 50px;
    height: 50px;
    background: rgba(33, 150, 243, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tech-icon i {
    color: #2196F3;
    font-size: 24px;
}

.tech-info h4 {
    font-size: 1.2rem;
    margin: 0;
    color: #333;
}

.tech-info p {
    margin: 0;
    color: #666;
    font-size: 0.9rem;
}

.inverter-showcase {
    position: relative;
    padding: 40px;
    perspective: 1000px;
}

.showcase-wrapper {
    position: relative;
    transform-style: preserve-3d;
    animation: floatInverter 6s ease-in-out infinite;
}

.main-inverter {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(33, 150, 243, 0.15);
}

.tech-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    padding: 15px;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    text-align: center;
    transition: transform 0.3s ease;
}

.tech-card:hover {
    transform: scale(1.05);
}

.tech-card.efficiency {
    top: 20px;
    right: -20px;
    animation: floatCard 4s ease-in-out infinite;
}

.tech-card.monitoring {
    bottom: 40px;
    left: -20px;
    animation: floatCard 4s ease-in-out infinite 1s;
}

.card-icon {
    color: #2196F3;
    font-size: 24px;
    margin-bottom: 8px;
}

.card-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
    margin: 5px 0;
}

.card-label {
    color: #666;
    font-size: 0.9rem;
}

.pulse-button {
    position: relative;
}

.pulse-button::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: #2196F3;
    animation: pulse 2s infinite;
    z-index: -1;
}

@keyframes floatInverter {

    0%,
    100% {
        transform: translateY(0) rotateY(-5deg);
    }

    50% {
        transform: translateY(-20px) rotateY(5deg);
    }
}

@keyframes floatCard {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }

    70% {
        transform: scale(1.1);
        opacity: 0;
    }

    100% {
        transform: scale(1);
        opacity: 0;
    }
}

@media (max-width: 991.98px) {
    .inverter-title {
        font-size: 2.5rem;
    }

    .tech-features {
        grid-template-columns: repeat(2, 1fr);
    }

    .inverter-showcase {
        margin-top: 50px;
    }
}

@media (max-width: 767.98px) {
    .tech-features {
        grid-template-columns: 1fr;
    }

    .tech-card {
        position: static;
        margin: 10px 0;
    }
}

/* Inverter Range Section Styles */
.inverter-range {
    background: #f8f9fa;
}

.range-subtitle {
    color: #2196F3;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 10px;
}

.range-title {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 20px;
}

.title-separator {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.title-separator span {
    width: 50px;
    height: 2px;
    background: #2196F3;
}

.title-separator i {
    color: #2196F3;
    font-size: 24px;
}

.inverter-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.inverter-card:hover {
    transform: translateY(-10px);
}

.inverter-image {
    position: relative;
    padding: 20px;
    background: linear-gradient(45deg, #f1f7fe, #ffffff);
}

.inverter-image img {
    width: 100%;
    height: 250px;
    object-fit: contain;
}

.type-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(33, 150, 243, 0.9);
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
}

.inverter-details {
    padding: 20px;
}

.inverter-details h3 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 15px;
}

.specs-list {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.specs-list li {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    color: #666;
}

.specs-list li i {
    color: #2196F3;
    margin-right: 10px;
    width: 20px;
}

@media (max-width: 991.98px) {
    .range-title {
        font-size: 2rem;
    }

    .inverter-card {
        margin-bottom: 20px;
    }
}

/* Battery Showcase Section Styles */
.battery-showcase-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.battery-showcase-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('/images/grid-pattern.png') repeat;
    opacity: 0.05;
}

.battery-showcase-content {
    position: relative;
    z-index: 2;
}

.energy-tag {
    display: inline-flex;
    align-items: center;
    background: rgba(33, 150, 243, 0.1);
    padding: 12px 24px;
    border-radius: 50px;
    margin-bottom: 30px;
    position: relative;
}

.energy-tag-pulse {
    position: absolute;
    width: 8px;
    height: 8px;
    background: #2196F3;
    border-radius: 50%;
    left: 12px;
    animation: tagPulse 2s infinite;
}

.energy-tag i {
    color: #2196F3;
    font-size: 16px;
    margin: 0 12px;
}

.energy-tag span {
    color: #2196F3;
    font-weight: 600;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.showcase-title {
    font-size: 3.5rem;
    font-weight: 700;
    background: linear-gradient(45deg, #1565C0, #2196F3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 25px;
    line-height: 1.2;
}

.showcase-description {
    font-size: 1.1rem;
    color: #546e7a;
    line-height: 1.8;
    margin-bottom: 40px;
}

.battery-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-bottom: 40px;
}

.stat-box {
    background: white;
    border-radius: 15px;
    padding: 25px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.stat-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(33, 150, 243, 0.15);
}

.stat-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, #2196F3, #64b5f6);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-icon i {
    color: white;
    font-size: 24px;
}

.stat-details h4 {
    font-size: 1.5rem;
    color: #333;
    margin: 0;
    font-weight: 700;
}

.stat-details p {
    color: #666;
    margin: 5px 0 0;
    font-size: 0.9rem;
}

.showcase-actions {
    display: flex;
    gap: 20px;
    margin-top: 40px;
}

.btn-explore,
.btn-calculate {
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-explore {
    background: linear-gradient(45deg, #1565C0, #2196F3);
    color: white;
}

.btn-calculate {
    background: white;
    color: #1565C0;
    border: 2px solid #1565C0;
}

.btn-explore:hover,
.btn-calculate:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(33, 150, 243, 0.2);
}

.battery-visual-wrapper {
    position: relative;
    padding: 40px;
    perspective: 1000px;
}

.battery-main-image {
    position: relative;
    transform-style: preserve-3d;
    animation: floatBattery 6s ease-in-out infinite;
}

.battery-main-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.power-indicator {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 12px;
    height: 12px;
    background: #4CAF50;
    border-radius: 50%;
    animation: powerPulse 2s infinite;
}

.floating-spec {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    text-align: center;
    transition: transform 0.3s ease;
}

.floating-spec.capacity {
    top: 30px;
    right: 0;
    animation: floatSpec 4s ease-in-out infinite;
}

.floating-spec.warranty {
    bottom: 50px;
    left: 0;
    animation: floatSpec 4s ease-in-out infinite 1s;
}

.floating-spec:hover {
    transform: scale(1.05);
}

.floating-spec i {
    font-size: 24px;
    color: #2196F3;
    margin-bottom: 10px;
}

.floating-spec .spec-value {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
    margin: 5px 0;
}

.floating-spec .spec-label {
    color: #666;
    font-size: 0.9rem;
}

@keyframes tagPulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.5);
        opacity: 0.5;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes floatBattery {

    0%,
    100% {
        transform: translateY(0) rotateY(-5deg);
    }

    50% {
        transform: translateY(-20px) rotateY(5deg);
    }
}

@keyframes floatSpec {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes powerPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(76, 175, 80, 0.4);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(76, 175, 80, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(76, 175, 80, 0);
    }
}

@media (max-width: 991.98px) {
    .showcase-title {
        font-size: 2.5rem;
    }

    .battery-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .battery-visual-wrapper {
        margin-top: 50px;
    }

    .showcase-actions {
        flex-direction: column;
    }

    .btn-explore,
    .btn-calculate {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 767.98px) {
    .battery-stats-grid {
        grid-template-columns: 1fr;
    }

    .floating-spec {
        position: static;
        margin: 10px 0;
        animation: none;
    }
}


/* Accessories Page Styles */
.accessories-showcase-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.tech-tag {
    display: inline-flex;
    align-items: center;
    padding: 8px 16px;
    background: rgba(var(--bs-primary-rgb), 0.1);
    border-radius: 30px;
    margin-bottom: 20px;
    position: relative;
}

.tech-tag-pulse {
    width: 8px;
    height: 8px;
    background-color: var(--bs-primary);
    border-radius: 50%;
    margin-right: 12px;
    position: relative;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(var(--bs-primary-rgb), 0.4);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(var(--bs-primary-rgb), 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(var(--bs-primary-rgb), 0);
    }
}

.showcase-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--bs-dark);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.feature-box {
    text-align: center;
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.feature-box:hover {
    transform: translateY(-5px);
}

.feature-box i {
    font-size: 2rem;
    color: var(--bs-primary);
    margin-bottom: 15px;
}

.showcase-image {
    position: relative;
    padding: 20px;
}

.floating-badge {
    position: absolute;
    background: white;
    padding: 10px 20px;
    border-radius: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 10px;
}

.floating-badge.quality {
    top: 20%;
    left: -10%;
}

.floating-badge.warranty {
    bottom: 20%;
    right: -10%;
}

/* Categories Section Styles */
.category-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.category-card:hover {
    transform: translateY(-10px);
}

.card-icon {
    width: 80px;
    height: 80px;
    background: rgba(var(--bs-primary-rgb), 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.card-icon i {
    font-size: 2rem;
    color: var(--bs-primary);
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.feature-list li {
    margin: 10px 0;
    color: var(--bs-gray-700);
}

.feature-list li i {
    color: var(--bs-success);
    margin-right: 10px;
}

.title-separator {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin: 20px 0;
}

.title-separator span {
    width: 50px;
    height: 2px;
    background: var(--bs-primary);
}

.title-separator i {
    color: var(--bs-primary);
    font-size: 1.2rem;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .floating-badge {
        display: none;
    }

    .showcase-title {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
}

/* accessories Featured Products Section */
.featured-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    position: relative;
    margin-bottom: 30px;
}

.featured-card:hover {
    transform: translateY(-10px);
}

.featured-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--bs-primary);
    color: #fff;
    padding: 8px 15px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    z-index: 2;
}

.featured-image {
    position: relative;
    overflow: hidden;
    padding-top: 75%;
}

.featured-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.featured-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.featured-card:hover .featured-overlay {
    opacity: 1;
}

.featured-content {
    padding: 25px;
}

.featured-content h3 {
    font-size: 1.5rem;
    color: var(--bs-primary);
    margin-bottom: 15px;
}

.featured-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 20px;
}

.featured-specs span {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.9rem;
    color: #666;
}

.featured-specs i {
    color: var(--bs-primary);
}

.featured-description {
    margin-bottom: 20px;
}

.featured-description p {
    color: #666;
    margin: 0;
    line-height: 1.6;
}

.featured-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.featured-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    color: #666;
}

.featured-features i {
    color: var(--bs-primary);
}

@media (max-width: 768px) {
    .featured-specs {
        flex-direction: column;
        gap: 10px;
    }
}

/*accessories Mounting Systems Modal Styles */
.mounting-option {
    background: #fff;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    height: 100%;
}

.mounting-option h4 {
    color: var(--bs-primary);
    margin-bottom: 15px;
}

.mounting-option .feature-list {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.mounting-option .feature-list li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.mounting-option .feature-list i {
    color: var(--bs-primary);
}

.mounting-option img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

/* Projects Showcase Styles */
.projects-showcase {
    background-color: #f8f9fa;
}

.section-intro {
    max-width: 800px;
    margin: 0 auto;
}

.section-title {
    color: #333;
    margin-bottom: 1rem;
    font-weight: 700;
}

.filter-wrapper {
    display: inline-flex;
    gap: 1rem;
    padding: 0.5rem;
    background: #fff;
    border-radius: 50px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.filter-btn {
    border: none;
    background: transparent;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    color: #666;
    transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
    background: #007bff;
    color: #fff;
}

.project-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.project-card:hover {
    transform: translateY(-5px);
}

.project-image {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 1rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.project-card:hover .project-overlay {
    opacity: 1;
}

.project-category {
    background: #007bff;
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    align-self: flex-start;
}

.project-actions {
    display: flex;
    gap: 1rem;
    align-self: center;
}

.action-btn {
    width: 40px;
    height: 40px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    transition: all 0.3s ease;
}

.action-btn:hover {
    background: #007bff;
    color: #fff;
}

.project-info {
    padding: 1.5rem;
}

.project-info h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: #333;
}

.project-details {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1rem;
}

.project-details span {
    font-size: 0.9rem;
    color: #666;
}

.project-stats {
    display: flex;
    justify-content: space-between;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #eee;
}

.stat {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: #666;
}

.counter-item {
    padding: 2rem;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.counter-item i {
    font-size: 2.5rem;
    color: #007bff;
    margin-bottom: 1rem;
}

.counter-item h4 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.counter-item p {
    color: #666;
    margin: 0;
}

/* Contact Page Specific Styles */
.contact-info-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.contact-info-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('/images/pattern-dot.png') repeat;
    opacity: 0.05;
    z-index: 1;
}

.contact-info-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 2;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    height: 100%;
    border: 1px solid rgba(33, 150, 243, 0.1);
}

.contact-info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(33, 150, 243, 0.15);
}

.contact-info-card .icon-wrapper {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #2196F3, #00BCD4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    position: relative;
}

.contact-info-card .icon-wrapper::before {
    content: '';
    position: absolute;
    width: 90px;
    height: 90px;
    border: 2px dashed #2196F3;
    border-radius: 50%;
    animation: spin 20s linear infinite;
}

.contact-info-card .icon-wrapper i {
    font-size: 2rem;
    color: #ffffff;
}

.contact-info-card h3 {
    color: #333;
    text-align: center;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    font-weight: 600;
}

.contact-info-card .info-item {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.contact-info-card .info-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.contact-info-card .info-item h5 {
    color: #2196F3;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.contact-info-card .info-item p {
    color: #666;
    margin-bottom: 0.25rem;
    font-size: 0.95rem;
}

/* Contact Form Section Styles */
.contact-form-section {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

.contact-form-wrapper {
    background: #ffffff;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.contact-form-wrapper h2 {
    color: #333;
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 1rem;
}

.contact-form-wrapper h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(45deg, #2196F3, #00BCD4);
    border-radius: 3px;
}

.contact-form-wrapper .form-group {
    margin-bottom: 1.5rem;
}

.contact-form-wrapper .form-control {
    border: 2px solid #eee;
    border-radius: 10px;
    padding: 0.8rem 1rem;
    transition: all 0.3s ease;
}

.contact-form-wrapper .form-control:focus {
    border-color: #2196F3;
    box-shadow: 0 0 0 0.2rem rgba(33, 150, 243, 0.15);
}

.contact-form-wrapper .btn-primary {
    background: linear-gradient(45deg, #2196F3, #00BCD4);
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.contact-form-wrapper .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(33, 150, 243, 0.2);
}

/* Map Section Styles */
.map-wrapper {
    background: #ffffff;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    height: 100%;
}

.map-wrapper h2 {
    color: #333;
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 1rem;
}

.map-wrapper h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(45deg, #2196F3, #00BCD4);
    border-radius: 3px;
}

.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.map-container iframe {
    width: 100%;
    height: 450px;
    border: none;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* Map Section Enhanced Styles */
.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
}

.map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.05);
    pointer-events: none;
    z-index: 1;
}

.map-card {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.95);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    z-index: 2;
    max-width: 250px;
}

.map-card h4 {
    color: #333;
    margin-bottom: 15px;
    font-weight: 600;
}

.map-card p {
    margin-bottom: 10px;
    color: #666;
    font-size: 0.9rem;
}

.location-info {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 10px;
    border-left: 4px solid #2196F3;
}

.location-item {
    color: #666;
    font-size: 0.95rem;
}

.location-item a:hover {
    text-decoration: underline;
}

/* about us page --> Company Overview Section Styles */
.company-overview {
    position: relative;
    overflow: hidden;
}

.title-separator {
    display: flex;
    align-items: center;
    gap: 15px;
    margin: 20px 0;
}

.title-separator .line {
    flex: 1;
    height: 2px;
    background: var(--bs-primary);
    opacity: 0.2;
}

.title-separator i {
    font-size: 24px;
}

.achievement-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding: 30px;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.achievement-item {
    text-align: center;
}

.point-icon {
    width: 40px;
    height: 40px;
    background: rgba(25, 135, 84, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.point-icon i {
    font-size: 20px;
}

.overview-image-wrapper {
    padding: 20px;
}

.image-frame {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.image-frame img {
    width: 100%;
    height: auto;
    transform: scale(1);
    transition: transform 0.5s ease;
}

.image-frame:hover img {
    transform: scale(1.05);
}

.experience-badge {
    position: absolute;
    bottom: 40px;
    right: 0;
    background: var(--bs-primary);
    color: #fff;
    padding: 20px 30px;
    border-radius: 15px 0 0 15px;
    box-shadow: 0 10px 20px rgba(0, 123, 255, 0.2);
}

.badge-inner {
    text-align: center;
}

.badge-inner .years {
    display: block;
    line-height: 1;
    margin-bottom: 5px;
}

.badge-inner .text {
    font-size: 14px;
    opacity: 0.9;
}

.pattern-overlay {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(#2196F3 1px, transparent 1px);
    background-size: 20px 20px;
    opacity: 0.1;
    pointer-events: none;
}

/* about us page--> Mission & Vision Section Styles */
.mission-vision-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
    padding: 80px 0;
}

.gradient-border {
    position: relative;
    background: #fff;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease;
    height: 50vh;
    padding-top: 100px;
    width: 90%;
    margin: 0 auto;
}

.gradient-border::before {
    content: '';
    position: absolute;
    top: 0px;
    left: 0;
    right: 0;
    height: 12vh;
    background: linear-gradient(90deg, var(--bs-primary), #4CAF50);
}

.gradient-border:hover {
    transform: translateY(-10px);
}

.icon-float {
    position: absolute;
    top: -30px;
    right: 30px;
    z-index: 2;
}

.icon-circle {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    margin-top: 40px;
}

.mission-icon {
    background: linear-gradient(135deg, #2196F3, #3F51B5);
    color: white;
}

.vision-icon {
    background: linear-gradient(135deg, #4CAF50, #8BC34A);
    color: white;
}

.icon-circle i {
    font-size: 28px;
    color: #ffffff;
}

.card-title {
    color: var(--bs-primary);
    font-size: 2rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.card-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 2rem;
}

.achievement-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

.achievement-badges .badge {
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    background: rgba(var(--bs-primary-rgb), 0.1);
    color: var(--bs-primary);
}

.achievement-badges .badge i {
    margin-right: 5px;
}

.pulse-animation {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.2);
        opacity: 0.7;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .gradient-border {
        padding: 2rem;
    }

    .card-title {
        font-size: 1.75rem;
    }

    .card-content {
        font-size: 1rem;
    }
}

/* Services page Overview Section Styles */
.services-overview {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 80px 0;
}

.service-card {
    background: #fff;
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--bs-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
}

.service-icon::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: var(--bs-primary);
    border-radius: 50%;
    opacity: 0.2;
    transform: scale(1.2);
    z-index: -1;
}

.service-icon i {
    font-size: 32px;
    color: #fff;
}

.service-card h3 {
    color: var(--bs-primary);
    font-size: 24px;
    margin-bottom: 20px;
    font-weight: 600;
}

.service-card p {
    color: #666;
    margin-bottom: 25px;
    line-height: 1.7;
}

.service-features {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.service-features li {
    margin-bottom: 15px;
    color: #555;
    display: flex;
    align-items: center;
}

.service-features li i {
    color: var(--bs-primary);
    margin-right: 10px;
    font-size: 14px;
}

.service-card .btn {
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.service-card .btn:hover {
    transform: translateX(5px);
}

/* CTA Section Styles */
.cta-section {
    background: linear-gradient(135deg, var(--bs-primary) 0%, #0056b3 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('/images/pattern.png') repeat;
    opacity: 0.1;
}

.cta-section h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px !important;
    color: #fff;
}

.cta-section .btn-light {
    padding: 15px 40px;
    font-weight: 600;
    border-radius: 50px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.cta-section .btn-light:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* Consultation Modal Styling */
.modal-dialog {
    max-width: 800px;
}

#consultationModal .modal-content {
    border: none;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    overflow: hidden;
}

#consultationModal .modal-header {
    background: linear-gradient(135deg, var(--bs-primary) 0%, #0056b3 100%);
    padding: 1.5rem;
    border: none;
    position: relative;
}

#consultationModal .modal-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
}

#consultationModal .modal-title {
    font-size: 1.5rem;
    font-weight: 600;
}

#consultationModal .modal-body {
    padding: 2rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

#consultationModal .form-label {
    font-weight: 500;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

#consultationModal .form-control,
#consultationModal .form-select {
    border-radius: 10px;
    padding: 0.75rem 1rem;
    border: 2px solid #e0e6ed;
    transition: all 0.3s ease;
}

#consultationModal .form-control:focus,
#consultationModal .form-select:focus {
    border-color: var(--bs-primary);
    box-shadow: 0 0 0 0.2rem rgba(var(--bs-primary-rgb), 0.15);
}

#consultationModal .form-check-input {
    cursor: pointer;
    border-color: #cbd5e1;
}

#consultationModal .form-check-input:checked {
    background-color: var(--bs-primary);
    border-color: var(--bs-primary);
}

#consultationModal .modal-footer {
    background: #f8f9fa;
    border: none;
    padding: 1.5rem;
}

#consultationModal .btn {
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.3s ease;
}

#consultationModal .btn-primary {
    background: linear-gradient(135deg, var(--bs-primary) 0%, #0056b3 100%);
    border: none;
    position: relative;
    overflow: hidden;
}

#consultationModal .btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: all 0.5s ease;
}

#consultationModal .btn-primary:hover::before {
    left: 100%;
}

#consultationModal .btn-secondary {
    background: #6c757d;
    border: none;
}

#consultationModal textarea {
    resize: none;
    min-height: 120px;
}

/* Custom Radio Buttons */
#consultationModal .form-check {
    padding-left: 1.8rem;
    margin-bottom: 0.5rem;
}

#consultationModal .form-check-label {
    color: #4a5568;
}

#consultationModal .form-check-input[type="radio"] {
    width: 1.2rem;
    height: 1.2rem;
}

/* Links in Modal */
#consultationModal a {
    color: var(--bs-primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

#consultationModal a:hover {
    color: #0056b3;
    text-decoration: underline;
}

/* Products Page Styles */
.products-overview {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 80px 0;
}

.product-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    height: 100%;
    position: relative;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.product-image {
    position: relative;
    overflow: hidden;
    height: 300px;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-content {
    padding: 30px;
    position: relative;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
}

.product-content h3 {
    color: var(--bs-primary);
    font-size: 24px;
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 15px;
}

.product-content h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--bs-primary);
    border-radius: 2px;
}

.product-features {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.product-features li {
    padding: 10px 0;
    display: flex;
    align-items: center;
    color: #555;
    font-size: 15px;
}

.product-features li i {
    width: 24px;
    height: 24px;
    background: rgba(var(--bs-primary-rgb), 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bs-primary);
    margin-right: 12px;
    font-size: 12px;
}

.product-card .btn {
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.product-card .btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    z-index: -1;
}

.product-card .btn:hover::before {
    width: 100%;
}

/* Benefits Section Styles */
.product-benefits {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

.benefit-item {
    padding: 25px;
    border-radius: 15px;
    background: #fff;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.benefit-item:hover {
    transform: translateX(10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background: rgba(var(--bs-primary-rgb), 0.1);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefit-icon i {
    font-size: 24px;
    color: var(--bs-primary);
}

.benefit-text h4 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #333;
}

.benefit-text p {
    color: #666;
    margin-bottom: 0;
}

/* CTA Section Enhancement */
.cta-section {
    background: linear-gradient(45deg, var(--bs-primary) 0%, #0056b3 100%);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('/images/pattern-dot.png') repeat;
    opacity: 0.1;
}

/* Consultation Modal Styles */
#consultationModal .modal-content {
    border: none;
    border-radius: 15px;
    overflow: hidden;
}

#consultationModal .modal-header {
    border-bottom: none;
    padding: 1.5rem;
}

#consultationModal .modal-footer {
    border-top: none;
    padding: 1.5rem;
}

#consultationModal .form-control,
#consultationModal .form-select {
    padding: 0.75rem;
    border-radius: 8px;
    border: 1px solid #dee2e6;
}

#consultationModal .form-control:focus,
#consultationModal .form-select:focus {
    border-color: var(--bs-primary);
    box-shadow: 0 0 0 0.25rem rgba(var(--bs-primary-rgb), 0.25);
}

#consultationModal .btn-primary {
    padding: 0.75rem 1.5rem;
    font-weight: 500;
}

#consultationModal .form-check-input:checked {
    background-color: var(--bs-primary);
    border-color: var(--bs-primary);
}

/* Privacy Policy Styles */
.privacy-content {
    line-height: 1.8;
}

.privacy-content h2 {
    color: #0d6efd;
    font-weight: 600;
}

.privacy-content .section {
    border-bottom: 1px solid #eee;
    padding-bottom: 2rem;
}

.privacy-content .section:last-child {
    border-bottom: none;
}

.usage-card {
    height: 100%;
    transition: transform 0.3s ease;
}

.usage-card:hover {
    transform: translateY(-5px);
}

.protection-measures {
    background-color: #f8f9fa;
}

.right-item:hover {
    background-color: #f8f9fa;
    border-radius: 8px;
    padding: 1rem;
    margin: -1rem;
    transition: all 0.3s ease;
}

/* Privacy Policy Styles */
.privacy-content {
    line-height: 1.8;
    background: linear-gradient(to bottom right, #ffffff, #f8f9fa);
    border-radius: 25px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.privacy-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('/images/pattern-dot.png') repeat;
    opacity: 0.03;
    z-index: 0;
}

.privacy-content h2 {
    color: #0d6efd;
    font-weight: 700;
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 30px;
    background: linear-gradient(45deg, #0d6efd, #0099ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.privacy-content h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(45deg, #0d6efd, #0099ff);
    border-radius: 3px;
}

.privacy-content .section {
    border-bottom: 1px solid rgba(13, 110, 253, 0.1);
    padding: 40px;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.privacy-content .section:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(13, 110, 253, 0.1);
}

.usage-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(13, 110, 253, 0.1);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.usage-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(13, 110, 253, 0.15);
}

.protection-measures {
    background: linear-gradient(135deg, #f8f9fa, #ffffff);
    border: 1px solid rgba(13, 110, 253, 0.1);
    backdrop-filter: blur(10px);
}

.protection-measures i {
    font-size: 2.5rem;
    background: linear-gradient(45deg, #0d6efd, #0099ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: transform 0.3s ease;
}

.protection-measures:hover i {
    transform: scale(1.2);
}

.right-item {
    padding: 20px;
    border-radius: 15px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.right-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(13, 110, 253, 0.05), rgba(0, 153, 255, 0.05));
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
    z-index: -1;
}

.right-item:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

.right-item:hover {
    transform: translateX(10px);
}

.contact-info i {
    width: 35px;
    height: 35px;
    background: rgba(13, 110, 253, 0.1);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    transition: all 0.3s ease;
}

.contact-info:hover i {
    background: #0d6efd;
    color: white;
    transform: rotate(360deg);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.section {
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
}

.section:nth-child(2) {
    animation-delay: 0.2s;
}

.section:nth-child(3) {
    animation-delay: 0.4s;
}

.section:nth-child(4) {
    animation-delay: 0.6s;
}

.section:nth-child(5) {
    animation-delay: 0.8s;
}

/* Terms and Conditions Styles */
.terms-wrapper {
    background: linear-gradient(145deg, #ffffff, #f8f9fa);
    border-radius: 25px;
    box-shadow: 0 20px 40px rgba(13, 110, 253, 0.1);
    position: relative;
    overflow: hidden;
}

.terms-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('/images/pattern-dot.png') repeat;
    opacity: 0.05;
    z-index: 0;
}

.terms-section {
    padding: 40px;
    border-bottom: 1px solid rgba(13, 110, 253, 0.1);
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.terms-section:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.9);
}

.section-header {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}

.section-icon {
    font-size: 2rem;
    margin-right: 20px;
    color: #0d6efd;
    background: linear-gradient(45deg, #0d6efd, #0099ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: transform 0.3s ease;
}

.terms-section:hover .section-icon {
    transform: scale(1.2) rotate(10deg);
}

.terms-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.terms-card:hover {
    transform: translateX(10px);
    box-shadow: 0 15px 30px rgba(13, 110, 253, 0.15);
}

.terms-list li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    padding: 10px;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.terms-list li:hover {
    background: rgba(13, 110, 253, 0.05);
    transform: translateX(10px);
}

.terms-list i {
    color: #0d6efd;
    margin-right: 15px;
    transition: transform 0.3s ease;
}

.terms-list li:hover i {
    transform: scale(1.2);
}

.warranty-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 20px;
}

.warranty-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
}

.warranty-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(13, 110, 253, 0.1), rgba(0, 153, 255, 0.1));
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
    z-index: 0;
}

.warranty-card:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

.warranty-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(13, 110, 253, 0.15);
}

.card-icon {
    font-size: 2.5rem;
    color: #0d6efd;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.warranty-card:hover .card-icon {
    transform: scale(1.2) rotate(360deg);
}

.payment-info {
    display: grid;
    gap: 30px;
}

.info-item {
    background: white;
    padding: 30px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.3s ease;
}

.info-item:hover {
    transform: translateX(10px);
    box-shadow: 0 15px 30px rgba(13, 110, 253, 0.15);
}

.info-item i {
    font-size: 2rem;
    color: #0d6efd;
    transition: transform 0.3s ease;
}

.info-item:hover i {
    transform: rotate(15deg) scale(1.2);
}

@media (max-width: 768px) {
    .terms-section {
        padding: 20px;
    }

    .warranty-grid {
        grid-template-columns: 1fr;
    }
}