/*==================================================
        NEXA ELECTRICAL SOLUTIONS
        MAIN STYLESHEET
==================================================*/

/*==============================
GOOGLE FONT
==============================*/

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&family=Playfair+Display:wght@600;700&display=swap');


/*==============================
RESET
==============================*/

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    background:#ffffff;
    color:#222;
    overflow-x:hidden;
    line-height:1.7;
}

img{
    max-width:100%;
    display:block;
}

a{
    text-decoration:none;
    color:inherit;
}

ul{
    list-style:none;
}

button,
input,
textarea,
select{
    font-family:inherit;
    outline:none;
    border:none;
}


/*==============================
VARIABLES
==============================*/

:root{

    --primary:#111111;
    --secondary:#222222;
    --gold:#D4AF37;
    --gold-light:#F4D675;
    --white:#ffffff;
    --light:#f8f8f8;
    --gray:#666666;

    --shadow:0 12px 35px rgba(0,0,0,.08);

    --radius:18px;

    --transition:.35s ease;

}


/*==============================
COMMON
==============================*/

.container{

    width:90%;
    max-width:1400px;
    margin:auto;

}

.section{

    padding:110px 0;

}

.section-heading{

    text-align:center;
    margin-bottom:70px;

}

.section-heading span{

    color:var(--gold);
    font-weight:600;
    letter-spacing:1px;
    text-transform:uppercase;

}

.section-heading h2{

    font-family:'Playfair Display',serif;
    font-size:48px;
    color:var(--primary);
    margin:15px 0;

}

.section-heading p{

    max-width:700px;
    margin:auto;
    color:#666;

}


/*==============================
TOP BAR
==============================*/

.top-bar{

    background:#111;
    color:#fff;
    font-size:14px;
    padding:10px 0;

}

.top-bar-wrapper{

    display:flex;
    justify-content:space-between;
    align-items:center;

}

.top-left{

    display:flex;
    gap:25px;

}

.top-left a{

    transition:.3s;

}

.top-left a:hover{

    color:var(--gold);

}

.top-left i,
.top-right i{

    color:var(--gold);
    margin-right:8px;

}


/*==============================
HEADER
==============================*/

header{

    position:sticky;
    top:0;
    z-index:999;
    background:rgba(255,255,255,.95);
    backdrop-filter:blur(12px);
    box-shadow:0 5px 20px rgba(0,0,0,.05);

}

.navbar{

    height:90px;
    display:flex;
    justify-content:space-between;
    align-items:center;

}

.logo img{

    width:180px;

}

nav ul{

    display:flex;
    gap:35px;

}

nav ul li a{

    font-weight:500;
    color:#222;
    position:relative;
    transition:.3s;

}

nav ul li a::after{

    content:"";
    position:absolute;
    bottom:-8px;
    left:0;
    width:0;
    height:2px;
    background:var(--gold);
    transition:.35s;

}

nav ul li a:hover,
nav ul li a.active{

    color:var(--gold);

}

nav ul li a:hover::after,
nav ul li a.active::after{

    width:100%;

}

.menu-btn{

    display:none;
    font-size:28px;
    cursor:pointer;

}


/*==============================
BUTTONS
==============================*/

.primary-btn,
.secondary-btn,
.quote-btn{

    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    padding:16px 34px;
    border-radius:50px;
    font-weight:600;
    transition:var(--transition);

}

.primary-btn,
.quote-btn{

    background:linear-gradient(135deg,#D4AF37,#F4D675);
    color:#111;

}

.secondary-btn{

    border:2px solid #111;
    color:#111;
    background:#fff;

}

.primary-btn:hover,
.quote-btn:hover{

    transform:translateY(-5px);
    box-shadow:0 15px 30px rgba(212,175,55,.35);

}

.secondary-btn:hover{

    background:#111;
    color:#fff;

}


/*==============================
HERO
==============================*/

.hero{

    min-height:100vh;
    display:flex;
    align-items:center;
    background:#fff;
    position:relative;
    overflow:hidden;

}

.hero-container{

    display:grid;
    grid-template-columns:1fr 1fr;
    gap:70px;
    align-items:center;

}

.hero-tag{

    display:inline-block;
    padding:10px 18px;
    border-radius:50px;
    background:#fff7df;
    color:#b58b00;
    font-weight:600;
    margin-bottom:25px;

}

.hero-content h1{

    font-family:'Playfair Display',serif;
    font-size:68px;
    line-height:1.2;
    color:#111;

}

.hero-content h1 span{

    color:var(--gold);

}

.hero-content p{

    margin:30px 0;
    color:#666;
    font-size:18px;
    max-width:620px;

}

.hero-buttons{

    display:flex;
    gap:20px;
    margin-bottom:35px;

}

.hero-features{

    display:flex;
    flex-wrap:wrap;
    gap:18px;

}

.hero-features div{

    background:#fafafa;
    padding:12px 18px;
    border-radius:40px;
    box-shadow:var(--shadow);
    font-weight:500;

}

.hero-features i{

    color:#28a745;
    margin-right:8px;

}

.hero-image{

    position:relative;
    display:flex;
    justify-content:center;

}

.hero-image img{

    width:700px;
    position:relative;
    z-index:2;

}

.gold-circle{

    position:absolute;
    border-radius:50%;
    background:rgba(212,175,55,.15);

}

.gold-circle.one{

    width:320px;
    height:320px;
    top:20px;
    left:30px;

}

.gold-circle.two{

    width:180px;
    height:180px;
    bottom:30px;
    right:50px;

}


/*==============================
TRUST STATS
==============================*/

.trust-stats{

    margin-top:-70px;
    position:relative;
    z-index:10;

}

.stats-grid{

    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;

}

.stat-box{

    background:#fff;
    padding:35px;
    text-align:center;
    border-radius:20px;
    box-shadow:var(--shadow);
    transition:.35s;

}

.stat-box:hover{

    transform:translateY(-10px);

}

.stat-box h2{

    color:var(--gold);
    font-size:46px;
    margin-bottom:10px;

}

.stat-box p{

    color:#666;
}


/*==============================
TRUSTED BRANDS
==============================*/

.brands{

    padding:90px 0;
    background:#fafafa;

}

.brand-wrapper{

    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:40px;
    align-items:center;
    margin-top:50px;

}

.brand-wrapper img{

    width:140px;
    margin:auto;
    filter:grayscale(100%);
    transition:.35s;

}

.brand-wrapper img:hover{

    filter:none;
    transform:scale(1.08);

}

/*==================================================
                ABOUT SECTION
==================================================*/

.about{

    background:#ffffff;

}

.about-wrapper{

    display:grid;
    grid-template-columns:1fr 1fr;
    gap:80px;
    align-items:center;

}

.about-images{

    position:relative;

}

.about-images .main-image{

    width:100%;
    border-radius:25px;
    box-shadow:var(--shadow);

}


.about-content h2{

    font-family:'Playfair Display',serif;
    font-size:46px;
    margin:20px 0;
    color:#111;

}

.about-content p{

    color:#666;
    margin-bottom:30px;

}

.about-list{

    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:18px;
    margin-bottom:35px;

}

.about-list div{

    display:flex;
    align-items:center;
    gap:10px;
    font-weight:500;

}

.about-list i{

    color:var(--gold);

}


/*==================================================
                WHY CHOOSE US
==================================================*/

.why-us{

    background:#fafafa;

}

.why-grid{

    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;

}

.why-card{

    background:#fff;
    border-radius:20px;
    padding:40px 30px;
    text-align:center;
    box-shadow:var(--shadow);
    transition:.35s;
    border-top:4px solid transparent;

}

.why-card:hover{

    transform:translateY(-10px);
    border-color:var(--gold);

}

.why-card i{

    width:80px;
    height:80px;
    line-height:80px;
    border-radius:50%;
    background:linear-gradient(135deg,#D4AF37,#F4D675);
    color:#111;
    font-size:30px;
    margin-bottom:25px;

}

.why-card h3{

    margin-bottom:15px;
    color:#111;

}

.why-card p{

    color:#666;

}


/*==================================================
                SERVICES
==================================================*/

.services{

    background:#fff;

}

.services-grid{

    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:35px;

}

.service-card{

    background:#fff;
    border-radius:22px;
    overflow:hidden;
    box-shadow:var(--shadow);
    transition:.4s;

}

.service-card:hover{

    transform:translateY(-12px);

}

.service-card img{

    height:240px;
    width:100%;
    object-fit:cover;
    transition:.4s;

}

.service-card:hover img{

    transform:scale(1.08);

}

.service-content{

    padding:30px;

}

.service-content i{

    width:70px;
    height:70px;
    line-height:70px;
    text-align:center;
    border-radius:50%;
    background:linear-gradient(135deg,#D4AF37,#F4D675);
    color:#111;
    font-size:28px;
    margin-bottom:20px;

}

.service-content h3{

    margin-bottom:18px;
    color:#111;

}

.service-content ul li{

    margin-bottom:10px;
    color:#666;
    position:relative;
    padding-left:20px;

}

.service-content ul li::before{

    content:"✓";
    color:var(--gold);
    position:absolute;
    left:0;

}


/*==================================================
                PROCESS
==================================================*/

.process{

    background:#fafafa;

}

.process-wrapper{

    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;

}

.process-card{

    position:relative;
    background:#fff;
    padding:35px;
    border-radius:20px;
    text-align:center;
    box-shadow:var(--shadow);
    transition:.35s;

}

.process-card:hover{

    transform:translateY(-10px);

}

.step-number{

    position:absolute;
    top:15px;
    right:20px;
    font-size:38px;
    font-weight:700;
    color:#f3f3f3;

}

.process-card img{

    width:90px;
    margin:20px auto;

}

.process-card h3{

    margin-bottom:15px;

}

.process-card p{

    color:#666;

}


/*==================================================
                STATISTICS
==================================================*/

.statistics{

    background:#111;
    padding:100px 0;

}

.statistics-grid{

    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;

}

.stat-card{

    background:#1b1b1b;
    padding:40px 30px;
    border-radius:20px;
    text-align:center;
    border:1px solid rgba(212,175,55,.25);
    transition:.35s;

}

.stat-card:hover{

    transform:translateY(-10px);
    border-color:var(--gold);

}

.stat-card i{

    font-size:42px;
    color:var(--gold);
    margin-bottom:20px;

}

.stat-card h2{

    color:#fff;
    font-size:48px;
    margin-bottom:10px;

}

.stat-card p{

    color:#cfcfcf;

}


/*==================================================
                REVIEWS
==================================================*/

.reviews{

    background:#ffffff;

}

.reviews-grid{

    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;

}

.review-card{

    background:#fff;
    border-radius:20px;
    padding:35px;
    box-shadow:var(--shadow);
    transition:.35s;
    position:relative;

}

.review-card:hover{

    transform:translateY(-10px);

}

.quote-icon{

    width:60px;
    height:60px;
    border-radius:50%;
    background:#fff7df;
    color:var(--gold);
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:24px;
    margin-bottom:20px;

}

.stars{

    color:#ffc107;
    font-size:20px;
    margin-bottom:18px;

}

.review-card p{

    color:#666;
    line-height:1.8;
    margin-bottom:25px;

}

.review-card h4{

    color:#111;
    font-weight:600;

}

/*==================================================
                    FAQ
==================================================*/

.faq{

    background:#fafafa;

}

.faq-wrapper{

    max-width:900px;
    margin:auto;

}

.faq-item{

    background:#fff;
    margin-bottom:20px;
    border-radius:18px;
    overflow:hidden;
    box-shadow:var(--shadow);

}

.faq-question{

    width:100%;
    padding:22px 25px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    cursor:pointer;
    background:#fff;
    font-size:17px;
    font-weight:600;
    color:#111;

}

.faq-question i{

    color:var(--gold);
    transition:.3s;

}

.faq-answer{

    max-height:0;
    overflow:hidden;
    transition:max-height .4s ease;

}

.faq-answer p{

    padding:0 25px 25px;
    color:#666;

}

.faq-item.active .faq-answer{

    max-height:250px;

}

.faq-item.active .faq-question i{

    transform:rotate(45deg);

}


/*==================================================
                CTA SECTION
==================================================*/

.cta{

    padding:90px 0;
    background:#fff;

}

.cta-box{

    background:linear-gradient(135deg,#111,#2a2a2a);
    color:#fff;
    border-radius:25px;
    padding:60px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:40px;

}

.cta-content span{

    color:var(--gold);
    font-weight:600;

}

.cta-content h2{

    font-size:42px;
    margin:15px 0;

}

.cta-content p{

    color:#d6d6d6;

}

.cta-buttons{

    display:flex;
    gap:20px;
    flex-wrap:wrap;

}


/*==================================================
                CONTACT
==================================================*/

.contact{

    background:#fafafa;

}

.contact-wrapper{

    display:grid;
    grid-template-columns:1fr 1fr;
    gap:50px;
    align-items:start;

}

.contact-info{

    display:flex;
    flex-direction:column;
    gap:20px;

}

.info-card{

    display:flex;
    gap:20px;
    align-items:flex-start;
    background:#fff;
    padding:25px;
    border-radius:18px;
    box-shadow:var(--shadow);
    transition:.35s;

}

.info-card:hover{

    transform:translateY(-6px);

}

.info-icon{

    width:65px;
    height:65px;
    border-radius:50%;
    background:linear-gradient(135deg,#D4AF37,#F4D675);
    display:flex;
    justify-content:center;
    align-items:center;
    color:#111;
    font-size:24px;
    flex-shrink:0;

}

.info-card h3{

    margin-bottom:8px;

}

.info-card p,
.info-card a{

    color:#666;

}


/*==================================================
            CONTACT FORM
==================================================*/

.contact-form{

    background:#fff;
    padding:40px;
    border-radius:20px;
    box-shadow:var(--shadow);

}

.input-group{

    margin-bottom:20px;

}

.input-group.full{

    grid-column:1/-1;

}

.contact-form input,
.contact-form textarea,
.contact-form select{

    width:100%;
    padding:16px 18px;
    border:1px solid #ddd;
    border-radius:12px;
    font-size:15px;
    transition:.3s;

}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus{

    border-color:var(--gold);

}

.contact-form textarea{

    resize:vertical;

}


/*==================================================
                GOOGLE MAP
==================================================*/

.location{

    background:#fff;
    padding-bottom:100px;

}

.map-wrapper{

    overflow:hidden;
    border-radius:20px;
    box-shadow:var(--shadow);

}

.map-wrapper iframe{

    width:100%;
    height:500px;
    border:none;

}


/*==================================================
                FOOTER
==================================================*/

.footer{

    background:#111;
    color:#ddd;
    padding:80px 0 20px;

}

.footer-grid{

    display:grid;
    grid-template-columns:2fr 1fr 1fr 1fr;
    gap:40px;

}

.footer-logo{

    width:180px;
    margin-bottom:20px;

}

.footer-column h3{

    color:var(--gold);
    margin-bottom:20px;

}

.footer-column p{

    margin-bottom:15px;
    color:#bbb;

}

.footer-column ul li{

    margin-bottom:12px;

}

.footer-column ul li a{

    color:#bbb;
    transition:.3s;

}

.footer-column ul li a:hover{

    color:var(--gold);
    padding-left:8px;

}

.footer-column i{

    color:var(--gold);
    margin-right:8px;

}

.footer-social{

    display:flex;
    gap:12px;
    margin-top:20px;

}

.instagram-btn{
    display:inline-flex !important;
    align-items:center;
    justify-content:center;
    gap:10px;

    width:auto !important;
    height:48px !important;

    padding:0 20px;
    border-radius:50px !important;

    background:#E1306C !important;
    color:#fff !important;
    font-weight:600;
}

.instagram-btn:hover{
    background:#C13584 !important;
    color:#fff !important;
}

.instagram-btn i{
    color:#fff !important;
    margin-right:0;
}

.footer-social a{

    width:45px;
    height:45px;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    background:#1d1d1d;
    transition:.3s;

}

.footer-social a:hover{

    background:var(--gold);
    color:#111;

}

.footer hr{

    border:none;
    border-top:1px solid rgba(255,255,255,.08);
    margin:45px 0 25px;

}

.footer-bottom{

    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:20px;
    flex-wrap:wrap;

}

.footer-bottom a{

    color:var(--gold);
    font-weight:600;

}


/*==================================================
            FLOATING BUTTONS
==================================================*/

.floating-call,
.floating-whatsapp{

    position:fixed;
    right:25px;
    width:60px;
    height:60px;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    color:#fff;
    font-size:24px;
    box-shadow:var(--shadow);
    z-index:999;
    transition:.3s;

}

.floating-call{

    bottom:95px;
    background:#111;

}

.floating-whatsapp{

    bottom:25px;
    background:#25D366;

}

.floating-call:hover,
.floating-whatsapp:hover{

    transform:scale(1.08);

}


/*==================================================
            BACK TO TOP
==================================================*/

.back-to-top{

    position:fixed;
    left:25px;
    bottom:25px;
    width:55px;
    height:55px;
    border:none;
    border-radius:50%;
    background:var(--gold);
    color:#111;
    display:flex;
    justify-content:center;
    align-items:center;
    cursor:pointer;
    opacity:0;
    visibility:hidden;
    transition:.3s;
    z-index:999;

}

.back-to-top.show{

    opacity:1;
    visibility:visible;

}


/*==================================================
            SCROLL PROGRESS
==================================================*/

.scroll-progress{

    position:fixed;
    top:0;
    left:0;
    height:4px;
    width:0;
    background:var(--gold);
    z-index:9999;

}


/*==================================================
            REVEAL ANIMATION
==================================================*/

.hidden{

    opacity:0;
    transform:translateY(60px);

}

.show{

    opacity:1;
    transform:translateY(0);
    transition:all .8s ease;

}


/*==================================================
            CUSTOM SCROLLBAR
==================================================*/

::-webkit-scrollbar{

    width:10px;

}

::-webkit-scrollbar-track{

    background:#f2f2f2;

}

::-webkit-scrollbar-thumb{

    background:var(--gold);
    border-radius:20px;

}

::-webkit-scrollbar-thumb:hover{

    background:#b9931c;

}


/*==================================================
            TEXT SELECTION
==================================================*/

::selection{

    background:var(--gold);
    color:#111;

}

