@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&family=Playfair+Display:wght@500;600;700&display=swap');

:root{
  --primary:#0b6db7;
  --secondary:#f2b705;
  --accent:#1fa86f;
  --danger:#e63946;
  --dark:#0f172a;
  --light:#f8fafc;
  --white:#ffffff;
}

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

body{
  font-family:'Poppins', sans-serif;
  background-color:var(--light);
  color:var(--dark);
}

h1,h2,h3,h4,h5{
  font-family:'Playfair Display', serif;
}

a{
  text-decoration:none;
}

.section{
  padding:80px 0;
}

/* ================= PREMIUM BUTTON SYSTEM ================= */
.btn{
  padding:14px 32px;
  border-radius:16px;
  font-weight:600;
  letter-spacing:.3px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  transition:all .35s ease;
}

/* PRIMARY */
.btn-primary{
  background:linear-gradient(135deg,var(--primary),var(--accent));
  border:none;
  color:#fff;
  box-shadow:0 12px 30px rgba(0,0,0,.25);
}

.btn-primary:hover{
  transform:translateY(-3px);
  box-shadow:0 20px 45px rgba(0,0,0,.35);
  color:#fff;
}

/* OUTLINE */
.btn-outline{
  background:#fff;
  border:2px solid var(--primary);
  color:var(--primary);
}

.btn-outline:hover{
  background:var(--primary);
  color:#fff;
  transform:translateY(-3px);
}

/* MOBILE */
@media(max-width:768px){
  .btn{
    width:100%;
    padding:16px;
  }
}


/* ===== GLOBAL SECTION FIX ===== */
.section{
  position:relative;
  background:var(--white);
}

/* Push content below fixed navbar */
body{
  padding-top:90px;
}
.hero-responsive,
.hero-wrap{
  position:relative;
  z-index:1;
}

/* ===== PREMIUM NAVBAR ===== */
.premium-nav{
  background:rgba(255,255,255,0.96);
  backdrop-filter:blur(12px);
  box-shadow:0 15px 40px rgba(0,0,0,0.08);
  transition:0.3s;
}

.premium-nav .navbar-brand img{
  height:120px;
}

.premium-nav .nav-link{
  font-weight:500;
  color:var(--dark);
  position:relative;
  padding:8px 0;
}

.premium-nav .nav-link::after{
  content:'';
  position:absolute;
  left:0;
  bottom:-6px;
  width:0;
  height:2px;
  background:linear-gradient(90deg,var(--secondary),var(--accent));
  transition:0.4s ease;
}

.premium-nav .nav-link:hover::after,
.premium-nav .nav-link.active::after{
  width:100%;
}

/* PHONE BUTTON */
.phone-btn{
  background:linear-gradient(135deg,var(--primary),var(--accent));
  color:var(--white);
  padding:10px 18px;
  border-radius:30px;
  font-weight:600;
  display:flex;
  align-items:center;
  gap:8px;
  box-shadow:0 10px 25px rgba(0,0,0,0.15);
  transition:0.3s;
}

.phone-btn:hover{
  transform:translateY(-2px);
  color:var(--white);
}

/* MOBILE FIX */
@media(max-width:991px){
  .phone-btn{
    margin-top:15px;
    justify-content:center;
  }
}

/* ================= SUPER MOBILE NAV ================= */
@media (max-width: 991px) {

  /* Navbar container */
  .premium-nav{
    padding:10px 0;
  }

  /* Logo center feel */
  .premium-nav .navbar-brand img{
    height:98px;
  }

  /* Mobile menu box */
  .premium-nav .navbar-collapse{
    background:var(--white);
    margin-top:15px;
    border-radius:18px;
    padding:20px;
    box-shadow:0 20px 40px rgba(0,0,0,0.15);
    animation:mobileNavFade 0.4s ease;
  }

  /* Nav items */
  .premium-nav .nav-item{
    margin-bottom:12px;
  }

  .premium-nav .nav-link{
    font-size:16px;
    font-weight:600;
    padding:14px 16px;
    border-radius:12px;
    background:linear-gradient(90deg,#f8fafc,#ffffff);
    box-shadow:0 6px 15px rgba(0,0,0,0.06);
    display:flex;
    align-items:center;
    justify-content:center;
  }

  /* Active / Hover */
  .premium-nav .nav-link.active,
  .premium-nav .nav-link:hover{
    background:linear-gradient(90deg,var(--secondary),var(--accent));
    color:var(--dark);
  }

  .premium-nav .nav-link::after{
    display:none;
  }

  /* Phone button full width */
  .phone-btn{
    width:100%;
    justify-content:center;
    padding:14px;
    font-size:16px;
    border-radius:16px;
  }

  /* Toggler button */
  .navbar-toggler{
    border:none;
    box-shadow:none;
  }

  .navbar-toggler:focus{
    box-shadow:none;
  }

  /* Animation */
  @keyframes mobileNavFade{
    from{
      opacity:0;
      transform:translateY(-10px);
    }
    to{
      opacity:1;
      transform:translateY(0);
    }
  }
}

/* ================= SUPER HERO ================= */
.super-hero{
  position:relative;
  z-index:1;
  
}

.hero-slide{
  position:relative;
  min-height:100vh;
  display:flex;
  align-items:center;
  justify-content:flex-start;
  overflow:hidden;
}

/* IMAGE */
.hero-bg{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  z-index:1;
}

/* OVERLAY */
.hero-overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(
    120deg,
    rgba(0,0,0,0.65),
    rgba(0,0,0,0.35)
  );
  z-index:2;
}

/* CONTENT */
.hero-container{
  position:relative;
  z-index:3; /* MOST IMPORTANT */
  max-width:600px;
  padding:0 15px;
  margin-left:5%;
}

.hero-tag{
  display:inline-block;
  background:rgba(255,255,255,0.15);
  color:var(--secondary);
  padding:6px 16px;
  border-radius:20px;
  font-size:14px;
  margin-bottom:18px;
}

.hero-container h1{
  font-size:3.2rem;
  color:#fff;
  margin-bottom:16px;
  line-height:1.2;
}

.hero-container p{
  font-size:1.05rem;
  color:#e5e7eb;
  margin-bottom:30px;
}

.hero-buttons{
  display:flex;
  gap:16px;
  flex-wrap:wrap;
}

/* CONTROLS */
.carousel-control-prev,
.carousel-control-next{
  width:48px;
  height:48px;
  background:rgba(255,255,255,0.2);
  border-radius:50%;
  top:50%;
  transform:translateY(-50%);
}

/* TABLET */
@media(max-width:991px){
  .hero-container h1{
    font-size:2.6rem;
  }
}

/* MOBILE */
@media(max-width:768px){
  .hero-slide{
    justify-content:center;
    text-align:center;
  }

  .hero-container{
    margin:0 auto;
  }

  .hero-container h1{
    font-size:2.2rem;
  }

  .hero-buttons{
    justify-content:center;
  }
}

/* SMALL MOBILE */
@media(max-width:480px){
  .hero-container h1{
    font-size:1.9rem;
  }
}

/* ================= HERO BUTTONS ================= */

/* BUTTON WRAPPER */
.hero-buttons{
  display:flex;
  gap:16px;
  flex-wrap:wrap;
}

/* COMMON BUTTON STYLE */
.hero-buttons .btn{
  min-width:180px;
  padding:14px 30px;
  font-size:16px;
  font-weight:600;
  border-radius:14px;
  transition:all .3s ease;
  display:inline-flex;
  align-items:center;
  justify-content:center;
}

/* PRIMARY HERO BUTTON */
.hero-buttons .btn-primary{
  background:linear-gradient(
    135deg,
    var(--primary),
    var(--accent)
  );
  border:none;
  color:var(--white);
  box-shadow:0 10px 25px rgba(0,0,0,.25);
}

/* PRIMARY HOVER */
.hero-buttons .btn-primary:hover{
  transform:translateY(-3px);
  box-shadow:0 18px 40px rgba(0,0,0,.35);
}

/* OUTLINE HERO BUTTON */
.hero-buttons .btn-outline-light{
  background:rgba(255,255,255,.1);
  border:1.5px solid rgba(255,255,255,.7);
  color:var(--white);
  backdrop-filter:blur(6px);
}

/* OUTLINE HOVER */
.hero-buttons .btn-outline-light:hover{
  background:var(--white);
  color:var(--dark);
  transform:translateY(-3px);
  box-shadow:0 14px 30px rgba(0,0,0,.3);
}

/* ICON SPACING */
.hero-buttons .btn i{
  margin-right:6px;
}

/* ================= RESPONSIVE ================= */

/* TABLET */
@media(max-width:991px){
  .hero-buttons .btn{
    min-width:160px;
    padding:14px 26px;
    font-size:15px;
  }
}

/* MOBILE */
@media(max-width:768px){
  .hero-buttons{
    justify-content:center;
  }

  .hero-buttons .btn{
    width:100%;
    min-width:100%;
    padding:16px;
    font-size:15px;
  }
}

/* SMALL MOBILE */
@media(max-width:480px){
  .hero-buttons .btn{
    font-size:14px;
    padding:14px;
  }
}


/* ================= SUPER ABOUT SECTION ================= */
.about-super{
  background:#ffffff;
  padding:100px 0;
  width:100%;
}

/* CHIP */
.about-chip{
  display:inline-block;
  background:rgba(242,183,5,0.15);
  color:var(--secondary);
  padding:6px 18px;
  border-radius:30px;
  font-size:14px;
  margin-bottom:16px;
}

/* HEADING */
.about-heading{
  font-size:2.8rem;
  line-height:1.25;
  margin-bottom:18px;
}

/* TEXT */
.about-para{
  font-size:16px;
  color:#475569;
  line-height:1.8;
  margin-bottom:14px;
}

/* STATS */
.about-stats{
  display:flex;
  gap:18px;
  margin:30px 0;
  flex-wrap:wrap;
}

.stat-box{
  background:#f8fafc;
  padding:18px 22px;
  border-radius:16px;
  text-align:center;
  box-shadow:0 10px 25px rgba(0,0,0,0.06);
  min-width:140px;
}

.stat-box h4{
  font-size:22px;
  color:var(--primary);
  margin-bottom:4px;
}

.stat-box span{
  font-size:14px;
  color:#64748b;
}

/* CTA */
.about-cta{
  padding:14px 34px;
  border-radius:16px;
}

/* IMAGE */
.about-image-card{
  border-radius:26px;
  overflow:hidden;
  box-shadow:0 30px 60px rgba(0,0,0,0.15);
}

.about-image-card img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:transform .6s ease;
}

.about-image-card:hover img{
  transform:scale(1.05);
}

/* ================= RESPONSIVE ================= */
@media(max-width:991px){
  .about-heading{
    font-size:2.3rem;
  }
}

@media(max-width:768px){
  .about-super{
    text-align:center;
    padding:70px 0;
  }

  .about-stats{
    justify-content:center;
  }

  .about-cta{
    width:100%;
  }
}


/* ================= SERVICES SECTION ================= */
.services-super{
  background:#ffffff;
  padding:100px 0;
}

/* HEADER */
.services-chip{
  display:inline-block;
  background:rgba(11,109,183,0.12);
  color:var(--primary);
  padding:6px 18px;
  border-radius:30px;
  font-size:14px;
  margin-bottom:14px;
}

.services-title{
  font-size:2.7rem;
  margin-bottom:10px;
}

.services-sub{
  max-width:650px;
  margin:auto;
  color:#64748b;
}

/* CARD */
.service-card{
  background:#f8fafc;
  padding:34px 26px;
  border-radius:22px;
  height:100%;
  text-align:center;
  box-shadow:0 15px 35px rgba(0,0,0,.08);
  transition:.35s ease;
}

.service-card i{
  font-size:42px;
  color:var(--primary);
  margin-bottom:18px;
}

.service-card h5{
  font-size:20px;
  margin-bottom:12px;
}

.service-card p{
  color:#64748b;
  line-height:1.7;
}

/* HOVER */
.service-card:hover{
  transform:translateY(-8px);
  box-shadow:0 25px 55px rgba(0,0,0,.15);
}

/* RESPONSIVE */
@media(max-width:768px){
  .services-title{
    font-size:2.2rem;
  }
}


/* ================= ULTRA PREMIUM LOOP ================= */
.lux-loop{
  background:linear-gradient(
    180deg,
    #ffffff,
    #f8fafc
  );
  padding:48px 0;
  overflow:hidden;
  position:relative;
}

/* soft fade edges */
.lux-loop::before,
.lux-loop::after{
  content:'';
  position:absolute;
  top:0;
  width:120px;
  height:100%;
  z-index:2;
  pointer-events:none;
}

.lux-loop::before{
  left:0;
  background:linear-gradient(to right,#fff,transparent);
}

.lux-loop::after{
  right:0;
  background:linear-gradient(to left,#fff,transparent);
}

/* TRACK */
.lux-loop-track{
  display:flex;
  align-items:center;
  gap:36px;
  width:max-content;
  will-change:transform;
}

/* ITEM */
.lux-loop-track span{
  font-size:19px;
  font-weight:500;
  letter-spacing:.3px;
  padding:14px 34px;
  border-radius:999px;
  background:rgba(255,255,255,.75);
  backdrop-filter:blur(10px);
  color:#0f172a;
  white-space:nowrap;

  box-shadow:
    0 15px 35px rgba(0,0,0,.08),
    inset 0 0 0 1px rgba(255,255,255,.5);

  transition:all .45s cubic-bezier(.4,0,.2,1);
}

/* PREMIUM HOVER */
.lux-loop-track span:hover{
  background:linear-gradient(
    135deg,
    var(--primary),
    var(--accent)
  );
  color:#fff;
  transform:translateY(-6px) scale(1.03);
  box-shadow:0 25px 55px rgba(0,0,0,.25);
}

/* MOBILE */
@media(max-width:768px){
  .lux-loop-track span{
    font-size:15px;
    padding:12px 22px;
  }
}


/* ================= PREMIUM PARALLAX ================= */
.parallax-premium{
  position:relative;
  min-height:70vh;
  display:flex;
  align-items:center;
  background-image:url("./img/bg.png"); /* change image */
  background-size:cover;
  background-position:center;
  background-attachment:fixed;
  overflow:hidden;
}

/* OVERLAY */
.parallax-overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(
    120deg,
    rgba(0,0,0,.65),
    rgba(0,0,0,.35)
  );
}

/* CONTENT */
.parallax-content{
  position:relative;
  z-index:2;
  max-width:680px;
  color:#fff;
}

.parallax-content h2{
  font-size:3rem;
  line-height:1.25;
  margin-bottom:16px;
}

.parallax-content p{
  font-size:1.1rem;
  color:#e5e7eb;
  margin-bottom:32px;
}

/* BUTTONS */
.parallax-btns{
  display:flex;
  gap:18px;
  flex-wrap:wrap;
}

/* MOBILE FIX (parallax disabled on mobile for performance) */
@media(max-width:768px){
  .parallax-premium{
   
    min-height:60vh;
    text-align:center;
  }

  .parallax-content{
    margin:auto;
  }

  .parallax-content h2{
    font-size:2.2rem;
  }

  .parallax-btns{
    justify-content:center;
  }
}


/* ================= ULTRA GALLERY ================= */
.gallery-ultra{
  background:#ffffff;
  padding:120px 0;
}

/* HEADER */
.gallery-header{
  text-align:center;
  margin-bottom:70px;
}

.gallery-badge{
  display:inline-block;
  background:rgba(11,109,183,0.12);
  color:var(--primary);
  padding:8px 22px;
  border-radius:999px;
  font-size:14px;
  margin-bottom:16px;
}

.gallery-heading{
  font-size:3rem;
  margin-bottom:12px;
}

.gallery-sub{
  max-width:620px;
  margin:auto;
  color:#64748b;
}

/* GRID */
.gallery-ultra-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:26px;
}

/* BOX */
.gallery-box{
  position:relative;
  width:100%;
  aspect-ratio:1/1; /* ⭐ SAME SIZE IMAGES */
  border-radius:26px;
  overflow:hidden;
  box-shadow:0 25px 55px rgba(0,0,0,.15);
}

/* IMAGE */
.gallery-box img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:transform .7s ease;
}

/* OVERLAY */
.gallery-overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(
    120deg,
    rgba(0,0,0,.55),
    rgba(0,0,0,.25)
  );
  display:flex;
  align-items:center;
  justify-content:center;
  opacity:0;
  transition:.4s ease;
}

.gallery-overlay span{
  color:#fff;
  font-size:18px;
  font-weight:500;
  padding:12px 28px;
  border-radius:30px;
  background:rgba(255,255,255,.15);
  backdrop-filter:blur(6px);
}

/* HOVER */
.gallery-box:hover img{
  transform:scale(1.12);
}

.gallery-box:hover .gallery-overlay{
  opacity:1;
}

/* RESPONSIVE */
@media(max-width:1200px){
  .gallery-ultra-grid{
    grid-template-columns:repeat(3,1fr);
  }
}

@media(max-width:991px){
  .gallery-ultra-grid{
    grid-template-columns:repeat(2,1fr);
  }
}

@media(max-width:576px){
  .gallery-ultra-grid{
    grid-template-columns:1fr;
  }

  .gallery-heading{
    font-size:2.2rem;
  }
}


/* ================= TESTIMONIAL SECTION ================= */
.testimonial-single{
  background:#f8fafc;
  padding:120px 0;
}

.testi-badge{
  display:inline-block;
  background:rgba(11,109,183,0.12);
  color:#0b6db7;
  padding:8px 22px;
  border-radius:999px;
  font-size:14px;
  margin-bottom:18px;
}

.testi-heading{
  font-size:2.8rem;
  margin-bottom:18px;
}

.testi-desc{
  font-size:16px;
  color:#64748b;
  line-height:1.8;
  margin-bottom:30px;
}

/* CONTROLS */
.testi-controls{
  display:flex;
  gap:14px;
}

.testi-btn{
  width:48px;
  height:48px;
  border-radius:50%;
  border:none;
  background:#fff;
  box-shadow:0 10px 25px rgba(0,0,0,.12);
  transition:.3s;
}

.testi-btn:hover{
  background:#0b6db7;
  color:#fff;
}

/* CARD */
.testi-card-wrapper{
  position:relative;
  min-height:280px;
}

.testi-card{
  position:absolute;
  inset:0;
  background:#fff;
  padding:45px 40px;
  border-radius:26px;
  box-shadow:0 30px 60px rgba(0,0,0,.15);
  text-align:center;
  opacity:0;
  transform:scale(.9);
  transition:all .6s ease;
}

.testi-card.active{
  opacity:1;
  transform:scale(1);
  z-index:2;
}

.testi-card i{
  font-size:36px;
  color:#0b6db7;
  margin-bottom:16px;
}

.testi-card p{
  font-size:17px;
  color:#475569;
  line-height:1.8;
  margin-bottom:20px;
}

/* RESPONSIVE */
@media(max-width:991px){
  .testimonial-single{
    text-align:center;
  }

  .testi-controls{
    justify-content:center;
    margin-bottom:30px;
  }
}

@media(max-width:576px){
  .testi-heading{
    font-size:2.2rem;
  }

  .testi-card{
    padding:35px 25px;
  }
}


/* ================= ULTRA FOOTER ================= */
.footer-ultra{
  background:linear-gradient(
    180deg,
    #0b1220,
    #020617
  );
  color:#cbd5f5;
  position:relative;
  overflow:hidden;
}

/* GLOW EFFECT */
.footer-ultra::before{
  content:'';
  position:absolute;
  top:-150px;
  left:50%;
  transform:translateX(-50%);
  width:500px;
  height:500px;
  background:radial-gradient(circle,rgba(56,189,248,.15),transparent 60%);
}

/* MAIN */
.footer-main{
  padding:100px 0 80px;
}

/* BRAND */
.footer-brand img{
  max-width:170px;
  margin-bottom:18px;
}

.footer-brand p{
  font-size:15px;
  line-height:1.9;
  color:#94a3b8;
  max-width:360px;
}

/* TITLES */
.footer-title{
  font-size:18px;
  color:#ffffff;
  margin-bottom:22px;
  position:relative;
}

.footer-title::after{
  content:'';
  width:32px;
  height:2px;
  background:#38bdf8;
  position:absolute;
  left:0;
  bottom:-8px;
}

/* LINKS */
.footer-links{
  list-style:none;
  padding:0;
}

.footer-links li{
  margin-bottom:12px;
}

.footer-links a{
  color:#cbd5f5;
  text-decoration:none;
  font-size:15px;
  transition:.35s ease;
}

.footer-links a:hover{
  color:#38bdf8;
  padding-left:6px;
}

/* CONTACT */
.footer-contact{
  list-style:none;
  padding:0;
}

.footer-contact li{
  display:flex;
  gap:12px;
  align-items:flex-start;
  margin-bottom:16px;
  font-size:15px;
}

.footer-contact i{
  font-size:18px;
  color:#38bdf8;
  margin-top:2px;
}

.footer-contact a{
  color:#cbd5f5;
  text-decoration:none;
}

/* BOTTOM BAR */
.footer-bottom{
  border-top:1px solid rgba(255,255,255,.08);
  padding:22px 0;
  text-align:center;
}

.footer-bottom p{
  margin:0;
  font-size:14px;
  color:#94a3b8;
}

.footer-bottom a{
  color:#38bdf8;
  font-weight:600;
  text-decoration:none;
}

/* ================= MOBILE FOOTER – ULTRA ================= */
@media (max-width: 768px) {

  .footer-ultra{
    text-align: center;
  }

  /* MAIN PADDING */
  .footer-main{
    padding:70px 0 50px;
  }

  /* BRAND */
  .footer-brand img{
    max-width:140px;
    margin:0 auto 16px;
    display:block;
  }

  .footer-brand p{
    font-size:14px;
    line-height:1.8;
    margin:0 auto;
    max-width:320px;
  }

  /* TITLES */
  .footer-title{
    margin-top:25px;
    margin-bottom:20px;
  }

  .footer-title::after{
    left:50%;
    transform:translateX(-50%);
  }

  /* LINKS */
  .footer-links li{
    margin-bottom:14px;
  }

  .footer-links a{
    font-size:15px;
  }

  /* CONTACT */
  .footer-contact{
    max-width:320px;
    margin:0 auto;
  }

  .footer-contact li{
    justify-content:center;
    text-align:left;
    font-size:14px;
  }

  .footer-contact i{
    font-size:17px;
  }

  /* BOTTOM BAR */
  .footer-bottom{
    padding:20px 10px;
  }

  .footer-bottom p{
    font-size:13px;
    line-height:1.6;
  }
}

/* ================= SMALL MOBILE (EXTRA POLISH) ================= */
@media (max-width: 480px) {

  .footer-main{
    padding:60px 0 45px;
  }

  .footer-brand p{
    font-size:13.5px;
  }

  .footer-links a{
    font-size:14px;
  }

  .footer-contact li{
    font-size:13.5px;
  }

  .footer-bottom p{
    font-size:12.5px;
  }
}

/* ================= WHATSAPP FLOAT ================= */
.whatsapp-float{
  position:fixed;
  bottom:28px;
  right:22px;
  width:64px;
  height:64px;
  background:linear-gradient(135deg,#25D366,#1ebe5d);
  color:#ffffff;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:32px;
  z-index:9999;
  box-shadow:
    0 18px 40px rgba(37,211,102,.45),
    inset 0 0 0 1px rgba(255,255,255,.25);
  animation:floatAir 3s ease-in-out infinite;
  transition:all .35s cubic-bezier(.4,0,.2,1);
}

/* AIR FLOAT ANIMATION */
@keyframes floatAir{
  0%,100%{
    transform:translateY(0);
  }
  50%{
    transform:translateY(-8px);
  }
}

/* HOVER */
.whatsapp-float:hover{
  transform:translateY(-10px) scale(1.08);
  box-shadow:
    0 28px 60px rgba(37,211,102,.6);
}

/* SOFT PULSE */
.whatsapp-float::after{
  content:'';
  position:absolute;
  inset:-8px;
  border-radius:50%;
  border:2px solid rgba(37,211,102,.5);
  animation:pulseRing 2.5s infinite;
}

@keyframes pulseRing{
  0%{
    transform:scale(.85);
    opacity:.7;
  }
  100%{
    transform:scale(1.4);
    opacity:0;
  }
}

/* MOBILE TUNING */
@media(max-width:768px){
  .whatsapp-float{
    width:58px;
    height:58px;
    font-size:30px;
    bottom:22px;
    right:18px;
  }
}

/* ================= BACK TO TOP ================= */
.back-to-top{
  position:fixed;
  bottom:110px; /* above WhatsApp button */
  right:22px;
  width:52px;
  height:52px;
  border-radius:50%;
  border:none;
  background:linear-gradient(135deg,var(--primary),var(--accent));
  color:#fff;
  font-size:22px;
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  opacity:0;
  visibility:hidden;
  transform:translateY(20px);
  z-index:9998;
  box-shadow:0 18px 40px rgba(0,0,0,.35);
  transition:all .35s cubic-bezier(.4,0,.2,1);
}

/* SHOW */
.back-to-top.show{
  opacity:1;
  visibility:visible;
  transform:translateY(0);
}

/* HOVER */
.back-to-top:hover{
  transform:translateY(-6px) scale(1.08);
  box-shadow:0 28px 60px rgba(0,0,0,.45);
}

/* MOBILE */
@media(max-width:768px){
  .back-to-top{
    width:48px;
    height:48px;
    font-size:20px;
    right:18px;
    bottom:95px;
  }
}


/* ================= PARALLAX HEADER ================= */
.parallax-header{
  position:relative;
  min-height:60vh;
  display:flex;
  align-items:center;
  background-image:url("./img/bg.png"); /* change image */
  background-size:cover;
  background-position:center;
  background-attachment:fixed;
  overflow:hidden;
}

/* OVERLAY */
.parallax-overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(
    120deg,
    rgba(2,6,23,.85),
    rgba(2,6,23,.55)
  );
}

/* CONTENT */
.parallax-content{
  position:relative;
  z-index:2;
  color:#ffffff;
  max-width:700px;
}

.parallax-content h1{
  font-size:3.6rem;
  margin-bottom:14px;
}

.parallax-content p{
  font-size:1.1rem;
  color:#e5e7eb;
  margin-bottom:20px;
}

/* BREADCRUMB */
.breadcrumb{
  display:flex;
  gap:8px;
  font-size:14px;
}

.breadcrumb a{
  color:#38bdf8;
  text-decoration:none;
}

.breadcrumb span{
  color:#cbd5f5;
}

/* MOBILE FIX (disable parallax for performance) */
@media(max-width:768px){
  .parallax-header{
  
    text-align:center;
    min-height:45vh;
  }

  .breadcrumb{
    justify-content:center;
  }

  .parallax-content h1{
    font-size:2.4rem;
  }
}


/* ================= ABOUT PAGE ================= */
.about-page{
  background:#ffffff;
  padding:120px 0;
}

/* TAG */
.about-tag{
  display:inline-block;
  background:rgba(56,189,248,.15);
  color:#0284c7;
  padding:8px 22px;
  border-radius:999px;
  font-size:14px;
  margin-bottom:18px;
}

/* TITLE */
.about-title{
  font-size:2.9rem;
  margin-bottom:20px;
}

/* TEXT */
.about-text{
  font-size:16px;
  color:#475569;
  line-height:1.9;
  margin-bottom:16px;
}

/* POINTS */
.about-points{
  display:flex;
  gap:20px;
  flex-wrap:wrap;
  margin-top:28px;
}

.point{
  display:flex;
  align-items:center;
  gap:10px;
  background:#f8fafc;
  padding:14px 20px;
  border-radius:18px;
  font-weight:500;
  box-shadow:0 10px 25px rgba(0,0,0,.08);
}

.point i{
  font-size:20px;
  color:#0284c7;
}

/* IMAGE */
.about-image{
  border-radius:28px;
  overflow:hidden;
  box-shadow:0 30px 60px rgba(0,0,0,.15);
}

.about-image img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:transform .6s ease;
}

.about-image:hover img{
  transform:scale(1.06);
}

/* RESPONSIVE */
@media(max-width:991px){
  .about-title{
    font-size:2.3rem;
  }
}

@media(max-width:768px){
  .about-page{
    text-align:center;
  }

  .about-points{
    justify-content:center;
  }
}


/* ================= MISSION & VISION ================= */
.mission-vision{
  background:#f8fafc;
  padding:120px 0;
}

/* CARD */
.mv-card{
  background:#ffffff;
  padding:50px 40px;
  border-radius:28px;
  height:100%;
  box-shadow:0 25px 55px rgba(0,0,0,.12);
  transition:.4s cubic-bezier(.4,0,.2,1);
}

.mv-card:hover{
  transform:translateY(-10px);
  box-shadow:0 35px 75px rgba(0,0,0,.18);
}

/* ICON */
.mv-icon{
  width:70px;
  height:70px;
  border-radius:50%;
  background:linear-gradient(135deg,var(--primary),var(--accent));
  display:flex;
  align-items:center;
  justify-content:center;
  margin-bottom:24px;
}

.mv-icon i{
  font-size:30px;
  color:#ffffff;
}

/* TITLE */
.mv-card h3{
  font-size:1.9rem;
  margin-bottom:16px;
}

/* TEXT */
.mv-card p{
  font-size:16px;
  line-height:1.8;
  color:#475569;
}

/* RESPONSIVE */
@media(max-width:768px){
  .mission-vision{
    text-align:center;
  }

  .mv-icon{
    margin-left:auto;
    margin-right:auto;
  }
}


/* ================= SERVICES SECTION ================= */
.services-section{
  background:#ffffff;
  padding:120px 0;
}

/* SECTION HEADER */
.section-head{
  max-width:700px;
  margin:0 auto 70px;
}

.section-tag{
  display:inline-block;
  background:rgba(56,189,248,.15);
  color:#0284c7;
  padding:8px 22px;
  border-radius:999px;
  font-size:14px;
  margin-bottom:16px;
}

.section-title{
  font-size:2.9rem;
  margin-bottom:12px;
}

.section-sub{
  font-size:16px;
  color:#64748b;
}

/* CARD */
.service-card{
  background:#f8fafc;
  padding:45px 35px;
  border-radius:28px;
  height:100%;
  text-align:center;
  box-shadow:0 20px 45px rgba(0,0,0,.1);
  transition:all .45s cubic-bezier(.4,0,.2,1);
}

.service-card:hover{
  background:#ffffff;
  transform:translateY(-12px);
  box-shadow:0 35px 70px rgba(0,0,0,.18);
}

/* ICON */
.service-card i{
  font-size:40px;
  color:#0284c7;
  margin-bottom:22px;
}

/* TITLE */
.service-card h4{
  font-size:1.4rem;
  margin-bottom:12px;
}

/* TEXT */
.service-card p{
  font-size:15.5px;
  line-height:1.8;
  color:#475569;
}

/* RESPONSIVE */
@media(max-width:991px){
  .section-title{
    font-size:2.4rem;
  }
}

@media(max-width:768px){
  .services-section{
    text-align:center;
  }
}


/* ================= MEDIA GALLERY ================= */
.media-gallery{
  background:#ffffff;
  padding:120px 0;
}

/* GRID */
.media-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:26px;
}

/* CARD */
.media-card{
  position:relative;
  width:100%;
  aspect-ratio:1/1; /* SAME SIZE */
  overflow:hidden;
  border-radius:26px;
  box-shadow:0 25px 55px rgba(0,0,0,.15);
}

/* IMAGE */
.media-card img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:transform .6s ease;
}

/* HOVER */
.media-card:hover img{
  transform:scale(1.1);
}

/* VIDEO ICON */
.media-card.video::after{
  content:'';
  position:absolute;
  inset:0;
  background:rgba(0,0,0,.35);
}

.play-icon{
  position:absolute;
  inset:0;
  display:flex;
  align-items:center;
  justify-content:center;
  z-index:2;
}

.play-icon i{
  width:70px;
  height:70px;
  border-radius:50%;
  background:rgba(255,255,255,.25);
  backdrop-filter:blur(8px);
  color:#fff;
  font-size:32px;
  display:flex;
  align-items:center;
  justify-content:center;
}

/* RESPONSIVE */
@media(max-width:1200px){
  .media-grid{
    grid-template-columns:repeat(3,1fr);
  }
}

@media(max-width:991px){
  .media-grid{
    grid-template-columns:repeat(2,1fr);
  }
}

@media(max-width:576px){
  .media-grid{
    grid-template-columns:1fr;
  }
}


/* ================= ULTRA CONTACT DESIGN ================= */
.contact-section{
  position:relative;
  background:linear-gradient(180deg,#ffffff,#f8fafc);
  padding:140px 0;
}



/* INFO ITEMS */
.info-item{
  background:#ffffff;
  padding:18px 22px;
  border-radius:18px;
  display:flex;
  align-items:center;
  gap:16px;
  margin-bottom:18px;
  box-shadow:0 15px 35px rgba(0,0,0,.08);
  transition:all .4s cubic-bezier(.4,0,.2,1);
}

.info-item:hover{
  transform:translateY(-6px);
  box-shadow:0 25px 55px rgba(0,0,0,.15);
}

.info-item i{
  width:54px;
  height:54px;
  border-radius:50%;
  background:linear-gradient(135deg,var(--primary),var(--accent));
  display:flex;
  align-items:center;
  justify-content:center;
  color:#fff;
  font-size:22px;
}

.info-item span,
.info-item a{
  font-size:15.5px;
  color:#0f172a;
  font-weight:500;
  text-decoration:none;
}

/* FORM CARD */
.contact-form{
  position:relative;
  background:rgba(255,255,255,.75);
  backdrop-filter:blur(14px);
  padding:60px 55px;
  border-radius:34px;
  box-shadow:
    0 35px 80px rgba(0,0,0,.18),
    inset 0 0 0 1px rgba(255,255,255,.6);
}

.contact-form h3{
  font-size:2.2rem;
  margin-bottom:30px;
  letter-spacing:-0.4px;
}

/* INPUTS */
.contact-form input,
.contact-form textarea{
  width:100%;
  background:#ffffff;
  padding:16px 20px;
  border-radius:16px;
  border:1px solid #e5e7eb;
  font-size:15.5px;
  transition:all .35s ease;
}

.contact-form input:focus,
.contact-form textarea:focus{
  border-color:var(--primary);
  box-shadow:0 0 0 4px rgba(56,189,248,.15);
}

/* BUTTON */
.contact-form button{
  background:linear-gradient(135deg,var(--primary),var(--accent));
  padding:16px 46px;
  border-radius:999px;
  border:none;
  font-size:15.5px;
  font-weight:500;
  color:#ffffff;
  letter-spacing:.3px;
  transition:all .4s cubic-bezier(.4,0,.2,1);
}

.contact-form button:hover{
  transform:translateY(-3px) scale(1.03);
  box-shadow:0 25px 55px rgba(0,0,0,.3);
}

/* MAP */
.contact-map{
  margin-top:100px;
  border-radius:34px;
  overflow:hidden;
  box-shadow:0 35px 80px rgba(0,0,0,.2);
}

.contact-map iframe{
  width:100%;
  height:450px;
  border:none;
  filter:saturate(1.1) contrast(1.05);
}

/* ================= MOBILE PREMIUM ================= */
@media(max-width:991px){
  .contact-section{
    text-align:center;
    padding:100px 0;
  }



  .info-item{
    justify-content:center;
  }
}

@media(max-width:576px){
  .contact-form{
    padding:40px 28px;
  }

  .contact-map iframe{
    height:320px;
  }
}
/* ================= ULTRA CONTACT INFO ================= */
.contact-info{
  position:relative;
  background:linear-gradient(
    160deg,
    rgba(255,255,255,.9),
    rgba(248,250,252,.9)
  );
  padding:60px 50px;
  border-radius:36px;
  box-shadow:
    0 40px 90px rgba(0,0,0,.18),
    inset 0 0 0 1px rgba(255,255,255,.7);
  backdrop-filter:blur(18px);
  overflow:hidden;
}

/* SOFT GLOW */
.contact-info::before{
  content:'';
  position:absolute;
  top:-120px;
  right:-120px;
  width:260px;
  height:260px;
  background:radial-gradient(circle,rgba(56,189,248,.25),transparent 60%);
}

/* TITLE */
.contact-info h3{
  font-size:2.4rem;
  font-weight:600;
  letter-spacing:-0.5px;
  margin-bottom:14px;
  color:#020617;
}

/* DESCRIPTION */
.contact-info p{
  font-size:16px;
  color:#64748b;
  line-height:1.9;
  max-width:420px;
  margin-bottom:42px;
}

/* INFO ITEM */
.info-item{
  position:relative;
  display:flex;
  align-items:center;
  gap:18px;
  background:#ffffff;
  padding:20px 24px;
  border-radius:22px;
  margin-bottom:20px;
  box-shadow:0 20px 45px rgba(0,0,0,.1);
  transition:all .45s cubic-bezier(.4,0,.2,1);
}

/* LEFT ACCENT BAR */
.info-item::before{
  content:'';
  position:absolute;
  left:0;
  top:12px;
  bottom:12px;
  width:4px;
  background:linear-gradient(180deg,var(--primary),var(--accent));
  border-radius:4px;
}

/* HOVER */
.info-item:hover{
  transform:translateY(-6px);
  box-shadow:0 30px 65px rgba(0,0,0,.18);
}

/* ICON */
.info-item i{
  min-width:56px;
  height:56px;
  border-radius:18px;
  background:linear-gradient(135deg,var(--primary),var(--accent));
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:22px;
  color:#ffffff;
  box-shadow:0 12px 30px rgba(56,189,248,.45);
}

/* TEXT */
.info-item span,
.info-item a{
  font-size:15.5px;
  font-weight:500;
  color:#0f172a;
  line-height:1.6;
  text-decoration:none;
}

/* WHATSAPP SPECIAL */
.info-item i.bi-whatsapp{
  background:linear-gradient(135deg,#25D366,#1ebe5d);
}

/* ================= MOBILE PREMIUM ================= */
@media(max-width:991px){
  .contact-info{
    padding:45px 35px;
    text-align:center;
  }

  .contact-info p{
    margin-left:auto;
    margin-right:auto;
  }

  .info-item{
    justify-content:left;
  }

  .info-item::before{
    display:none;
  }
}

@media(max-width:576px){
  .contact-info{
    padding:38px 26px;
    border-radius:28px;
  }

  .info-item{
    padding:18px 20px;
  }

  .info-item i{
    min-width:50px;
    height:50px;
    font-size:20px;
  }
}
