/* RESET */
*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  font-family:'Poppins', sans-serif;
  background:#f5f7fa;
  color:#111827;
  line-height:1.6;
}

/* HEADER */
.header{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  z-index:9999;

  display:flex;
  justify-content:space-between;
  align-items:center;

  padding:15px 40px;

  background:#020617;
  backdrop-filter:blur(12px);

  box-shadow:0 2px 15px rgba(0,0,0,0.12);

  transition:0.3s ease;
}

.header.scrolled{
  padding:12px 40px;
}

.logo{
  font-size:28px;
  font-weight:700;
  color:#22c55e;
  letter-spacing:0.5px;
}

/* NAV */
.nav{
  display:flex;
  align-items:center;
  gap:20px;
}

.nav a{
  color:#fff;
  text-decoration:none;

  font-size:15px;
  font-weight:700;

  letter-spacing:0.4px;

  transition:0.3s ease;

  text-transform:uppercase;
}

.nav a:hover{
  color:#22c55e;
}

/* DROPDOWN */
.dropdown{
  position:relative;
}

.dropdown-toggle{
  cursor:pointer;
}

.dropdown-menu{
  position:absolute;
  top:120%;
  left:0;

  min-width:220px;

  background:#ffffff;
  border-radius:14px;

  box-shadow:0 10px 35px rgba(0,0,0,0.12);

  display:none;
  flex-direction:column;

  overflow:hidden;
}

.dropdown:hover .dropdown-menu{
  display:flex;
}

.dropdown-menu a{
  color:#111827;

  padding:14px 18px;

  font-size:14px;
  font-weight:700;

  letter-spacing:0.3px;

  transition:0.3s ease;
}

.dropdown-menu a:hover{
  background:#22c55e;
  color:#fff;
}

/* CALL BUTTON */
.call-btn{
  display:flex;
  align-items:center;
  gap:8px;

  background:#22c55e;
  color:#fff;

  text-decoration:none;

  padding:11px 18px;

  border-radius:40px;

  font-size:14px;
  font-weight:700;

  position:relative;

  box-shadow:0 8px 25px rgba(34,197,94,0.4);

  animation:shake 2.5s infinite;

  transition:0.3s ease;
}

.call-btn:hover{
  transform:translateY(-2px);
}

.call-btn::after{
  content:"";
  position:absolute;
  inset:0;

  border-radius:40px;

  box-shadow:0 0 0 0 rgba(34,197,94,0.7);

  animation:pulse 2s infinite;

  pointer-events:none;
}

.phone-icon{
  display:flex;
  align-items:center;
}

.phone-icon svg{
  width:18px;
  height:18px;
  fill:#fff;
}

/* HERO */
.hero{
  height:100vh;
  position:relative;
  overflow:hidden;
}

.slide{
  position:absolute;
  width:100%;
  height:100%;

  background-size:cover;
  background-position:center;

  opacity:0;

  transition:opacity 1s ease-in-out;
}

.slide.active{
  opacity:1;
  z-index:1;
}

.hero::after{
  content:"";
  position:absolute;
  inset:0;
  background:rgba(0,0,0,0.55);
}

.hero-content{
  position:absolute;
  top:50%;
  left:50%;

  transform:translate(-50%,-50%);

  z-index:2;

  text-align:center;
  width:90%;
}

.hero-content h1{
  font-size:64px;
  color:#fff;
  margin-bottom:20px;

  line-height:1.1;

  text-shadow:0 5px 20px rgba(0,0,0,0.4);
}

.hero-content p{
  font-size:20px;
  color:#fff;
  opacity:0.95;

  margin-bottom:30px;

  text-shadow:0 2px 10px rgba(0,0,0,0.5);
}

/* BUTTON */
.btn{
  display:inline-block;

  background:#22c55e;
  color:#fff;

  padding:14px 30px;

  border-radius:12px;

  text-decoration:none;
  font-weight:600;

  transition:0.3s ease;

  box-shadow:0 8px 25px rgba(34,197,94,0.25);
}

.btn:hover{
  background:#16a34a;
  transform:translateY(-3px);
}

/* SECTION GLOBAL */
section{
  padding:90px 40px;
}

section h2{
  font-size:42px;
  margin-bottom:20px;
  color:#111827;
  position:relative;
}

section h2::after{
  content:"";
  width:80px;
  height:4px;

  background:#22c55e;

  position:absolute;
  left:0;
  bottom:-12px;

  border-radius:20px;
}

/* SERVICES GRID */
.services{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(270px,1fr));
  gap:30px;

  max-width:1300px;
  margin:auto;
}

/* PREMIUM SERVICE CARD */
.card{
  position:relative;

  background:linear-gradient(
    145deg,
    rgba(255,255,255,0.95),
    rgba(255,255,255,0.88)
  );

  border-radius:28px;

  overflow:hidden;

  box-shadow:
    0 10px 35px rgba(0,0,0,0.08),
    0 2px 10px rgba(255,255,255,0.6) inset;

  transition:0.45s ease;

  border:1px solid rgba(255,255,255,0.7);

  backdrop-filter:blur(12px);
}

/* HOVER EFFECT */
.card:hover{
  transform:translateY(-14px) scale(1.02);

  box-shadow:
    0 20px 45px rgba(0,0,0,0.15),
    0 0 30px rgba(34,197,94,0.18);
}

/* TOP GLOW LINE */
.card::before{
  content:"";

  position:absolute;
  top:0;
  left:0;

  width:100%;
  height:5px;

  background:linear-gradient(
    90deg,
    #22c55e,
    #16a34a,
    #4ade80
  );

  z-index:2;
}

/* IMAGE */
.card img{
  width:100%;
  height:260px;

  object-fit:cover;

  transition:0.6s ease;
}

/* IMAGE ZOOM */
.card:hover img{
  transform:scale(1.08);
}

/* IMAGE DARK FADE */
.card::after{
  content:"";

  position:absolute;
  left:0;
  bottom:0;

  width:100%;
  height:120px;

  background:linear-gradient(
    to top,
    rgba(0,0,0,0.08),
    transparent
  );

  pointer-events:none;
}

/* CONTENT */
.card-content{
  position:relative;
  z-index:3;

  padding:28px 24px;

  text-align:center;
}

/* TITLE */
.card-content h3{
  font-size:25px;
  font-weight:700;

  margin-bottom:12px;

  color:#111827;
}

/* TEXT */
.card-content p{
  font-size:15px;
  line-height:1.8;

  color:#4b5563;

  margin-bottom:22px;
}

/* BUTTON */
.card-content .btn{
  padding:12px 26px;

  border-radius:50px;

  font-size:14px;
  font-weight:600;

  box-shadow:0 8px 20px rgba(34,197,94,0.25);
}

/* BUTTON HOVER */
.card-content .btn:hover{
  transform:translateY(-3px);
}

/* MOBILE */
@media(max-width:768px){

  .card{
    border-radius:22px;
  }

  .card img{
    height:240px;
  }

  .card-content{
    padding:22px 18px;
  }

  .card-content h3{
    font-size:24px;
  }

}

/* SPLIT SECTION */
.split{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:50px;

  align-items:center;

  background:#fff;

  max-width:1300px;

  margin:40px auto;

  border-radius:30px;

  overflow:hidden;

  box-shadow:0 10px 35px rgba(0,0,0,0.08);
}

.split img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.split-text{
  padding:40px;
}

.split-text h2{
  margin-bottom:25px;
}

.split-text p{
  font-size:17px;
  color:#4b5563;
  margin-bottom:25px;
}

/* ABOUT HERO */
.about-hero,
.services-hero,
.contact-hero{
  height:60vh;

  position:relative;

  display:flex;
  align-items:center;
  justify-content:center;

  text-align:center;

  overflow:hidden;
}

.about-hero::after,
.services-hero::after,
.contact-hero::after{
  content:"";
  position:absolute;
  inset:0;
  background:rgba(0,0,0,0.55);
}

.about-content,
.services-hero-content,
.contact-hero-content{
  position:relative;
  z-index:2;

  width:90%;
  max-width:900px;
}

.about-content h1,
.services-hero h1,
.contact-hero h1{
  color:#fff;
  font-size:54px;
  margin-bottom:20px;

  text-shadow:0 4px 15px rgba(0,0,0,0.5);
}

.about-content p,
.services-hero p,
.contact-hero p{
  color:#fff;
  font-size:18px;
  line-height:1.7;

  text-shadow:0 2px 10px rgba(0,0,0,0.4);
}

/* WHY CHOOSE US */
.why-us{
  text-align:center;
}

.why-container{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
  gap:30px;

  max-width:1200px;
  margin:auto;
}

.why-card{
  background:#fff;

  padding:35px 25px;

  border-radius:22px;

  box-shadow:0 10px 35px rgba(0,0,0,0.08);

  transition:0.4s ease;
}

.why-card:hover{
  transform:translateY(-10px);
  box-shadow:0 15px 40px rgba(34,197,94,0.2);
}

.why-icon{
  width:70px;
  height:70px;

  background:#22c55e;

  margin:auto auto 20px;

  border-radius:50%;

  display:flex;
  align-items:center;
  justify-content:center;
}

.why-icon svg{
  width:32px;
  height:32px;
  fill:#fff;
}

.why-card h3{
  margin-bottom:12px;
}

.why-card p{
  color:#4b5563;
}

/* SERVICE BLOCK */
.service-block{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:50px;

  align-items:center;

  background:#fff;

  max-width:1300px;

  margin:40px auto;

  border-radius:28px;

  overflow:hidden;

  box-shadow:0 10px 35px rgba(0,0,0,0.08);
}

.service-img img{
  width:100%;
  height:100%;
  object-fit:cover;

  transition:0.5s ease;
}

.service-img:hover img{
  transform:scale(1.05);
}

.service-text{
  padding:40px;
}

.service-text p{
  color:#4b5563;
  margin-bottom:25px;
}

/* =========================================================
SERVICE REVERSE LAYOUT
========================================================= */

/* DESKTOP */
.service-block.reverse{
  grid-template-areas:
  "text image";
}

.service-block.reverse .service-text{
  grid-area:text;
}

.service-block.reverse .service-img{
  grid-area:image;
}


/* MOBILE */
@media(max-width:768px){

  .service-block{
    grid-template-columns:1fr;
  }

  .service-block.reverse{
    grid-template-areas:
    "image"
    "text";
  }

}

/* CONTACT */
.contact-section{
  max-width:1300px;
  margin:auto;
}

.contact-container{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:40px;
}

.contact-info,
.contact-form{
  background:#fff;

  padding:35px;

  border-radius:24px;

  box-shadow:0 10px 35px rgba(0,0,0,0.08);
}

.contact-info p{
  margin-bottom:16px;
}

.contact-info a{
  color:#22c55e;
  text-decoration:none;
}

.contact-form form{
  display:flex;
  flex-direction:column;
  gap:16px;
}

.contact-form input,
.contact-form textarea{
  width:100%;

  padding:14px;

  border-radius:10px;

  border:1px solid #dbe4ee;

  background:#f8fafc;

  font-size:15px;

  outline:none;
}

.contact-form textarea{
  min-height:140px;
  resize:none;
}

.contact-form button{
  border:none;
  cursor:pointer;
}

.map-section iframe{
  width:100%;
  height:450px;
  border:0;
}

/* CTA */
.cta{
  background:#020617;
  color:#fff;
  text-align:center;
}

.cta h2{
  color:#fff;
}

.cta h2::after{
  left:50%;
  transform:translateX(-50%);
}

.cta p{
  opacity:0.85;
  margin:20px 0;
}

/* FOOTER */
.footer{
  background:#020617;
  color:#fff;

  padding:70px 20px 25px;
}

.footer-container{
  max-width:1300px;
  margin:auto;

  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
  gap:40px;
}

.footer-col h3,
.footer-col h4{
  margin-bottom:20px;
}

.footer-col p{
  color:#cbd5e1;
  line-height:1.8;
}

.footer-col ul{
  list-style:none;
}

.footer-col ul li{
  margin-bottom:10px;
}

.footer-col ul li a,
.footer-col a{
  color:#cbd5e1;
  text-decoration:none;
  transition:0.3s;
}

.footer-col ul li a:hover,
.footer-col a:hover{
  color:#22c55e;
}

.footer-bottom{
  text-align:center;

  margin-top:40px;
  padding-top:20px;

  border-top:1px solid rgba(255,255,255,0.1);

  color:#94a3b8;
  font-size:14px;
}

/* ANIMATIONS */
@keyframes pulse{
  0%{
    box-shadow:0 0 0 0 rgba(34,197,94,0.7);
  }
  70%{
    box-shadow:0 0 0 15px rgba(34,197,94,0);
  }
  100%{
    box-shadow:0 0 0 0 rgba(34,197,94,0);
  }
}

@keyframes shake{
  0%{ transform:translateX(0); }
  10%{ transform:translateX(-2px); }
  20%{ transform:translateX(2px); }
  30%{ transform:translateX(-2px); }
  40%{ transform:translateX(2px); }
  50%{ transform:translateX(0); }
  100%{ transform:translateX(0); }
}

/* SCROLL EFFECTS */
.slide-right{
  opacity:0;
  transform:translateX(-80px);
  transition:1s ease;
}

.slide-right.show{
  opacity:1;
  transform:translateX(0);
}

.rise-up{
  opacity:0;
  transform:translateY(60px);
  transition:0.8s ease;
}

.rise-up.show{
  opacity:1;
  transform:translateY(0);
}

/* MOBILE */
.menu-toggle{
  display:none;
  font-size:30px;
  color:#fff;
  cursor:pointer;
}

@media(max-width:768px){

  body{
    padding-top:75px;
  }

  .header{
    padding:15px 20px;
  }

  .logo{
    font-size:20px;
  }

  .menu-toggle{
    display:block;
    margin-left:auto;
  }

  .nav{
    position:fixed;
    top:0;
    right:-260px;

    width:260px;
    height:100vh;

    background:#020617;

    flex-direction:column;
    align-items:flex-start;

    padding:90px 20px 20px;

    transition:0.3s ease;

    z-index:9999;
  }

  .nav.active{
    right:0;
  }

  .dropdown-menu{
    position:static;
    width:100%;

    background:#111827;

    margin-top:10px;
  }

  .dropdown:hover .dropdown-menu{
    display:none;
  }

  .dropdown.active .dropdown-menu{
    display:flex;
  }

  .hero-content h1{
    font-size:38px;
  }

  .hero-content p{
    font-size:16px;
  }

  section{
    padding:60px 20px;
  }

  section h2{
    font-size:32px;
  }

  .split,
  .service-block,
  .contact-container{
    grid-template-columns:1fr;
  }

  .split-text,
  .service-text{
    padding:25px;
  }

  .services{
    grid-template-columns:1fr;
  }

  .card img{
    height:250px;
  }

  .service-img img{
    height:260px;
  }

  .contact-section{
    padding:60px 20px;
  }

  .contact-info,
  .contact-form{
    padding:25px;
  }

  .map-section iframe{
    height:300px;
  }

  .about-content h1,
  .services-hero h1,
  .contact-hero h1{
    font-size:38px;
  }

  .about-content p,
  .services-hero p,
  .contact-hero p{
    font-size:16px;
  }

  .call-btn{
    padding:10px 14px;
    font-size:13px;
  }
}


/* ================= HERO FIX ================= */

/* HOME SLIDER */
.hero{
  position:relative;
  height:100vh;
  min-height:700px;
  overflow:hidden;
}

/* SLIDES */
.slide{
  position:absolute;
  inset:0;

  width:100%;
  height:100%;

  background-size:cover !important;
  background-position:center center !important;
  background-repeat:no-repeat !important;

  opacity:0;
  transition:opacity 1s ease-in-out;
}

/* ACTIVE */
.slide.active{
  opacity:1;
  z-index:1;
}

/* DARK OVERLAY */
.hero::after{
  content:"";
  position:absolute;
  inset:0;

  background:rgba(0,0,0,0.55);

  z-index:1;
}

/* HERO CONTENT */
.hero-content{
  position:absolute;
  top:50%;
  left:50%;

  transform:translate(-50%,-50%);

  z-index:2;

  width:90%;
  max-width:1000px;

  text-align:center;
}

/* HOME TEXT */
.hero-content h1{
  font-size:68px;
  line-height:1.1;
  margin-bottom:20px;

  color:#fff;
}

.hero-content p{
  font-size:20px;
  line-height:1.7;

  color:#fff;

  margin-bottom:30px;
}

/* ================= INNER PAGE HERO ================= */

.about-hero,
.services-hero,
.contact-hero{
  position:relative;

  height:65vh;
  min-height:500px;

  display:flex;
  align-items:center;
  justify-content:center;

  overflow:hidden;

  background-size:cover !important;
  background-position:center center !important;
  background-repeat:no-repeat !important;
}

/* OVERLAY */
.about-hero::before,
.services-hero::before,
.contact-hero::before{
  content:"";
  position:absolute;
  inset:0;

  background:rgba(0,0,0,0.58);

  z-index:1;
}

/* CONTENT */
.about-content,
.services-hero-content,
.contact-hero-content{
  position:relative;
  z-index:2;

  width:90%;
  max-width:900px;

  text-align:center;
}

/* TITLE */
.about-content h1,
.services-hero-content h1,
.contact-hero-content h1{
  color:#fff;

  font-size:58px;
  line-height:1.2;

  margin-bottom:20px;

  text-shadow:0 5px 20px rgba(0,0,0,0.5);
}

/* PARAGRAPH */
.about-content p,
.services-hero-content p,
.contact-hero-content p{
  color:#fff;

  font-size:18px;
  line-height:1.8;

  text-shadow:0 3px 12px rgba(0,0,0,0.5);
}

/* ================= MOBILE HERO FIX ================= */

@media(max-width:768px){

  .hero{
    min-height:650px;
  }

  .hero-content h1{
    font-size:40px;
  }

  .hero-content p{
    font-size:16px;
    line-height:1.6;
  }

  .about-hero,
  .services-hero,
  .contact-hero{
    height:55vh;
    min-height:420px;
  }

  .about-content h1,
  .services-hero-content h1,
  .contact-hero-content h1{
    font-size:38px;
  }

  .about-content p,
  .services-hero-content p,
  .contact-hero-content p{
    font-size:15px;
    line-height:1.6;
  }

}

/* ================= MOBILE MENU ================= */

.menu-toggle{
  display:none;
}

/* CLOSE BUTTON */
.close-menu{
  display:none;
}

@media(max-width:768px){

  /* HAMBURGER */
  .menu-toggle{
    display:block;

    font-size:32px;
    color:#fff;

    cursor:pointer;

    margin-left:15px;

    z-index:10001;
  }

  /* MOBILE NAV */
  .nav{
    position:fixed;

    top:0;
    right:-280px;

    width:280px;
    height:100vh;

    background:#020617;

    display:flex;
    flex-direction:column;
    align-items:flex-start;

    padding:90px 25px 25px;

    transition:0.4s ease;

    z-index:10000;

    gap:10px;
  }

  /* OPEN MENU */
  .nav.active{
    right:0;
  }

  /* MOBILE LINKS */
  .nav a{
    width:100%;

    padding:14px 0;

    border-bottom:1px solid rgba(255,255,255,0.08);

    font-size:16px;
  }

  /* CLOSE BUTTON */
  .close-menu{
  display:block;

  position:absolute;

  top:18px;
  left:22px;   /* MOVED TO LEFT */

  font-size:42px;
  line-height:1;

  color:#fff;

  cursor:pointer;

  transition:0.3s ease;

  z-index:10001;
}
  .close-menu:hover{
    color:#22c55e;
    transform:rotate(90deg);
  }

}

/* ================= PREMIUM CONTACT ================= */

.premium-contact{
  padding:100px 40px;
}

.premium-contact-container{
  max-width:1300px;
  margin:auto;

  display:grid;
  grid-template-columns:1fr 1fr;
  gap:40px;
}

/* LEFT SIDE */
.premium-contact-info{
  background:#ffffff;

  padding:50px;

  border-radius:30px;

  box-shadow:0 10px 40px rgba(0,0,0,0.08);
}

.contact-tag{
  display:inline-block;

  background:#22c55e;
  color:#fff;

  padding:8px 18px;

  border-radius:50px;

  font-size:13px;
  font-weight:700;

  margin-bottom:20px;
}

.premium-contact-info h2{
  font-size:42px;
  line-height:1.2;

  margin-bottom:20px;
}

.premium-contact-info p{
  color:#64748b;
  line-height:1.8;

  margin-bottom:30px;
}

/* CONTACT BOX */
.contact-box{
  display:flex;
  gap:20px;

  align-items:flex-start;

  margin-bottom:25px;

  padding:20px;

  border-radius:18px;

  background:#f8fafc;

  transition:0.3s ease;
}

.contact-box:hover{
  transform:translateY(-4px);

  box-shadow:0 10px 25px rgba(0,0,0,0.06);
}

.contact-icon{
  width:58px;
  height:58px;

  min-width:58px;

  border-radius:18px;

  background:#ffffff;

  border:1px solid rgba(15,23,42,0.08);

  display:flex;
  align-items:center;
  justify-content:center;

  font-size:22px;
  color:#0f172a;

  box-shadow:
  0 4px 12px rgba(0,0,0,0.04),
  inset 0 1px 0 rgba(255,255,255,0.8);

  transition:0.35s ease;
}

/* HOVER */
.contact-box:hover .contact-icon{
  transform:translateY(-4px);

  background:#0f172a;

  color:#ffffff;

  box-shadow:
  0 12px 30px rgba(15,23,42,0.18);
}

.contact-box h4{
  margin-bottom:5px;
}

.contact-box a{
  color:#22c55e;
  text-decoration:none;
  font-weight:600;
}

/* FORM */
.premium-contact-form{
  background:#020617;

  padding:50px;

  border-radius:30px;

  box-shadow:0 10px 40px rgba(0,0,0,0.1);
}

.premium-contact-form h3{
  color:#fff;

  font-size:34px;

  margin-bottom:30px;
}

.premium-contact-form form{
  display:flex;
  flex-direction:column;
  gap:18px;
}

.premium-contact-form input,
.premium-contact-form textarea{
  width:100%;

  padding:16px 18px;

  border:none;
  outline:none;

  border-radius:12px;

  background:#111827;

  color:#fff;

  font-size:15px;
}

.premium-contact-form textarea{
  min-height:160px;
  resize:none;
}

/* MAP */
.map-section{
  padding:0;
}

.map-section iframe{
  width:100%;
  height:450px;
  border:0;
}

/* MOBILE */
@media(max-width:768px){

  .premium-contact{
    padding:70px 20px;
  }

  .premium-contact-container{
    grid-template-columns:1fr;
  }

  .premium-contact-info,
  .premium-contact-form{
    padding:30px 25px;
  }

  .premium-contact-info h2{
    font-size:32px;
  }

  .premium-contact-form h3{
    font-size:28px;
  }

  .map-section iframe{
    height:320px;
  }

}


/* PREMIUM SECTION */
.premium-split{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:80px;
  align-items:center;
  padding:120px 60px;
  background:#fff;
}

/* IMAGE WRAPPER */
.split-images{
  position:relative;
  min-height:620px;
}

/* BACK IMAGE */
.back-img{
  position:absolute;
  width:78%;
  height:540px;
  left:0;
  top:0;

  object-fit:cover;
  border-radius:25px;

  z-index:1;
}

/* FRONT IMAGE */
.front-img{
  position:absolute;
  width:42%;
  height:260px;

  right:0;
  bottom:40px;

  object-fit:cover;
  border-radius:25px;

  border:8px solid #fff;

  z-index:2;
}

/* ================= MOBILE FIX ================= */
@media(max-width:768px){

  .premium-split{
    grid-template-columns:1fr;
    gap:40px;
    padding:80px 20px;
  }

  .split-images{
    min-height:420px;
    width:100%;
  }

  /* BACK IMAGE */
  .back-img{
    width:85%;
    height:320px;

    left:0;
    top:0;
  }

  /* FRONT IMAGE */
  .front-img{
    width:50%;
    height:180px;

    right:0;
    bottom:0;
  }

}

/* =========================================================
PRODUCTS HERO
========================================================= */

.products-hero{
  height:60vh;

  background:
  linear-gradient(
    rgba(0,0,0,0.55),
    rgba(0,0,0,0.55)
  ),
  url('../images/about.jpg');

  background-size:cover;
  background-position:center;

  display:flex;
  align-items:center;
  justify-content:center;

  text-align:center;
  position:relative;
}

.products-overlay{
  position:absolute;
  inset:0;
}

.products-hero-content{
  position:relative;
  z-index:2;

  max-width:900px;
  padding:0 20px;
}

.products-hero-content h1{
  color:#fff;
  font-size:58px;
  font-weight:700;

  margin-bottom:20px;

  letter-spacing:-2px;
  line-height:1.1;

  text-shadow:
  0 8px 30px rgba(0,0,0,0.35);
}

.products-hero-content p{
  color:rgba(255,255,255,0.92);

  font-size:18px;
  line-height:1.9;

  max-width:720px;
  margin:auto;
}


/* =========================================================
PRODUCTS SECTION
========================================================= */

.products-section{
  padding:100px 50px;

  background:
  linear-gradient(
    180deg,
    #f8fafc 0%,
    #eef2f7 100%
  );

  position:relative;
  overflow:hidden;
}

/* GLOW EFFECT */
.products-section::before{
  content:"";
  position:absolute;

  width:500px;
  height:500px;

  border-radius:50%;

  background:rgba(34,197,94,0.08);

  top:-200px;
  right:-150px;

  filter:blur(80px);
}


/* =========================================================
TITLE
========================================================= */

.products-title{
  text-align:center;
  margin-bottom:60px;

  position:relative;
  z-index:2;
}

.products-title span{
  display:inline-block;

  background:#dcfce7;
  color:#15803d;

  padding:10px 22px;

  border-radius:100px;

  font-size:14px;
  font-weight:600;

  margin-bottom:18px;
}

.products-title h2{
  font-size:46px;
  color:#020617;
  font-weight:700;

  letter-spacing:-1px;
}


/* =========================================================
SLIDER WRAPPER
========================================================= */

.products-slider-wrapper{
  position:relative;
}


/* =========================================================
SLIDER
========================================================= */

.products-slider{
  display:flex;
  gap:26px;

  overflow-x:auto;
  scroll-behavior:smooth;

  scrollbar-width:none;

  position:relative;
  z-index:2;

  padding:10px 0;
}


/* =========================================================
SIDE ARROWS
========================================================= */

.slide-btn{
  position:absolute;
  top:50%;

  transform:translateY(-50%);

  width:58px;
  height:58px;

  border:none;
  border-radius:50%;

  background:rgba(255,255,255,0.96);
  color:#020617;

  font-size:22px;
  cursor:pointer;

  z-index:20;

  box-shadow:
  0 10px 30px rgba(0,0,0,0.12);

  transition:0.35s ease;
}

/* LEFT */
.slide-btn.prev-btn{
  left:0;
}

/* RIGHT */
.slide-btn.next-btn{
  right:0;
}

/* HOVER */
.slide-btn:hover{
  background:#020617;
  color:#fff;

  transform:
  translateY(-50%)
  scale(1.06);
}


/* =========================================================
PRODUCT CARD
========================================================= */

.product-card{
  min-width:calc(50% - 13px);
  flex:0 0 calc(50% - 13px);

  background:rgba(255,255,255,0.82);

  backdrop-filter:blur(18px);

  border:1px solid rgba(255,255,255,0.7);

  border-radius:30px;

  overflow:hidden;

  box-shadow:
  0 18px 50px rgba(15,23,42,0.08);

  transition:0.45s ease;

  position:relative;
}

/* PREMIUM TOP LINE */
.product-card::before{
  content:"";
  position:absolute;

  top:0;
  left:0;

  width:100%;
  height:4px;

  background:
  linear-gradient(
    90deg,
    #22c55e,
    #4ade80,
    #22c55e
  );

  z-index:2;
}

.product-card:hover{
  transform:
  translateY(-10px);

  box-shadow:
  0 25px 70px rgba(15,23,42,0.15);
}


/* =========================================================
IMAGE
========================================================= */

.product-image-wrap{
  height:420px;

  overflow:hidden;
  position:relative;
}

.product-image-wrap::after{
  content:"";
  position:absolute;
  inset:0;

  background:
  linear-gradient(
    to top,
    rgba(0,0,0,0.25),
    transparent 40%
  );
}

.product-image-wrap img{
  width:100%;
  height:100%;

  object-fit:cover;

  transition:0.6s ease;
}

.product-card:hover .product-image-wrap img{
  transform:scale(1.04);
}


/* =========================================================
CONTENT
========================================================= */

.product-content{
  padding:26px;
}

.product-label{
  display:inline-block;

  padding:8px 16px;

  border-radius:100px;

  background:#f1f5f9;
  color:#475569;

  font-size:13px;
  font-weight:600;

  margin-bottom:18px;
}

.product-content h3{
  font-size:26px;
  color:#020617;

  margin-bottom:18px;

  font-weight:700;
  letter-spacing:-0.5px;
}

.product-content p{
  color:#64748b;

  line-height:1.8;
  font-size:15px;

  margin-bottom:24px;
}


/* =========================================================
SIZE LABEL
========================================================= */

.product-size{
  display:inline-flex;
  align-items:center;
  gap:10px;

  padding:12px 22px;

  border-radius:100px;

  background:
  linear-gradient(
    135deg,
    #ecfdf5,
    #dcfce7
  );

  color:#15803d;

  font-size:14px;
  font-weight:700;

  margin-bottom:22px;

  box-shadow:
  inset 0 1px 2px rgba(255,255,255,0.6);
}


/* =========================================================
BUTTON
========================================================= */

.product-content .btn{
  width:100%;
  text-align:center;

  padding:15px 22px;

  border-radius:14px;

  font-weight:600;
  font-size:15px;

  background:
  linear-gradient(
    135deg,
    #22c55e,
    #16a34a
  );

  box-shadow:
  0 12px 25px rgba(34,197,94,0.28);

  transition:0.35s ease;
}

.product-content .btn:hover{
  transform:translateY(-3px);

  box-shadow:
  0 18px 35px rgba(34,197,94,0.38);
}


/* =========================================================
MOBILE
========================================================= */

@media(max-width:768px){

  .products-hero{
    height:50vh;
  }

  .products-hero-content h1{
    font-size:36px;
    line-height:1.2;
  }

  .products-hero-content p{
    font-size:15px;
  }

  .products-section{
    padding:80px 20px;
  }

  .products-title h2{
    font-size:34px;
  }

  .products-slider{
    padding:10px;
    gap:20px;
  }

  .product-card{
    min-width:92%;
  }

  .product-image-wrap{
    height:320px;
  }

  .product-content{
    padding:22px;
  }

  .product-content h3{
    font-size:22px;
  }

  .slide-btn{
    width:46px;
    height:46px;

    font-size:18px;
  }

  .slide-btn.prev-btn{
    left:5px;
  }

  .slide-btn.next-btn{
    right:5px;
  }

}

/* =========================================================
MARBLE GRID SECTION
========================================================= */

.marble-grid-section{
  padding:100px 5%;
  background:#ffffff;
}

/* TITLE */
.marble-grid-title{
  text-align:center;
  margin-bottom:55px;
}

.marble-grid-title h2{
  font-size:42px;
  color:#020617;
  margin-bottom:16px;
  font-weight:700;
}

.marble-grid-title p{
  max-width:700px;
  margin:auto;

  color:#64748b;
  line-height:1.8;
}


/* =========================================================
GRID
========================================================= */

.marble-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:30px;

  max-width:1400px;
  margin:auto;
}


/* =========================================================
CARD
========================================================= */

.marble-item{
  background:#fff;

  border-radius:28px;
  overflow:hidden;

  box-shadow:
  0 10px 35px rgba(0,0,0,0.08);

  transition:0.4s ease;
}

.marble-item:hover{
  transform:translateY(-10px);

  box-shadow:
  0 20px 55px rgba(0,0,0,0.12);
}


/* =========================================================
IMAGE
========================================================= */

.marble-image{
  height:360px;
  overflow:hidden;
}

.marble-image img{
  width:100%;
  height:100%;

  object-fit:cover;

  transition:0.6s ease;
}

.marble-item:hover .marble-image img{
  transform:scale(1.05);
}


/* =========================================================
CONTENT
========================================================= */

.marble-content{
  padding:28px;
}

.marble-size{
  display:inline-block;

  padding:10px 18px;
  margin-bottom:18px;

  border-radius:100px;

  background:#020617;
  color:#fff;

  font-size:12px;
  font-weight:600;
  letter-spacing:1px;
}

.marble-content h3{
  font-size:24px;
  color:#020617;

  margin-bottom:14px;
  font-weight:700;
}

.marble-content p{
  color:#64748b;
  line-height:1.8;
  font-size:15px;
}


/* =========================================================
MOBILE
========================================================= */

@media(max-width:768px){

  .marble-grid{
    grid-template-columns:1fr;
    gap:24px;
  }

  .marble-grid-title h2{
    font-size:32px;
  }

  .marble-image{
    height:280px;
  }

  .marble-content{
    padding:22px;
  }

}

/* =========================================================
EXTERNAL CLADDING SECTION
========================================================= */

.external-cladding-section{
  padding:110px 5%;
  background:#f8fafc;

  position:relative;
  overflow:hidden;
}


/* =========================================================
TITLE
========================================================= */

.external-title{
  text-align:center;
  margin-bottom:60px;
}

.external-title span{
  display:inline-block;

  padding:10px 22px;

  border-radius:100px;

  background:#dcfce7;
  color:#15803d;

  font-size:13px;
  font-weight:700;

  margin-bottom:18px;
}

.external-title h2{
  font-size:48px;
  color:#020617;

  margin-bottom:18px;
  font-weight:700;
}

.external-title p{
  max-width:760px;
  margin:auto;

  color:#64748b;

  line-height:1.9;
}


/* =========================================================
SLIDER WRAPPER
========================================================= */

.external-slider-wrapper{
  position:relative;
}


/* =========================================================
SLIDER
========================================================= */

.external-slider{
  display:flex;
  gap:26px;

  overflow-x:auto;
  scroll-behavior:smooth;

  scrollbar-width:none;

  padding:10px 0;
}

.external-slider::-webkit-scrollbar{
  display:none;
}


/* =========================================================
ARROWS
========================================================= */

.external-btn{
  position:absolute;
  top:50%;

  transform:translateY(-50%);

  width:62px;
  height:62px;

  border:none;
  border-radius:50%;

  background:#fff;
  color:#020617;

  font-size:24px;
  cursor:pointer;

  z-index:20;

  box-shadow:
  0 10px 35px rgba(0,0,0,0.12);

  transition:0.35s ease;
}

.external-btn:hover{
  background:#020617;
  color:#fff;

  transform:
  translateY(-50%)
  scale(1.08);
}

.prev-external{
  left:-25px;
}

.next-external{
  right:-25px;
}


/* =========================================================
CARD
========================================================= */

.external-card{
  min-width:calc(50% - 13px);
  flex:0 0 calc(50% - 13px);

  background:#fff;

  border-radius:30px;
  overflow:hidden;

  box-shadow:
  0 15px 45px rgba(15,23,42,0.08);

  transition:0.45s ease;
}

.external-card:hover{
  transform:translateY(-10px);

  box-shadow:
  0 25px 65px rgba(15,23,42,0.14);
}


/* =========================================================
IMAGE
========================================================= */

.external-image{
  height:420px;
  overflow:hidden;
}

.external-image img{
  width:100%;
  height:100%;

  object-fit:cover;

  transition:0.6s ease;
}

.external-card:hover .external-image img{
  transform:scale(1.05);
}


/* =========================================================
CONTENT
========================================================= */

.external-content{
  padding:28px;
}

.external-size{
  display:inline-block;

  padding:10px 18px;

  border-radius:100px;

  background:#020617;
  color:#fff;

  font-size:12px;
  font-weight:700;

  margin-bottom:18px;
}

.external-content h3{
  font-size:26px;
  color:#020617;

  margin-bottom:14px;
  font-weight:700;
}

.external-content p{
  color:#64748b;

  line-height:1.8;
  font-size:15px;
}


/* =========================================================
MOBILE
========================================================= */

@media(max-width:768px){

  .external-cladding-section{
    padding:80px 20px;
  }

  .external-title h2{
    font-size:34px;
  }

  .external-slider{
    gap:20px;
  }

  .external-card{
    min-width:100%;
    flex:0 0 100%;
  }

  .external-image{
    height:300px;
  }

  .external-btn{
    width:48px;
    height:48px;

    font-size:18px;
  }

  .prev-external{
    left:5px;
  }

  .next-external{
    right:5px;
  }

}

/* =========================================================
INTERNAL CLADDING SECTION
========================================================= */

.internal-cladding-section{
  padding:110px 5%;
  background:#ffffff;

  position:relative;
  overflow:hidden;
}


/* =========================================================
TITLE
========================================================= */

.internal-title{
  text-align:center;
  margin-bottom:60px;
}

.internal-title span{
  display:inline-block;

  padding:10px 22px;

  border-radius:100px;

  background:#dcfce7;
  color:#15803d;

  font-size:13px;
  font-weight:700;

  margin-bottom:18px;
}

.internal-title h2{
  font-size:48px;
  color:#020617;

  margin-bottom:18px;
  font-weight:700;
}

.internal-title p{
  max-width:760px;
  margin:auto;

  color:#64748b;

  line-height:1.9;
}


/* =========================================================
SLIDER WRAPPER
========================================================= */

.internal-slider-wrapper{
  position:relative;
}


/* =========================================================
SLIDER
========================================================= */

.internal-slider{
  display:flex;
  gap:26px;

  overflow-x:auto;
  scroll-behavior:smooth;

  scrollbar-width:none;

  padding:10px 0;
}

.internal-slider::-webkit-scrollbar{
  display:none;
}


/* =========================================================
ARROWS
========================================================= */

.internal-btn{
  position:absolute;
  top:50%;

  transform:translateY(-50%);

  width:62px;
  height:62px;

  border:none;
  border-radius:50%;

  background:#fff;
  color:#020617;

  font-size:24px;
  cursor:pointer;

  z-index:20;

  box-shadow:
  0 10px 35px rgba(0,0,0,0.12);

  transition:0.35s ease;
}

.internal-btn:hover{
  background:#020617;
  color:#fff;

  transform:
  translateY(-50%)
  scale(1.08);
}

.prev-internal{
  left:-25px;
}

.next-internal{
  right:-25px;
}


/* =========================================================
CARD
========================================================= */

.internal-card{
  min-width:calc(50% - 13px);
  flex:0 0 calc(50% - 13px);

  background:#fff;

  border-radius:30px;
  overflow:hidden;

  box-shadow:
  0 15px 45px rgba(15,23,42,0.08);

  transition:0.45s ease;
}

.internal-card:hover{
  transform:translateY(-10px);

  box-shadow:
  0 25px 65px rgba(15,23,42,0.14);
}


/* =========================================================
IMAGE
========================================================= */

.internal-image{
  height:420px;
  overflow:hidden;
}

.internal-image img{
  width:100%;
  height:100%;

  object-fit:cover;

  transition:0.6s ease;
}

.internal-card:hover .internal-image img{
  transform:scale(1.05);
}


/* =========================================================
CONTENT
========================================================= */

.internal-content{
  padding:28px;
}

.internal-size{
  display:inline-block;

  padding:10px 18px;

  border-radius:100px;

  background:#020617;
  color:#fff;

  font-size:12px;
  font-weight:700;

  margin-bottom:18px;
}

.internal-content h3{
  font-size:26px;
  color:#020617;

  margin-bottom:14px;
  font-weight:700;
}

.internal-content p{
  color:#64748b;

  line-height:1.8;
  font-size:15px;
}


/* =========================================================
MOBILE
========================================================= */

@media(max-width:768px){

  .internal-cladding-section{
    padding:80px 20px;
  }

  .internal-title h2{
    font-size:34px;
  }

  .internal-slider{
    gap:20px;
  }

  .internal-card{
    min-width:100%;
    flex:0 0 100%;
  }

  .internal-image{
    height:300px;
  }

  .internal-btn{
    width:48px;
    height:48px;

    font-size:18px;
  }

  .prev-internal{
    left:5px;
  }

  .next-internal{
    right:5px;
  }

}

/* =========================================================
DECKING SECTION
========================================================= */

.decking-section{
  padding:110px 5%;
  background:#f8fafc;

  position:relative;
  overflow:hidden;
}


/* =========================================================
TITLE
========================================================= */

.decking-title{
  text-align:center;
  margin-bottom:60px;
}

.decking-title span{
  display:inline-block;

  padding:10px 22px;

  border-radius:100px;

  background:#dcfce7;
  color:#15803d;

  font-size:13px;
  font-weight:700;

  margin-bottom:18px;
}

.decking-title h2{
  font-size:48px;
  color:#020617;

  margin-bottom:18px;
  font-weight:700;
}

.decking-title p{
  max-width:760px;
  margin:auto;

  color:#64748b;

  line-height:1.9;
}


/* =========================================================
SLIDER WRAPPER
========================================================= */

.decking-slider-wrapper{
  position:relative;
}


/* =========================================================
SLIDER
========================================================= */

.decking-slider{
  display:flex;
  gap:26px;

  overflow-x:auto;
  scroll-behavior:smooth;

  scrollbar-width:none;

  padding:10px 0;
}

.decking-slider::-webkit-scrollbar{
  display:none;
}


/* =========================================================
ARROWS
========================================================= */

.decking-btn{
  position:absolute;
  top:50%;

  transform:translateY(-50%);

  width:62px;
  height:62px;

  border:none;
  border-radius:50%;

  background:#fff;
  color:#020617;

  font-size:24px;
  cursor:pointer;

  z-index:20;

  box-shadow:
  0 10px 35px rgba(0,0,0,0.12);

  transition:0.35s ease;
}

.decking-btn:hover{
  background:#020617;
  color:#fff;

  transform:
  translateY(-50%)
  scale(1.08);
}

.prev-decking{
  left:-25px;
}

.next-decking{
  right:-25px;
}


/* =========================================================
CARD
========================================================= */

.decking-card{
  min-width:calc(50% - 13px);
  flex:0 0 calc(50% - 13px);

  background:#fff;

  border-radius:30px;
  overflow:hidden;

  box-shadow:
  0 15px 45px rgba(15,23,42,0.08);

  transition:0.45s ease;
}

.decking-card:hover{
  transform:translateY(-10px);

  box-shadow:
  0 25px 65px rgba(15,23,42,0.14);
}


/* =========================================================
IMAGE
========================================================= */

.decking-image{
  height:420px;
  overflow:hidden;
}

.decking-image img{
  width:100%;
  height:100%;

  object-fit:cover;

  transition:0.6s ease;
}

.decking-card:hover .decking-image img{
  transform:scale(1.05);
}


/* =========================================================
CONTENT
========================================================= */

.decking-content{
  padding:28px;
}

.decking-size{
  display:inline-block;

  padding:10px 18px;

  border-radius:100px;

  background:#020617;
  color:#fff;

  font-size:12px;
  font-weight:700;

  margin-bottom:18px;
}

.decking-content h3{
  font-size:26px;
  color:#020617;

  margin-bottom:14px;
  font-weight:700;
}

.decking-content p{
  color:#64748b;

  line-height:1.8;
  font-size:15px;
}


/* =========================================================
MOBILE
========================================================= */

@media(max-width:768px){

  .decking-section{
    padding:80px 20px;
  }

  .decking-title h2{
    font-size:34px;
  }

  .decking-slider{
    gap:20px;
  }

  .decking-card{
    min-width:100%;
    flex:0 0 100%;
  }

  .decking-image{
    height:300px;
  }

  .decking-btn{
    width:48px;
    height:48px;

    font-size:18px;
  }

  .prev-decking{
    left:5px;
  }

  .next-decking{
    right:5px;
  }

}

/* =========================================================
TURF SECTION BUTTON FIX
========================================================= */

.products-section .prev-turf{
  position:absolute;
  top:50%;
  left:10px;

  transform:translateY(-50%);

  width:60px;
  height:60px;

  border:none;
  border-radius:50%;

  background:#ffffff;
  color:#020617;

  font-size:26px;
  font-weight:700;

  z-index:9999;

  display:flex;
  align-items:center;
  justify-content:center;

  cursor:pointer;

  box-shadow:
  0 10px 30px rgba(0,0,0,0.18);
}

.products-section .next-turf{
  position:absolute;
  top:50%;
  right:10px;

  transform:translateY(-50%);

  width:60px;
  height:60px;

  border:none;
  border-radius:50%;

  background:#ffffff;
  color:#020617;

  font-size:26px;
  font-weight:700;

  z-index:9999;

  display:flex;
  align-items:center;
  justify-content:center;

  cursor:pointer;

  box-shadow:
  0 10px 30px rgba(0,0,0,0.18);
}

/* HOVER */
.products-section .prev-turf:hover,
.products-section .next-turf:hover{
  background:#22c55e;
  color:#fff;
}

/* MOBILE */
@media(max-width:768px){

  .products-section .prev-turf,
  .products-section .next-turf{
    width:46px;
    height:46px;
    font-size:20px;
  }

  .products-section .prev-turf{
    left:5px;
  }

  .products-section .next-turf{
    right:5px;
  }

}