*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

body{
  font-family:'Inter',sans-serif;
  overflow-x:hidden;
  background:#000;
}

/* NAVBAR */
header{
  width:100%;
  padding:22px 8%;
  display:flex;
  justify-content:space-between;
  align-items:center;
  position:fixed;
  top:0;
  left:0;
  z-index:1000;
  background:rgba(255,255,255,0.92);
  backdrop-filter:blur(14px);
}

.logo{
  display:flex;
  align-items:center;
  gap:12px;
}

.logo img{
  width:140px;
}

.logo span{
  font-size:26px;
  font-weight:700;
  color:#8b0000;
}

/* NAV */
nav{
  display:flex;
  gap:40px;
}

nav a{
  text-decoration:none;
  color:#111;
  font-size:14px;
  font-weight:500;
  letter-spacing:2px;
}

/* BUTTON */
.btn{
  padding:14px 30px;
  border:none;
  border-radius:12px;
  background:linear-gradient(135deg,#d81d46,#b00028);
  color:#fff;
  font-weight:600;
  cursor:pointer;
}

/* HERO */
.hero{
  width:100%;
  height:100vh;
}

/* SLIDER */
.image-slider{
  width:100%;
  height:100vh;
  position:relative;
  overflow:hidden;
}

.slide{
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:100vh;
  opacity:0;
  animation:slider 24s infinite;
}


.slide img{
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center;
}

/* MOBILE FIX */
@media(max-width:768px){

  .slide img{
    object-fit:contain;
    background:#000;
  }

}


/* ANIMATION */
.slide:nth-child(1){animation-delay:0s;}
.slide:nth-child(2){animation-delay:4s;}
.slide:nth-child(3){animation-delay:8s;}
.slide:nth-child(4){animation-delay:12s;}
.slide:nth-child(5){animation-delay:16s;}
.slide:nth-child(6){animation-delay:20s;}
.slide:nth-child(7){animation-delay: 8s;}

@keyframes slider{
  0%{opacity:0;}
  5%{opacity:1;}
  25%{opacity:1;}
  30%{opacity:0;}
  100%{opacity:0;}
}

/* ABOUT */
.about{
  width:100%;
  padding:120px 8%;
  background:linear-gradient(135deg,#000,#111);
}

.about-container{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:60px;
  flex-wrap:wrap;
}

.about-left{
  flex:1;
  color:#fff;
}

.about-left h2{
  font-size:45px;
  margin-bottom:10px;
}

.tagline{
  color:#d81d46;
  font-weight:500;
  margin-bottom:20px;
}


.about-left p{
  font-size:15px;
  line-height:1.8;
  color:rgba(255,255,255,0.7);
  margin-bottom:15px;
}

.about-left button{
  margin-top:10px;
  padding:12px 28px;
  border:none;
  border-radius:10px;
  background:#d81d46;
  color:#fff;
  cursor:pointer;
}

.about-right{
  flex:1;
  display:flex;
  flex-direction:column;
  gap:20px;
}

.about-right img{
  width:100%;
  border-radius:12px;
}

/* PRICING */
.pricing{
  padding:120px 8%;
  text-align:center;
}

.title h2{
  font-size:40px;
}

.title p{
  color:rgba(255,255,255,0.6);
  margin-top:10px;
}

/* TABS */
.tabs{
  margin:40px 0;
  display:flex;
  justify-content:center;
  gap:10px;
  flex-wrap:wrap;
}
.tabs{
  margin:40px 0;
  display:flex;
  justify-content:center;
  align-items:center;
  gap:12px;
  flex-wrap:wrap;
}
.tab{
  padding:10px 18px;
  border:none;
  border-radius:20px;
  background:rgba(255,255,255,0.1);
  color:#fff;
  cursor:pointer;
}

.tab.active{
  background:#d81d46;
}

/* GRID → 3 IN ONE LINE FIX */
.grid{
  display:none;
  grid-template-columns:repeat(3, 1fr);
  gap:20px;
}

.grid.active{
  display:grid;
}

/* CARD */
.card{
  background:rgba(255,255,255,0.05);
  padding:25px;
  border-radius:15px;
  border:1px solid rgba(255,255,255,0.1);
  transition:0.3s;
}

.card:hover{
  transform:translateY(-5px);
  border-color:#d81d46;
}

.card h3{
  color:#fff;
  margin-bottom:10px;
}

.card h2{
  color:#d81d46;
}

.card p{
    color: white;
}
 .card ul{
    color: wheat;
 }
.grid{
    display:none;
}

.grid.active{
    display:grid;
}

.services{
  width:100%;
  padding:100px 8%;
  background:#000;
  color:#fff;
}

.services-container{
  max-width:1200px;
  margin:auto;
}

/* HEADER */
.services-header{
  text-align:center;
  margin-bottom:50px;
}

.services-header h2{
  font-size:42px;
  margin-bottom:10px;
}

.services-header p{
  color:rgba(255,255,255,0.6);
}

/* GRID */
.services-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(250px, 1fr));
  gap:25px;
}

/* CARD */
.service-card{
  background:#111;
  padding:25px;
  border-radius:15px;
  transition:0.3s;
  border:1px solid rgba(255,255,255,0.08);
}

.service-card h3{
  margin-bottom:10px;
  font-size:20px;
}

.service-card p{
  color:rgba(255,255,255,0.6);
  font-size:14px;
  line-height:1.5;
}

.service-card:hover{
  transform:translateY(-8px);
  border-color:#fff;
}
 

 /* BUTTON */
.all{
  padding:14px 30px;
  
  border:none;
  border-radius:12px;
  color: white;
  font-weight:600;
  cursor:pointer;
}
/* RESPONSIVE */
@media(max-width:900px){
  .grid.active{
    grid-template-columns:1fr;
  }
}

.process{
    width:100%;
    padding:120px 8%;
    background:#000;
}

.process-container{
    max-width:1200px;
    margin:auto;
}

/* HEADER */
.process-header{
    text-align:center;
    margin-bottom:60px;
}

.process-header h2{
    font-size:45px;
    color:#fff;
}

.process-header p{
    color:rgba(255,255,255,0.6);
    margin-top:10px;
}

/* GRID */
.process-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:25px;
}

/* CARD */
.process-card{
    padding:30px;
    border-radius:18px;

    background:rgba(255,255,255,0.05);
    border:1px solid rgba(255,255,255,0.1);

    color:#fff;

    transition:0.3s;
    position:relative;
    overflow:hidden;
}

.process-card:hover{
    transform:translateY(-8px);
    border-color:#d81d46;
}

/* NUMBER */
.process-card span{
    font-size:40px;
    font-weight:800;
    color:#d81d46;
}

/* TITLE */
.process-card h3{
    margin-top:10px;
    font-size:22px;
}

/* TEXT */
.process-card p{
    margin-top:10px;
    font-size:14px;
    color:rgba(255,255,255,0.7);
    line-height:1.6;
}

.testimonials{
  width:100%;
  padding:100px 8%;
  background:#0a0a0a;
  color:#fff;
}

.testimonials-container{
  max-width:1200px;
  margin:auto;
}

/* HEADER */
.testimonials-header{
  text-align:center;
  margin-bottom:50px;
}

.testimonials-header h2{
  font-size:42px;
  margin-bottom:10px;
}

.testimonials-header p{
  color:rgba(255,255,255,0.6);
}

/* GRID */
.testimonials-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(250px, 1fr));
  gap:25px;
}

/* CARD */
.testimonial-card{
  background:#111;
  padding:25px;
  border-radius:15px;
  border:1px solid rgba(255,255,255,0.08);
  transition:0.3s;
}

.testimonial-card:hover{
  transform:translateY(-8px);
  border-color:#fff;
}

.testimonial-card p{
  color:rgba(255,255,255,0.75);
  font-size:14px;
  line-height:1.6;
  margin-bottom:15px;
}

.testimonial-card h4{
  font-size:16px;
  margin-bottom:5px;
}

.testimonial-card span{
  font-size:12px;
  color:rgba(255,255,255,0.5);
}


.faq{
  width:100%;
  padding:80px 10%;
  background:#000;
  color:#fff;
}

.faq-item{
  margin-bottom:15px;
  background:#111;
  padding:10px;
  border-radius:10px;
}

.faq-item button{
  width:100%;
  padding:15px;
  background:none;
  border:none;
  color:#fff;
  text-align:left;
  font-size:16px;
  cursor:pointer;
}

.faq-answer{
  display:none;
  padding:10px 15px;
  color:rgba(255,255,255,0.7);
}

.faq-header{
  text-align:center;
  margin-bottom:40px;
}

.faq-header h2{
  font-size:42px;
  color:#fff;
  font-weight:700;
  margin:0;
  letter-spacing:1px;
}

body{
    font-family: Arial, sans-serif;
    background:#0f0f0f;
    color:#fff;
    margin:0;
    padding:0;
}

/* CONTACT SECTION */
.contact{
    padding:60px 20px;
    text-align:center;
}


.contact h2{
    font-size:35px;
    margin-bottom:10px;
}

.contact p{
    color:#aaa;
    margin-bottom:30px;
}

/* FORM */
form{
    max-width:400px;
    margin:auto;
}

input, textarea{
    width:100%;
    padding:12px;
    margin:8px 0;
    border:none;
    border-radius:8px;
}

/* BUTTON */
button{
    padding:12px 20px;
    background:#ff0055;
    border:none;
    color:#fff;
    border-radius:8px;
    cursor:pointer;
}

/* SOCIAL ICONS */
.social-icons{
    margin-top:25px;
}

.social-icons a{
    display:inline-block;
    margin:0 10px;
    font-size:22px;
    color:#fff;
    transition:0.3s;
}

.social-icons a:hover{
    transform:scale(1.2);
}

.social-icons .insta{color:#E1306C;}
.social-icons .fb{color:#1877F2;}
.social-icons .wa{color:#25D366;}

.cta{
  width:100%;
  padding:100px 8%;
  background:linear-gradient(135deg,#111,#000);
  color:#fff;
  text-align:center;
  position:relative;
  overflow:hidden;
}

/* glow effect background */
.cta::before{
  content:"";
  position:absolute;
  top:-50%;
  left:-50%;
  width:200%;
  height:200%;
  background:radial-gradient(circle, rgba(255,255,255,0.08), transparent 60%);
  transform:rotate(25deg);
}

.cta-container{
  position:relative;
  max-width:800px;
  margin:auto;
}

.cta h2{
  font-size:42px;
  margin-bottom:15px;
}

.cta p{
  color:rgba(255,255,255,0.7);
  margin-bottom:30px;
  font-size:16px;
  line-height:1.6;
}

/* buttons */
.cta-buttons{
  display:flex;
  justify-content:center;
  gap:15px;
  flex-wrap:wrap;
}

.btn{
  padding:14px 20px;
  border-radius:10px;
  text-decoration:none;
  font-weight:600;
  transition:0.3s;
}

.btn.primary{
  background:#fff;
  color:#000;
}

.btn.primary:hover{
  background:#ccc;
  transform:translateY(-3px);
}

.btn.secondary{
  background:#25D366;
  color:#fff;
}

.btn.secondary:hover{
  background:#1ebe5d;
  transform:translateY(-3px);
}

.why-us{
  width:100%;
  padding:100px 8%;
  background:#0a0a0a;
  color:#fff;
}

.why-container{
  max-width:1200px;
  margin:auto;
}

/* HEADER */
.why-header{
  text-align:center;
  margin-bottom:50px;
}

.why-header h2{
  font-size:42px;
  margin-bottom:10px;
}

.why-header p{
  color:rgba(255,255,255,0.6);
}

/* GRID */
.why-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(250px, 1fr));
  gap:20px;
}

/* CARD */
.why-card{
  background:#111;
  padding:25px;
  border-radius:15px;
  border:1px solid rgba(255,255,255,0.08);
  transition:0.3s;
}

.why-card h3{
  font-size:18px;
  margin-bottom:10px;
}

.why-card p{
  font-size:14px;
  color:rgba(255,255,255,0.6);
  line-height:1.5;
}

/* hover effect */
.why-card:hover{
  transform:translateY(-8px);
  border-color:#fff;
  background:#121212;
}

.team{
  width:100%;
  padding:100px 8%;
  background:#0a0a0a;
  color:#fff;
}

.team-container{
  max-width:1200px;
  margin:auto;
}

/* HEADER */
.team-header{
  text-align:center;
  margin-bottom:50px;
}

.team-header h2{
  font-size:42px;
  margin-bottom:10px;
}

.team-header p{
  color:rgba(255,255,255,0.6);
}

/* GRID */
.team-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(220px, 1fr));
  gap:25px;
}

/* CARD */
.team-card{
  background:#111;
  padding:25px;
  border-radius:15px;
  text-align:center;
  border:1px solid rgba(255,255,255,0.08);
  transition:0.3s;
}

.team-card:hover{
  transform:translateY(-8px);
  border-color:#fff;
}

/* IMAGE PLACEHOLDER */
.team-img{
  width:80px;
  height:80px;
  border-radius:50%;
  overflow:hidden;
  margin:0 auto 15px;
  border:2px solid rgba(255,255,255,0.2);
}

/* image inside circle */
.team-img img{
  width:100%;
  height:100%;
  object-fit:cover;
}

/* TEXT */
.team-card h3{
  margin-bottom:5px;
  font-size:18px;
}

.team-card span{
  color:rgba(255,255,255,0.6);
  font-size:14px;
}

.footer{
  background:#000;
  color:#fff;
  padding:70px 8% 20px;
  border-top:1px solid rgba(255,255,255,0.1);
}

.footer-container{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(220px, 1fr));
  gap:30px;
  max-width:1200px;
  margin:auto;
}

/* BRAND */
.footer-brand h2{
  font-size:24px;
  margin-bottom:10px;
}

.footer-brand p{
  color:rgba(255,255,255,0.6);
  font-size:14px;
  line-height:1.6;
}

/* LINKS */
.footer-links h3,
.footer-contact h3,
.footer-social h3{
  margin-bottom:12px;
}

.footer-links a{
  display:block;
  color:rgba(255,255,255,0.6);
  text-decoration:none;
  margin-bottom:8px;
  font-size:14px;
  transition:0.3s;
}

.footer-links a:hover{
  color:#fff;
  transform:translateX(5px);
}

/* CONTACT BUTTON */
.footer-btn{
  display:inline-block;
  margin-top:10px;
  padding:10px 15px;
  background:#25D366;
  color:#fff;
  border-radius:8px;
  text-decoration:none;
  font-weight:bold;
  transition:0.3s;
}

.footer-btn:hover{
  background:#1ebe5d;
  transform:translateY(-3px);
}

/* SOCIAL ICONS */
.social-icons{
  display:flex;
  flex-direction:column;
  gap:10px;
}

.social{
  padding:10px 14px;
  border-radius:10px;
  text-decoration:none;
  font-size:14px;
  font-weight:600;
  transition:0.3s;
}

/* FACEBOOK */
.social.facebook{
  background:#1877F2;
  color:#fff;
}
.social.facebook:hover{
  background:#0f5bd1;
  transform:translateY(-3px);
}

/* INSTAGRAM */
.social.instagram{
  background:linear-gradient(45deg,#f9ce34,#ee2a7b,#6228d7);
  color:#fff;
}
.social.instagram:hover{
  filter:brightness(1.1);
  transform:translateY(-3px);
}

/* WHATSAPP */
.social.whatsapp{
  background:#25D366;
  color:#fff;
}
.social.whatsapp:hover{
  background:#1ebe5d;
  transform:translateY(-3px);
}

/* BOTTOM */
.footer-bottom{
  text-align:center;
  margin-top:40px;
  padding-top:15px;
  border-top:1px solid rgba(255,255,255,0.1);
  color:rgba(255,255,255,0.5);
  font-size:13px;
}

/* =========================
RESPONSIVE FIXES
========================= */

/* GLOBAL */
html{
  scroll-behavior:smooth;
}

img{
  max-width:100%;
  display:block;
}

/* NAVBAR */
header{
  gap:20px;
  flex-wrap:wrap;
}

.menu{
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
}

/* HERO */
.hero,
.image-slider,
.slide{
  height:100vh;
}

.slide h2{
  position:absolute;
  bottom:80px;
  left:8%;
  color:#fff;
  font-size:55px;
  font-weight:800;
  z-index:10;
  text-shadow:0 5px 20px rgba(0,0,0,0.5);
}

/* GRID FIX */
.grid.active{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
  gap:25px;
}

/* CARD FIX */
.card{
  width:100%;
  overflow:hidden;
}

/* ABOUT */
.about-container{
  align-items:flex-start;
}

/* CTA BUTTONS */
.cta-buttons{
  align-items:center;
}

/* FORM */
form{
  width:100%;
}

/* =========================
LAPTOP
========================= */

@media(max-width:1200px){

  nav{
    gap:20px;
  }

  .slide h2{
    font-size:45px;
  }

  .about-left h2,
  .process-header h2,
  .services-header h2,
  .team-header h2,
  .why-header h2,
  .faq-header h2,
  .cta h2{
    font-size:38px;
  }

}

/* =========================
TABLET
========================= */

@media(max-width:992px){

  header{
    padding:18px 5%;
    flex-direction:column;
  }

  nav{
    flex-wrap:wrap;
    justify-content:center;
    gap:15px;
  }

  .logo span{
    font-size:22px;
  }

  .logo img{
    width:110px;
  }

  .slide h2{
    font-size:38px;
    bottom:60px;
  }

  .about{
    padding:80px 5%;
  }

  .about-container{
    flex-direction:column;
  }

  .about-right{
    width:100%;
  }

  .grid.active{
    grid-template-columns:repeat(2,1fr);
  }

  .services-grid,
  .team-grid,
  .why-grid,
  .testimonials-grid{
    grid-template-columns:repeat(2,1fr);
  }

}

/* =========================
MOBILE
========================= */

@media(max-width:768px){

  header{
    padding:15px 20px;
  }

  nav{
    width:100%;
    gap:12px;
  }

  nav a{
    font-size:12px;
    letter-spacing:1px;
  }

  .btn{
    padding:12px 20px;
    font-size:14px;
  }

  .hero,
  .image-slider,
  .slide{
    height:80vh;
  }

  .slide h2{
    font-size:28px;
    bottom:40px;
    left:20px;
  }

  .about,
  .process,
  .services,
  .team,
  .why-us,
  .testimonials,
  .faq,
  .cta,
  .footer{
    padding:70px 20px;
  }

  .about-left h2,
  .process-header h2,
  .services-header h2,
  .team-header h2,
  .why-header h2,
  .faq-header h2,
  .cta h2,
  .contact h2{
    font-size:30px;
  }

  .grid.active,
  .services-grid,
  .team-grid,
  .why-grid,
  .testimonials-grid,
  .process-grid,
  .footer-container{
    grid-template-columns:1fr;
  }

  .tabs{
    gap:8px;
  }

  .tab{
    font-size:12px;
    padding:10px 14px;
  }

  .card{
    padding:20px;
  }

  .card h2{
    font-size:26px;
  }

  .cta-buttons{
    flex-direction:column;
  }

  .social-icons{
    flex-direction:row;
    justify-content:center;
    flex-wrap:wrap;
  }

}

/* =========================
SMALL MOBILE
========================= */

@media(max-width:480px){

  .logo{
    flex-direction:column;
    text-align:center;
  }

  .logo span{
    font-size:18px;
  }

  .logo img{
    width:90px;
  }

  nav{
    gap:10px;
  }

  nav a{
    font-size:11px;
  }

  .slide h2{
    font-size:22px;
    width:90%;
  }

  .about-left h2,
  .process-header h2,
  .services-header h2,
  .team-header h2,
  .why-header h2,
  .faq-header h2,
  .cta h2{
    font-size:25px;
  }

  .card h3{
    font-size:18px;
  }

  .card p,
  .card li{
    font-size:13px;
  }

  input,
  textarea{
    font-size:14px;
  }

}

.social-icons{
  display:flex;
  justify-content:center;
  align-items:center;
  gap:15px;
  margin-top:25px;
  flex-wrap:wrap;
}

.social{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:8px;

  padding:12px 20px;
  border-radius:10px;

  font-size:18px;
  color:#fff;
  text-decoration:none;
  transition:0.3s;
  font-weight:500;
}

/* colors */
.social.facebook{background:#1877F2;}
.social.instagram{background:#E1306C;}
.social.whatsapp{background:#25D366;}
.social.gmail{background:#EA4335;}

.social:hover{
  transform:scale(1.1);
}

.social-icons{
  display:flex;
  justify-content:center;
  gap:12px;
  flex-wrap:wrap;
  margin-top:25px;
}

/* COLORS */
.social.facebook{background:#1877F2;}
.social.instagram{background:#E1306C;}
.social.whatsapp{background:#25D366;}
.social.gmail{background:#EA4335;}
.social.threads{background:#000000;}
.social.tiktok{background:#000000;}

.social:hover{
  transform:translateY(-5px) scale(1.05);
}