
/* RESET */
*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:'Poppins',sans-serif;
}

body{
  background:#f5f5f5;
  color:#222;
  padding-top:90px;
}

/* CONTAINER (MOST IMPORTANT) */
section{
  max-width:1200px;
  margin:auto;
  padding:60px 20px;
}

/* HEADER */
.header{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:15px 50px;
  background:#fff;
  z-index:1000;
  box-shadow:0 5px 20px rgba(0,0,0,0.1);
}

.logo img{
  height:60px;
}

/* NAV */
nav{
  display:flex;
  gap:25px;
  align-items:center;
}

nav a{
  text-decoration:none;
  color:#333;
  font-weight:500;
}

nav a:hover{
  color:#ff9800;
}

/* MENU */
.menu-toggle{
  display:none;
  font-size:26px;
  cursor:pointer;
}

/* HERO */
.hero{
  height:100vh;
  max-width:100%;
  padding:0;
}

/* SLIDER */
.slider{
  height:100%;
  position:relative;
}

.slide{
  position:absolute;
  width:100%;
  height:100%;
  display:flex;
  justify-content:center;
  align-items:center;
  text-align:center;
  color:#fff;
  opacity:0;
  transition:1s;
}

.slide.active{
  opacity:1;
}

.slide:nth-child(1){
  background:url('slider/slider-1.jpg') center/cover no-repeat;
}
.slide:nth-child(2){
  background:url('slider/slider-2.jpg') center/cover no-repeat;
}

/* CONTENT */
.content{
  max-width:800px;
}

.content h1{
  font-size:48px;
}

.btn{
  display:inline-block;
  margin-top:20px;
  background:#ff9800;
  color:#fff;
  padding:12px 25px;
  border-radius:30px;
}

/* TITLE */
.section-title{
  text-align:center;
  margin-bottom:30px;
  font-size:32px;
}

/* FEATURES */
.features-box{
  display:flex;
  gap:20px;
  flex-wrap:wrap;
  justify-content:center;
}

.box{
  flex:1;
  min-width:250px;
  background:#fff;
  padding:30px;
  border-radius:10px;
  text-align:center;
}

/* ABOUT */
.about{
  display:flex;
  gap:40px;
  align-items:center;
  flex-wrap:wrap;
}

.about-text{
  flex:1;
}

.about img{
  flex:1;
  max-width:500px;
  width:100%;
}

/* CARDS */
.cards{
  display:flex;
  gap:20px;
  flex-wrap:wrap;
  justify-content:center;
}

.card{
  flex:1;
  min-width:250px;
  background:#fff;
  padding:25px;
  border-radius:10px;
  text-align:center;
}

/* PROJECT GRID */
.grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
  gap:20px;
}

.grid img{
  width:100%;
  height:250px;
  object-fit:cover;
  border-radius:10px;
}

/* COUNTER */
.counter{
  display:flex;
  justify-content:space-around;
  flex-wrap:wrap;
  background:#ff9800;
  color:#fff;
  text-align:center;
}

.counter div{
  padding:20px;
}

/* TESTIMONIAL */
.testimonials{
  text-align:center;
  background:#fff;
}

/* CTA */
.cta{
  background:#000;
  color:#fff;
  text-align:center;
}

/* CONTACT */
.contact form{
  max-width:500px;
  margin:auto;
  display:flex;
  flex-direction:column;
}

.contact input,
.contact textarea{
  margin:10px 0;
  padding:12px;
}

/* FOOTER */
.footer{
  background:#111;
  color:#fff;
  padding:40px;
}

/* WHATSAPP */
.whatsapp{
  position:fixed;
  bottom:20px;
  right:20px;
  width:55px;
  height:55px;
  background:#25D366;
  color:#fff;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
}

/* MOBILE */
@media(max-width:768px){

  .menu-toggle{
    display:block;
  }

  nav{
    position:absolute;
    top:70px;
    left:0;
    width:100%;
    background:#fff;
    flex-direction:column;
    display:none;
  }

  nav.active{
    display:flex;
  }

  .about{
    flex-direction:column;
  }

  .content h1{
    font-size:28px;
  }
}

.counter{
  display:flex;
  justify-content:space-around;
  align-items:center;
  background:#ff9800;
  color:#fff;
  padding:60px 20px;
  text-align:center;
  flex-wrap:wrap;
}

.counter div{
  flex:1;
  min-width:150px;
}

.counter h1{
  font-size:40px;
}

.testimonials{
  padding:60px 20px;
  text-align:center;
  background:#fff;
}

.review{
  max-width:700px;
  margin:20px auto;
  font-size:18px;
  font-style:italic;
}

.cta{
  background:#000;
  color:#fff;
  text-align:center;
  padding:60px 20px;
}

.cta h2{
  font-size:32px;
  margin-bottom:10px;
}

.cta p{
  margin-bottom:20px;
}

.contact{
  padding:60px 20px;
  text-align:center;
}

.contact form{
  max-width:500px;
  margin:auto;
  display:flex;
  flex-direction:column;
}

.contact input,
.contact textarea{
  padding:12px;
  margin:10px 0;
  border:1px solid #ccc;
  border-radius:5px;
}

.contact button{
  padding:12px;
  background:#ff9800;
  color:#fff;
  border:none;
  border-radius:25px;
  cursor:pointer;
}

.footer{
  background:#111;
  color:#fff;
  padding:40px 20px;
}

.footer-container{
  display:flex;
  justify-content:space-between;
  flex-wrap:wrap;
  gap:30px;
  max-width:1200px;
  margin:auto;
}

.footer-box{
  flex:1;
  min-width:220px;
}

.footer-box h2,
.footer-box h3{
  margin-bottom:10px;
}

.footer-box a{
  display:block;
  color:#ccc;
  text-decoration:none;
  margin:5px 0;
}

.footer-box a:hover{
  color:#fff;
}

.footer-bottom{
  text-align:center;
  margin-top:20px;
  border-top:1px solid #333;
  padding-top:15px;
}

@media(max-width:768px){

  .counter{
    flex-direction:column;
  }

  .footer-container{
    flex-direction:column;
    text-align:center;
  }

}


/* PAGE BANNER */
.page-banner{
  background:#000;
  color:#fff;
  text-align:center;
  padding:80px 20px 40px;
}

.page-banner h1{
  font-size:36px;
}

/* COMMON SECTION FIX */
.section{
  max-width:1100px;
  margin:40px auto;
  padding:0 20px;
  text-align:center;
}

/* CONTACT CARDS FIX */
.section .cards{
  justify-content:center;
}

/* CONTACT FORM CENTER */
.contact{
  max-width:600px;
  margin:40px auto;
  padding:0 20px;
  text-align:center;
}

/* CTA FIX */
.cta{
  margin-top:40px;
}

/* MAIN SECTION */
.about-section{
  max-width:1100px;
  margin:50px auto;
  padding:20px;
}

/* BIG CARDS */
.about-card{
  background:#fff;
  padding:30px;
  margin-bottom:25px;
  border-radius:10px;
  text-align:center;
  box-shadow:0 5px 20px rgba(0,0,0,0.1);
}

.about-card h2{
  margin-bottom:15px;
}

.about-card p{
  line-height:1.6;
  color:#555;
}

/* SMALL CARDS */
.mini-cards{
  display:flex;
  justify-content:center;
  gap:15px;
  margin-top:20px;
  flex-wrap:wrap;
}

.mini-card{
  padding:12px 20px;
  background:#f9f9f9;
  border-radius:8px;
  border-left:3px solid #ff9800;
  font-size:14px;
}

/* ===== GLOBAL CONTAINER ===== */
section{
  max-width:1200px;
  margin:auto;
}

/* ===== HEADER FINAL FIX ===== */
.header{
  position:fixed !important;
  top:0;
  left:0;
  width:100%;
  background:#fff !important;
  box-shadow:0 5px 20px rgba(0,0,0,0.1);
}

/* ===== NAV COLOR FIX ===== */
.header nav a{
  color:#333 !important;
}

/* ===== COMMON SECTION FIX ===== */
.section{
  padding:60px 20px !important;
  margin:30px auto;
  max-width:1100px;
}

/* ===== CARDS FINAL FIX ===== */
.cards{
  display:flex !important;
  gap:20px;
  justify-content:center;
  flex-wrap:wrap;
}

.card{
  flex:1;
  min-width:250px;
  background:#fff !important;
  padding:25px;
  border-radius:10px;
  text-align:center;
  box-shadow:0 5px 20px rgba(0,0,0,0.08);
}

/* ===== ABOUT FIX ===== */
.about{
  display:flex;
  align-items:center;
  gap:40px;
  flex-wrap:wrap;
}

.about img{
  width:100%;
  max-width:500px;
}

/* ===== GRID FIX ===== */
.grid{
  padding:20px !important;
}

/* ===== COUNTER FIX ===== */
.counter{
  flex-wrap:wrap;
}

.counter div{
  margin:10px;
}

/* ===== CTA FIX ===== */
.cta{
  border-radius:10px;
  margin:40px auto;
  max-width:1100px;
}

/* ===== CONTACT FIX ===== */
.contact{
  max-width:600px;
  margin:auto;
}

/* ===== FOOTER FIX ===== */
.footer-container{
  max-width:1200px;
  margin:auto;
}

/* ===== PAGE BANNER FIX ===== */
.page-banner{
  max-width:100%;
}

/* ===== MOBILE FIX ===== */
@media(max-width:768px){

  .about{
    flex-direction:column;
    text-align:center;
  }

  .cards{
    flex-direction:column;
    align-items:center;
  }

  .counter{
    flex-direction:column;
  }

}

/* ===== GLOBAL IMPROVEMENT ===== */
body{
  background:#f3f4f6;
}

/* SMOOTH TRANSITION */
*{
  transition:all 0.3s ease;
}

/* ===== CARD UPGRADE ===== */
.card, .box, .about-card{
  box-shadow:0 8px 25px rgba(0,0,0,0.08);
  border-radius:12px;
}

.card:hover,
.box:hover,
.about-card:hover{
  transform:translateY(-5px);
  box-shadow:0 12px 30px rgba(0,0,0,0.15);
}

/* ===== BUTTON IMPROVE ===== */
.btn{
  font-weight:600;
  letter-spacing:0.5px;
}

.btn:hover{
  background:#e68900;
  transform:scale(1.05);
}

/* ===== SECTION TITLE ===== */
.section-title{
  font-weight:700;
  position:relative;
}

.section-title::after{
  content:"";
  width:60px;
  height:3px;
  background:#ff9800;
  display:block;
  margin:10px auto 0;
}

/* ===== HERO OVERLAY ===== */
.slide::before{
  content:"";
  position:absolute;
  width:100%;
  height:100%;
  background:rgba(0,0,0,0.5);
  top:0;
  left:0;
}

.content{
  position:relative;
  z-index:2;
}

/* ===== HEADER IMPROVE ===== */
.header{
  backdrop-filter:blur(8px);
}

/* ===== NAV HOVER EFFECT ===== */
nav a{
  position:relative;
}

nav a::after{
  content:"";
  position:absolute;
  width:0;
  height:2px;
  background:#ff9800;
  bottom:-5px;
  left:0;
  transition:0.3s;
}

nav a:hover::after{
  width:100%;
}

/* ===== GRID IMAGE HOVER ===== */
.grid img{
  transition:0.4s;
}

.grid img:hover{
  transform:scale(1.05);
}

/* ===== MINI CARDS ===== */
.mini-card{
  background:#fff;
  box-shadow:0 5px 15px rgba(0,0,0,0.08);
}

.mini-card:hover{
  transform:translateY(-3px);
}

/* ===== CONTACT FORM ===== */
.contact input,
.contact textarea{
  border:1px solid #ddd;
  transition:0.3s;
}

.contact input:focus,
.contact textarea:focus{
  border-color:#ff9800;
  outline:none;
}

/* ===== CTA IMPROVE ===== */
.cta{
  border-radius:12px;
}

.cta h2{
  font-weight:700;
}

/* ===== FOOTER IMPROVE ===== */
.footer{
  background:#0d0d0d;
}

.footer-box h2,
.footer-box h3{
  color:#fff;
}

.footer-box a{
  transition:0.3s;
}

.footer-box a:hover{
  color:#ff9800;
}

/* ===== WHATSAPP HOVER ===== */
.whatsapp:hover{
  transform:scale(1.1);
}