:root {
  --green: #2ecc71;
  --dark-blue: #123b6d;
  --light-green: #eafaf1;
  --white: #ffffff;
  --gray: #f5f5f5;
}
/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

/* COLORS */
:root {
  --green: #2ecc71;
  --dark-blue: #0a2540;
  --light-green: #eafaf1;
  --white: #ffffff;
  --gray: #f5f5f5;
}

.navbar {
    position: sticky;
    top: 0;
    z-index: 9999;

    display: flex;
    align-items: center;
    justify-content: space-between;

    width: 100%;
    box-sizing: border-box;

    padding: 2px 5%;

    background-color: #ffffff;

    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
/* Logo */

.logo img {
    width: 110px;
    height: auto;
    display: block;
}

/* Navigation */

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
    margin: 0;
    padding: 0;
}

.nav-links a {
    text-decoration: none;
    color: var(--green);
    font-weight: 500;
    transition: 0.3s;
}

.nav-links a:hover {
    color: var(--dark-blue);
}

/* Phone */

.nav-phone {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-phone i {
    color: var(--green);
}

.nav-phone a {
    text-decoration: none;
    color: var(--green);
    font-weight: 600;
}

.nav-phone a:hover {
    color: var(--dark-blue);
}

/* HERO */
.hero {
    height: 90vh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* background image layer */
.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;

    background: url('images/se2.jpg') no-repeat center/cover;

    animation: zoom 10s ease-in-out infinite;
    z-index: -1;
}

/* dark overlay  */
.hero::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.4);
    z-index: 0;
}

/* text stays above everything */
.hero-text {
    position: relative;
    z-index: 1;
    color: white;
}

/* animation */
@keyframes zoom {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

.hero h1 {
  font-size: 3rem;
}

.hero p {
  margin: 20px 0;
}

.btn {
  padding: 10px 20px;
  background: var(--green);
  color: white;
  text-decoration: none;
  border-radius: 5px;
}

.btn:hover {
  background: #27ae60;
}
@media (max-width: 768px) {
  .nav-links {
    flex-direction: column;
    background: var(--dark-blue);
    position: absolute;
    top: 70px;
    right: 0;
    width: 100%;
    display: none;
  }

  .hero h1 {
    font-size: 2rem;
  }
}

.overview-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 60px 20px;
    gap: 40px;
    max-width: 1100px;
    margin: auto;
}

/* LEFT SIDE TEXT */
.overview-text {
    flex: 1;
    text-align: left;
}

.overview-text h2 {
    color: #2e7d32;
    margin-bottom: 20px;
}

.overview-text p {
    margin-bottom: 15px;
    color: #444;
    line-height: 1.6;
}

/* RIGHT SIDE IMAGE */
.overview-image {
    flex: 1;
    text-align: center;
}

.overview-image img {
    width: 100%;
    max-width: 450px;
    border-radius: 10px;
    animation: float 3s ease-in-out infinite;

}
@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-15px);
    }
    100% {
        transform: translateY(0px);
    }
}
@media (max-width: 768px) {
    .overview-container {
        flex-direction: column;
        text-align: center;
    }

    .overview-text {
        text-align: center;
    }
}

p{
  font-size: 20px;
}
/* SECTIONS */
section {
    padding: 60px 20px;
    text-align: center;
}
.why-us-section {
  display: flex;
  justify-content: flex-start;
  background: #f5f5f5;
  padding: 20px;
  align-items: left;
  gap: 70px;
}
 .text-content ul {
  list-style: none;
  padding: 0;
}

.text-content ul li {
  padding-left: 25px;
  margin-bottom: 10px;
  position: relative;
  text-align:left;
  font: size 18px;
  line: height 1.8;
}

.text-content ul li::before {
  position: absolute;
  left: 0;
  color: var(--brand);
}

.image-content{
  flex: 1 1 400px;
  margin-left: 180px;
}
.image-content img{
  width: 500px;
  height: 300px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  object-fit: cover;
}



.benefits {
    background-color: #e8f5e9; /* light green */
    padding: 60px 20px;
}
.benefits h2 {
    color: #11cd1b;
    font-size: 28px;
}

.subtitle {
    margin-top: 10px;
    color: #555;
}
.services {
  background: #f9f9f9;
  padding: 80px 20px;
}

.container {
  max-width: 1100px;
  margin: auto;
}

.services h2 {
  text-align: center;
  margin-bottom: 10px;
  color: var(--dark-blue);
}

.section-subtitle {
  text-align: center;
  margin-bottom: 50px;
  color: #666;
}

/* LIST */
.service-list {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

/* CARD */
.service-card {
  display: flex;
  align-items: center;
  background: #e8f5e9; /* light green */
  border-radius: 12px;
  overflow: hidden;
  transition: 0.3s;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

/* HOVER EFFECT */
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

/* IMAGE */
.service-card img {
  width: 300px;
  height: 300px;
  object-fit: cover;
}

/* TEXT */
.service-info {
  padding: 25px;
}

.service-info h3 {
  margin-bottom: 10px;
  color: var(--dark-blue);
}

.service-info p {
  color: #555;
  line-height: 1.5;
}

/* BUTTON */
.services-btn {
  display: block;
  width: fit-content;
  margin: 40px auto 0;
}

.card {
  background: white;
  padding: 20px;
  width: 250px;
  border-radius: 10px;
  transition: 0.3s;
}

.card:hover {
  transform: translateY(-5px);
}

.services-btn {
  margin-top: 30px;
}

/* CARDS */
.cards {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
    flex-wrap: wrap;
}
@media (max-width: 768px) {
  .service-card {
    flex-direction: column;
    text-align: center;
  }

  .service-card img {
    width: 100%;
    height: 200px;
  }

  .service-info {
    padding: 20px;
  }
}

.card {
    background: #a5d6a7;
    padding: 20px;
    border-radius: 12px;
    width: 220px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    transition: 0.3s;
}

.card h3 {
    color: #0d47a1;
    margin-bottom: 10px;
}

/* HOVER EFFECT */
.card:hover {
    transform: translateY(-5px);
}
.projects {
  background: var(--white);
}

/* CONTAINER */
.project-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}

/* CARD */
.project-card {
  display: flex;
  align-items: center;
  background: #e8f5e9; /* light green */
  border-radius: 12px;
  overflow: hidden;
  transition: 0.3s;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

/* IMAGE */
.project-card img {
   width: 300px;
  height: 180px;
  object-fit: cover;
}

/* HOVER EFFECT */
.project-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

/* TEXT */
.project-content {
  padding: 20px;
  text-align: left;
}

.project-content h3 {
  margin-bottom: 10px;
  color: var(--dark-blue);
}
.view-btn {
  display: block;
  width: fit-content;
  margin: 40px auto 0;
}
@media (max-width: 768px) {
  .project-card {
    flex-direction: column;
  }

  .project-card img {
    width: 100%;
    height: 200px;
  }

  .project-content {
    text-align: center;
  }
}
.process {
  background: var(--white);
}
.process-tagline {
  font-size: 1.3rem;
  color: var(--green);
  font-weight: 600;
  margin: 10px 0 20px;
}

/* CONTAINER */
.process-container {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 30px;
}

/* CARD */
.process-card {
  background: var(--light-green);
  padding: 20px;
  border-radius: 10px;
  width: 220px;
  text-align: center;
  position: relative;
}

/* STEP NUMBER */
.step-number {
  width: 40px;
  height: 40px;
  background: var(--green);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 10px;
  font-weight: bold;
}

/* TEXT */
.process-card h3 {
  margin-bottom: 10px;
  color: var(--dark-blue);
}
.process-card:hover {
  transform: translateY(-5px);
  transition: 0.3s;
}
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
}

.whatsapp-float img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
  transition: 0.3s;
}

.whatsapp-float img:hover {
  transform: scale(1.1);
}
.whatsapp-float::after {
  position: absolute;
  top: -5px;
  right: -5px;
  background: red;
  color: white;
  font-size: 12px;
  padding: 3px 6px;
  border-radius: 50%;
}
/* PULSE ANIMATION */
@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  }
  70% {
    transform: scale(1.1);
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* APPLY TO BUTTON */
.whatsapp-float img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  animation: pulse 2s infinite;
}
/* ================= FOOTER ================= */

.footer{
    background: var(--dark-blue);
    color: var(--white);
    padding: 60px 8%;
}

.footer-container{
    display:grid;
    grid-template-columns: repeat(auto-fit, minmax(220px,1fr));
    gap:40px;
}

.footer-logo img{
    width:120px;
    margin-bottom:15px;
}

.footer-logo h3{
    color: var(--green);
    margin-bottom:10px;
}

.footer-logo p{
    color:#d8d8d8;
    line-height:1.8;
}

.footer h4{
    color: var(--green);
    margin-bottom:20px;
}

.footer-links ul{
    list-style:none;
    padding:0;
}

.footer-links li{
    margin-bottom:12px;
}

.footer-links a{
    text-decoration:none;
    color:#d8d8d8;
    transition:.3s;
}

.footer-links a:hover{
    color:var(--green);
    padding-left:5px;
}

.footer-contact p{
    margin-bottom:15px;
    color:#d8d8d8;
}

.footer-contact i{
    color:var(--green);
    margin-right:10px;
}

.footer-social .social-icons {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 15px;
    flex-wrap: nowrap;
}
.social-icon{
    display:inline-flex;
    justify-content:center;
    align-items:center;
    width: 40px;px;
    height: 40px;px;
    flex-shrink: 0;
    background:rgba(255,255,255,.1);
    color:var(--green);
    border-radius:50%;
    text-decoration:none;
    transition:.3s;
    gap: 5px;
}

.social-icon:hover{
    background:var(--green);
    color:var(--dark-blue);
    transform:translateY(-5px);
}

.footer-bottom{
    border-top:1px solid rgba(255,255,255,.15);
    text-align:center;
    margin-top:40px;
    padding-top:20px;
    color:#d8d8d8;
}

/* Responsive */
@media(max-width: 768px) {
    .about-grid, .service-grid, .project-grid, .contact-grid {
        grid-template-columns: 1fr;
    }
    nav ul {
        display: none;
        flex-direction: column;
        background: var(--dark-blue);
    }
    nav ul.show {
        display: flex;
    }
    .menu-toggle {
        display: block;
    }
}

/* ABOUT HERO */
.about-hero {
    height: 90vh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;

    background: url('images/solar.jpg') no-repeat center/cover;

    animation: zoom 10s ease-in-out infinite;
    z-index: -1;
}

/* dark overlay  */
.about-hero::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.4);
    z-index: 0;
}


.about-overlay {
  color: white;
  position: relative;
    z-index: 1;
    color: white;
  
}

.about-overlay h1 {
  font-size: 3rem;
  margin-bottom: 10px;

}

.about-overlay p {
  font-size: 1.2rem;
  
}
.about-section{
    padding:80px 8%;
}

.about-container{
    display:flex;
    justify-content:space-between;
    text-align:left;
    line-height:1.8;
    font-size:18px;
    align-items:center;
}

.about-text{
    flex:1.3;
}

.about-image{
    flex:1.2;
    display:flex;
    justify-content:center;
    align-items:flex-start;
     margin: top 10px;
     padding-top:50px
}

.about-image img{
    width:170%;
    max-width:500px;
    border-radius:15px;
    height: 600%;
    box-shadow:0 10px 25px rgba(0,0,0,.15);
   
}

.about-text h2{
    color:var(--dark-blue);
    margin-bottom:20px;
}

.about-text h3{
    color:var(--dark-blueS);
    margin-top:30px;
    margin-bottom:15px;
}

.about-text p{
    line-height:1.8;
    margin-bottom:15px;
}

.about-text ul{
    margin-left:20px;
    line-height:2;
}



/* Hero */

.services-hero{
    height: 80vh; /* 80% of the screen height */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    background: linear-gradient(rgba(10,37,64,.3), rgba(10,37,64,.3)),
                url(images/services.jpg);

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    color: white;
    text-align: center;
    padding: 100px;
}

.services-hero h1{
    font-size:3rem;
    margin-bottom:0;
}

.services-hero p{
    font-size:1.5rem;
    max-width:900px;
    margin: top 0;
}

/* Cards */

/* ================= INTRO ================= */

/* ================= SERVICE ================= */

.service-section{

    width:90%;

    max-width:1200px;

    margin:90px auto;

}

.service-section h2{

    text-align:center;

    font-size:38px;

    color:var(--dark-blue);

    margin-bottom:35px;

}

.service-images{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:20px;

    margin-bottom:40px;

}

.service-images img{

    width:100%;

    height:260px;

    object-fit:cover;

    border-radius:15px;

    transition:.4s;

    box-shadow:0 8px 20px rgba(0,0,0,.08);

}

.service-images img:hover{

    transform:scale(1.05);

}

.service-images.two-images{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:20px;
}


.service-description{

    max-width:850px;

    margin:auto;

    text-align:left;

}

.service-description p{

    color:#555;

    line-height:1.9;

    margin-bottom:25px;

}

.service-description ul{

    list-style:none;

    padding:0;

    margin-bottom:35px;

}

.service-description li{

    margin:12px 0;

    font-size:16px;

}

.service-btn{

    display:inline-block;

    background:var(--green);

    color:white;

    text-decoration:none;

    padding:15px 35px;

    border-radius:40px;

    transition:.4s;

}

.service-btn:hover{

    background:var(--dark-blue);

}

/* ================= RESPONSIVE ================= */

@media(max-width:900px){

.service-images{

grid-template-columns:1fr;

}

.services-intro h1{

font-size:38px;

}

.service-section h2{

font-size:30px;

}

}

.pricing-section {
    padding: 80px 8%;
    background: #f5f5f5;
    text-align: center;
}

.section-title {
    max-width: 700px;
    margin: 0 auto 50px;
}

.section-title h2 {
    color: #0a2540;
    font-size: 35px;
    margin-bottom: 15px;
}

.section-title p {
    color: grey;
    line-height: 1.7;
}

.pricing-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    max-width: 1100px;
    margin: auto;
}

.price-card {
    background: #ffffff;
    padding: 35px 25px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    position: relative;
    transition: transform 0.3s ease;
}

.price-card:hover {
    transform: translateY(-8px);
}

.price-card h3 {
    color: #0a2540;
    font-size: 22px;
    margin-bottom: 10px;
}

.system-size {
    color: #2ecc71;
    font-weight: bold;
}

.price {
    color: #0a2540;
    font-size: 28px;
    font-weight: bold;
    margin: 20px 0;
}

.price-card ul {
    list-style: none;
    padding: 0;
    margin: 20px 0;
    text-align: left;
}

.price-card ul li {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.price-card ul li::before {
    content: "✓";
    color: #2ecc71;
    font-weight: bold;
    margin-right: 10px;
}

.price-btn {
    display: inline-block;
    background: #2ecc71;
    color: #ffffff;
    padding: 12px 25px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    margin-top: 15px;
}

.price-btn:hover {
    background: #0a2540;
}

.featured {
    border: 3px solid #2ecc71;
}



.pricing-note {
    max-width: 800px;
    margin: 40px auto 0;
    color: #666;
    font-size: 20px;
    line-height: 1.6;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .pricing-container {
        grid-template-columns: 1fr;
    }

    .section-title h2 {
        font-size: 28px;
    }
}

/* Why Us */

.why-us{
    background:var(--light-green);
    padding:70px 20px;
    text-align:center;
}

.why-us h2{
    color:var(--dark-blue);
    margin-bottom:40px;
}

.features{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:30px;
}

.features i{
    color:var(--green);
    font-size:40px;
    margin-bottom:15px;
}

/* CTA */

.cta{
    background:var(--dark-blue);
    color:white;
    text-align:center;
    padding:80px 20px;
}

.btn{
    display:inline-block;
    margin-top:25px;
    background:var(--green);
    color:white;
    text-decoration:none;
    padding:15px 35px;
    border-radius:50px;
    transition:.3s;
}

.btn:hover{
    background:#27ae60;
}
/* HERO */

.projects-hero{

height:45vh;

background:linear-gradient(rgba(10,37,64,.75),
rgba(10,37,64,.75));

display:flex;

justify-content:center;

align-items:center;

text-align:center;

padding:20px;

}

.hero-content{

max-width:750px;

}

.projects-hero h1{

color:white;

font-size:55px;

margin-bottom:10px;

}

.projects-hero p{

color:white;

line-height:1.8;

font-size:18px;

}

/* STATS */

.stats{

width:90%;

max-width:1200px;

margin:70px auto;

display:grid;

grid-template-columns:repeat(auto-fit,minmax(220px,1fr));

gap:25px;

}

.stat-box{

background:white;

padding:40px;

text-align:center;

border-radius:15px;

box-shadow:0 10px 20px rgba(0,0,0,.08);

transition:.4s;

}

.stat-box:hover{

transform:translateY(-8px);

}

.stat-box h2{

font-size:45px;

color:var(--green);

margin-bottom:10px;

}

.stat-box p{

color:#555;

}

/* TITLES */

.section-title{

text-align:center;

font-size:40px;

color:var(--dark-blue);

margin-bottom:60px;

}

/* FEATURED PROJECTS */

.featured-projects{

width:90%;

max-width:1200px;

margin:100px auto;

}

.project{

display:grid;

grid-template-columns:1fr 1fr;

gap:50px;

align-items:center;

margin-bottom:90px;

}

.reverse{

direction:rtl;

}

.reverse .project-text{

direction:ltr;

}

.project-image img{

width:100%;

height:420px;

object-fit:cover;

border-radius:20px;

transition:.5s;

}

.project-image img:hover{

transform:scale(1.05);

}

.project-text h3{

font-size:35px;

color:var(--dark-blue);

margin-bottom:10px;

}

.project-text h4{

color:var(--green);

margin-bottom:20px;

}

.project-text p{

line-height:1.8;

margin-bottom:20px;

color:#555;

}

.project-text ul{

list-style:none;

margin-bottom:30px;

}

.project-text li{

margin-bottom:12px;

}

.project-btn{

display:inline-block;

padding:14px 35px;

background:var(--green);

color:white;

text-decoration:none;

border-radius:40px;

transition:.4s;

}

.project-btn:hover{

background:var(--dark-blue);

}

.gallery{
    padding:80px 8%;
    background:var(--gray);
}

.gallery-subtitle{
    text-align:center;
    max-width:700px;
    margin:0 auto 50px;
    color:#666;
    line-height:1.7;
}

.gallery-grid{

    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
    gap:30px;

}

.gallery-card{

    background:white;
    border-radius:15px;
    overflow:hidden;
    box-shadow:0 8px 20px rgba(0,0,0,.08);
    transition:.4s;

}

.gallery-card:hover{

    transform:translateY(-8px);

}

.gallery-card img{

    width:100%;
    height:500px;
    object-fit:cover;

}

.gallery-content{

    padding:20px;

}

.gallery-content h3{

    color:var(--dark-blue);
    margin-bottom:10px;
    font-size:22px;

}

.gallery-content p{

    color:#666;
    line-height:1.7;
    font-size:15px;

}
/* HERO */

.contact-hero {
    height: 90vh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;

    background: url('images/project2.jpg') no-repeat center/cover;

    animation: zoom 10s ease-in-out infinite;
    z-index: -1;
}

/* dark overlay  */
.contact-hero::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.4);
    z-index: 0;
}


.contact-overlay {
  color: white;
  position: relative;
    z-index: 1;
    color: white;
  
}

.contactt-overlay h1 {
  font-size: 3rem;
  margin-bottom: 10px;

}

.contact-overlay p {
  font-size: 1.2rem;
  
}
.contact-section {
  padding: 60px 20px;
  background-color: #ffffff ;
}

.contact-hero{


height:60vh;

display:flex;

flex-direction:column;

justify-content:center;

align-items:center;

text-align:center;

padding:20px;

color:white;

}

.contact-hero h1{

font-size:50px;

margin-bottom:15px;

}

.contact-hero p{

max-width:650px;

line-height:1.8;

}



/* CONTACT */

.contact-section{

width:90%;

max-width:1200px;

margin:80px auto;

display:grid;

grid-template-columns:1fr 1fr;

gap:50px;

}



.contact-form{

background:white;

padding:40px;

border-radius:20px;

box-shadow:0 10px 20px rgba(0,0,0,.08);

}



.contact-form h2{

color:var(--dark-blue);

margin-bottom:30px;

}



.contact-form input,
.contact-form textarea{

width:100%;

padding:15px;

margin-bottom:20px;

border:1px solid #ddd;

border-radius:10px;

font-size:16px;

}



.contact-form textarea{

resize:none;

}



.contact-form button{

background:var(--green);

color:white;

padding:15px 35px;

border:none;

border-radius:40px;

cursor:pointer;

font-size:16px;

transition:.4s;

}



.contact-form button:hover{

background:var(--dark-blue);

}



/* CONTACT INFO */

.contact-info{

background:var(--light-green);

padding:40px;

border-radius:20px;

}



.contact-info h2{

color:var(--dark-blue);

margin-bottom:30px;

}



.info{

display:flex;

align-items:flex-start;

margin-bottom:25px;

}



.info i{

font-size:25px;

color:var(--green);

margin-right:20px;

margin-top:5px;

}



.info h4{

margin-bottom:5px;

color:var(--dark-blue);

}



/* MAP */

.map{

width:90%;

max-width:1200px;

margin:80px auto;

text-align:center;

}



.map h2{

font-size:40px;

color:var(--dark-blue);

margin-bottom:30px;

}



.map-box iframe{

width:100%;

height:450px;

border:none;

border-radius:20px;

}



/* RESPONSIVE */

@media(max-width:900px){

.contact-section{

grid-template-columns:1fr;

}

.contact-hero h1{

font-size:40px;

}

}

/* =========================
   RESPONSIVE NAVBAR
========================= */

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 25px;
    cursor: pointer;
}

/* Mobile */
@media (max-width: 768px) {

    .navbar {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 10px 20px;
        position: relative;
    }

    .logo img {
        max-width: 140px;
        height: auto;
    }

    /* Show hamburger */
    .menu-toggle {
        display: block;
        color: #0a2540;
        z-index: 1001;
    }

    /* Hide menu initially */
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #ffffff;
        flex-direction: column;
        text-align: center;
        padding: 15px 0;
        margin: 0;
        box-shadow: 0 4px 10px rgba(0,0,0,0.1);
        z-index: 1000;
    }

    /* Show menu when active */
    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        margin: 8px 0;
        list-style: none;
    }

    .nav-links a {
        display: block;
        padding: 10px;
        color: #0a2540;
        text-decoration: none;
    }

    /* Phone number */
    .nav-phone {
        display: none;
    }
}

/* =====================================================
   COMPLETE MOBILE RESPONSIVE DESIGN
   BEKIM LUMISOLAR
===================================================== */

@media (max-width: 768px) {

    /* ================= NAVBAR ================= */

    .navbar {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 8px 20px;
        min-height: 65px;
        position: sticky;
        top: 0;
        background: #ffffff;
        z-index: 9999;
    }

    .logo img {
        width: 110px;
        height: auto;
    }

    .menu-toggle {
        display: block;
        background: none;
        border: none;
        font-size: 25px;
        color: var(--dark-blue);
        cursor: pointer;
        z-index: 10001;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #ffffff;
        flex-direction: column;
        align-items: center;
        gap: 0;
        padding: 15px 0;
        margin: 0;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        width: 100%;
        text-align: center;
        list-style: none;
    }

    .nav-links a {
        display: block;
        padding: 12px;
        font-size: 16px;
    }

    .nav-phone {
        display: none;
    }


    /* ================= GENERAL ================= */

    section {
        padding: 50px 20px;
    }

    p {
        font-size: 16px;
        line-height: 1.7;
    }

    h1 {
        font-size: 2.2rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    img {
        max-width: 100%;
        height: auto;
    }


    /* ================= HOME HERO ================= */

    .hero {
        height: 75vh;
        min-height: 500px;
        padding: 20px;
        text-align: center;
    }

    .hero-text {
        width: 100%;
        padding: 0 10px;
    }

    .hero h1 {
        font-size: 2.2rem;
        line-height: 1.2;
    }

    .hero p {
        font-size: 16px;
        margin: 15px 0 25px;
    }

    .btn {
        padding: 12px 25px;
        font-size: 15px;
    }


    /* ================= OVERVIEW ================= */

    .overview-container {
        flex-direction: column;
        padding: 40px 20px;
        gap: 30px;
        width: 100%;
    }

    .overview-text,
    .overview-image {
        width: 100%;
        text-align: center;
    }

    .overview-image img {
        width: 100%;
        max-width: 450px;
    }


    /* ================= WHY US ================= */

    .why-us-section {
        flex-direction: column;
        align-items: center;
        gap: 30px;
        padding: 40px 20px;
    }

    .text-content {
        width: 100%;
    }

    .text-content ul li {
        font-size: 16px;
        line-height: 1.6;
    }

    .image-content {
        width: 100%;
        margin-left: 0;
        text-align: center;
    }

    .image-content img {
        width: 100%;
        max-width: 500px;
        height: auto;
    }


    /* ================= CARDS ================= */

    .cards {
        flex-direction: column;
        align-items: center;
    }

    .card {
        width: 100%;
        max-width: 350px;
    }


    /* ================= SERVICES ================= */

    .services {
        padding: 50px 20px;
    }

    .service-card {
        flex-direction: column;
        width: 100%;
    }

    .service-card img {
        width: 100%;
        height: 220px;
    }

    .service-info {
        padding: 20px;
        text-align: center;
    }

    .service-info p {
        font-size: 16px;
    }


    /* ================= SERVICE PAGE ================= */

    .services-hero {
        height: 65vh;
        min-height: 450px;
        padding: 30px 20px;
    }

    .services-hero h1 {
        font-size: 2.2rem;
    }

    .services-hero p {
        font-size: 16px;
        line-height: 1.6;
    }

    .service-section {
        width: 100%;
        margin: 50px auto;
        padding: 0 20px;
    }

    .service-section h2 {
        font-size: 28px;
    }

    .service-images,
    .service-images.two-images {
        grid-template-columns: 1fr;
    }

    .service-images img {
        height: 230px;
    }

    .service-description {
        width: 100%;
    }

    .service-description p {
        font-size: 16px;
    }


    /* ================= PRICING ================= */

    .pricing-section {
        padding: 50px 20px;
    }

    .pricing-container {
        grid-template-columns: 1fr;
    }

    .price-card {
        width: 100%;
    }

    .section-title h2 {
        font-size: 28px;
    }


    /* ================= ABOUT HERO ================= */

    .about-hero {
        height: 65vh;
        min-height: 450px;
        padding: 20px;
        text-align: center;
    }

    .about-overlay h1 {
        font-size: 2.2rem;
    }

    .about-overlay p {
        font-size: 16px;
    }


    /* ================= ABOUT SECTION ================= */

    .about-section {
        padding: 50px 20px;
    }

    .about-container {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }

    .about-text {
        width: 100%;
    }

    .about-text p {
        font-size: 16px;
        line-height: 1.7;
    }

    .about-text ul {
        text-align: left;
    }

    .about-image {
        width: 100%;
        padding-top: 0;
        margin: 0;
    }

    .about-image img {
        width: 100%;
        max-width: 500px;
        height: auto;
    }


    /* ================= PROJECTS HERO ================= */

    .projects-hero {
        height: 50vh;
        min-height: 400px;
        padding: 20px;
    }

    .projects-hero h1 {
        font-size: 2.5rem;
    }

    .projects-hero p {
        font-size: 16px;
    }


    /* ================= FEATURED PROJECTS ================= */

    .featured-projects {
        width: 100%;
        padding: 0 20px;
        margin: 60px auto;
    }

    .project {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 60px;
    }

    .reverse {
        direction: ltr;
    }

    .project-image img {
        width: 100%;
        height: 280px;
    }

    .project-text {
        text-align: center;
    }

    .project-text h3 {
        font-size: 26px;
    }

    .project-text p {
        font-size: 16px;
    }

    .project-text ul {
        text-align: left;
    }


    /* ================= GALLERY ================= */

    .gallery {
        padding: 50px 20px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .gallery-card img {
        width: 100%;
        height: 300px;
        object-fit: cover;
    }

    .gallery-content {
        text-align: center;
    }

    .gallery-content p {
        font-size: 15px;
    }


    /* ================= CONTACT HERO ================= */

    .contact-hero {
        height: 60vh;
        min-height: 400px;
        padding: 20px;
        text-align: center;
    }

    .contact-hero h1 {
        font-size: 2.3rem;
    }

    .contact-hero p {
        font-size: 16px;
    }


    /* ================= CONTACT ================= */

    .contact-section {
        width: 100%;
        margin: 50px auto;
        padding: 0 20px;
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .contact-form,
    .contact-info {
        padding: 25px 20px;
    }

    .contact-form input,
    .contact-form textarea {
        font-size: 16px;
    }

    .info {
        align-items: flex-start;
    }


    /* ================= MAP ================= */

    .map {
        width: 100%;
        margin: 50px auto;
        padding: 0 20px;
    }

    .map h2 {
        font-size: 28px;
    }

    .map-box iframe {
        height: 300px;
    }


    /* ================= WHY US PAGE ================= */

    .features {
        grid-template-columns: 1fr;
        gap: 25px;
    }


    /* ================= CTA ================= */

    .cta {
        padding: 60px 20px;
    }


    /* ================= FOOTER ================= */

    .footer {
        padding: 50px 20px 30px;
    }

    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 35px;
    }

    .footer-logo img {
        margin: 0 auto 15px;
    }

    .footer-links a:hover {
        padding-left: 0;
    }

    .social-icon {
        margin: 5px;
    }


    /* ================= WHATSAPP ================= */

    .whatsapp-float {
        right: 15px;
        bottom: 15px;
    }

    .whatsapp-float img {
        width: 50px;
        height: 50px;
    }

}


/* =====================================================
   EXTRA SMALL PHONES
===================================================== */

@media (max-width: 480px) {

    .navbar {
        padding: 8px 15px;
    }

    .logo img {
        width: 100px;
    }

    .hero h1,
    .about-overlay h1 {
        font-size: 1.8rem;
    }

    .services-hero h1,
    .projects-hero h1,
    .contact-hero h1 {
        font-size: 2rem;
    }

    .hero p,
    .services-hero p,
    .about-overlay p,
    .projects-hero p,
    .contact-hero p {
        font-size: 15px;
    }

    .project-image img {
        height: 230px;
    }

    .gallery-card img {
        height: 250px;
    }

    .contact-form,
    .contact-info {
        padding: 20px 15px;
    }

}