@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap");

body {
    font-family: 'Poppins', sans-serif;
    background: #ffffff;
}

p {
    font-size: 15px;
}

@media (min-width: 1400px) {
    .container {
        max-width: 1290px;
    }
}

/* Navbar */
.header-logo {
    height: 85px;
    object-fit: contain;
}

/* Desktop Nav Links */
.nav-link-custom {
    font-size: 14px;
    font-weight: 500;
    color: #1f2937;
    text-decoration: none;
    transition: color 0.3s ease;
}

.nav-link-custom:hover {
    color: #00b3b3;
}

/* Mobile Nav Links */
.nav-link-mobile {
    font-size: 15px;
    font-weight: 500;
    color: #1f2937;
    text-decoration: none;
    padding-bottom: 10px;
    border-bottom: 1px solid #e5e7eb;
}

.nav-link-mobile:hover {
    color: #00b3b3;
}

/* CTA Button */
.btn-header-cta {
    padding: 12px 28px;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    border: none;
    border-radius: 10px;
    cursor: pointer;

    /* Gradient */
    background: linear-gradient(90deg, #6a6df0, #2b51b6);

    /* Shadow */
    box-shadow: 0 6px 15px rgba(106, 109, 240, 0.35);

    /* Smooth hover */
    transition: all 0.3s ease;
}

.btn-header-cta:hover {
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(106, 109, 240, 0.45);
}

@media (max-width: 768px) {
    .header-logo {
        height: 55px;
    }
}

@media (max-width: 991px) {
    #global-header .btn {
        padding: 6px 10px;
    }

    #global-header .fa-bars {
        font-size: 26px;
    }

    .btn-header-cta {
        width: 100%;
        text-align: center;
        padding: 12px;
        font-size: 15px;
    }
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    background: url('/images/solar.jpg') no-repeat center center/cover;
}

/* Dark Overlay */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
}

/* Badge */
.hero-badge {
    display: inline-block;
    background: rgba(255,255,255,0.1);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 14px;
    backdrop-filter: blur(6px);
}

/* Title */
.hero-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
}

.hero-title span {
    color: #fab605f2;
}

/* Description */
.hero-desc {
    max-width: 650px;
    margin: 15px auto;
    font-size: 18px;
    color: #ddd;
}

/* Buttons */
.btn-primary-custom {
    background: linear-gradient(90deg, #6a6df0, #2b51b6);;
    color: #fff;
    padding: 12px 22px;
    border-radius: 8px;
}

.btn-primary-custom:hover {
    background: #2b51b6;
    color: #fff;
}

/* Stats */
.hero-stats h3 {
    font-size: 32px;
    font-weight: bold;
}

.hero-stats p {
    font-size: 14px;
    color: #ccc;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 32px;
    }

    .hero-desc {
        font-size: 16px;
    }

    .hero-buttons a {
        display: block;
        margin: 10px auto;
    }
}

/* Section */
.about-section {
    background: #f8f9fa;
}

/* Image */
.about-img {
    width: 100%;
    max-width: 500px;   /* fixed clean size */
    border-radius: 20px;
}

/* Floating Card */
.about-card {
    position: absolute;
    bottom: -20px;
    right: 30px;
    background: #fff;
    padding: 15px 20px;
    border-radius: 12px;
}

.about-card .icon {
    color: #fab605f2;
    font-size: 20px;
}

/* Title */
.about-title {
    font-size: 36px;
    font-weight: 700;
}

.about-title span {
    color: #fab605f2;
}

/* Features */
.feature {
    font-size: 15px;
    color: #333;
}

.feature small {
    color: #777;
}

/* CTA */
.learn-more {
    color: #fab605f2;
    font-weight: 600;
    text-decoration: none;
}

.learn-more:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
    .about-title {
        font-size: 28px;
    }

    .about-card {
        position: static;
        margin-top: 15px;
    }
}

/* Section */
.services-section {
    background: #f9fafb;
}

/* Heading */
.section-subtitle {
    color: #fab605f2;
    font-weight: 600;
    font-size: 14px;
}

.section-title {
    font-size: 40px;
    font-weight: 700;
    color: #0f172a;
}

.section-title span {
    color: #fab605f2;
}

.section-desc {
    max-width: 600px;
    margin: 10px auto 0;
    color: #6b7280;
    font-size: 16px;
}

/* Card */
.service-card {
    position: relative;
    padding: 30px;
    border-radius: 16px;
    border: 1px solid #e5e7eb;
    transition: 0.3s;
    background-size: cover;
    background-position: center;
    overflow: hidden;
    z-index: 1;
}

/* overlay */
.service-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,67%);
    backdrop-filter: blur(1px);
    z-index: -1;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

/* background images */
.piling-bg {
    background-image: url('/images/img8.jpg');
}

.acdc-bg {
    background-image: url('/images/img2.jpg');
}

.earthing-bg {
    background-image: url('/images/img4.jpg');
}

.mounting-bg {
    background-image: url('/images/img6.jpg');
}

.commissioning-bg {
    background-image: url('/images/img7.jpg');
}

/* Icon */
.icon-box {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #fff;
    margin-bottom: 15px;
}

.icon-box.green {
    background: linear-gradient(135deg, #16a34a, #22c55e);
}

.icon-box.blue {
    background: linear-gradient(135deg, #2563eb, #06b6d4);
}

.icon-box.yellow {
    background: linear-gradient(135deg, #f59e0b, #84cc16);
}

/* Text */
.service-card h4 {
    font-weight: 600;
    margin-bottom: 10px;
    color: #111827;
}

.service-card p {
    color: #000000;
    font-size: 15px;
}

/* List */
.service-card ul {
    padding-left: 0;
    list-style: none;
    margin-top: 15px;
}

.service-card ul li {
    font-size: 14px;
    margin-bottom: 8px;
    color: #374151;
}

/* CTA */
.learn-more {
    display: inline-block;
    margin-top: 15px;
    font-weight: 600;
    color: #fab605f2;
    text-decoration: none;
}

.learn-more:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
    .section-title {
        font-size: 28px;
    }
}

/* Section Background */
.why-section {
    background: linear-gradient(135deg, #0f172a, #064e3b);
    color: #fff;
}

/* Badge */
.why-badge {
    display: inline-block;
    background: rgba(255,255,255,0.1);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 14px;
    backdrop-filter: blur(6px);
}

/* Title */
.why-title {
    font-size: 42px;
    font-weight: 700;
}

.why-title span {
    color: #22c55e;
}

/* Description */
.why-desc {
    max-width: 600px;
    margin: 10px auto 0;
    color: #cbd5f5;
}

/* Cards */
.why-card {
    background: rgba(255,255,255,0.05);
    padding: 30px;
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.1);
    transition: 0.3s;
    height: 100%;
}

.why-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

/* Icons */
.icon-box {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 15px;
    color: #fff;
}

.icon-box.green {
    background: linear-gradient(135deg, #22c55e, #16a34a);
}

.icon-box.blue {
    background: linear-gradient(135deg, #3b82f6, #06b6d4);
}

.icon-box.yellow {
    background: linear-gradient(135deg, #f59e0b, #84cc16);
}

/* Text */
.why-card h5 {
    font-weight: 600;
    margin-bottom: 10px;
}

.why-card p {
    color: #cbd5f5;
    font-size: 15px;
}

/* Responsive */
@media (max-width: 768px) {
    .why-title {
        font-size: 28px;
    }
}

.why-cta-card{
    background: linear-gradient(135deg,#21c58e,#2fa36c);
    padding:40px 30px;
    border-radius:18px;
    color:white;
    text-align:center;
    height:100%;

    display:flex;
    flex-direction:column;
    justify-content:center;
}

.why-cta-card h4{
    font-size:22px;
    font-weight:600;
    margin-bottom:10px;
}

.why-cta-card p{
    opacity:0.95;
    margin-bottom:20px;
}

.cta-btn{
    background:white;
    color:#1e7c63;
    padding:8px 14px;
    border-radius:8px;
    text-decoration:none;
    font-weight:600;
    font-size:14px;

    display:inline-flex;
    align-items:center;
    gap:6px;

    width:auto;          /* important */
    max-width:160px;     /* control width */
    margin:auto;         /* center button */
}

.cta-btn i{
    font-size:12px;     /* smaller icon */
}

.cta-btn:hover{
    background:#f4f4f4;
}

.project-section{
    background:#eaf3f1;
}

.project-badge{
    font-size:14px;
    color:#1e7c63;
    font-weight:600;
}

.project-title{
    font-size:38px;
    font-weight:700;
    margin-bottom:10px;
}

.project-title span{
    color:#fab605f2;
}

.project-desc{
    color:#6c7a7a;
    max-width:600px;
    margin:auto;
}

/* card */

.project-card{
    position:relative;
    border-radius:16px;
    overflow:hidden;
    height:260px;
}

.project-card img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:0.4s;
}

.project-card:hover img{
    transform:scale(1.05);
}


/* overlay */

.project-overlay{
    position:absolute;
    bottom:0;
    left:0;
    width:100%;
    padding:20px;
    color:white;

    background:linear-gradient(
        to top,
        rgba(0,0,0,0.75),
        rgba(0,0,0,0.05)
    );
}

.project-overlay h5{
    margin:8px 0 4px;
    font-size:18px;
}

.project-overlay p{
    margin:0;
    font-size:14px;
    opacity:0.9;
}


/* tag */

.project-tag{
    font-size:12px;
    padding:4px 10px;
    border-radius:20px;
    display:inline-block;
    font-weight:600;
}

.project-tag.green{
    background:#2bb673;
}

.project-tag.blue{
    background:#3b82f6;
}

.solar-cta-section{
    padding:90px 20px;
    background: linear-gradient(135deg,#0f766e,#065f5b);
    color:white;
    position:relative;
    overflow:hidden;
}

/* dotted pattern */
.solar-cta-section::before{
    content:"";
    position:absolute;
    width:100%;
    height:100%;
    top:0;
    left:0;
    background-image: linear-gradient(90deg, #6a6df0, #2b51b6);
    background-size:22px 22px;
    opacity:.25;
}

/* container */
.solar-cta-section .container{
    max-width:900px;
    margin:auto;
    position:relative;
    z-index:2;
}

/* badge */
.cta-badge{
    display:inline-block;
    background:rgba(255,255,255,0.15);
    padding:8px 18px;
    border-radius:30px;
    font-size:14px;
    margin-bottom:25px;
}

/* title */
.cta-title{
    font-size:42px;
    font-weight:700;
    margin-bottom:20px;
}

.cta-title span{
    color:#c59412;
}

/* description */
.cta-desc{
    font-size:18px;
    line-height:1.7;
    opacity:.9;
    margin-bottom:35px;
}

/* buttons */
.cta-buttons{
    display:flex;
    justify-content:center;
    gap:15px;
    flex-wrap:wrap;
    margin-bottom:35px;
}

.btn-primary{
    background:white;
    color:#065f5b;
    padding:14px 28px;
    border-radius:8px;
    text-decoration:none;
    font-weight:600;
    transition:.3s;
}

.btn-primary:hover{
    transform:translateY(-2px);
    box-shadow:0 8px 20px rgba(0,0,0,0.2);
}

.btn-outline{
    border:1px solid rgba(255,255,255,0.5);
    color:white;
    padding:14px 28px;
    border-radius:8px;
    text-decoration:none;
    font-weight:600;
    transition:.3s;
}

.btn-outline:hover{
    background:rgba(255,255,255,0.1);
}

/* divider */
.cta-divider{
    border:none;
    border-top:1px solid rgba(255,255,255,1.2);
    margin:40px 0 25px;
}

/* features */
.cta-features{
    display:flex;
    justify-content:center;
    gap:30px;
    font-size:15px;
    opacity:.9;
    flex-wrap:wrap;
}

/* section */
.contact-section{
    padding:80px 20px;
    background:#f4f7f7;
    font-family:'Inter', sans-serif;
}

/* container */
.contact-wrapper{
    max-width:1150px;
    margin:auto;
}

/* grid */
.contact-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:40px;
    align-items:start;
}

/* small title */
.small-title{
    color:#0f766e;
    font-size:14px;
    margin-bottom:8px;
    font-weight:600;
}

/* heading */
.contact-info h2{
    font-size:38px;
    margin-bottom:15px;
    font-weight:700;
    color:#1f2937;
}

.contact-info h2 span{
    color:#d09e22;
}

.contact-info p{
    color:#5f6b6b;
    margin-bottom:28px;
    line-height:1.6;
    font-size:15px;
}

/* info card */
.info-box{
    display:flex;
    align-items:center;
    gap:14px;
    background:#edf4fb;
    border:1px solid #cfe1df;
    padding:14px 18px;
    border-radius:14px;
    margin-bottom:18px;
}

/* icon */
.icon{
    width:44px;
    height:44px;
    min-width:44px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:12px;
    color:#fff;
    font-size:18px;
}

/* icon colors */
.phone{ background:#157a74; }
.email{ background:#3b82f6; }
.location{ background:#22c55e; }
.time{ background:#f59e0b; }

/* text */
.info-box h4{
    margin:0;
    font-size:16px;
    font-weight:600;
    color:#1f2937;
}

.info-box p{
    margin:2px 0 0 0;
    font-size:14px;
    color:#6b7280;
}

/* form */
.contact-form{
    background:#edf4fb;
    padding:32px;
    border-radius:16px;
    box-shadow:0 8px 20px rgba(0,0,0,0.04);
}

/* form title */
.contact-form h3{
    font-size:26px;
    font-weight:700;
    color:#1f2937;
    margin-bottom:22px;
}

/* labels */
.contact-form label{
    font-size:14px;
    font-weight:500;
    color:#374151;
    margin-bottom:6px;
    display:block;
}

/* inputs */
.contact-form input,
.contact-form textarea{
    width:100%;
    padding:12px 14px;
    border-radius:8px;
    border:1px solid #d6e2e1;
    font-size:14px;
    font-family:'Inter', sans-serif;
    background:#f9fbfb;
    color:#374151;
    margin-bottom:14px;
}

/* placeholder */
.contact-form input::placeholder,
.contact-form textarea::placeholder{
    color:#9ca3af;
}

/* focus */
.contact-form input:focus,
.contact-form textarea:focus{
    border-color:#0f766e;
    outline:none;
    background:#fff;
}

/* button */
.contact-form button{
    width:100%;
    margin-top:10px;
    padding:14px;
    border:none;
    border-radius:8px;
    background:linear-gradient(90deg, #6a6df0, #2b51b6);
    color:white;
    font-size:15px;
    font-weight:600;
    cursor:pointer;
    transition:0.3s;
}

.contact-form button:hover{
    background:#2b51b6;
}

/* responsive */
@media(max-width:900px){

    .contact-grid{
        grid-template-columns:1fr;
        gap:30px;
    }

    .contact-info h2{
        font-size:30px;
    }

}

.footer{
    background:#edf4fb;
    color:#0f1f2e;
    padding-top:60px;
    font-family:'Inter', sans-serif;
}

.footer-container{
    max-width:1290px;
    margin:auto;
    display:grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap:40px;
    padding:0 20px 50px;
}

/* logo */
.footer-logo{
    height:80px;
    margin-bottom:10px;
}

.footer-text{
    line-height:1.7;
    margin-bottom:20px;
    color:#94a3b8;
}

/* headings */
.footer-col h4{
    color:#0f1f2e;
    margin-bottom:18px;
    font-size:18px;
}

/* links */
.footer-col ul{
    list-style:none;
    padding:0;
}

.footer-col ul li{
    margin-bottom:12px;
}

.footer-col ul li a{
    color:#94a3b8;
    text-decoration:none;
    font-size:15px;
    transition:.3s;
}

.footer-col ul li a:hover{
    color:#3254bc;
    padding-left:4px;
}

/* contact */
.contact-item{
    margin-bottom:14px;
    color:#94a3b8;
    font-size:15px;
}

.contact-item i{
    margin-right:10px;
    color:#3254bc;
}

/* social icons */
.social-icons{
    display:flex;
    gap:10px;
}

.social-icons a{
    width:36px;
    height:36px;
    background:#1e293b;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:8px;
    color:#fff;
    font-size:14px;
    transition:.3s;
}

.social-icons a:hover{
    background:#3254bc;
}

/* bottom bar */
.footer-bottom{
    border-top:1px solid #1e293b;
    padding:20px;
    display:flex;
    justify-content:center;
    align-items:center;
    max-width:1290px;
    margin:auto;
    color:#64748b;
    font-size:14px;
}

.footer-links a{
    margin-left:20px;
    color:#64748b;
    text-decoration:none;
}

.footer-links a:hover{
    color:#3254bc;
}

/* responsive */
@media (max-width: 1100px){

.footer-container{
    grid-template-columns: 1fr 1fr;
    gap:30px;
}

.footer-logo{
    height:70px;
}

}


/* mobile */
@media (max-width: 600px){

.footer{
    padding-top:40px;
}

/* single column */
.footer-container{
    grid-template-columns: 1fr;
    gap:25px;
    text-align:left;
}

/* logo center */
.footer-col:first-child{
    text-align:center;
}

.footer-logo{
    height:65px;
}

/* links spacing */
.footer-col ul li{
    margin-bottom:10px;
}

/* contact spacing */
.contact-item{
    font-size:14px;
}

/* bottom bar */
.footer-bottom{
    padding:15px 10px;
    font-size:13px;
    text-align:center;
}

}
