/**{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Arial;
}

/* TOP BAR 
.top-bar{
    background:#0b1c3d;
    color:#fff;
    display:flex;
    justify-content:space-between;
    padding:8px 40px;
    font-size:14px;
}

/* NAVBAR 
.navbar{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:15px 40px;
    background:#fff;
}

.logo{
    display:flex;
    align-items:center;
    gap:10px;
}

.logo img{
    width:40px;
}

.nav-links{
    list-style:none;
    display:flex;
    gap:25px;
}

.nav-links a{
    text-decoration:none;
    color:#000;
    font-weight:bold;
}

.call-btn{
    background:#e63946;
    color:#fff;
    padding:10px 20px;
    text-decoration:none;
    border-radius:4px;
}
*/

/* RESET */
*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:'Poppins', sans-serif;
}

/* TOP BAR */
.top-bar{
  background:#0f172a;
  color:#fff;
  display:flex;
  justify-content:space-between;
  padding:8px 10%;
  font-size:14px;
}

/* HEADER */
.top-header{
  position:sticky;
  top:0;
  z-index:999;
}

/* NAVBAR */
.navbar{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:15px 10%;
  background:#fff;
  box-shadow:0 5px 20px rgba(0,0,0,0.1);
}

/* LOGO */
.logo{
  display:flex;
  align-items:center;
  gap:10px;
}

.logo img{
  width:45px;
}

.logo h2{
  font-size:20px;
  color:#0f172a;
}

/* NAV LINKS */
.nav-links{
  list-style:none;
  display:flex;
  gap:25px;
  align-items:center;
}

.nav-links li{
  position:relative;
}

.nav-links a{
  text-decoration:none;
  color:#0f172a;
  font-weight:500;
  transition:0.3s;
}

.nav-links a:hover{
  color:#f97316;
}

/* DROPDOWN */
.dropdown-menu{
  position:absolute;
  top:120%;
  left:0;
  background:#fff;
  border-radius:10px;
  padding:10px 0;
  min-width:200px;
  box-shadow:0 10px 25px rgba(0,0,0,0.15);
  opacity:0;
  visibility:hidden;
  transform:translateY(10px);
  transition:0.3s;
}



.dropdown-menu li a{
  color:#0f172a;
}
.dropdown-menu li{
  display:flex;
  align-items:center;
  gap:10px;
  padding:10px 20px;
}

.dropdown-menu li:hover{
  background:#f97316;
}

.dropdown-menu li:hover a{
  color:#fff;
}

/* SHOW DROPDOWN */
.dropdown:hover .dropdown-menu{
  opacity:1;
  visibility:visible;
  transform:translateY(0);
}

/* CALL BUTTON */
.call-btn{
  /*background:linear-gradient(45deg,#f97316,#ef4444);*/
  background-color: #0f2027;
  color:#fff;
  padding:10px 20px;
  border-radius:25px;
  text-decoration:none;
  font-weight:600;
  transition:0.3s;
}

.call-btn:hover{
  transform:scale(1.1);
}

/* ========================= */
/* MOBILE RESPONSIVE */
/* ========================= */

@media(max-width:768px){

  .top-bar{
    flex-direction:column;
    text-align:center;
    gap:5px;
  }

  .navbar{
    flex-direction:column;
    gap:15px;
  }

  .nav-links{
    flex-direction:column;
    gap:15px;
  }

  .dropdown-menu{
    position:static;
    box-shadow:none;
    transform:none;
    opacity:1;
    visibility:visible;
    display:none;
  }

  .dropdown:hover .dropdown-menu{
    display:block;
  }

  .call-btn{
    width:100%;
    text-align:center;
  }
}

/* HERO */
/* HERO SLIDER */
.hero-slider{
    position:relative;
    height:100vh;
    overflow:hidden;
}

.slides{
    position:absolute;
    width:100%;
    height:100%;
}

.slide{
    position:absolute;
    width:100%;
    height:100%;
    background-size: cover;
    background-position: center center;
    opacity:0;
    transition:0.6s;
}

.slide.active{
    opacity:1;
}

/* CONTENT 
.hero-content{
    position:relative;
    z-index:2;
    color:#fff;
    top:50%;
    transform:translateY(-50%);
    left:60px;
}*/

.hero-content{
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%, -50%);
    
    text-align:center;
    color:#000;
    z-index:2;
}

.hero-content h1{
    font-size:48px;
}

.hero-btn{
    display:inline-block;
    margin-top:20px;
    padding:12px 25px;
    background:#0f2027;
    color:#fff;
    text-decoration:none;
}

/* BUTTONS */
.prev, .next{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    background:rgba(0,0,0,0.5);
    color:#fff;
    border:none;
    padding:10px;
    cursor:pointer;
}

.prev{ left:10px; }
.next{ right:10px; }



/*SERVICE CSS*/

.services{
    text-align:center;
    padding:70px 20px;
    background:linear-gradient(135deg,#f5f7fa,#e4ecf7);
}

.services h2{
    font-size:34px;
    margin-bottom:10px;
}

.services p{
    color:#666;
    margin-bottom:50px;
}

/* GRID */
.service-container{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:40px;
}

/* CARD */
.service-card{
    background:#fff;
    padding:30px 20px;
    border-radius:20px;
    transition:0.4s;
    box-shadow:0 5px 20px rgba(0,0,0,0.1);
}

/* 🔥 HOVER ANIMATION */
.service-card:hover{
    transform:translateY(-15px) scale(1.05) rotate(1deg);
    box-shadow:0 20px 40px rgba(0,0,0,0.2);
}

/* CIRCLE IMAGE 🔥 */
.circle{
    width:120px;
    height:120px;
    margin:auto;
    border-radius:50%;
    overflow:hidden;
    border:5px solid #ff7a00;
}

.circle img{
    width:100%;
    height:100%;
    object-fit:cover;
}

/* TEXT */
.service-card h3{
    margin-top:15px;
    font-size:18px;
}

/* HOVER EFFECT 🔥 */


.service-card:hover .circle{
    border-color:#000;
}

/*about css*/

.about-section{
    padding:80px 20px;
    background: linear-gradient(135deg,#0f2027,#203a43,#2c5364);
    color:#fff;
}

/* CONTAINER */
.about-container{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:40px;
    max-width:1200px;
    margin:auto;
}

/* LEFT TEXT */
.about-text h2{
    font-size:32px;
    margin-bottom:15px;
}

.about-text h3{
    margin-top:20px;
}

.about-text p{
    line-height:1.7;
    color:#ddd;
}

/* RIGHT CARD (GLASS EFFECT 🔥) */
.about-card{
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    padding:30px;
    border-radius:20px;
    box-shadow:0 8px 30px rgba(0,0,0,0.3);
    transition:0.4s;
}

.about-card h3{
    margin-bottom:15px;
}

.about-card ul{
    list-style:none;
}

.about-card li{
    margin-bottom:10px;
}

/* HOVER EFFECT */
.about-card:hover{
    transform:translateY(-10px);
}

/* RESPONSIVE */
@media(max-width:768px){
    .about-container{
        grid-template-columns:1fr;
    }
}

.repair-section{
    padding:80px 20px;
    background:#f8f9fb;
}

/* CONTAINER */
.repair-container{
    max-width:1200px;
    margin:auto;
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:40px;
    align-items:center;
}

/* TEXT */
.repair-text h2{
    font-size:32px;
    margin-bottom:15px;
}

.repair-text p{
    color:#555;
    margin-bottom:20px;
    line-height:1.6;
}

/* LIST */
.repair-list{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:10px;
}

.repair-list div{
    background:#fff;
    padding:10px;
    border-radius:8px;
    box-shadow:0 3px 10px rgba(0,0,0,0.1);
}

/* OFFER CARD 🔥 */
.offer-card{
    background:linear-gradient(135deg,#e63946,#ff7a00);
    color:#fff;
    padding:40px;
    border-radius:20px;
    text-align:center;
    box-shadow:0 10px 30px rgba(0,0,0,0.2);
    transition:0.4s;
}

.offer-card h3{
    font-size:40px;
}

.offer-card button{
    margin-top:15px;
    padding:12px 25px;
    border:none;
    background:#fff;
    color:#e63946;
    font-weight:bold;
    border-radius:5px;
    cursor:pointer;
}

/* HOVER */
.offer-card:hover{
    transform:scale(1.05);
}

/* RESPONSIVE */
@media(max-width:768px){
    .repair-container{
        grid-template-columns:1fr;
    }

    .repair-list{
        grid-template-columns:1fr;
    }
}

.price-section{
    padding:80px 20px;
    background:#f4f7fb;
}

/* CONTAINER */
.price-container{
    max-width:1200px;
    margin:auto;
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:40px;
    align-items:center;
}

/* LEFT */
.price-left h2{
    font-size:32px;
    margin-bottom:15px;
}

.price-left p{
    color:#555;
    margin-bottom:20px;
}

/* FEATURES */
.features{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:10px;
}

.features div{
    background:#fff;
    padding:12px;
    border-radius:10px;
    box-shadow:0 3px 10px rgba(0,0,0,0.1);
}

/* TESTIMONIAL CARD 🔥 */
.testimonial-card{
    background:rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
    padding:30px;
    border-radius:20px;
    box-shadow:0 10px 30px rgba(0,0,0,0.2);
    text-align:center;
    transition:0.4s;
}

.testimonial-card h3{
    margin-bottom:10px;
}

.testimonial-card p{
    color:#333;
    margin-bottom:15px;
}

.stars{
    color:#ffb400;
    font-size:20px;
}

/* HOVER */
.testimonial-card:hover{
    transform:translateY(-10px);
}

/* RESPONSIVE */
@media(max-width:768px){
    .price-container{
        grid-template-columns:1fr;
    }

    .features{
        grid-template-columns:1fr;
    }
}
.testimonial-card{
    animation: float 4s ease-in-out infinite;
}

@keyframes float{
    0%{transform:translateY(0);}
    50%{transform:translateY(-10px);}
    100%{transform:translateY(0);}
}

.cool-banner{
    height:60vh;
    background:url('image/img1.jpg') center/cover no-repeat;
    position:relative;
}

/* DARK OVERLAY */
.banner-overlay{
    position:absolute;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.5);
    display:flex;
    align-items:center;
    padding-left:60px;
}

/* TEXT */
.banner-content{
    color:#fff;
    max-width:500px;
}

.banner-content h1{
    font-size:42px;
    line-height:1.3;
}

.banner-content span{
    font-style:italic;
    color:#ff7a00;
}

.banner-content p{
    margin:15px 0;
    color:#ddd;
}

/* BUTTON */
.banner-btn{
    display:inline-block;
    padding:12px 25px;
    background:#0f2027;
    color:#fff;
    text-decoration:none;
    border-radius:5px;
    transition:0.3s;
}

.banner-btn:hover{
    background:#e63946;
}

@media(max-width:768px){
    .cool-banner{
        height:50vh;
    }

    .banner-overlay{
        padding:20px;
        justify-content:center;
        text-align:center;
    }

    .banner-content h1{
        font-size:26px;
    }
}
.banner-content{
    animation:fadeUp 1s ease;
}

@keyframes fadeUp{
    from{
        opacity:0;
        transform:translateY(30px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}

.text-slider{
    background:#0b1c3d;
    color:#fff;
    overflow:hidden;
    padding:15px 0;
}

.text-track{
    display:flex;
    width:200%;
    animation:scrollText 15s linear infinite;
}

.text-slide{
    white-space:nowrap;
    font-size:18px;
    padding-right:50px;
}

/* ANIMATION */
@keyframes scrollText{
    0%{
        transform:translateX(0);
    }
    100%{
        transform:translateX(-50%);
    }
}

/* CTA STRIP */
.footer-cta{
    background:linear-gradient(90deg,#203a43,#0f2027);
    color:#fff;
    text-align:center;
    padding:25px;
}

.footer-cta h2{
    margin-bottom:5px;
}

.footer-cta span{
    font-weight:bold;
    font-size:20px;
}

/* FOOTER */
.footer{
    background:#0b1c3d;
    color:#fff;
    padding:60px 20px 20px;
}

/* GRID */
.footer-container{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:30px;
}

/* BOX */
.footer-box h3{
    margin-bottom:15px;
}

.footer-box p,
.footer-box a{
    display:block;
    margin-bottom:8px;
    color:#ccc;
    text-decoration:none;
}

/* HOVER */
.footer-box a:hover{
    color:#34312f;
}

/* BOTTOM */
.footer-bottom{
    text-align:center;
    margin-top:30px;
    border-top:1px solid #333;
    padding-top:15px;
    font-size:14px;
}


/* HERO */

.about-hero-slider{
    position:relative;
    height:70vh;   /* 🔥 height badhao (50 → 70) */
    overflow:hidden;
}

/* SLIDE IMAGE */
.slide{
    position:absolute;
    width:100%;
    height:100%;
    background-size: contain;
    background-position: center;
    transform: scale(1.1);  /* 🔥 zoom effect */
    opacity:0;
    transition:0.6s;
}

.slide.active{
    opacity:1;
}

/* SLIDES */
.slides{
    position:absolute;
    width:100%;
    height:100%;
}



/* OVERLAY TEXT */
.about-overlay{
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%, -50%);
    text-align:center;
    color:#fff;
    z-index:2;
}

.about-overlay h1{
    font-size:40px;
}

.about-overlay p{
    margin-top:10px;
}

/* DARK EFFECT */
.about-hero-slider::after{
    content:"";
    position:absolute;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.4);
}

/* MAIN */
.about-main{
    padding:80px 20px;
    background:#f8f9fb;
}

.about-container{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:40px;
    max-width:1200px;
    margin:auto;
    align-items:center;
}

/* IMAGE */
.about-img img{
    width:100%;
    border-radius:15px;
}

/* CONTENT */
.about-content h2{
    margin-bottom:15px;
    font-size:30px;
}

.about-content p{
    color:#555;
    margin-bottom:15px;
}

/* FEATURES */
.about-features{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:10px;
}

.about-features div{
    background:#fff;
    padding:10px;
    border-radius:8px;
    box-shadow:0 3px 10px rgba(0,0,0,0.1);
}

/* RESPONSIVE */
@media(max-width:768px){
    .about-container{
        grid-template-columns:1fr;
    }
}

/*
ABOUT CSS
*/
/* SECTION BACKGROUND */
.about-section{
  padding:80px 20px;
  background: linear-gradient(135deg, #4b5261, #7290c1, #70768e);
}

/* GRID */
.container{
  max-width:1100px;
  margin:auto;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:30px;
}

/* CARD */
.about-box, .team-box{
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(12px);
  border-radius:20px;
  padding:30px;
  position:relative;
  overflow:hidden;
  transition:0.4s;
  box-shadow:0 10px 30px rgba(0,0,0,0.4);
  animation: fadeUp 1s ease forwards;
}

/* DELAY */
.team-box{
  animation-delay:0.3s;
}

/* ICON */
.icon{
  font-size:40px;
  margin-bottom:15px;
}

/* HEADINGS */
.about-box h1, .team-box h2{
  color:#000;
  margin-bottom:15px;
}

/* TEXT */
.about-box p, .team-box p{
  color:#000;
  line-height:1.7;
}

/* HIGHLIGHT */
.about-box span{
  color:#f97316;
  font-weight:bold;
}

/* BUTTON */
.btn{
  margin-top:15px;
  padding:10px 20px;
  border:none;
  border-radius:25px;
  background:linear-gradient(45deg,#83b7cd,#9b8474);
  color:#000;
  cursor:pointer;
  transition:0.3s;
}

.btn:hover{
  transform:scale(1.1);
}

/* HOVER EFFECT */
.about-box:hover, .team-box:hover{
  transform:translateY(-10px) scale(1.02);
}

/* GLOW BORDER */
.about-box::before, .team-box::before{
  content:"";
  position:absolute;
  inset:-2px;
  border-radius:20px;
  background:linear-gradient(45deg,#38bdf8,#aca59f,#85e2a7);
  z-index:-1;
  filter:blur(10px);
  opacity:0;
  transition:0.4s;
}

.about-box:hover::before,
.team-box:hover::before{
  opacity:1;
}

/* ENTRY ANIMATION */
@keyframes fadeUp{
  from{
    opacity:0;
    transform:translateY(50px);
  }
  to{
    opacity:1;
    transform:translateY(0);
  }
}

/* RESPONSIVE */
@media(max-width:768px){
  .container{
    grid-template-columns:1fr;
  }
}


/* SECTION */
.service-section{
  padding:80px 20px;
  background: linear-gradient(135deg,#cbd5f5,#ccc);
}

/* CONTAINER */
.service-container{
  max-width:1200px;
  margin:auto;
  display:grid;
  grid-template-columns:2fr 1fr;
  gap:40px;
  align-items:center;
}

/* LEFT */
.service-left h1{
  color:#000;
  margin-bottom:20px;
  font-size:32px;
}

.service-left p{
  color:#000;
  line-height:1.7;
  margin-bottom:15px;
}

/* LIST */
.service-list{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:10px;
  margin-top:20px;
}

.service-list div{
  background:rgba(255,255,255,0.05);
  padding:10px;
  border-radius:8px;
  color:#000;
  transition:0.3s;
}

.service-list div:hover{
  background:#38bdf8;
  transform:translateX(5px);
}

/* OFFER CARD */
.offer-card{
 background: linear-gradient(135deg,#f97316,#ef4444);
 
  padding:30px;
  border-radius:20px;
  text-align:center;
  color:#fff;
  box-shadow:0 10px 30px rgba(0,0,0,0.4);
  animation: float 3s ease-in-out infinite alternate;
}

.offer-card h2{
  margin-bottom:15px;
}

.offer-card p{
  margin-bottom:20px;
}

/* BUTTON */
.offer-card button{
  padding:10px 25px;
  border:none;
  border-radius:25px;
  background:#fff;
  color:#ef4444;
  font-weight:bold;
  cursor:pointer;
  transition:0.3s;
}

.offer-card button:hover{
  transform:scale(1.1);
}

/* TEXT */
.expire{
  display:block;
  margin-top:15px;
  font-size:12px;
  opacity:0.8;
}

/* FLOAT ANIMATION */
@keyframes float{
  0%{ transform:translateY(0); }
  100%{ transform:translateY(-10px); }
}

/* RESPONSIVE */
@media(max-width:900px){
  .service-container{
    grid-template-columns:1fr;
  }

  .service-list{
    grid-template-columns:1fr;
  }
}

/* HERO SECTION */
.hero{
  height:90vh;
  position:relative;
  background: url('image/fmly.jpg') center/cover no-repeat;
  display:flex;
  align-items:center;
  padding:0 10%;
  color:#fff;

  filter: brightness(1) contrast(1.1);
}

/* DARK OVERLAY */

.hero-overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(
    to right,
    rgba(0,0,0,0.65),   /* thoda kam dark */
    rgba(0,0,0,0.4),
    rgba(0,0,0,0.1)
  );
}
/* CONTENT */
.hero-content{
  position:relative;
  max-width:600px;
  padding:35px;
  margin-bottom: auto;
  background: rgba(255,255,255,0.08);  /* light glass */
  backdrop-filter: blur(8px);
  border-radius:15px;
  text-align: center;
  border:1px solid rgba(255,255,255,0.2);
}

/* HEADING */

.hero-content h1{
  font-size:42px;
  font-weight:700;
  color:#0f2027;
  line-height:1.3;
}

.hero-content p{
  color:#000;
}


.hero-content span{
  color:#38bdf8;
  text-shadow:0 0 10px rgba(56,189,248,0.5);
}




/* BUTTONS */
.hero-buttons{
  display:flex;
  gap:15px;
}

.btn-primary{
  background:linear-gradient(45deg,#38bdf8,#06b6d4);
  padding:10px 20px;
  border-radius:25px;
  text-decoration:none;
  color:#fff;
  transition:0.3s;
}

.btn-secondary{
  background:#f97316;
  padding:10px 20px;
  border-radius:25px;
  text-decoration:none;
  color:#fff;
}

/* HOVER */
.btn-primary:hover,
.btn-secondary:hover{
  transform:scale(1.1);
}

/* ANIMATION */
@keyframes fadeUp{
  from{
    opacity:0;
    transform:translateY(50px);
  }
  to{
    opacity:1;
    transform:translateY(0);
  }
}

/* RESPONSIVE */
@media(max-width:768px){
  .hero{
    height:80vh;
    padding:20px;
  }

  .hero-content h1{
    font-size:28px;
  }

  .hero-buttons{
    flex-direction:column;
  }
}

/* SECTION */
.service-page{
  padding:80px 10%;
  background:#f9fafb;
}

/* LAYOUT */
.container{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:40px;
  align-items:center;
}

/* TEXT */
.service-content h1{
  font-size:38px;
  color:#0f172a;
  margin-bottom:15px;
}

.service-content p{
  color:#475569;
  line-height:1.7;
  margin-bottom:20px;
}

/* FEATURES */
.features{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:10px;
  margin-bottom:20px;
}

.features div{
  background:#fff;
  padding:10px;
  border-radius:8px;
  box-shadow:0 5px 15px rgba(0,0,0,0.05);
}

/* BUTTONS */
.buttons{
  display:flex;
  gap:15px;
}

.btn-primary{
  background:#0ea5e9;
  color:#fff;
  padding:10px 20px;
  border-radius:25px;
  text-decoration:none;
}

.btn-secondary{
  background:#f97316;
  color:#fff;
  padding:10px 20px;
  border-radius:25px;
  text-decoration:none;
}

/* IMAGE */
.service-image img{
  width:100%;
  border-radius:20px;
  box-shadow:0 10px 30px rgba(0,0,0,0.1);
}

/* SERVICES GRID */
.services-grid{
  padding:60px 10%;
  background:#fff;
  text-align:center;
}

.services-grid h2{
  margin-bottom:30px;
  color:#0f172a;
}

/* SERVICE CARD */

/* SECTION */
.services-section{
  padding:80px 10%;
  background:#f8fafc;
  text-align:center;
}

/* TITLE */
.section-title{
  font-size:32px;
  color:#0f172a;
  margin-bottom:40px;
}

/* GRID */
.services-container{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:25px;
}

/* CARD */

/* SECTION */
.services-section{
  padding:80px 10%;
  background:#f9fafb;
  text-align:center;
}

/* TITLE */
.section-title{
  font-size:32px;
  color:#0f172a;
  margin-bottom:40px;
}

/* GRID */
.services-container{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:25px;
}

/* CARD */
.service-card{
  background:#fff;
  padding:30px 20px;
  border-radius:20px;
  box-shadow:0 10px 30px rgba(0,0,0,0.08);
  transition:0.4s;
  position:relative;
  overflow:hidden;
}

/* ICON */
.icon{
  font-size:40px;
  margin-bottom:15px;
}

/* TEXT */
.service-card h3{
  margin-bottom:10px;
  color:#0f172a;
}

.service-card p{
  color:#64748b;
  font-size:14px;
  margin-bottom:15px;
}

/* BUTTON */
.service-btn{
  display:inline-block;
  padding:10px 20px;
  background:#0ea5e9;
  color:#fff;
  border-radius:25px;
  text-decoration:none;
  font-size:14px;
  transition:0.3s;
  position:relative;
  z-index:10; /* 🔥 click issue fix */
}

/* HOVER */
.service-card:hover{
  transform:translateY(-12px) scale(1.03);
}

.service-card:hover .service-btn{
  background:#f97316;
}

/* GRADIENT BORDER */
.service-card::before{
  content:"";
  position:absolute;
  inset:0;
  border-radius:20px;
  padding:2px;
  background:linear-gradient(45deg,#0ea5e9,#f97316);
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

/* RESPONSIVE */
@media(max-width:1000px){
  .services-container{
    grid-template-columns:repeat(2,1fr);
  }
}

@media(max-width:600px){
  .services-container{
    grid-template-columns:1fr;
  }
}


.why-section{
  padding:70px 10%;
  background:#ffffff;
  text-align:center;
}

.why-section h2{
  margin-bottom:40px;
  color:#0f172a;
}

.why-container{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:20px;
}

.why-box{
  background:#f1f5f9;
  padding:25px;
  border-radius:15px;
  transition:0.3s;
}

.why-box:hover{
  background:#0ea5e9;
  color:#fff;
  transform:translateY(-8px);
}

@media(max-width:900px){
  .why-container{
    grid-template-columns:repeat(2,1fr);
  }
}

@media(max-width:500px){
  .why-container{
    grid-template-columns:1fr;
  }
}

.process-section{
  padding:70px 10%;
  background:#f9fafb;
  text-align:center;
}

.process-container{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:20px;
}

.step{
  background:#fff;
  padding:25px;
  border-radius:15px;
  box-shadow:0 5px 20px rgba(0,0,0,0.05);
}

.step span{
  display:inline-block;
  width:40px;
  height:40px;
  background:#0ea5e9;
  color:#fff;
  border-radius:50%;
  line-height:40px;
  margin-bottom:10px;
}

@media(max-width:900px){
  .process-container{
    grid-template-columns:repeat(2,1fr);
  }
}

@media(max-width:500px){
  .process-container{
    grid-template-columns:1fr;
  }
}

.cta-section{
  padding:60px 10%;
  background:linear-gradient(45deg,#636f75,#456d82);
  color:#fff;
  text-align:center;
}

.cta-section h2{
  margin-bottom:10px;
}

.cta-buttons{
  margin-top:20px;
  display:flex;
  justify-content:center;
  gap:15px;
}

.cta-call{
  background:#fff;
  color:#0284c7;
  padding:10px 20px;
  border-radius:25px;
  text-decoration:none;
}

.cta-book{
  background:#f97316;
  color:#fff;
  padding:10px 20px;
  border-radius:25px;
  text-decoration:none;
}

@media(max-width:600px){
  .cta-buttons{
    flex-direction:column;
  }
}

/* 
WASHING PAGE  CSS
*/

/* SECTION */
.service-hero{
  padding:80px 10%;
  background:#f8fafc;
}

/* LAYOUT */
.hero-container{
  display:grid;
  grid-template-columns:1.2fr 1fr;
  gap:50px;
  align-items:center;
}

/* LEFT */
.hero-left h1{
  font-size:48px;
  font-weight:700;
  color:#0f172a;
  margin-bottom:20px;
  line-height:1.2;
}

.hero-left p{
  color:#475569;
  line-height:1.7;
  margin-bottom:20px;
}

/* NOTE BOX */
.note{
  background:#fff7ed;
  border-left:4px solid #f97316;
  padding:12px;
  font-size:14px;
  margin-bottom:25px;
  border-radius:8px;
}

/* BUTTONS */
.hero-buttons{
  display:flex;
  gap:15px;
}

.btn-orange{
  background:#f97316;
  color:#fff;
  padding:12px 25px;
  border-radius:30px;
  text-decoration:none;
  font-weight:500;
}

.btn-outline{
  border:2px solid #0ea5e9;
  color:#0ea5e9;
  padding:12px 25px;
  border-radius:30px;
  text-decoration:none;
  font-weight:500;
}

/* HOVER */
.btn-orange:hover{
  opacity:0.9;
}

.btn-outline:hover{
  background:#0ea5e9;
  color:#fff;
}

/* IMAGE */
.hero-right img{
  width:100%;
  border-radius:20px;
  box-shadow:0 10px 30px rgba(0,0,0,0.1);
}

/* RESPONSIVE */
@media(max-width:900px){
  .hero-container{
    grid-template-columns:1fr;
  }

  .hero-left h1{
    font-size:32px;
  }

  .hero-buttons{
    flex-direction:column;
  }
}

/* SECTION */
.problems-section{
  padding:80px 10%;
  background:linear-gradient(135deg,#739ac2,#334e71);
  text-align:center;
}

/* TITLE */
.section-title{
  font-size:34px;
  color:#0f172a;
  margin-bottom:10px;
}

/* SUBTITLE */
.section-subtitle{
  color:#000;
  margin-bottom:40px;
}

/* GRID */
.problems-container{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:20px;
}

/* CARD */
.problem-card{
  background:rgba(255,255,255,0.7);
  backdrop-filter:blur(10px);
  padding:20px;
  border-radius:15px;
  font-weight:500;
  color:#0f172a;
  transition:0.3s;
  box-shadow:0 5px 20px rgba(0,0,0,0.05);
  cursor:pointer;
}

/* HOVER */
.problem-card:hover{
  transform:translateY(-10px) scale(1.05);
  background:#0ea5e9;
  color:#fff;
  box-shadow:0 10px 30px rgba(0,0,0,0.2);
}

/* RESPONSIVE */
@media(max-width:1000px){
  .problems-container{
    grid-template-columns:repeat(2,1fr);
  }
}

@media(max-width:600px){
  .problems-container{
    grid-template-columns:1fr;
  }

  .section-title{
    font-size:26px;
  }
}

/* SECTION */
.intro-section{
  padding:80px 10%;
  background:linear-gradient(135deg,#c1c9d0,#90b6e9);
  display:flex;
  justify-content:center;
}

/* BOX */
.intro-box{
  max-width:800px;
  text-align:center;
  background:rgba(255,255,255,0.7);
  backdrop-filter:blur(10px);
  padding:40px;
  border-radius:20px;
  box-shadow:0 10px 30px rgba(0,0,0,0.08);
  animation:fadeUp 1s ease;
}

/* HEADING */
.intro-box h2{
  font-size:32px;
  color:#0f172a;
  margin-bottom:15px;
}

/* TEXT */
.intro-box p{
  color:#475569;
  line-height:1.7;
  margin-bottom:10px;
}

/* BUTTON */
.intro-btn{
  display:inline-block;
  margin-top:20px;
  padding:12px 25px;
  background:#f97316;
  color:#fff;
  border-radius:25px;
  text-decoration:none;
  transition:0.3s;
}

.intro-btn:hover{
  transform:scale(1.05);
  background:#ea580c;
}

/* ANIMATION */
@keyframes fadeUp{
  from{
    opacity:0;
    transform:translateY(40px);
  }
  to{
    opacity:1;
    transform:translateY(0);
  }
}

/* RESPONSIVE */
@media(max-width:600px){
  .intro-box{
    padding:25px;
  }

  .intro-box h2{
    font-size:24px;
  }
}

/* SECTION */
.why-section{
  padding:80px 10%;
  background:linear-gradient(135deg,#f8fafc,#e2e8f0);
  text-align:center;
}

/* TITLE */
.why-title{
  font-size:34px;
  color:#0f172a;
  margin-bottom:50px;
}

/* GRID */
.why-container{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:30px;
}

/* CARD */
.why-card{
  background:#fff;
  padding:35px 25px;
  border-radius:20px;
  box-shadow:0 10px 30px rgba(0,0,0,0.08);
  transition:0.4s;
  position:relative;
  overflow:hidden;
}

/* ICON */
.why-icon{
  font-size:40px;
  margin-bottom:15px;
}

/* TEXT */
.why-card h3{
  color:#0f172a;
  margin-bottom:10px;
}

.why-card p{
  color:#64748b;
  font-size:14px;
}

/* HOVER EFFECT */
.why-card:hover{
  transform:translateY(-12px) scale(1.05);
  background:#0ea5e9;
  color:#fff;
}

.why-card:hover p{
  color:#e0f2fe;
}

/* GLOW BORDER */
.why-card::before{
  content:"";
  position:absolute;
  inset:0;
  border-radius:20px;
  padding:2px;
  background:linear-gradient(45deg,#0ea5e9,#f97316);
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

/* RESPONSIVE */
@media(max-width:900px){
  .why-container{
    grid-template-columns:1fr;
  }

  .why-title{
    font-size:26px;
  }
}

/* SECTION */
.cities-section{
  padding:80px 10%;
  background:linear-gradient(135deg,#f8fafc,#e2e8f0);
  text-align:center;
}

/* TITLE */
.cities-title{
  font-size:34px;
  color:#0f172a;
  margin-bottom:10px;
}

/* SUBTITLE */
.cities-subtitle{
  color:#64748b;
  margin-bottom:40px;
}

/* GRID */
.cities-container{
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:15px;
}

/* CITY CHIP */
.city{
  background:#fff;
  padding:12px 22px;
  border-radius:30px;
  font-size:14px;
  color:#0f172a;
  box-shadow:0 5px 15px rgba(0,0,0,0.05);
  transition:0.3s;
  cursor:pointer;
  position:relative;
}

/* HOVER */
.city:hover{
  background:#0ea5e9;
  color:#fff;
  transform:translateY(-5px) scale(1.05);
  box-shadow:0 10px 25px rgba(0,0,0,0.2);
}

/* GLOW BORDER */
.city::before{
  content:"";
  position:absolute;
  inset:0;
  border-radius:30px;
  padding:2px;
  background:linear-gradient(45deg,#0ea5e9,#f97316);
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

/* RESPONSIVE */
@media(max-width:600px){
  .cities-title{
    font-size:26px;
  }

  .city{
    font-size:13px;
    padding:10px 18px;
  }
}


.testimonial-section{
  padding:80px 10%;
  text-align:center;
  background:linear-gradient(135deg,#89b1d8,#436ea5);
}

.testimonial-section h2{
  font-size:32px;
  margin-bottom:10px;
  color:#0f172a;
}

.testimonial-section p{
  color:#f9fafb;
  margin-bottom:40px;
}

/* BOX */
.testimonial-box{
  position:relative;
  max-width:600px;
  margin:auto;
  height:200px;
}

/* CARD */
.testimonial{
  position:absolute;
  width:100%;
  opacity:0;
  transform:scale(0.9);
  transition:0.5s;
  background:#203a43;
  padding:30px;
  border-radius:20px;
  box-shadow:0 10px 30px rgba(0,0,0,0.1);
}

/* ACTIVE */
.testimonial.active{
  opacity:1;
  transform:scale(1);
}

/* STARS */
.stars{
  color:#fbbf24;
  font-size:18px;
  margin-bottom:10px;
}

/* NAME */
.testimonial h4{
  margin-top:10px;
  color:#f8fafc;
}

/* DOTS */
.dots{
  margin-top:20px;
}

.dot{
  height:10px;
  width:10px;
  margin:0 5px;
  background:#cbd5e1;
  border-radius:50%;
  display:inline-block;
  cursor:pointer;
}

.dot.active{
  background:#0ea5e9;
}

/* RESPONSIVE */
@media(max-width:600px){
  .testimonial-box{
    height:auto;
  }
}

/* SECTION */
.faq-section{
  padding:80px 10%;
  background:linear-gradient(135deg,#565c62,#7095c4);
  text-align:center;
}

/* TITLE */
.faq-section h2{
  font-size:32px;
  margin-bottom:40px;
  color:#0f172a;
}

/* CONTAINER */
.faq-container{
  max-width:700px;
  margin:auto;
}

/* ITEM */
.faq-item{
  background:#fff;
  margin-bottom:15px;
  border-radius:15px;
  overflow:hidden;
  box-shadow:0 5px 20px rgba(0,0,0,0.08);
  transition:0.3s;
}

/* QUESTION */
.faq-question{
  padding:18px 20px;
  cursor:pointer;
  font-weight:500;
  display:flex;
  justify-content:space-between;
  align-items:center;
}

/* ANSWER */
.faq-answer{
  max-height:0;
  overflow:hidden;
  padding:0 20px;
  color:#000;
  transition:0.4s ease;
}

/* ACTIVE */
.faq-item.active .faq-answer{
  max-height:150px;
  padding:15px 20px;
}

.faq-item.active .faq-question span{
  transform:rotate(45deg);
}

/* HOVER */
.faq-item:hover{
  transform:scale(1.02);
}


/* SECTION */
.work-section{
  padding:80px 10%;
  background:linear-gradient(135deg,#f8fafc,#e2e8f0);
  text-align:center;
}

/* TITLE */
.work-title{
  font-size:32px;
  color:#0f172a;
  margin-bottom:10px;
}

.work-subtitle{
  color:#64748b;
  margin-bottom:40px;
}

/* GRID */
.work-container{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:25px;
}

/* CARD */
.work-card{
  position:relative;
  overflow:hidden;
  border-radius:20px;
  cursor:pointer;
}

/* IMAGE */
.work-card img{
  width:100%;
  height:250px;
  object-fit:cover;
  transition:0.5s;
}

/* OVERLAY */
.overlay{
  position:absolute;
  inset:0;
  background:rgba(14,165,233,0.7);
  display:flex;
  align-items:center;
  justify-content:center;
  opacity:0;
  transition:0.4s;
}

.overlay h3{
  color:#fff;
  font-size:20px;
}

/* HOVER EFFECT */
.work-card:hover img{
  transform:scale(1.1);
}

.work-card:hover .overlay{
  opacity:1;
}

/* RESPONSIVE */
@media(max-width:900px){
  .work-container{
    grid-template-columns:1fr 1fr;
  }
}

@media(max-width:600px){
  .work-container{
    grid-template-columns:1fr;
  }

  .work-title{
    font-size:24px;
  }
}

/* SECTION */
.cta-new{
  padding:80px 10%;
  background:linear-gradient(135deg,#1c43a0,#7c95bc);
  display:flex;
  justify-content:center;
  align-items:center;
}

/* BOX */
.cta-box{
  text-align:center;
  max-width:700px;
  background:rgba(255,255,255,0.08);
  backdrop-filter:blur(12px);
  padding:50px;
  border-radius:25px;
  box-shadow:0 10px 40px rgba(0,0,0,0.4);
}

/* TEXT */
.cta-box h2{
  font-size:36px;
  color:#fff;
  margin-bottom:15px;
}

.cta-box p{
  color:#cbd5e1;
  margin-bottom:30px;
}

/* BUTTONS */
.cta-buttons{
  display:flex;
  justify-content:center;
  gap:20px;
  flex-wrap:wrap;
}

/* CALL BUTTON */
.cta-call{
  background:linear-gradient(45deg,#3b82f6,#2563eb);
  color:#fff;
  padding:12px 30px;
  border-radius:30px;
  text-decoration:none;
  transition:0.3s;
  box-shadow:0 5px 20px rgba(59,130,246,0.5);
}

/* WHATSAPP */
.cta-whatsapp{
  background:linear-gradient(45deg,#22c55e,#16a34a);
  color:#fff;
  padding:12px 30px;
  border-radius:30px;
  text-decoration:none;
  transition:0.3s;
  box-shadow:0 5px 20px rgba(34,197,94,0.5);
}

/* HOVER */
.cta-call:hover,
.cta-whatsapp:hover{
  transform:scale(1.08);
}

/* RESPONSIVE */
@media(max-width:600px){
  .cta-box{
    padding:30px 20px;
  }

  .cta-box h2{
    font-size:26px;
  }
}


/*Refrigerator css */


/* SECTION */
.fridge-hero{
  padding:80px 10%;
  background:linear-gradient(135deg,#f8fafc,#e2e8f0);
}

/* CONTAINER */
.fridge-container{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:50px;
  flex-wrap:wrap;
}

/* TEXT AREA */
.fridge-text{
  flex:1;
  padding-right:20px;
}

/* HEADING */
.fridge-text h1{
  font-size:48px;
  font-weight:700;
  line-height:1.2;
  color:#0f172a;
  margin-bottom:20px;
}

/* PARAGRAPH */
.desc{
  font-size:16px;
  color:#334155;
  line-height:1.7;
  margin-bottom:10px;
  max-width:520px;
}

.desc.light{
  color:#64748b;
  margin-bottom:25px;
}

/* BADGE */
.fridge-badge{
  background:#fff3cd;
  color:#92400e;
  padding:12px 15px;
  border-left:5px solid #f59e0b;
  border-radius:8px;
  margin-bottom:30px;
  font-size:14px;
  max-width:520px;
}

/* BUTTONS */
.fridge-buttons{
  display:flex;
  gap:18px;
  flex-wrap:wrap;
}

/* PRIMARY BUTTON */
.btn-orange{
  background:linear-gradient(45deg,#f97316,#fb923c);
  color:#fff;
  padding:12px 28px;
  border-radius:30px;
  text-decoration:none;
  font-weight:600;
  transition:0.3s;
  box-shadow:0 5px 20px rgba(249,115,22,0.4);
}

.btn-orange:hover{
  transform:scale(1.08);
}

/* SECOND BUTTON */
.btn-outline{
  border:2px solid #3b82f6;
  color:#3b82f6;
  padding:12px 28px;
  border-radius:30px;
  text-decoration:none;
  font-weight:600;
  transition:0.3s;
}

.btn-outline:hover{
  background:#3b82f6;
  color:#fff;
}

/* IMAGE */
.fridge-img{
  flex:1;
  text-align:center;
}

.fridge-img img{
  width:100%;
  max-width:450px;
  border-radius:20px;
  box-shadow:0 10px 40px rgba(0,0,0,0.15);
  transition:0.4s;
}

.fridge-img img:hover{
  transform:scale(1.05);
}

/* RESPONSIVE */
@media(max-width:768px){
  .fridge-container{
    flex-direction:column;
    text-align:center;
  }

  .fridge-text h1{
    font-size:30px;
  }

  .desc{
    margin:0 auto 10px;
  }

  .fridge-badge{
    margin:20px auto;
  }

  .fridge-buttons{
    justify-content:center;
  }
}

/* SECTION BACKGROUND */


.fridge-info{
  padding:80px 10%;
  background:linear-gradient(135deg,#6695b4,#3c6389);
  text-align:center;
}

.container{
  max-width:1100px;
  margin:auto;
}

/* TEXT */
.fridge-head{
  margin-bottom:40px;
}

.fridge-head h2{
  font-size:36px;
  margin-bottom:15px;
}

.fridge-head p{
  max-width:700px;
  margin:auto;
  color:#000;
}

/* GRID */
.problems-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:20px;
  margin-top:30px;
}

/* CARD */
.problem-card{
  background:#fff;
  padding:18px;
  border-radius:12px;
  box-shadow:0 5px 20px rgba(0,0,0,0.08);
  transition:0.3s;
}

.problem-card:hover{
  background:#0ea5e9;
  color:#fff;
  transform:translateY(-5px);
}


.why-choose{
  padding:80px 10%;
  background:#f8fafc;
  text-align:center;
}

/* TITLE */
.section-title{
  font-size:36px;
  margin-bottom:10px;
  color:#0f172a;
}

.section-subtitle{
  color:#000;
  margin-bottom:50px;
}

/* GRID */
.choose-container{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
  gap:30px;
}

/* CARD */
.choose-card{
  background:#755555;
  padding:35px 25px;
  border-radius:20px;
  box-shadow:0 10px 30px rgba(0,0,0,0.08);
  transition:0.4s;
  position:relative;
  overflow:hidden;
}

/* HOVER EFFECT */
.choose-card:hover{
  transform:translateY(-10px);
  box-shadow:0 20px 50px rgba(0,0,0,0.15);
}

/* ICON */
.icon-box{
  width:70px;
  height:70px;
  margin:auto;
  margin-bottom:20px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:28px;
  background:linear-gradient(135deg,#38bdf8,#0ea5e9);
  color:#fff;
  box-shadow:0 5px 20px rgba(56,189,248,0.4);
  transition:0.3s;
}

/* ICON HOVER */
.choose-card:hover .icon-box{
  transform:scale(1.1) rotate(5deg);
}

/* TEXT */
.choose-card h3{
  margin-bottom:10px;
  color:#0f172a;
}

.choose-card p{
  color:#000;
  font-size:14px;
}

/* RESPONSIVE */
@media(max-width:768px){
  .section-title{
    font-size:28px;
  }
}

/*.choose-card::before{
  content:'';
  position:absolute;
  width:100%;
  height:100%;
  background:linear-gradient(120deg,transparent,rgba(56,189,248,0.2),transparent);
  top:0;
  left:-100%;
  transition:0.5s;
}

.choose-card:hover::before{
  left:100%;
}

.cities-section{
  padding:80px 10%;
  background:linear-gradient(135deg,#575a61,#677995);
  text-align:center;
  color:#fff;
}

/* TITLE 
.cities-title{
  font-size:36px;
  margin-bottom:10px;
}

.cities-subtitle{
  color:#cbd5f5;
  margin-bottom:40px;
}

/* GRID 
.cities-container{
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:15px;
}

/* CITY PILLS 
.cities-container span{
  padding:12px 25px;
  border-radius:30px;
  background:rgba(255,255,255,0.08);
  backdrop-filter:blur(10px);
  border:1px solid rgba(255,255,255,0.15);
  font-size:14px;
  transition:0.3s;
  cursor:pointer;
}

/* HOVER EFFECT 
.cities-container span:hover{
  background:linear-gradient(45deg,#38bdf8,#06b6d4);
  color:#fff;
  transform:scale(1.1);
  box-shadow:0 5px 20px rgba(56,189,248,0.4);
}

/* RESPONSIVE 
@media(max-width:768px){
  .cities-title{
    font-size:28px;
  }

  .cities-container span{
    padding:10px 18px;
    font-size:13px;
  }
}*/

.testimonial-section{
  padding:80px 10%;
  background:linear-gradient(135deg,#fff3cd,#466bab);
  text-align:center;
  color:#fff;
}

/* TITLE */
.test-title{
  font-size:36px;
}

.test-sub{
  color:#cbd5e1;
  margin-bottom:50px;
}

/* WRAPPER */
.testimonial-wrapper{
  position:relative;
  max-width:600px;
  margin:auto;
}

/* CARD */
.testimonial{
  position:absolute;
  width:100%;
  background:rgba(255,255,255,0.08);
  backdrop-filter:blur(15px);
  border-radius:20px;
  padding:40px;
  opacity:0;
  transform:scale(0.9);
  transition:0.5s;
  border:1px solid rgba(255,255,255,0.2);
}

/* ACTIVE */
.testimonial.active{
  opacity:1;
  transform:scale(1);
  position:relative;
}

/* TEXT */
.testimonial p{
  font-size:16px;
  margin-bottom:20px;
  line-height:1.6;
}

.testimonial h4{
  color:#000;
}

/* GLOW EFFECT */
.testimonial.active{
  box-shadow:0 10px 40px rgba(56,189,248,0.4);
}

/* RESPONSIVE */
@media(max-width:768px){
  .test-title{
    font-size:28px;
  }
}

.faq-section{
  padding:80px 10%;
  background: linear-gradient(135deg,#363638,#6f7e96);
  color:#fff;
}

.faq-title{
  text-align:center;
  font-size:36px;
  margin-bottom:40px;
  font-weight:700;
}

.faq-container{
  max-width:800px;
  margin:auto;
}

.faq-item{
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(10px);
  border-radius:15px;
  margin-bottom:15px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,0.1);
  transition:0.3s;
}

.faq-item:hover{
  transform:translateY(-3px);
  box-shadow:0 10px 25px rgba(0,0,0,0.3);
}

.faq-question{
  width:100%;
  padding:18px 20px;
  background:none;
  border:none;
  color:#fff;
  font-size:16px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  cursor:pointer;
}

.faq-question span{
  font-size:20px;
  transition:0.3s;
}

.faq-answer{
  max-height:0;
  overflow:hidden;
  padding:0 20px;
  font-size:14px;
  color:#cbd5e1;
  transition:0.4s ease;
}

/* ACTIVE */
.faq-item.active .faq-answer{
  max-height:200px;
  padding:15px 20px;
}

.faq-item.active .faq-question span{
  transform:rotate(45deg);
}

/* tools Refrigerator css */

.work-section{
  padding: 60px 20px;
  text-align: center;
  background: linear-gradient(135deg,#8c96,#6695b4,#60bee6);
  color: #fff;
}

.work-section h2{
  font-size: 36px;
  margin-bottom: 10px;
}

.work-section p{
  color: #ccc;
  margin-bottom: 40px;
}

.work-container{
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(280px,1fr));
  gap: 25px;
}

.work-card{
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  cursor: pointer;
}

.work-card img{
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: 0.5s;
}

/* HOVER EFFECT */
.work-card:hover img{
  transform: scale(1.1);
}

.overlay{
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 20px;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(5px);
  transform: translateY(100%);
  transition: 0.5s;
}

.work-card:hover .overlay{
  transform: translateY(0);
}

.overlay h3{
  margin: 0;
  color: #ff7a00;
}

.overlay p{
  font-size: 14px;
  color: #ddd;
}

/*CTA SECTION CSS */

.cta-section{
  padding: 80px 20px;
  background: radial-gradient(circle at top left, #756b62, transparent),
              radial-gradient(circle at bottom right, #00c6ff, transparent),
              #0b0320;
  display: flex;
  justify-content: center;
  align-items: center;
}

.cta-box{
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  backdrop-filter: blur(15px);
  padding: 50px 30px;
  border-radius: 20px;
  text-align: center;
  max-width: 600px;
  width: 100%;
  box-shadow: 0 0 40px rgba(0,0,0,0.4);
}

.cta-box h2{
  font-size: 36px;
  margin-bottom: 15px;
  color: #fff;
}

.cta-box p{
  color: #ccc;
  margin-bottom: 30px;
}

.cta-buttons{
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.btn{
  padding: 12px 28px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

/* CONTACT BUTTON */
.contact-btn{
  background: linear-gradient(135deg,#3a7bd5,#00d2ff);
  color: #fff;
}

.contact-btn:hover{
  transform: translateY(-3px);
  box-shadow: 0 5px 20px rgba(0,210,255,0.5);
}

/* WHATSAPP BUTTON */
.whatsapp-btn{
  background: linear-gradient(135deg,#25D366,#128C7E);
  color: #fff;
}

.whatsapp-btn:hover{
  transform: translateY(-3px);
  box-shadow: 0 5px 20px rgba(37,211,102,0.5);
}

/*
AC PAGE CSS
           */

           .hero-ac{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 80px 8%;
  background: linear-gradient(135deg,#f9fafb,#f8fafc,#f4f7fb);
  color: #fff;
  gap: 40px;
  flex-wrap: wrap;
}

/* LEFT */
.hero-left{
  flex: 1;
}

.hero-left h1{
  font-size: 52px;
  line-height: 1.2;
  margin-bottom: 20px;
}

.hero-left p{
  color: #000;
  margin-bottom: 20px;
  font-size: 18px;
}

/* INFO BOX */
.info-box{
  background: rgba(255,255,255,0.08);
  border-left: 4px solid #ff7a00;
  padding: 15px;
  border-radius: 10px;
  margin-bottom: 25px;
  font-size: 14px;
  color: #000;
}

/* BUTTONS */
.hero-buttons{
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.btn{
  padding: 14px 28px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

/* PRIMARY */
.primary{
  background: linear-gradient(135deg,#ff7a00,#ffb347);
  color: #fff;
}

.primary:hover{
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(255,122,0,0.6);
}

/* SECONDARY */
.secondary{
  border: 2px solid #00c6ff;
  color: #00c6ff;
}

.secondary:hover{
  background: #00c6ff;
  color: #000;
}

/* RIGHT IMAGE */
.hero-right{
  flex: 1;
  text-align: center;
}

.hero-right img{
  width: 100%;
  max-width: 450px;
  border-radius: 20px;
  box-shadow: 0 0 40px rgba(0,0,0,0.5);
}

/* RESPONSIVE */
@media(max-width:768px){
  .hero-left h1{
    font-size: 34px;
  }

  .hero-ac{
    text-align: center;
  }

  .hero-buttons{
    justify-content: center;
  }
}

.ac-solution{
  padding: 80px 20px;
  text-align: center;
  background: linear-gradient(135deg,#686e79,#6a87a7);
  color: #fff;
}

.ac-solution h2{
  font-size: 38px;
  margin-bottom: 15px;
}

.subtitle{
  color: #ccc;
  max-width: 700px;
  margin: auto;
  margin-bottom: 50px;
}

/* CARDS */
.solution-cards{
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(260px,1fr));
  gap: 25px;
}

/* CARD STYLE */
.solution-card{
  background: rgba(10, 67, 110, 0.05);
  padding: 30px;
  border-radius: 15px;
  backdrop-filter: blur(10px);
  transition: 0.3s;
  border: 1px solid rgba(255,255,255,0.1);
}

/* HOVER EFFECT */
.solution-card:hover{
  transform: translateY(-8px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.solution-card h3{
  color: #000;
  margin-bottom: 10px;
}

/* RESPONSIVE */
@media(max-width:768px){
  .ac-solution h2{
    font-size: 28px;
  }
}


.ac-issues{
  padding: 80px 20px;
  background: linear-gradient(135deg,#f8f9fb,#f4f7fb,#2c5364);
  text-align: center;
  color: #fff;
}

.ac-issues h2{
  font-size: 36px;
  margin-bottom: 50px;
  color: #000;
}

/* GRID */
.issues-grid{
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(220px,1fr));
  gap: 25px;
}

/* CARD */
.issue-card{
  
  background: hsla(187, 76%, 31%, 0.25);
  border-radius: 15px;
  padding: 30px;
  backdrop-filter: blur(10px);
  transition: 0.3s;
  border: 1px solid rgba(255,255,255,0.1);
  cursor: pointer;
}

/* ICON */
.issue-card span{
  font-size: 30px;
  display: block;
  margin-bottom: 10px;
}

/* TEXT */
.issue-card h3{
  font-size: 16px;
  color: #000;
}

/* HOVER EFFECT */
.issue-card:hover{
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 10px 30px rgba(0,0,0,0.6);
  border: 1px solid #00c6ff;
}

/* RESPONSIVE */
@media(max-width:768px){
  .ac-issues h2{
    font-size: 26px;
  }
}


.why-choose{
  padding: 80px 20px;
  text-align: center;
  background: linear-gradient(135deg,#0f2027,#203a43,#2c5364);
  color: #fff;
}

.why-choose h2{
  font-size: 36px;
  margin-bottom: 50px;
}

/* GRID */
.choose-container{
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(280px,1fr));
  gap: 25px;
}

/* CARD */
.choose-card{
  background: rgba(255,255,255,0.05);
  padding: 40px 25px;
  border-radius: 15px;
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.1);
  transition: 0.3s;
  position: relative;
  overflow: hidden;
}

/* ICON */
.icon{
  font-size: 40px;
  margin-bottom: 15px;
}

/* TEXT */
.choose-card h3{
  color: #ff7a00;
  margin-bottom: 10px;
}

.choose-card p{
  color: #ccc;
}

/* HOVER EFFECT */
.choose-card:hover{
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 10px 40px rgba(0,0,0,0.6);
  border: 1px solid #00c6ff;
}

/* GLOW LINE */
.choose-card::before{
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg,#ff7a00,#00c6ff);
  transition: 0.5s;
}

.choose-card:hover::before{
  left: 0;
}

/* RESPONSIVE */
@media(max-width:768px){
  .why-choose h2{
    font-size: 26px;
  }
}


/*.cities-section{
  padding: 80px 20px;
  text-align: center;
  background: linear-gradient(135deg,#7a899d,#324a69);
  color: #fff;
}

.cities-section h2{
  font-size: 36px;
  margin-bottom: 40px;
  color: #000;
}

/* FLEX GRID 
.cities-container{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}

/* CITY TAG 
.city{
  background: rgba(255,255,255,0.08);
  padding: 12px 22px;
  border-radius: 30px;
  font-size: 14px;
  cursor: pointer;
  transition: 0.3s;
  border: 1px solid rgba(255,255,255,0.1);
}

/* HOVER EFFECT 
.city:hover{
  background: linear-gradient(135deg,#ff7a00,#ffb347);
  color: #000;
  transform: scale(1.1);
  box-shadow: 0 5px 20px rgba(255,122,0,0.5);
}

/* RESPONSIVE 
@media(max-width:768px){
  .cities-section h2{
    font-size: 26px;
  }

  .city{
    font-size: 12px;
    padding: 10px 18px;
  }

}*/

.contact-section {
  padding: 80px 20px;
  text-align: center;
  background: linear-gradient(135deg, #0b0320, #1e3a8a, #0ea5e9);
  color: #fff;
}

.contact-title {
  font-size: 42px;
  font-weight: bold;
  margin-bottom: 10px;
}

.contact-subtitle {
  font-size: 18px;
  margin-bottom: 50px;
  color: #e0e7ff;
}

/* GRID */
.contact-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

/* CARD DESIGN */
.contact-card {
  position: relative;
  padding: 35px 25px;
  border-radius: 20px;
  backdrop-filter: blur(15px);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: 0.4s ease;
  overflow: hidden;
}

/* GLOW EFFECT */
.contact-card::before {
  content: "";
  position: absolute;
  width: 150%;
  height: 150%;
  background: linear-gradient(45deg, #00f5ff, #ff00ff, #00f5ff);
  top: -50%;
  left: -50%;
  z-index: 0;
  opacity: 0;
  transition: 0.5s;
  text-align: center;
}

.contact-card:hover::before {
  opacity: 0.2;
}

/* HOVER ANIMATION */
.contact-card:hover {
  transform: translateY(-12px) scale(1.03);
}

/* ICON */
.icon {
  font-size: 28px;
  margin-bottom: 15px;
  background: rgba(255,255,255,0.15);
  width: 60px;
  height: 60px;
  line-height: 60px;
  margin: auto;
  border-radius: 50%;
}

/* TEXT */
.contact-card h3 {
  margin: 15px 0;
  font-size: 20px;
}

.contact-card p {
  font-size: 15px;
  color: #e0f2fe;
  line-height: 1.6;
}

/* MOBILE */
@media(max-width: 600px){
  .contact-title {
    font-size: 30px;
  }
}

.testimonial-section{
  padding: 80px 20px;
  text-align: center;
  background: linear-gradient(135deg,#5b7e8d,#848e91,#2182ac);
  color: #fff;
}

.testimonial-section h2{
  font-size: 36px;
  margin-bottom: 10px;
}

.testimonial-section p{
  color: #ccc;
  margin-bottom: 40px;
}

.testimonial-container{
  position: relative;
  max-width: 600px;
  margin: auto;
}

.testimonial{
  display: none;
  background: #0f2027;
  padding: 30px;
  border-radius: 15px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.1);
  transition: 0.5s;
}

.testimonial.active{
  display: block;
}

.stars{
  color: gold;
  margin-bottom: 10px;
  font-size: 18px;
}

.testimonial p{
  font-style: italic;
  margin-bottom: 15px;
}

.testimonial h4{
  color: #ff7a00;
}

/* DOTS */
.dots{
  margin-top: 20px;
}

.dot{
  height: 10px;
  width: 10px;
  background: #777;
  display: inline-block;
  border-radius: 50%;
  margin: 5px;
  cursor: pointer;
  transition: 0.3s;
}

.dot.active{
  background: #ff7a00;
}


.faq-section{
  padding: 80px 20px;
  background: linear-gradient(135deg,#f1f5f9,#f4f7fb,#f4f7fb);
  text-align: center;
  color: #fff;
}

.faq-section h2{
  font-size: 36px;
  margin-bottom: 40px;
}

.faq-container{
  max-width: 700px;
  margin: auto;
}

/* CARD */
.faq-item{
  background: #ffffff;
  color: #333;
  margin-bottom: 15px;
  border-radius: 12px;
  overflow: hidden;
  transition: 0.3s;
  box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}

/* QUESTION */
.faq-question{
  padding: 18px 20px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #0f2027;
}

/* ICON */
.icon{
  transition: 0.3s;
}

/* ANSWER */
.faq-answer{
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  color: #555;
  transition: all 0.4s ease;
}

/* ACTIVE */
.faq-item.active .faq-answer{
  max-height: 200px;
  padding: 15px 20px;
}

.faq-item.active .icon{
  transform: rotate(180deg);
}

/* HOVER */
.faq-item:hover{
  transform: translateY(-3px);
}

/* MOBILE */
@media(max-width:768px){
  .faq-section h2{
    font-size: 26px;
  }
}

.work-section{
  padding: 80px 20px;
  background: linear-gradient(135deg,#0f2027,#203a43,#2c5364);
  text-align: center;
  color: #fff;
}

.work-section h2{
  font-size: 36px;
  margin-bottom: 10px;
}

.work-section p{
  color: #ccc;
  margin-bottom: 40px;
}

/* GRID */
.work-container{
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 25px;
}

/* CARD */
.work-card{
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  cursor: pointer;
}

/* IMAGE */
.work-card img{
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: 0.5s;
}

/* OVERLAY */
.overlay{
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 20px;
  background: linear-gradient(transparent, rgba(0,0,0,0.8));
  color: #fff;
  transform: translateY(100%);
  transition: 0.4s;
}

.overlay h3{
  margin: 0;
}

/* HOVER EFFECT */
.work-card:hover img{
  transform: scale(1.1);
}

.work-card:hover .overlay{
  transform: translateY(0);
}

/* MOBILE */
@media(max-width:900px){
  .work-container{
    grid-template-columns: repeat(2,1fr);
  }
}

@media(max-width:600px){
  .work-container{
    grid-template-columns: 1fr;
  }
}


.cta-section{
  padding: 80px 20px;
  background: linear-gradient(135deg,#f9fafb,#f9fafb,#f9fafb);
  display: flex;
  justify-content: center;
  align-items: center;
}

/* GLASS BOX */
.cta-box{
  max-width: 800px;
  width: 100%;
  text-align: center;
  padding: 50px 30px;
  border-radius: 20px;
  background-color:#478098;
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 10px 40px rgba(0,0,0,0.4);
}

/* TEXT */
.cta-box h2{
  font-size: 36px;
  color: #fff;
  margin-bottom: 15px;
}

.cta-box p{
  color: #ccc;
  margin-bottom: 30px;
  line-height: 1.6;
}

/* BUTTONS */
.cta-buttons{
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.btn{
  padding: 12px 28px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

/* CONTACT BUTTON */
.contact-btn{
  background: linear-gradient(45deg,#0f2027,#0f2027);
  color: #fff;
}

.contact-btn:hover{
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.4);
}

/* WHATSAPP */
.whatsapp-btn{
  background: #25D366;
  color: #fff;
}

.whatsapp-btn:hover{
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.4);
}

/* MOBILE */
@media(max-width:600px){
  .cta-box h2{
    font-size: 26px;
  }
}

/*
 MICROWAVE CSS
 */

 .micro-hero{
  padding: 80px 20px;
  background: radial-gradient(circle at top left, #fff3cd, #fff);
  color: #fff;
}

.micro-container{
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 50px;
  flex-wrap: wrap;
}

/* TEXT */
.micro-text{
  flex: 1;
}

.micro-text h1{
  font-size: 48px;
  line-height: 1.2;
  margin-bottom: 20px;
  background: linear-gradient(45deg,#203a43,#0000);
  -webkit-background-clip: text;
  color: transparent;
}

.micro-text p{
  color: #000;
  margin-bottom: 20px;
  font-size: 16px;
}

/* DISCLAIMER */
.disclaimer{
  background: rgba(255,255,255,0.08);
  padding: 12px 15px;
  border-left: 4px solid #00d2ff;
  border-radius: 8px;
  font-size: 14px;
  margin-bottom: 25px;
  color: #000;
}

/* BUTTONS */
.micro-buttons{
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.btn{
  padding: 12px 25px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

/* PRIMARY */
.primary{
  background: linear-gradient(45deg,#3d5068,#f4f7fb);
  color: #000;
}

.primary:hover{
  transform: translateY(-3px);
  box-shadow: 0 5px 20px rgba(0,0,0,0.5);
}

/* OUTLINE */
.outline{
  border: 2px solid #00d2ff;
  color: #00d2ff;
}

.outline:hover{
  background: #00d2ff;
  color: #000;
}

/* IMAGE */
.micro-image{
  flex: 1;
  text-align: center;
}

.micro-image img{
  width: 100%;
  max-width: 450px;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.6);
  transition: 0.4s;
}

.micro-image img:hover{
  transform: scale(1.05);
}

/* RESPONSIVE */
@media(max-width:768px){
  .micro-text h1{
    font-size: 32px;
  }

  .micro-container{
    flex-direction: column;
    text-align: center;
  }

  .micro-buttons{
    justify-content: center;
  }
}


/* SECTION 1 */
.microwave-info{
  padding: 80px 20px;
  background: linear-gradient(135deg,#0f2027,#7f9ea8,#525b5f);
  display: flex;
  justify-content: center;
}

/* GLASS CARD */
.info-box{
  max-width: 800px;
  padding: 40px;
  border-radius: 20px;
  text-align: center;
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 10px 40px rgba(0,0,0,0.5);
  color: #000;
}

.info-box h2{
  font-size: 34px;
  margin-bottom: 15px;
  color: #000;
}

.info-box p{
  color: #000;
  line-height: 1.7;
}

/* SECTION 2 */
.microwave-issues{
  padding: 80px 20px;
  text-align: center;
  background: #f8f9fa;
}

.microwave-issues h2{
  font-size: 32px;
  margin-bottom: 40px;
}

/* GRID */
.issues-container{
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 20px;
  max-width: 1000px;
  margin: auto;
}

/* CARD */
.issue-card{
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  font-weight: 600;
  transition: 0.3s;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* HOVER EFFECT */
.issue-card:hover{
  background: linear-gradient(45deg,#3a7bd5,#00d2ff);
  color: #fff;
  transform: translateY(-5px);
}

/* RESPONSIVE */
@media(max-width:900px){
  .issues-container{
    grid-template-columns: repeat(2,1fr);
  }
}

@media(max-width:600px){
  .issues-container{
    grid-template-columns: 1fr;
  }

  .info-box h2{
    font-size: 24px;
  }
}

.choose-section{
  padding: 80px 20px;
  background: linear-gradient(135deg,#abb8be,#64afc8,#4fcaff);
  text-align: center;
  color: #fff;
}

.choose-section h2{
  font-size: 34px;
  margin-bottom: 50px;
  color: #000;
}

/* GRID */
.choose-container{
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 25px;
  max-width: 1000px;
  margin: auto;
}

/* CARD */
.choose-card{
  padding: 30px 20px;
  border-radius: 15px;
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.1);
  transition: 0.4s;
  position: relative;
  overflow: hidden;
  background-color: #0f2027;
}

/* ICON */
.choose-card .icon{
  font-size: 40px;
  margin-bottom: 15px;
  display: inline-block;
  transition: 0.3s;
}

/* TEXT */
.choose-card h3{
  margin-bottom: 10px;
  color: #f9fafb;
}

.choose-card p{
  color: #ccc;
}

/* HOVER EFFECT */
.choose-card:hover{
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 10px 30px rgba(0,0,0,0.6);
  border: 1px solid #00d2ff;
}

.choose-card:hover .icon{
  transform: scale(1.2) rotate(5deg);
}

/* GLOW EFFECT */
.choose-card::before{
  content: "";
  position: absolute;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(0,210,255,0.2), transparent);
  top: -50%;
  left: -50%;
  opacity: 0;
  transition: 0.5s;
}

.choose-card:hover::before{
  opacity: 1;
}

/* RESPONSIVE */
@media(max-width:900px){
  .choose-container{
    grid-template-columns: repeat(2,1fr);
  }
}

@media(max-width:600px){
  .choose-container{
    grid-template-columns: 1fr;
  }

  .choose-section h2{
    font-size: 26px;
  }
}

.testimonial-section{
  padding: 80px 20px;
  text-align: center;
  background: #f5f7fb;
}

.testimonial-section h2{
  font-size: 34px;
  margin-bottom: 10px;
}

.testimonial-section p{
  color: #666;
  margin-bottom: 40px;
}

/* BOX */
.testimonial-box{
  position: relative;
  max-width: 600px;
  margin: auto;
}

/* CARD */
.testimonial{
  display: none;
  background: #fff;
  padding: 40px 25px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  animation: fade 0.5s ease;
}

.testimonial.active{
  display: block;
}

@keyframes fade{
  from{opacity:0; transform:translateY(10px);}
  to{opacity:1; transform:translateY(0);}
}

/* STARS */
.stars{
  color: #ffc107;
  font-size: 20px;
  margin-bottom: 10px;
}

/* TEXT */
.testimonial p{
  font-style: italic;
  color: #444;
  margin-bottom: 15px;
}

/* NAME */
.testimonial h4{
  margin: 0;
  color: #222;
}

.testimonial span{
  font-size: 13px;
  color: #777;
}

/* DOTS */
.dots{
  margin-top: 20px;
}

.dot{
  height: 8px;
  width: 8px;
  margin: 5px;
  background: #ccc;
  display: inline-block;
  border-radius: 50%;
  cursor: pointer;
  transition: 0.3s;
}

.dot.active{
  background: #0072ff;
  width: 18px;
  border-radius: 10px;
}

/* RESPONSIVE */
@media(max-width:600px){
  .testimonial{
    padding: 25px 15px;
  }
}


/* ================= FAQ SECTION ================= */
.faq-section{
  padding: 80px 20px;
  background: linear-gradient(135deg,#eef2f7,#f8fbff);
  text-align: center;
}

.faq-section h2{
  font-size: 34px;
  margin-bottom: 40px;
  color: #111;
  font-weight: 700;
}

/* ================= CONTAINER ================= */
.faq-container{
  max-width: 720px;
  margin: auto;
}

/* ================= ITEM ================= */
.faq-item{
  background: #ffffff;
  margin-bottom: 18px;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  position: relative;
}

/* HOVER EFFECT */
.faq-item:hover{
  transform: translateY(-4px);
  box-shadow: 0 12px 35px rgba(0,0,0,0.12);
}

/* ================= QUESTION ================= */
.faq-question{
  padding: 20px 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: 600;
  color: #222;
  font-size: 16px;
}

/* ================= ICON ================= */
.arrow{
  font-size: 18px;
  transition: transform 0.3s ease;
  color: #0072ff;
}

/* ================= ANSWER ================= */
.faq-answer{
  max-height: 0;
  overflow: hidden;
  padding: 0 22px;
  color: #555;
  line-height: 1.7;
  font-size: 15px;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

/* ================= ACTIVE STATE ================= */
.faq-item.active{
  border: 1px solid #0072ff;
}

.faq-item.active .faq-answer{
  max-height: 200px;
  padding: 15px 22px;
  color: #000;
}

.faq-item.active .arrow{
  transform: rotate(180deg);
}

/* ================= FIX (NO TILT BUG) ================= */
.faq-item,
.faq-question,
.faq-answer,
.faq-question span{
  transform: none !important;
  rotate: 0deg !important;
  writing-mode: horizontal-tb !important;
  color: floralwhite;
}

/* ================= RESPONSIVE ================= */
@media(max-width:768px){
  .faq-section{
    padding: 60px 15px;
  }

  .faq-section h2{
    font-size: 26px;
  }

  .faq-question{
    font-size: 14px;
    padding: 16px;
  }

  .faq-answer{
    font-size: 14px;
  }
}

/* SECTION */
.work-section{
  padding: 80px 20px;
  background: linear-gradient(135deg,#0f2027,#203a43,#2c5364);
  text-align: center;
  color: #fff;
}

.work-section h2{
  font-size: 36px;
  margin-bottom: 10px;
}

.work-section p{
  color: #ccc;
  margin-bottom: 50px;
}

/* GRID */
.work-container{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px,1fr));
  gap: 30px;
  max-width: 1100px;
  margin: auto;
}

/* CARD */
.work-card{
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  cursor: pointer;
  transition: 0.4s;
}

/* IMAGE */
.work-card img{
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: 0.5s;
}

/* OVERLAY */
.overlay{
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 20px;
  opacity: 0;
  transition: 0.4s;
}

.overlay h3{
  color: #fff;
  font-size: 20px;
}

/* HOVER EFFECT */
.work-card:hover img{
  transform: scale(1.1);
}

.work-card:hover .overlay{
  opacity: 1;
}

/* GLASS EFFECT */
.work-card{
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}

/* RESPONSIVE */
@media(max-width:768px){
  .work-section h2{
    font-size: 26px;
  }

  .work-card img{
    height: 200px;
  }
}

/* SECTION BACKGROUND */
.cta-section{
  padding: 100px 20px;
  background: linear-gradient(135deg,#06b6d4,#70768e,#3d5068);
  display: flex;
  justify-content: center;
  align-items: center;
}

/* GLASS BOX */
.cta-box{
  max-width: 800px;
  width: 100%;
  text-align: center;
  padding: 50px 30px;
  border-radius: 20px;

  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255,255,255,0.1);

  box-shadow: 0 10px 40px rgba(0,0,0,0.4);
}

/* TEXT */
.cta-box h2{
  font-size: 36px;
  color: #fff;
  margin-bottom: 15px;
}

.cta-box p{
  color: #ccc;
  font-size: 16px;
  margin-bottom: 35px;
}

/* BUTTONS */
.cta-buttons{
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}



/* WHATSAPP BUTTON */
.whatsapp{
  background: #25d366;
  color: #fff;
  box-shadow: 0 5px 20px rgba(37,211,102,0.4);
}

.whatsapp:hover{
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(37,211,102,0.6);
}

/* RESPONSIVE */
@media(max-width:768px){
  .cta-box h2{
    font-size: 26px;
  }

  .cta-box{
    padding: 40px 20px;
  }
}

/*
CONTACT PAGE CSS
*/

/* ===== RESET ===== */

/* ===== SECTION ===== */


/* ===== SECTION ===== */
#apex-contact {
    padding: 60px 20px;
    background: linear-gradient(135deg, #0f2027, #203a43);
    color: #fff;
    text-align: center;
}

.apex-title {
    font-size: 34px;
    margin-bottom: 10px;
}

.apex-subtitle {
    margin-bottom: 40px;
    color: #cbd5f5;
}

/* ===== GRID ===== */
.apex-contact-wrap {
    max-width: 1100px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
}

/* ===== LEFT ===== */
.apex-contact-info h3 {
    margin-bottom: 20px;
}

/* INFO BOX */
.apex-info-box {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    background: rgba(255,255,255,0.08);
    padding: 15px;
    border-radius: 10px;
    text-align: left;
    transition: 0.3s;
}

.apex-info-box:hover {
    transform: translateX(5px);
}

/* ICON */
.apex-icon {
    width: 45px;
    height: 45px;
    background: #eaf1ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* TEXT */
.apex-info-box h4 {
    margin-bottom: 3px;
}

.apex-info-box p {
    font-size: 14px;
    color: #e2e8f0;
}

/* ===== FORM ===== */
.apex-contact-form {
    background: #fff;
    padding: 35px;
    border-radius: 15px;
    color: #000;
}

.apex-contact-form h3 {
    margin-bottom: 20px;
}

/* INPUTS */
.apex-contact-form input,
.apex-contact-form select,
.apex-contact-form textarea {
    width: 100%;
    padding: 13px;
    margin-bottom: 15px;
    border-radius: 8px;
    border: 1px solid #ccc;
}

/* TEXTAREA */
.apex-contact-form textarea {
    height: 110px;
}

/* BUTTON */
.apex-contact-form button {
    width: 100%;
    padding: 14px;
    background: #203a43;
    color: #fff;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    transition: 0.3s;
}

.apex-contact-form button:hover {
    background: #ff7b00;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .apex-contact-wrap {
        grid-template-columns: 1fr;
    }
}

/*SERVICES PAGES LOCTION CSS*/

/* ===== SECTION ===== */
.contact-section {
  padding: 80px 20px;
  text-align: center;
  background: linear-gradient(135deg, #0b0320, #1e3a8a, #0ea5e9);
  color: #fff;
}

/* TITLE */
.contact-title {
  font-size: 40px;
  margin-bottom: 10px;
  font-weight: bold;
}

.contact-subtitle {
  font-size: 18px;
  margin-bottom: 50px;
  color: #cbd5f5;
}

/* GRID */
.contact-container {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

/* CARD */
.contact-card {
  position: relative;
  padding: 35px 25px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: 0.4s ease;
  overflow: hidden;
}

/* GLOW BORDER EFFECT */
.contact-card::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 20px;
  background: linear-gradient(45deg, #00f5ff, #ff00ff, #00f5ff);
  z-index: -1;
  opacity: 0;
  transition: 0.4s;
}

/* HOVER */
.contact-card:hover::before {
  opacity: 1;
}

.contact-card:hover {
  transform: translateY(-12px) scale(1.04);
}

/* ICON */
.icon {
  width: 65px;
  height: 65px;
  margin: auto;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 15px;
}

/* TEXT */
.contact-card h3 {
  margin-bottom: 12px;
  font-size: 20px;
}

.contact-card p {
  font-size: 15px;
  color: #e0f2fe;
  line-height: 1.6;
}

/* MOBILE */
@media(max-width: 600px){
  .contact-title {
    font-size: 28px;
  }
}