
/* RESET */
*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:'Poppins',sans-serif;
  scroll-behavior:smooth;
}

/* BODY */
body{
  background:#0b0b0b;
  color:#fff;
}

/* HEADER */
header{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  height:70px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:0 30px;
  background:rgba(0,0,0,0.65);
  backdrop-filter:blur(10px);
  z-index:1000;
}

/* LOGO */
.logo{
  display:flex;
  align-items:center;
  gap:10px;
}
.logo img{
  height:45px;
}
.logo span{
  font-weight:600;
  font-size:18px;
}

/* NAV */
nav a{
  margin:0 15px;
  color:#fff;
  text-decoration:none;
  font-size:15px;
  position:relative;
}
nav a::after{
  content:'';
  position:absolute;
  width:0;
  height:2px;
  left:0;
  bottom:-5px;
  background:#ff9800;
  transition:.3s;
}
nav a:hover::after{
  width:100%;
}

/* MENU TOGGLE */
.menu-toggle{
  display:none;
  font-size:26px;
  cursor:pointer;
}

/* HERO */
section{
  min-height:50vh;
  padding:100px 40px;
}

#home{
  background: url('../asstes/bg.jpg') center/cover no-repeat;
  position:relative;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
}
#home::before{
  content:'';
  position:absolute;
  inset:0;
  background:rgba(0,0,0,0.65);
}
.hero-content{
  position:relative;
  z-index:2;
}

@media (max-width: 768px){
  .gradient-text{
    font-size:3.2rem;   /* 👈 Mobile size increase */
    font-weight:1800;    /* 👈 Extra bold */
    line-height:1.2;
  }
}
/* BRAND TEXT */
.gradient-text{
  font-size:5.5rem;
  background:linear-gradient(90deg,#ff9800,#ff4081,#00e5ff);
  background-size:200%;
  -webkit-background-clip:text;
  color:transparent;
  animation:gradientMove 3s linear infinite;
}
@keyframes gradientMove{
  to{background-position:200%;}
}
.tagline{
  margin-top:14px;
  font-size:9px;
  opacity:0.8;
  color: #a09f9f;
}

/* SECTION HEAD */
.section-title{
  text-align:center;
  font-size:2.3rem;
  margin-bottom:40px;
  color:#ff9800;
}

/* ABOUT / SERVICES */
.content{
  max-width:1100px;
  margin:auto;
  line-height:1.8;
  opacity:.9;
}

/* SERVICES GRID */
.grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:25px;
}
.card{
  background:#151515;
  padding:30px;
  border-radius:18px;
  text-align:center;
  transition:.3s;
}
.card:hover{
  transform:translateY(-8px);
  box-shadow:0 15px 40px rgba(255,152,0,.15);
}
/* whatsapp message */
.wa-offer{
  position:fixed;
  
  right:90px; /* whatsapp button pakkathula */
  bottom:140px;
  background:#e7ffdb;
  color:#075e54;
  padding:10px 14px;
  border-radius:10px;
  font-size:14px;
  line-height:1.4;
  box-shadow:0 6px 18px rgba(0,0,0,.2);
  animation:waPop 6s infinite;
  max-width:220px;
}

/* small green dot like unread */
.wa-dot{
  position:absolute;
  top:-6px;
  right:-6px;
  width:12px;
  height:12px;
  background:#25d366;
  border-radius:50%;
}

/* WhatsApp message animation */
@keyframes waPop{
  0%{opacity:0; transform:translateY(10px);}
  15%{opacity:1; transform:translateY(0);}
  70%{opacity:1;}
  100%{opacity:0; transform:translateY(10px);}
}

.wa-offer small{
  font-size:12px;
  color:#128c7e;
}
/* CONTACT */
.contact-box{
  text-align:center;
  font-size:18px;
}
.contact-box a{
  color:#25d366;
  text-decoration:none;
  font-weight:600;
}
.float-btns{
  position:fixed;
  right:20px;
  bottom:90px;
  display:flex;
  flex-direction:column;
  gap:22px;            /* 👈 clear spacing */
  z-index:9999;
}

/* COMMON BUTTON STYLE */
.float-btns a{
  width:54px;
  height:54px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:50%;
  box-shadow:0 8px 22px rgba(0,0,0,.35);
  transition:transform .25s ease;
}

/* HOVER */
.float-btns a:hover{
  transform:scale(1.08);
}

/* COLORS */
.float-btns .call{
  background:#f9a825;
}

.float-btns .whatsapp{
  background:#25d366;
}

.float-btns .instagram{
  background:radial-gradient(circle at 30% 30%,
    #feda75,#fa7e1e,#d62976,#962fbf,#4f5bd5);
}

.float-btns a:hover{
  transform:scale(1.08);
}
.call{background:#ff9800;}
.whatsapp{background:#25d366;}
.instagram{background:#e1306c;}

/* FOOTER */
footer{
  background:#000;
  text-align:center;
  padding:20px;
  font-size:14px;
  opacity:.7;
}

/* MOBILE */
@media(max-width:768px){
  nav{
    position:absolute;
    top:70px;
    left:0;
    width:100%;
    background:#000;
    display:none;
    flex-direction:column;
  }
  nav a{
    padding:15px;
    border-bottom:1px solid #222;
  }
  nav.active{
    display:flex;
  }
  .menu-toggle{
    display:block;
  }
  .gradient-text{
    font-size:2.3rem;
  }
}
/* SECTION */
#services-accordion{
  padding:80px 20px;
  background:#0b0b0b;
  color:#fff;
}

.section-title{
  text-align:center;
  font-size:2.4rem;
  color:#ff9800;
  margin-bottom:40px;
}

/* ACCORDION */
.accordion{
  max-width:900px;
  margin:auto;
}

/* ITEM */
.accordion-item{
  background:#151515;
  border-radius:16px;
  margin-bottom:15px;
  overflow:hidden;
  box-shadow:0 10px 30px rgba(0,0,0,0.4);
}

/* HEADER */
.accordion-header{
  width:100%;
  padding:18px 22px;
  background:none;
  border:none;
  color:#fff;
  font-size:18px;
  font-weight:500;
  text-align:left;
  cursor:pointer;
  position:relative;
}

/* ICON */
.accordion-header::after{
  content:"+";
  position:absolute;
  right:22px;
  font-size:22px;
  transition:0.3s;
}

.accordion-header.active::after{
  content:"−";
  color:#ff9800;
}

/* BODY */
.accordion-body{
  max-height:0;
  overflow:hidden;
  padding:0 22px;
  color:#ccc;
  line-height:1.7;
  transition:max-height 0.35s ease;
}

.accordion-body p,
.accordion-body ul{
  margin:18px 0;
}

.accordion-body ul li{
  margin-bottom:8px;
}

/* MOBILE */
@media(max-width:600px){
  .accordion-header{
    font-size:16px;
  }
}
/* SCROLL FADE EFFECT */
.fade-up{
  opacity:0;
  transform:translateY(40px);
  transition:all 0.8s ease;
}

.fade-up.show{
  opacity:1;
  transform:translateY(0);
}
@media(max-width:600px){
  .fade-up{
    transition:all 0.6s ease;
  }
}
#services-photo-accordion{
  padding:80px 20px;
  background:#0b0b0b;
}

.services-wrapper{
  max-width:1100px;
  margin:auto;
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
  gap:25px;
}

.service-box{
  background:#151515;
  border-radius:18px;
  overflow:hidden;
  box-shadow:0 10px 30px rgba(0,0,0,0.4);
}

/* IMAGE */
.service-box img{
  width:100%;
  height:200px;
  object-fit:cover;
}

/* ACCORDION HEADER */
.service-box .accordion-header{
  width:100%;
  padding:16px 20px;
  background:none;
  border:none;
  color:#fff;
  font-size:18px;
  text-align:left;
  cursor:pointer;
  position:relative;
}

/* + ICON */
.service-box .accordion-header::after{
  content:"+";
  position:absolute;
  right:20px;
  font-size:22px;
  transition:0.3s;
}

.service-box .accordion-header.active::after{
  content:"−";
  color:#ff9800;
}

/* BODY */
.service-box .accordion-body{
  max-height:0;
  overflow:hidden;
  padding:0 20px;
  color:#ccc;
  line-height:1.6;
  transition:max-height 0.35s ease;
}

.service-box .accordion-body{
  margin-bottom:15px;
}

/* MOBILE */
@media(max-width:600px){
  .service-box img{
    height:180px;
  }
}

#contact-pro{
  padding:90px 20px;
  background:#0b0b0b;
}

.contact-grid{
  max-width:1100px;
  margin:auto;
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
  gap:30px;
}

.contact-card{
  background:#151515;
  border-radius:20px;
  padding:30px;
  text-align:center;
  position:relative;
  box-shadow:0 15px 40px rgba(0,0,0,.45);
  transition:.4s;
}

.contact-card:hover{
  transform:translateY(-10px);
}

.contact-card h3{
  color:#ff9800;
  margin-bottom:10px;
}

.contact-card p{
  color:#ccc;
  margin-bottom:20px;
}

.contact-btn{
  display:inline-block;
  padding:14px 22px;
  border-radius:30px;
  text-decoration:none;
  color:#fff;
  font-weight:500;
  transition:.3s;
}

.call-btn{
  background:#ff9800;
}

.whatsapp-btn{
  background:#25d366;
}

.contact-btn:hover{
  transform:scale(1.05);
}

/* CALL INDICATOR */
.call-card{
  overflow:hidden;
}

.call-indicator{
  position:absolute;
  top:20px;
  right:20px;
  width:14px;
  height:14px;
  background:#25d366;
  border-radius:50%;
  animation:pulse 1.5s infinite;
}

@keyframes pulse{
  0%{box-shadow:0 0 0 0 rgba(37,211,102,.7);}
  70%{box-shadow:0 0 0 15px rgba(37,211,102,0);}
  100%{box-shadow:0 0 0 0 rgba(37,211,102,0);}
}

.working-time{
  display:block;
  margin-top:12px;
  font-size:14px;
  opacity:.8;
}

/* HIGHLIGHT CARD */
.contact-card.highlight{
  border:1px solid rgba(255,152,0,.4);
}

/* SCROLL FADE */
.fade-up{
  opacity:0;
  transform:translateY(40px);
  transition:all .8s ease;
}

.fade-up.show{
  opacity:1;
  transform:translateY(0);
}
/* INSTAGRAM CARD */
.instagram-card{
  border:1px solid rgba(225,48,108,.4);
}

.instagram-btn{
  background:#e1306c;
}

.insta-note{
  display:block;
  margin-top:12px;
  font-size:14px;
  color:#ccc;
  opacity:.9;
}
#google-rating{
  padding:80px 20px;
  background:#0b0b0b;
  display:flex;
  justify-content:center;
}

.rating-card{
  background:#151515;
  padding:40px 35px;
  border-radius:22px;
  text-align:center;
  max-width:420px;
  box-shadow:0 15px 40px rgba(0,0,0,.45);
  transition:.4s;
}

.rating-card:hover{
  transform:translateY(-8px);
}

.stars{
  font-size:26px;
  margin-bottom:12px;
}

.rating-score{
  font-size:34px;
  color:#ff9800;
  margin-bottom:10px;
}

.rating-text{
  color:#ccc;
  line-height:1.6;
  margin-bottom:25px;
}

.google-btn{
  display:inline-block;
  padding:14px 28px;
  background:#ff9800;
  color:#fff;
  text-decoration:none;
  border-radius:30px;
  font-weight:500;
  transition:.3s;
}

.google-btn:hover{
  transform:scale(1.08);
}
.fade-up{
  opacity:0;
  transform:translateY(40px);
  transition:all .8s ease;
}
.fade-up.show{
  opacity:1;
  transform:translateY(0);
}
/* FOOTER */
#site-footer{
  background:#0a0a0a;
  color:#ccc;
  padding-top:70px;
  margin-top:80px;
}

.footer-container{
  max-width:1200px;
  margin:auto;
  padding:0 20px 50px;
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:40px;
}

/* COLUMNS */
.footer-col h3{
  color:#ff9800;
  margin-bottom:15px;
}

.footer-col h4{
  color:#fff;
  margin-bottom:15px;
  font-size:16px;
}

.footer-text{
  line-height:1.7;
  font-size:14px;
}

/* LISTS */
.footer-col ul{
  list-style:none;
  padding:0;
}

.footer-col ul li{
  margin-bottom:10px;
  font-size:14px;
}

.footer-col ul li a{
  color:#ccc;
  text-decoration:none;
  transition:.3s;
}

.footer-col ul li a:hover{
  color:#ff9800;
}

/* CONTACT */
.footer-contact{
  font-size:14px;
  margin-bottom:10px;
}

.footer-contact a{
  color:#ccc;
  text-decoration:none;
}

.footer-contact a:hover{
  color:#ff9800;
}

/* SOCIAL */
.footer-social{
  margin-top:15px;
  display:flex;
  flex-direction:column;
  gap:8px;
}

.footer-social a{
  color:#ccc;
  text-decoration:none;
  font-size:14px;
  transition:.3s;
}

.footer-social a:hover{
  color:#ff9800;
}

/* FOOTER BOTTOM */
.footer-bottom{
  background:#000;
  padding:15px 10px;
  text-align:center;
  font-size:13px;
  color:#aaa;
}

.vws-link{
  color:#ff9800;
  text-decoration:none;
  font-weight:500;
}

.vws-link:hover{
  text-decoration:underline;
}

/* MOBILE */
@media(max-width:600px){
  .footer-container{
    gap:25px;
  }
}
@media(max-width:768px){

  nav{
    position:absolute;
    top:70px;
    left:0;
    width:100%;
    background:#000;
    display:flex;
    flex-direction:column;

    /* Fade effect */
    opacity:0;
    transform:translateY(-15px);
    pointer-events:none;

    transition:all 0.35s ease;
    z-index:999;
  }

  nav.active{
    opacity:1;
    transform:translateY(0);
    pointer-events:auto;
  }

  nav a{
    padding:15px;
    border-bottom:1px solid #222;
  }

  .menu-toggle{
    display:block;
    font-size:26px;
    cursor:pointer;
    z-index:1000;
  }
}
.accordion-body{
  max-height:0;
  overflow:hidden;
  transition:max-height 0.35s ease;
  padding:0 20px;
  color:#ccc;
}

.accordion-header{
  width:100%;
  background:none;
  border:none;
  color:#fff;
  font-size:16px;
  text-align:left;
  padding:18px 20px;
  cursor:pointer;
  position:relative;
}

/* + symbol */
.accordion-header::after{
  content:"+";
  position:absolute;
  right:20px;
  font-size:22px;
}

.accordion-header.active::after{
  content:"−";
}
.floating-container{
  position:fixed;
  right:20px;
  bottom:20px;
  z-index:4000;
}

/* Buttons */
.float-btn{
  position:relative;
  width:55px;
  height:55px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  margin-top:12px;
  box-shadow:0 8px 20px rgba(0,0,0,0.4);
}

.float-btn img{
  width:26px;
  height:26px;
}

/* WhatsApp */
.float-btn.whatsapp{
  background:#25d366;
}

/* Call */
.float-btn.call{
  background:#ff9800;
}

/* Badge */
.notify-badge{
  position:absolute;
  top:-5px;
  right:-5px;
  background:red;
  color:#fff;
  font-size:12px;
  width:18px;
  height:18px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
}

/* Message bubble */
.notify-message{
  position:absolute;
  right:70px;
  bottom:90px;
  background:#fff;
  color:#000;
  padding:10px 14px;
  border-radius:14px;
  font-size:13px;
  white-space:nowrap;
  box-shadow:0 8px 20px rgba(0,0,0,0.25);
  opacity:0;
  transform:translateX(20px);
  transition:all 0.4s ease;
}

.notify-message.show{
  opacity:1;
  transform:translateX(0);
}
.float-btns{
  position:fixed;
  right:18px;
  bottom:18px;
  display:flex;
  flex-direction:column;
  gap:14px;
  z-index:999;
}

.float{
  width:54px;
  height:54px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  box-shadow:0 10px 25px rgba(0,0,0,.35);
  transition:0.3s;
}

.float img{
  width:26px;
  height:26px;
}

/* WhatsApp */
.float.whatsapp{
  background:#25d366;
}

/* Call */
.float.call{
  background:#ff9800;
}

/* Instagram – real feel */
.float.instagram{
  background:radial-gradient(circle at 30% 110%,
  #fdf497 0%, #fdf497 5%,
  #fd5949 45%, #d6249f 60%,
  #285AEB 90%);
}

.float:hover{
  transform:scale(1.1);
}
/* FORCE SERVICES ALWAYS OPEN */
.always-open .accordion-body{
  max-height:none !important;
  overflow:visible !important;
  padding:0 20px 20px;
  color:#ccc;
  line-height:1.7;
  font-size:15px;
}

/* REMOVE + ICON */
.always-open .accordion-header::after{
  content:none !important;
}

/* REMOVE CLICK FEEL */
.no-toggle{
  cursor:default;
  pointer-events:none;
}

/* CARD POLISH */
.always-open .service-box{
  background:#151515;
  border-radius:18px;
  overflow:hidden;
  box-shadow:0 12px 28px rgba(0,0,0,.35);
  transition:transform .3s ease;
}

.always-open .service-box:hover{
  transform:translateY(-6px);
}

.always-open .service-box img{
  width:100%;
  height:200px;
  object-fit:cover;
}
/* about us */
/* ================= ABOUT ACCORDION ================= */

.about-section{
  padding:80px 20px;
}

.about-accordion{
  max-width:900px;
  margin:auto;
}

.about-item{
  background:#131212;
  border:1px solid #e5e5e5;
  border-radius:16px;
  margin-bottom:16px;
  overflow:hidden;
  box-shadow:0 10px 25px rgba(0,0,0,0.08);
}

/* HEADER */
.about-header{
  width:100%;
  padding:18px 20px;
  background:none;
  border:none;
  font-size:16px;
  font-weight:600;
  text-align:left;
  cursor:pointer;
  position:relative;
  color:#ffffff;
}

/* + ICON */
.about-header::after{
  content:"+";
  position:absolute;
  right:20px;
  font-size:22px;
  color:#ff9800;
  transition:0.3s;
}

.about-header.active::after{
  content:"−";
}

/* BODY */
.about-body{
  max-height:0;
  overflow:hidden;
  transition:max-height 0.35s ease;
  padding:0 20px;
  color:#d4d0d0;
  line-height:1.7;
}

.about-body p,
.about-body ul{
  margin:15px 0 20px;
}

.about-body ul li{
  margin-bottom:8px;
}
/* FORCE MOBILE HERO TEXT SIZE */
@media screen and (max-width: 768px) {

  #home .gradient-text{
    font-size: 15vw !important;  /* 🔥 FORCE */
    font-weight: 900 !important;
    line-height: 1.05 !important;
  }

  #home{
    min-height: 5vh;
    display: flex;
    align-items: center;
  }

  .hero-content{
    width: 100%;
    padding: 0 16px;
  }
}
.vws-float-wrap{
  position:fixed;
  right:18px;
  bottom:90px;
  display:flex;
  flex-direction:column;
  gap:16px;
  z-index:9999;
}

/* BUTTON */
.vws-float-btn{
  width:54px;
  height:54px;
  background:#111;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  box-shadow:0 10px 30px rgba(0,0,0,.5);
  position:relative;
}

.vws-float-btn img{
  width:30px;
  height:30px;
  border-radius:50%;
  object-fit:cover;
}

/* BADGE */
.vws-badge{
  position:absolute;
  top:-4px;
  right:-4px;
  background:#ff3b3b;
  color:#fff;
  font-size:11px;
  padding:3px 6px;
  border-radius:50%;
  font-weight:bold;
}

/* OFFER BUBBLE */
.vws-wa-offer{
  position:absolute;
  right:70px;
  bottom:100px;
  background:#d7ffe9;
  color:#055;
  padding:12px 16px;
  border-radius:14px;
  font-size:13px;
  box-shadow:0 10px 25px rgba(0,0,0,.3);
  opacity:0;
  transform:translateX(30px);
  pointer-events:none;
}

/* Slide animation */
.vws-wa-offer.show{
  animation:offerSlide 4s ease-in-out infinite;
}

@keyframes offerSlide{
  0%{opacity:0; transform:translateX(40px);}
  15%{opacity:1; transform:translateX(0);}
  70%{opacity:1; transform:translateX(0);}
  100%{opacity:0; transform:translateX(40px);}
}