.banner-section {
  
    padding: 50px 20px;
    background-image: url("https://images.unsplash.com/photo-1669049700424-2ee27c54341d?w=500&auto=format&fit=crop&q=60&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHx2aXN1YWwtc2VhcmNofDF8fHxlbnwwfHx8fHw%3D");
    background-size: cover;
    background-position: bottom center;
    background-repeat: no-repeat;
    background-attachment: scroll;  
    position: relative;
    display: flex;
    align-items: center;
    z-index: 0;
}

/* Black overlay */
.banner-section::before {
    content: "";
    position: absolute;
    inset: 0; /* top:0; right:0; bottom:0; left:0 */
    background-color: rgba(0, 0, 0, 0.5); /* adjust opacity as needed */
    z-index: 1;
}

/* Content container stays above overlay */
.banner-section .banner-container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1200px;
}

.banner-container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
    align-items: center;
}

/* LEFT CONTENT */
.banner-content h1 {
    font-size: 48px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.2;
    animation: slideFadeLeft 1.2s ease forwards;
}

.banner-content h1 span {
    color:#0ce5ecf8;
}

.banner-content p {
    margin-top: 20px;
    font-size: 16px;
    line-height: 1.8;
    color: #ffffff;
    max-width: 500px;
    animation: slideFadeLeft 1.6s ease forwards;
}

/* BUTTONS */
.banner-buttons {
    margin-top: 35px;
    display: flex;
    gap: 18px;
}

.btn {
    width: 250px;
    padding: 12px 50px;
    border-radius: 30px;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    transition: 0.4s;
}

/* Primary Button */
.primary-btn {
    background: linear-gradient(135deg, #1a5280, #15a3a3);
    color: #fff;
    box-shadow: 0 12px 25px rgba(25, 133, 127, 0.45);
}

.primary-btn:hover {
    transform: translateY(-4px);
    background: linear-gradient(135deg, #1e79c4, #01ffff);
    box-shadow: 0 18px 35px rgba(25, 133, 127, 0.45);
}

/* Secondary Button */
.secondary-btn {
    border: 3px solid #15a3a3;
    color: #ffffff;
    background: transparent;
}

.secondary-btn:hover {
    background: #ffffff;
    color: #000000;
}

/* RIGHT IMAGE */
.banner-image {
    position: relative;
    animation: slideFadeRight 1.4s ease forwards;
}

.banner-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 25px 60px rgba(0,0,0,0.25);
    transition: 0.5s;
}

.banner-image img:hover {
    transform: scale(1.06);
}

/* ================= ANIMATIONS ================= */
@keyframes slideFadeLeft {
    from {
        opacity: 0;
        transform: translateX(-60px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideFadeRight {
    from {
        opacity: 0;
        transform: translateX(60px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ================= RESPONSIVE ================= */
@media (max-width: 900px) {
    .banner-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .banner-content p {
        margin-left: auto;
        margin-right: auto;
    }

    .banner-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }
}


@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap');

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:'Poppins',sans-serif;
}

body{
  background: linear-gradient(90deg, #0dc7cef8, #291b6d);

}

/* HERO */
.contact-hero{
  height:60vh;
  background:url('https://images.unsplash.com/photo-1523240795612-9a054b0db644') center/cover;
  position:relative;
  display:flex;
  align-items:center;
  justify-content:center;
}

.hero-overlay{
  position:absolute;
  inset:0;
  background: #fff;
  opacity:.85;
}

.hero-content{
  position:relative;
  text-align:center;
  animation:fadeDown 1.2s ease;
}

.hero-content h1{
  font-size:3.2rem;
}

.hero-content p{
  margin-top:12px;
  font-size:1.2rem;
  color:#c7d2fe;
}

/* SECTION */
.contact-section{
  padding:90px 8%;
}

.contact-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:60px;
  
}

/* GLASS CARD */
.glass{
  background:rgba(255,255,255,0.1);
  backdrop-filter:blur(18px);
  border-radius:25px;
  padding:45px;
  box-shadow:0 25px 80px rgba(0,0,0,.4);
}

/* INFO */
.contact-info h2,
.contact-form h2{
  margin-bottom:30px;
  color:#ffffff;
}

.info-card{
  display:flex;
  gap:20px;
  margin-bottom:25px;
  transition:.4s;
}

.info-card i{
  font-size:1.8rem;
  color:#fffffff8;
}

.info-card:hover{
  transform:translateX(8px);
}

.social-links a{
  display:inline-flex;
  width:40px;
  height:40px;
  border-radius:50%;
  background:#1e293b;
  align-items:center;
  justify-content:center;
  margin-right:10px;
  color:#fff;
  transition:.4s;
}

.social-links a:hover{
  background:#22c55e;
  transform:scale(1.1);
}

/* FORM */
.input-group{
  display:flex;
  align-items:center;
  background:#020617;
  margin-bottom:20px;
  border-radius:12px;
  padding:12px;
}

.input-group i{
  margin-right:10px;
  color:#a5b4fc;
}

.input-group input,
.input-group textarea{
  background:none;
  border:none;
  outline:none;
  color:#fff;
  width:100%;
}

button{
  width:100%;
  padding:14px;
  border:none;
  border-radius:30px;
  background: linear-gradient(90deg, #0dc7cef8, #291b6d);
  color:#fff;
  font-size:1rem;
  cursor:pointer;
  transition:.4s;
}

button:hover{
  transform:translateY(-3px);
  box-shadow:0 10px 30px rgba(34,197,94,.5);
}

/* MAP */
.map-section iframe{
  width:100%;
  height:420px;
  border:none;
  filter:grayscale(80%);
}

/* ANIMATION */
@keyframes fadeDown{
  from{opacity:0;transform:translateY(-40px);}
  to{opacity:1;transform:translateY(0);}
}

/* RESPONSIVE */
@media(max-width:900px){
  .contact-grid{
    grid-template-columns:1fr;
  }
  .hero-content h1{
    font-size:2.3rem;
  }
}
/* ===============================
   WHY CONTACT SECTION
================================ */

.why-contact {
  padding-bottom: 4em;
  padding-top: 4em;
  padding-left: 4em;
  padding-right: 4em;
  background: #f8fafc;
  text-align: center;
}

.why-contact h2 {
  font-size: 36px;
  color: #1e3a8a;
}

.why-contact .sub-text {
  color: #555;
  margin: 10px 0 50px;
}

/* GRID */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

/* CARD */
.why-card {
  background: #ffffff;
  padding: 35px 25px;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
  transition: 0.4s;
}

.why-card i {
  font-size: 32px;
  color: #2563eb;
  margin-bottom: 15px;
}

.why-card h4 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #111827;
}

.why-card p {
  font-size: 15px;
  color: #555;
}

.why-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 60px rgba(37,99,235,0.25);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .why-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 500px) {
  .why-grid {
    grid-template-columns: 1fr;
  }
}
/* ===============================
   SUPPORT CHANNELS SECTION
================================ */

.support-section {
  padding-left: 4em;
  padding-bottom: 5em;
  padding-right: 4em;
  padding-top: 4em;
  background: linear-gradient(90deg, #0dc7cef8, #291b6d);
  color: #fff;
}

/* HEADER */
.support-header {
  text-align: center;
  margin-bottom: 60px;
}

.support-header h2 {
  font-size: 38px;
  margin-bottom: 10px;
}

.support-header p {
  color: #cbd5f5;
}

/* GRID */
.support-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* BOX */
.support-box {
  background: #0c1427;
  border-radius: 25px;
  padding: 40px 30px;
  position: relative;
  overflow: hidden;
  transition: 0.4s ease;
}

/* VERTICAL ACCENT */
.support-box::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 6px;
  height: 100%;
}

.support-box.email::before { background: #ffffff; }
.support-box.phone::before { background: #ffffff; }
.support-box.visit::before { background: #ffffff; }

/* TAG */
.support-box .tag {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255,255,255,0.08);
  padding: 5px 14px;
  border-radius: 50px;
  font-size: 12px;
}

/* ICON */
.support-box i {
  font-size: 40px;
  margin-bottom: 20px;
}

/* TEXT */
.support-box h3 {
  font-size: 24px;
  margin-bottom: 12px;
}

.support-box p {
  font-size: 15px;
  color: #cbd5f5;
  margin-bottom: 20px;
}

.support-box h4 {
  font-size: 16px;
  font-weight: 600;
}

/* HOVER */
.support-box:hover {
  transform: translateY(-12px);
  box-shadow: 0 30px 80px rgba(0,0,0,0.6);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .support-grid {
    grid-template-columns: 1fr;
  }
}
.solar-footer{
  background: black;
  color: #cbd5e1;
  padding: 70px 0 0;
  font-family: "Segoe UI", sans-serif;
}

.container{
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* ===== GRID ===== */
.footer-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

/* ===== BRAND ===== */
.footer-logo{
  font-size: 26px;
  color: #ffffff;
  margin-bottom: 15px;
}

.footer-logo span{
  color: #ffffff;
}

.footer-col p{
  font-size: 15px;
  line-height: 1.7;
  color: #94a3b8;
}

/* ===== SOCIAL ICONS ===== */
.footer-social{
  margin-top: 20px;
}

.footer-social a{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background: #1e293b;
  border-radius: 50%;
  color: #15a3a3;
  margin-right: 10px;
  transition: all 0.3s ease;
  font-size: 15px;
}

.footer-social a:hover{
  background: #15a3a3;
  color: #fff;
  transform: translateY(-4px);
}

/* ===== TITLES ===== */
.footer-col h4{
  font-size: 18px;
  color: #fff;
  margin-bottom: 18px;
  position: relative;
}

.footer-col h4::after{
  content: "";
  width: 40px;
  height: 3px;
  background: #15a3a3;
  position: absolute;
  left: 0;
  bottom: -6px;
}

/* ===== LINKS ===== */
.footer-col ul{
  list-style: none;
}

.footer-col ul li{
  margin-bottom: 12px;
}

.footer-col ul li a{
  color: #94a3b8;
  text-decoration: none;
  font-size: 15px;
  transition: 0.3s;
}

.footer-col ul li a:hover{
  color: #15a3a3;
  padding-left: 6px;
}

/* ===== CONTACT ===== */
.footer-col i{
  color: #ffffff;
  margin-right: 10px;
}

/* ===== BOTTOM ===== */
.footer-bottom{
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-top: 60px;
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.footer-bottom p{
  font-size: 14px;
  color: #94a3b8;
}

.footer-links a{
  color: #94a3b8;
  margin-left: 18px;
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s;
}

.footer-links a:hover{
  color: #15a3a3;
}

/* ===== RESPONSIVE ===== */
@media(max-width: 992px){
  .footer-grid{
    grid-template-columns: repeat(2, 1fr);
  }
}

@media(max-width: 576px){
  .footer-grid{
    grid-template-columns: 1fr;
  }

  .footer-bottom{
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }

  .footer-links a{
    margin: 0 8px;
  }
}
/* =====================s
   MAP SECTION
===================== */

.map-section {
  padding-left: 4em;
  padding-right: 4em;
  padding-bottom: 4em;
  padding-top: 5em;
  background: #f4f7fb;
}

.map-container {
  position: relative;
  width: 100%;
  height: 420px;
  border-radius: 25px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0,0,0,0.2);
}

/* MAP */
.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: grayscale(100%);
}

/* OVERLAY */
.map-overlay {
  position: absolute;
  bottom: 30px;
  left: 30px;
  background: rgba(255,255,255,0.95);
  padding: 25px 30px;
  border-radius: 18px;
  max-width: 300px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.map-overlay h3 {
  margin-bottom: 8px;
  font-size: 22px;
  color: #1e3a8a;
}

.map-overlay p {
  font-size: 14px;
  color: #555;
  margin-bottom: 15px;
}

/* BUTTON */
.map-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #2563eb;
  color: #fff;
  padding: 10px 18px;
  border-radius: 30px;
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s;
}

.map-btn:hover {
  background: #1e40af;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .map-container {
    height: 300px;
  }

  .map-overlay {
    left: 15px;
    right: 15px;
    max-width: none;
  }
}
