:root {
    --primary: #8A0000;
    --primary-dark: #b32021;
    --primary-light: rgba(218, 40, 41, 0.1);
    --light: #ffffff;
    --dark: #222222;
    --gray: #f5f5f5;
    --gray-dark: #e0e0e0;
    --text: #444444;
    --text-light: #666666;
    --shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text);
    background-color: var(--light);
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1329px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding:0px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    color: var(--dark);
    font-size: 2.5rem;
    font-weight: 700;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--primary);
    border-radius: 2px;
}

/* =================================== */
header {
    background-color:#8A0000;
        position: relative;
        top: 0;
        width: 100%;
        height: 100%;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        z-index: 1000;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0px 0px;
    max-width: 1220px;
    margin: auto;
}
.logo {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-left: -50px;
}

.logo h1 {
    font-size: 1.5rem;
    color: white;
    margin: 0;
    margin-left: -20px;
    /* shift left slightly */
    white-space: nowrap;
}

.logo img {
    width: 100px;
    height: 100px;
    margin-left: -50px;
}

nav {
    position: relative;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
}

.nav-links li a {
    text-decoration: none;
    color: white;
    font-weight: 700;
    font-size: 1.1rem;
    font-family: 'Poppins', sans-serif;
    transition: color var(--transition);
}


.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #8A0000;
    min-width: 200px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
    border-radius: 5px;
    top: 100%;
    left: 0;
}

.dropdown-content li {
    padding: 10px 15px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.dropdown-content li:last-child {
    border-bottom: none;
}

.dropdown-content li a {
    color: white;
    text-decoration: none;
    display: block;
    font-size: 0.9rem;
    transition: var(--transition);
}

.dropdown-content li a:hover {
    color: #ffdede;
    padding-left: 5px;
}

.dropdown:hover .dropdown-content {
    display: block;
}

/* Mobile dropdown styles */
@media (max-width: 768px) {
    .dropdown {
        position: static;
    }
    
    .dropdown-content {
        position: static;
        display: none;
        width: 100%;
        box-shadow: none;
        background-color: rgba(0,0,0,0.1);
    }
    
    .dropdown.active .dropdown-content {
        display: block;
    }
    
    .dropdown .dropbtn {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
}

.menu-icon {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .nav-links {
        position: absolute;
        top: 60px;
        right: 0;
        background:#8A0000;        ;
        flex-direction: column;
        width: 200px;
        display: none;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    }

    .nav-links.active {
        display: flex;
    }

    .menu-icon {
        display: block;
        color: var(--dark);
    }
}


/* Mobile First Approach - Base Styles */
@media (max-width: 767px) {
    /* Header adjustments */
    .header-container {
        flex-direction: column;
        padding: 15px;
    }
    
    .logo {
        margin-left: 0;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .logo img {
        margin-left: 0;
        width: 80px;
        height: 80px;
    }
    
    .logo h1 {
        font-size: 1.5rem !important;
        margin-left: 0;
    }
    
    .logo p {
        font-size: 1rem !important;
    }
    
    /* Navigation */
    .nav-links {
        display: none;
        width: 100%;
        padding: 20px 0;
    }
    
    .nav-links.active {
        display: flex;
        flex-direction: column;
    }
    
    .nav-links li {
        padding: 10px 0;
        text-align: center;
    }
    
    .menu-icon {
        display: block;
        position: absolute;
        top: 20px;
        right: 20px;
        font-size: 1.5rem;
        color: white;
    }
    
    /* Hero Banner */
    .hero-banner {
        height: 300px;
    }
    
    .swiper-slide img {
        height: 300px;
    }
    
    /* Welcome Section */
    .welcome-container {
        flex-direction: column;
        padding: 20px;
    }
    
    .welcome-image {
        margin-bottom: 30px;
    }



    
    
    .feature-boxes {
        flex-direction: column;
    }
    
    /* Services Section */
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    /* Stats Section */
    .stats-container {
        gap: 30px;
        grid-template-columns: 1fr 1fr;
    }
    
    /* Projects Section */
    .projects-grid {
        grid-template-columns: 1fr;
    }
    
    /* Electrica Section */
    .electrica-container {
        flex-direction: column;
    }
    
    .electrica-left, .electrica-right {
        margin-left: 0;
        padding: 20px;
    }
    
    .electrica-left__experience {
        position: relative;
        top: 0;
        left: 0;
        margin: 20px auto;
    }
    
    /* About Section */
    .about .container {
        flex-direction: column;
    }
    
    .about-content {
        order: 2;
    }
    
    .about-image {
        order: 1;
        margin-bottom: 30px;
    }
    
    /* Mobile Styles for About Our Company Section */
@media (max-width: 768px) {
    .about {
        padding: 40px 15px;
    }
    
    .about .container {
        flex-direction: column;
        gap: 30px;
    }
    
    .about-content {
        order: 2; /* Content comes after image */
        text-align: center;
        padding: 0 10px;
    }
    
    .section-title {
        font-size: 1.8rem;
        margin-bottom: 20px;
    }
    
    .about-content p {
        font-size: 1rem;
        margin-bottom: 15px;
    }
    
    .about-image {
        order: 1; /* Image comes first */
        margin-bottom: 20px;
    }
    
    .about-image img {
        width: 100%;
        max-width: 100%;
        border-radius: 10px;
    }
    
    .about-content > div {
        flex-direction: column;
        gap: 15px;
        margin-top: 20px;
    }
    
    .about-content > div > div {
        padding: 12px 15px;
        width: 100%;
    }
    
    .about-content > div > div > div:first-child {
        font-size: 1.8rem;
    }
}

/* Extra Small Devices (below 480px) */
@media (max-width: 480px) {
    .section-title {
        font-size: 1.6rem;
    }
    
    .about-content p {
        font-size: 0.95rem;
    }
    
    .about-content > div > div {
        padding: 10px 12px;
    }
    
    .about-content > div > div > div:first-child {
        font-size: 1.5rem;
    }
}


    /* Contact Section */
    .contact-container {
        flex-direction: column;
    }
    
    .contact-info, .contact-form {
        width: 100%;
    }
    
    /* Footer */
    .footer-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    /* General spacing adjustments */
    section {
        padding: 40px 20px;
    }
    
    .section-title {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }
}

/* Tablet Styles */
@media (min-width: 768px) and (max-width: 1023px) {
    .header-container {
        padding: 0 20px;
    }
    
    .services-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .projects-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .footer-container {
        grid-template-columns: 1fr 1fr;
    }
    
    .stats-container {
        gap: 50px;
    }
}

@media (max-width: 767px) {
    h1 { font-size: 1.8rem; }
    h2 { font-size: 1.5rem; }
    h3 { font-size: 1.3rem; }
    p, li, a { font-size: 1rem; }
}

img {
    max-width: 100%;
    height: auto;
}


.social-popup {
    position: fixed;
    left: 25px;
    bottom: 25px;
    z-index: 999;
}

.social-icons {
    display: flex;
    flex-direction: column;
    gap: 10px;
    color: white;
}

.social-icon {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.3rem;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}

.social-icon.whatsapp {
    background-color: #8A0000;
}

.social-icon.facebook {
    background-color:#8A0000    ;
}

.social-icon.instagram {
    background-color:#8A0000    ;
}

.social-icon.phone {
    background-color:#8A0000    ;
}

.social-icon:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.hero-banner {
    position: relative;
    height: 650px;
    overflow: hidden;
}

.swiper {
    width: 100%;
}

.swiper-slide {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.swiper-slide img {
    width: 100%;
    object-fit: cover;
    display: block;    
}

.swiper-pagination {
    position: absolute;
    left: 0;
    width: 100%;
    text-align: center;
    z-index: 10;
}

.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: #fff;
    opacity: 0.6;
    border: 2px solid #DA2829;
    transition: all 0.3s ease;
    margin: 0 4px;
}

.swiper-pagination-bullet-active {
    background-color: #8A0000;
    opacity: 1;
}

.welcome-section {
    padding: 80px 0;
    background-color: white;
}

.welcome-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
}

.welcome-image,
.welcome-content {
    flex: 1;
    min-width: 300px;
}

.welcome-image img {
    width: 100%;
    margin-top: -100px  ;
    
}

.welcome-content h2 {
    color: var(--primary);
    font-size: 2.5rem;
    margin-bottom: 20px;
    position: relative;
}

.welcome-content h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 4px;
    background-color: var(--accent);
    border-radius: 2px;
}

.welcome-content p {
    margin-bottom: 15px;
}

.feature-boxes {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 30px;
}

.feature-box {
    flex: 1;
    min-width: 200px;
    padding: 20px;
    background-color: var(--light);
    border-radius: 8px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
}

.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.feature-box img {
    width: 60px;
    height: 60px;
    margin-bottom: 15px;
}

.feature-box h3 {
    font-size: 1.2rem;
    color: var(--primary);
    margin-bottom: 10px;
}

/* Services Section */
.services-section {
    padding: 25px;
    background-color: var(--light-gray);
}

.services-header {
    text-align: center;
    margin-bottom: 50px;
}

.services-header h2 {
    color: var(--primary);
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.services-header p {
    max-width: 700px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: white;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.service-card img{
    width: 100%;
    height: 239px;
    object-fit: cover;
    object-position: bottom;
}


.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    background: #8A0000;
    color: white;
}

.service-card:hover i,
.service-card:hover h4 {
    color: white;
}
.service-card i {
    font-size: 3rem;
    color: var(--accent);
    margin-bottom: 20px;
}

.service-card h4 {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 15px;
}

/* Stats Section */
.stats-section {
    background-color: #8A0000;
    color: white;
    padding: 60px 20px;
    text-align: center;
}

.stats-container {
    display: flex;
    flex-wrap: wrap;
    gap: 150px;
    justify-content: center;
}

.stat-item h3 {
    font-size: 3rem;
    margin-bottom: 10px;
}

.stat-item p {
    font-size: 1.1rem;
    color: #ffdede;
} 

/* Mobile Responsive Styles for Stats Section */
@media (max-width: 768px) {
    .stats-section {
        padding: 40px 15px;
    }
    
    .stats-container {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        padding: 0;
    }
    
    .stat-item {
        text-align: center;
        padding: 15px;
    }
    
    .stat-item h3 {
        font-size: 2.2rem;
        margin-bottom: 5px;
    }
    
    .stat-item p {
        font-size: 0.9rem;
    }
}

/* For very small devices (below 480px) */
@media (max-width: 480px) {
    .stats-container {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .stat-item h3 {
        font-size: 2rem;
    }
    
    .stat-item p {
        font-size: 0.85rem;
    }
}


/* Projects Section */
.projects-section {
    padding: 80px 0;
    background-color: white;
}

.projects-header {
    text-align: center;
    margin-bottom: 50px;
}

.projects-header h2 {
    color: var(--primary);
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.project-card {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    position: relative;
    height: 300px;
}

.project-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.project-card:hover img {
    transform: scale(1.1);
}

.project-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    transform: translateY(0);
    transition: background var(--transition);
}

.project-card:hover .project-overlay {
    background: linear-gradient(transparent, rgba(0, 0, 0, 1));
}
.project-overlay h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

/* Electrica Section */
.electrica-section {
    padding: 0px 0;
    background-color: var(--light);
    position: relative;
    overflow: hidden;
}

.electrica-container {
    display: flex;
    flex-wrap: wrap;
    gap:0px;
    align-items: center;
    justify-content: space-between;
}

.electrica-left
 {
    flex: 1;
        margin-left: -27px;
        position: relative;
        top: -70px;  
}
.electrica-right{
    flex: 1;
        margin-left: -27px;
        position: relative;
}


.electrica-left__overlay-img {
    position:relative;
        bottom: 35px;
        right: -38px;
        width: 54%;
    border-radius: 15px;
    overflow: hidden;
    z-index: 1;
    transition: var(--transition);
}
.electrica-left__overlay-img:hover {
    transform: translateY(-10px);
}
.electrica-left__overlay-img img {
    width: 80%;
    border-radius: 20px;
        transform: translate(15px, -10px);
    height: auto;
    display: block;
}

.electrica-left__experience {
    position: absolute;
        top: -28px;
        left:400px;
        background:#8A0000;
        padding: 4px 7px;
        border-radius: 10px;
        z-index: 3;
        text-align: center;
        border-left: 5px solid var(--primary);
        box-shadow: var(--shadow);
}

.electrica-left__experience h2 {
    font-size: 3.5rem;
    line-height: 1;
    color:white;
    font-weight: 700;
}

.electrica-left__experience span {
    font-size: 1.8rem;
    color: white;
}

.electrica-left__experience p {
    font-weight: 600;
    margin-top: 5px;
    color:white;
}

.electrica-right__subtitle {
    color: var(--text-light);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 5px;
    margin-bottom: 20px;
    padding-left: 15px;
    border-left: 3px solid var(--primary);
}

.electrica-right__title {
    font-size: 2.8rem;
    margin-bottom: 25px;
    color: var(--primary);
    font-weight: 700;
    line-height: 1.3;
}

.electrica-right__description {
    color: var(--text);
    margin-bottom: 35px;
    font-size: 1.1rem;
    line-height: 1.8;
}

.electrica-right__features {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    /* margin-bottom: 40px; */
}

/* Mobile Styles for Trusted Solutions Section */
@media (max-width: 768px) {
    .electrica-section {
        padding: 40px 15px;
    }
    
    .electrica-container {
        flex-direction: column;
        gap: 30px;
    }
    
    .electrica-left {
        margin-left: 0;
        top: 0;
        order: 1; /* Move image above content */
    }
    
    .electrica-left__overlay-img {
        width: 100%;
        right: 0;
        bottom: 0;
    }
    
    .electrica-left__overlay-img img {
        width: 100%;
        height: 300px;
        object-fit: cover;
        object-position: center;
        transform: none;
    }
    
    .electrica-left__experience {
        top: 20px;
        left: 20px;
        padding: 10px 15px;
    }
    
    .electrica-left__experience h2 {
        font-size: 2.5rem;
    }
    
    .electrica-right {
        margin-left: 0;
        padding: 0 10px;
        order: 2;
    }
    
    .electrica-right__subtitle {
        font-size: 0.9rem;
        letter-spacing: 3px;
        margin-bottom: 15px;
    }
    
    .electrica-right__title {
        font-size: 1.8rem;
        margin-bottom: 20px;
        line-height: 1.3;
    }
    
    .electrica-right__description {
        font-size: 1rem;
        margin-bottom: 25px;
    }
    
    .electrica-right__features {
        flex-direction: column;
        gap: 20px;
    }
    
    .feature-box {
        min-width: 100%;
        padding: 15px;
    }
    
    .feature-box img {
        width: 40px;
        height: 40px;
    }
    
    .feature-box h3 {
        font-size: 1.2rem;
    }
    
    .feature-box p {
        font-size: 0.9rem;
    }
}

/* Extra Small Devices */
@media (max-width: 480px) {
    .electrica-right__title {
        font-size: 1.5rem;
    }
    
    .electrica-left__experience {
        top: 15px;
        left: 15px;
    }
    
    .electrica-left__experience h2 {
        font-size: 2rem;
    }
}




.feature-box {
    flex: 1;
    min-width:270px;
    padding: 0px;
    border-radius: 10px;
    transition: var(--transition);
    border-bottom: 3px solid transparent;
    background: var(--light);
}

.feature-box:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow);
    border-bottom-color: var(--primary);
}

.feature-box img {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.feature-box h3 {
    font-size: 1.4rem;
    color: var(--primary);
    margin-bottom: 15px;
    font-weight: 600;
}

.feature-box p {
    color: var(--text);
    font-size: 1rem;
    line-height: 1.6;
}

.electrica-right__btn {
    display: inline-block;
    background: var(--primary);
    color: var(--light);
    padding: 16px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(218, 40, 41, 0.3);
    border: 2px solid var(--primary);
}

.electrica-right__btn:hover {
    background: transparent;
    color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(218, 40, 41, 0.4);
}


/* About Section */
.about {
    padding: 60px 20px;
    background-color: var(--light);
}

.about .container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
    max-width: 1200px;
    margin: auto;
}

.about-content {
    flex: 1;
    min-width: 300px;
}

.about-content .section-title {
    font-size: 2.2rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.about-content p {
    color: var(--text);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 12px;
}

.about-content .stats {
    display: flex;
    gap: 24px;
    margin-top: 20px;
}

.about-content .stats div {
    background: var(--primary);
    color: white;
    padding: 16px 24px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.about-content .stats div>div:first-child {
    font-size: 2rem;
    font-weight: 700;
}

.about-image {
    flex: 1;
    min-width: 300px;
    text-align: center;
}

.about-image img {
    width: 100%;
    max-width: 557px;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .about .container {
        flex-direction: column-reverse;
        text-align: center;
    }

    .about-content .stats {
        justify-content: center;
    }
}

/* Contact */
.contact {
    background: linear-gradient(to bottom, var(--light) 50%, var(--gray) 50%);
}

.contact-form {
    max-width: 800px;
    margin: 0 auto;
    
    padding: 50px;
    border-radius: 15px;
    
    position: relative;
    z-index: 1;
}

.form-group {
    margin-bottom: 30px;
}

.form-group label {
    display: block;
    margin-bottom: 12px;
    font-weight: 500;
    color: var(--dark);
    font-size: 1.1rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    border: 1px solid var(--gray-dark);
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    transition: var(--transition);
    background: rgba(245, 245, 245, 0.5);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(218, 40, 41, 0.2);
    background: var(--light);
}

.form-group textarea {
    min-height: 180px;
    resize: vertical;
}

.contact-form button {
    width: 100%;
    padding: 16px;
    background: var(--primary);
    color: var(--light);
    border: none;
    border-radius: 8px;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(218, 40, 41, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-form button:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(218, 40, 41, 0.4);
}


/* Contact Section */
.contact-section {
    background-color: var(--gray);
    padding: 60px 20px;
    color: var(--text);
}

.contact-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: space-between;
}

.contact-info {
    flex: 1;
    min-width: 280px;
}

.contact-info h2 {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 25px;
}

.contact-info-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    align-items: flex-start;
}

.contact-info-item i {
    color: var(--primary);
    font-size: 1.4rem;
    margin-top: 4px;
}

.contact-info-item h4 {
    margin: 0;
    font-weight: bold;
    font-size: 1rem;
}

.contact-form {
    flex: 1;
    min-width: 300px;
    background-color: var(--light);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.contact-form h3 {
    margin-bottom: 20px;
    color: var(--primary);
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    font-weight: 500;
    margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-family: inherit;
    font-size: 1rem;
}

.form-group textarea {
    min-height: 100px;
    resize: vertical;
}

.submit-btn {
    background-color: var(--primary);
    color: var(--light);
    padding: 12px 20px;
    border: none;
    font-weight: bold;
    font-size: 1rem;
    border-radius: 5px;
    cursor: pointer;
    transition: var(--transition);
}

.submit-btn:hover {
    background-color: var(--primary-dark);
}

/* Footer */
footer {
    background-color: var(--primary);
    color: var(--light);
    padding: 60px 20px 20px;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: space-between;
}

.footer-column {
    flex: 1;
    min-width: 200px;
}

.footer-column h3 {
    margin-bottom: 15px;
    font-size: 1.2rem;
    border-bottom: 2px solid var(--light);
    display: inline-block;
    padding-bottom: 5px;
}

.footer-column p,
.footer-column li,
.footer-column a {
    font-size: 0.95rem;
    color: var(--light);
    text-decoration: none;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links li a:hover {
    text-decoration: underline;
    color: #ffdede;
}

.social-links a {
    margin-right: 10px;
    font-size: 1.2rem;
    color: var(--light);
    transition: var(--transition);
}

.social-links a:hover {
    color: #ffdede;
}

footer .fa-map-marker-alt,
footer .fa-phone,
footer .fa-envelope,
footer .fa-clock {
    margin-right: 8px;
}

footer .copyright {
    text-align: center;
    margin-top: 40px;
    font-size: 0.85rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 15px;
    color: #ffdede;
}
@media (max-width: 768px) {

    .contact-container,
    .footer-container {
        flex-direction: column;
        gap: 30px;
    }

    .contact-form {
        padding: 20px;
    }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .banner-content h1 {
        font-size: 3.2rem;
    }

    .electrica-right__title {
        font-size: 2.5rem;
    }
}

@media (max-width: 992px) {
    .hero-banner {
        height: 80vh;
    }

    .banner-content h1 {
        font-size: 2.8rem;
    }

    .banner-content p {
        font-size: 1.2rem;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .electrica-left__experience {
        top: 20px;
        left: 20px;
        padding: 15px 25px;
    }

    .electrica-left__experience h2 {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }

    nav {
        position: fixed;
        top: 80px;
        right: -100%;
        width: 280px;
        height: calc(100vh - 80px);
        background: var(--light);
        transition: var(--transition);
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        z-index: 1000;
    }

    nav.active {
        right: 0;
    }

    nav ul {
        flex-direction: column;
        padding: 40px 30px;
        gap: 20px;
    }

    nav ul li a {
        font-size: 1.3rem;
        color: var(--dark);
    }

    .hero-banner {
        height: 70vh;
        min-height: 500px;
    }

    .banner-content h1 {
        font-size: 2.4rem;
    }

    .banner-content p {
        font-size: 1.1rem;
    }

    .electrica-container {
        flex-direction: column;
    }

    .electrica-left__overlay-img {
        width: 60%;
        right: -20px;
        bottom: -30px;
    }

    .about .container {
        flex-direction: column;
    }

    .about-image {
        order: -1;
    }

}

@media (max-width: 576px) {
    .hero-banner {
        height: 60vh;
    }

    .banner-content h1 {
        font-size: 2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .electrica-right__title {
        font-size: 2rem;
    }

    .contact-form {
        padding: 30px;
    }

    .logo h3 {
        font-size: 1.3rem;
    }

    .electrica-left__experience {
        top: 15px;
        left: 15px;
        padding: 10px 15px;
    }

    .electrica-left__experience h2 {
        font-size: 2.5rem;
    }

    .about-stats {
        flex-direction: column;
    }
}


#prom-enquiry-forms .fixed-icons {
    position: fixed;
    left: 10px;
    bottom: 40%;
    display: flex;
    flex-direction: column;
    z-index: 1000;
}

#prom-enquiry-forms .fixed-icons a {
    margin: 5px 0;
    color: #fff;
    padding: 10px 10px;
    line-height: 0px !important;
    border-radius: 30px;
    text-align: center;
    font-size: 26px;
    transition: background-color 0.3s ease;}
   

#prom-enquiry-forms .fixed-icons .phone-icon {
    background-color: #1321a6;
}
#prom-enquiry-forms .fixed-icons .whatsapp-icon {
    background-color: #27d648;
}
#prom-enquiry-forms .fixed-icons .mail-icon {
    background-color: #d90000;
}

#prom-enquiry-forms .fixed-icons a:hover {
    background-color: #000;
}

/* Popup Form Styles */
#prom-enquiry-forms .popup-form {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
    z-index: 1001;
}

#prom-enquiry-forms .form-content {
    background-color: #ffffff;
    padding: 20px;
   
    max-width: 500px;
    position: relative;
    margin: 0 10px;
    width: 100%;
}

#prom-enquiry-forms .form-content h2 {
    color: #000000;
    text-align: center;
}

#prom-enquiry-forms .close-btn {
    position: absolute;
    top: 0px;
    right: 10px;
    cursor: pointer;
    font-size: 40px;
    color: #000000;
}

#prom-enquiry-forms .popup-form form input,
#prom-enquiry-forms .popup-form form textarea {
    width: 100%;
    padding: 10px;
    margin: 6px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
}

#prom-enquiry-forms .popup-form form button {
    width: 100%;
    padding: 10px;
    background-color: #810404;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 15px;
    font-size: 18px;
    transition: background-color 0.4s ease;
}

#prom-enquiry-forms .popup-form form button:hover {
    background-color: #48914d;
}
