/* topbar start */
/* ===== RESET ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

/* ===== TOPBAR ===== */
.topbar {
    background: linear-gradient(90deg, #EB3134, #047A40);
    padding: 0.2rem 0;
}

.container {
    max-width: 1200px;
    margin: auto;
    padding: 0 1rem;
}

.topbar-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Remove underline everywhere */
.topbar a {
    text-decoration: none;
    color: #fff;
}

/* Left */
.topbar-left a {
    font-size: 0.9rem;
    margin-right: 0.7rem;
}

.topbar-left span {
    margin: 0 0.5rem;
}

.topbar-left i {
    margin-right: 0.3rem;
}

/* Right */
.topbar-right a {
    margin-left: 0.6rem;
    font-size: 0.9rem;
    width: 32px;
    height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    transition: 0.3s;
}

.topbar-right a:hover {
    background: #fff;
    color: #EB3134;
}

/* ===== RESPONSIVE ===== */
@media(max-width:768px) {

    /* Hide Email on Mobile */
    .topbar-left a.email {
        display: none;
    }

}
/* Show only first phone number on mobile */
@media(max-width:768px){

  .topbar-left a:nth-child(1){
    display:inline-block;   /* first number show */
  }

  .topbar-left span.divider,
  .topbar-left a:nth-child(3){
    display:none;   /* divider + second number hide */
  }

}

/* topbar end */

/* navbar start */
/* ===== NAVBAR ===== */
.logo-text {
    font-family: 'Poppins', sans-serif;
    font-size: 22px;
    /* Reduced size */
    font-weight: 700;
    letter-spacing: 0.5px;
    line-height: 1.1;
    margin: 0;
    text-decoration: none;
}

.logo-text .green {
    color: #047A40;
}

.logo-text .red {
    color: #EF383D;
}

.logo-text .small {
    font-size: 16px;
    letter-spacing: 1px;
}

.site-logo {
    height: 55px;
    width: auto;
}

@media(max-width:768px) {
    .site-logo {
        height: 45px;
    }
}

.navbar {
    background: #fff;
    padding: 14px 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 999;
    transition: 0.3s;
}

.navbar-brand {
    font-size: 26px;
    font-weight: 700;
    color: #047A40;
    letter-spacing: 1px;
}

.navbar-brand span {
    color: #EF383D;
}

/* MENU LINKS */
.navbar-nav .nav-link {
    color: #047A40;
    font-weight: 600;
    margin: 0 10px;
    position: relative;
    transition: 0.3s;
}

/* Underline Hover Effect */
.navbar-nav .nav-link::after {
    content: "";
    width: 0%;
    height: 2px;
    background: #EF383D;
    position: absolute;
    left: 0;
    bottom: -6px;
    transition: 0.3s;
}

.navbar-nav .nav-link:hover::after {
    width: 100%;
}

.navbar-nav .nav-link:hover {
    color: #EF383D;
}

/* BUTTON */
.enquiry-btn {
    background: linear-gradient(45deg, #EF383D, #047A40);
    color: #fff;
    padding: 9px 22px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.enquiry-btn i {
    margin-right: 6px;
}

.enquiry-btn:hover {
    background: linear-gradient(45deg, #047A40, #EF383D);
    color: #fff;
    transform: translateY(-2px);
}

/* MOBILE */
.navbar-toggler {
    border: none;
}

.navbar-toggler:focus {
    box-shadow: none;
}

/* navbar end */

/* crousel start */
.hero-video-section {
    position: relative;
    height: 85vh;
    min-height: 450px;
    overflow: hidden;
    font-family: "Poppins", sans-serif;
}

.hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    padding: 0 16px;
}

/* ===== ANIMATED HEADING ===== */
.ml10 {
    font-weight: 700;
    font-size: 48px;
    margin-bottom: 14px;
}

.ml10 .text-wrapper {
    display: inline-block;
    overflow: hidden;
}

.ml10 .letter {
    display: inline-block;
    transform-origin: 0 0;
}

.highlight {
    color: #bee71b;
}

.hero-content p {
    font-size: 18px;
    max-width: 680px;
    margin-bottom: 28px;
    color: #eaeaea;
    transition: 0.4s;
}

/* BUTTON */
.hero-btn {
    padding: 14px 38px;
    border-radius: 40px;
    font-size: 15px;
    font-weight: 700;
    background: #bee71b;
    color: #1b1b1b;
    text-decoration: none;
    box-shadow: 0 14px 35px rgba(190, 231, 27, 0.45);
    transition: 0.35s ease;
}

.hero-btn:hover {
    background: #a9cf18;
    transform: translateY(-3px);
    color: #000;
}

/* MOBILE */
@media (max-width: 768px) {
    .hero-video-section {
        height: 20px;
    }

    .ml10 {
        font-size: 26px;
    }

    .hero-content p {
        font-size: 15px;
    }
}


/* ================= HERO CAROUSEL ================= */

.solar-carousel{
  position:relative;
  width:100%;
  height:85vh;
  overflow:hidden;
}

/* Slides */

.solar-slide{
  position:absolute;
  inset:0;
  background-size:cover;
  background-position:center;
  opacity:0;
  transform:scale(1.05);
  transition:opacity 1s ease, transform 1s ease;
}

.solar-slide.active{
  opacity:1;
  transform:scale(1);
}

/* ================= ARROWS ================= */

.solar-btn{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  background:rgba(0,0,0,0.4);
  border:none;
  color:#fff;
  font-size:26px;
  padding:12px 18px;
  cursor:pointer;
  z-index:5;
  transition:.3s;
}

.solar-btn:hover{
  background:rgba(0,0,0,0.7);
}

.solar-btn.prev{ left:20px; }
.solar-btn.next{ right:20px; }

/* ================= MOBILE ================= */

@media(max-width:768px){
  .solar-carousel{
    height:18vh;
  }
}

/* crousel end */
/* crousel end */

/* about start */
.solar-about-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #f3fbf6, #ffffff);
    font-family: "Segoe UI", sans-serif;
}

/* Subtitle */
.about-subtitle {
    color: #ef383d;
    font-weight: 600;
    letter-spacing: 1px;
}

/* Title */
.about-title {
    font-size: 2.4rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.about-title span {
    background: linear-gradient(45deg, #047a40, #ef383d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Text */
.about-text {
    font-size: 1rem;
    color: #555;
    line-height: 1.7;
}

/* Image */
.about-img-box {
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.about-img-box img {
    transition: 0.4s ease;
}

.about-img-box:hover img {
    transform: scale(1.06);
}

/* Feature Box */
.about-feature {
    background: #fff;
    padding: 14px 18px;
    border-radius: 10px;
    font-weight: 500;
    box-shadow: 0 5px 12px rgba(0, 0, 0, 0.08);
    transition: 0.3s;
}

.about-feature:hover {
    background: linear-gradient(45deg, #047a40, #ef383d);
    color: #fff;
    transform: translateY(-5px);
}

/* PREMIUM BUTTON */
.about-btn {
    background: linear-gradient(45deg, #047a40, #ef383d);
    color: #fff;
    padding: 13px 36px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: 0.4s ease;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
}

.about-btn i {
    font-size: 18px;
}

.about-btn:hover {
    color: #fff;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.35);
}

/* about end */

/* why choose us start */
/* ===============================
   WHY CHOOSE US STYLING
================================ */

.why-choose-section {
    padding: 20px 0;
    background: #ffffff;
    font-family: 'Segoe UI', sans-serif;
}

/* Heading */

.choose-subtitle {
    color: #EF383D;
    font-weight: 600;
    letter-spacing: 1px;
}

.choose-title {
    font-size: 2.3rem;
    font-weight: 700;
}

.choose-title span {
    background: linear-gradient(45deg, #047A40, #EF383D);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Boxes */

.choose-box {
    background: #f3fbf6;
    padding: 35px 25px;
    text-align: center;
    border-radius: 16px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
    transition: 0.4s ease;
    height: 100%;
}

.choose-box i {
    font-size: 45px;
    color: #047A40;
    margin-bottom: 15px;
}

.choose-box h5 {
    font-weight: 600;
    margin-bottom: 10px;
}

.choose-box p {
    font-size: 0.95rem;
    color: #555;
}

/* Hover */

.choose-box:hover {
    background: linear-gradient(45deg, #047A40, #EF383D);
    color: #fff;
    transform: translateY(-10px);
}

.choose-box:hover i,
.choose-box:hover p {
    color: #fff;
}

/* why choose us end */

/* services start */
/* SECTION */
.premium-services {
    padding: 100px 0;
    background: linear-gradient(180deg, #fdfdfd, #f3fbf6);
}

/* HEADING */
.services-subtitle {
    color: #DE322D;
    font-weight: 600;
}

.services-title {
    font-size: 2.5rem;
    font-weight: 700;
}

.services-title span {
    background: linear-gradient(45deg, #DE322D, #306E40);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.services-desc {
    color: #666;
}

/* CARD */
.premium-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: 0.4s;
    text-align: center;
}

.premium-card:hover {
    transform: translateY(-10px);
}

/* IMAGE */
.service-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

/* CONTENT */
.premium-card h5 {
    margin: 20px 0 10px;
    font-weight: 600;
}

.premium-card p {
    padding: 0 20px;
    color: #555;
}

/* BUTTON */
.service-btn {
    display: inline-block;
    margin: 20px 0 25px;
    padding: 10px 28px;
    background: linear-gradient(45deg, #DE322D, #306E40);
    color: #fff;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
}

.service-btn i {
    margin-right: 6px;
}

.service-btn:hover {
    transform: scale(1.05);
    color: #fff;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* services end */

/* banner start */
/* ===============================
   CTA BANNER
================================ */

.solar-cta {
    padding: 100px 0;
    background:
        linear-gradient(45deg, rgba(222, 50, 45, 0.85), rgba(48, 110, 64, 0.85)),
        url("images/bg.avif");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.solar-cta h2 {
    font-size: 2.8rem;
    font-weight: 700;
}

.solar-cta h2 span {
    color: #fff;
    text-decoration: underline;
}

.solar-cta p {
    margin: 20px auto;
    max-width: 650px;
    font-size: 1.1rem;
    opacity: 0.95;
}

/* Buttons */

.cta-buttons {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cta-btn {
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
}

.whatsapp-btn {
    background: #25D366;
    color: #fff;
}

.call-btn {
    background: #fff;
    color: #306E40;
}

.cta-btn i {
    margin-right: 8px;
}

.cta-btn:hover {
    transform: scale(1.08);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* banner end */

.solar-testimonials {
    padding: 100px 0;
    background: #f3fbf6;
}

/* Heading */

.testi-subtitle {
    color: #DE322D;
    font-weight: 600;
}

.testi-title {
    font-size: 2.5rem;
    font-weight: 700;
}

.testi-title span {
    background: linear-gradient(45deg, #DE322D, #306E40);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Card */

.testi-card {
    background: #fff;
    padding: 35px;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    transition: 0.4s;
    height: 100%;
}

.testi-card:hover {
    transform: translateY(-10px);
}

.testi-card p {
    color: #555;
    font-style: italic;
}

/* User */

.testi-user {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 20px;
}

.testi-user img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.testi-user h6 {
    margin: 0;
    font-weight: 600;
}

.testi-user span {
    font-size: 14px;
    color: #777;
}

/* Stars */

.stars {
    margin-top: 15px;
    color: #f4b400;
    font-size: 18px;
}

/* footer start */
/* ===============================
   FOOTER STYLING
================================ */

.solar-footer {
    background: linear-gradient(45deg, #DE322D, #306E40);
    color: #fff;
    padding: 80px 0 20px;
    font-family: 'Segoe UI', sans-serif;
}

.footer-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.solar-footer p {
    font-size: 0.95rem;
    line-height: 1.7;
}

/* LINKS */

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    transition: 0.3s;
}

.footer-links a:hover {
    padding-left: 5px;
    color: #ffdede;
}

/* SOCIAL ICONS */

.footer-social {
    margin-top: 15px;
}

.footer-social a {
    display: inline-flex;
    width: 38px;
    height: 38px;
    align-items: center;
    justify-content: center;
    background: #fff;
    color: #306E40;
    border-radius: 50%;
    margin-right: 8px;
    transition: 0.3s;
    text-decoration: none;
}

.footer-social a:hover {
    background: #000;
    color: #fff;
    transform: translateY(-4px);
}

/* ICONS IN CONTACT */

.solar-footer i {
    margin-right: 1px;
}

/* BOTTOM BAR */

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    margin-top: 40px;
    padding-top: 15px;
    text-align: center;
    font-size: 0.9rem;
}

/* RESPONSIVE */

@media(max-width:768px) {
    .footer-title {
        margin-top: 20px;
    }
}

/* footer end */

/* contact start */
.contact-section {
    padding: 100px 20px;
    background: linear-gradient(180deg, #ffffff, #e9f7f0);
}

/* Container */
.container {
    max-width: 1200px;
    margin: auto;
}

/* Header */
.contact-header {
    text-align: center;
    margin-bottom: 60px;
}

.contact-header h2 {
    font-size: 42px;
    color: #1f2933;
    margin-bottom: 10px;
}

.contact-header p {
    color: #667777;
    font-size: 17px;
}

/* Layout */
.contact-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
    align-items: center;
}

/* Info Cards */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.info-box {
    display: flex;
    gap: 20px;
    align-items: center;
    padding: 25px 30px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(12px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    border-left: 5px solid #de322d;
    transition: 0.3s;
}

.info-box:hover {
    transform: translateY(-6px);
}

.info-box i {
    font-size: 28px;
    color: #de322d;
}

.info-box h4 {
    color: #de322d;
    font-size: 20px;
    margin-bottom: 6px;
}

.info-box p {
    color: #444;
}

/* Form Card */
.contact-form {
    background: #ffffff;
    padding: 50px;
    border-radius: 18px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

/* Floating Inputs */
.form-group {
    position: relative;
    margin-bottom: 28px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 14px;
    border: 1px solid #cfd8dc;
    border-radius: 8px;
    font-size: 15px;
    outline: none;
}

.form-group label {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    background: #fff;
    padding: 0 6px;
    color: #777;
    font-size: 14px;
    pointer-events: none;
    transition: 0.3s;
}

.form-group textarea {
    height: 120px;
    resize: none;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #306e40;
}

.form-group input:focus+label,
.form-group input:not(:placeholder-shown)+label,
.form-group textarea:focus+label,
.form-group textarea:not(:placeholder-shown)+label {
    top: -8px;
    font-size: 12px;
    color: #306e40;
}

/* Button */
.contact-form button {
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: 30px;
    font-size: 16px;
    color: #fff;
    background: linear-gradient(45deg, #de322d, #306e40);
    cursor: pointer;
    transition: 0.3s;
}

.contact-form button:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
    transform: translateY(-2px);
}

/* Responsive */
@media(max-width:768px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .contact-header h2 {
        font-size: 32px;
    }

    .contact-form {
        padding: 35px;
    }
}

/* contact end */