*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:'Montserrat',sans-serif;
  scroll-behavior:smooth;
}

body{
  background:#111;
  color:white;
  overflow-x:hidden;
}

/* TOP BAR */

.top-bar{
  background:#ffb400;
  padding:12px 8%;
  display:flex;
  justify-content:space-between;
  align-items:center;
  flex-wrap:wrap;
  gap:15px;
}

.top-info{
  display:flex;
  gap:30px;
  flex-wrap:wrap;
}

.top-info a{
  text-decoration:none;
  color:#111;
  font-weight:600;
  font-size:14px;
  transition:0.3s;
}

.top-info a:hover{
  opacity:0.7;
}

/* HEADER */

header{
  width:100%;
  background:rgba(22,22,22,0.95);
  backdrop-filter:blur(10px);
  padding:18px 8%;
  display:flex;
  justify-content:space-between;
  align-items:center;
  border-bottom:1px solid rgba(255,255,255,0.08);
  position:sticky;
  top:0;
  z-index:1000;
}

/* LOGO */

.logo img{
  width:170px;
  height:auto;
  object-fit:contain;
  display:block;
}

/* NAVIGATION */

nav{
  display:flex;
  gap:35px;
}

nav a{
  color:white;
  text-decoration:none;
  font-weight:600;
  transition:0.3s;
  position:relative;
}

nav a::after{
  content:'';
  position:absolute;
  left:0;
  bottom:-6px;
  width:0%;
  height:2px;
  background:#ffb400;
  transition:0.3s;
}

nav a:hover::after{
  width:100%;
}

nav a:hover{
  color:#ffb400;
}

/* BUTTON */

.header-btn{
  padding:14px 28px;
  background:#ffb400;
  color:#111;
  text-decoration:none;
  border-radius:10px;
  font-weight:700;
  transition:0.3s;
  box-shadow:0 10px 25px rgba(255,180,0,0.2);
}

.header-btn:hover{
  transform:translateY(-4px);
  background:white;
  box-shadow:0 15px 35px rgba(255,255,255,0.15);
}

/* HERO SECTION */

.hero{
  min-height:90vh;
  background:
  linear-gradient(rgba(0,0,0,0.78), rgba(0,0,0,0.78)),
  url('public/nkar1.webp');
  background-size:cover;
  background-position:center;
  display:flex;
  align-items:center;
  padding:0 8%;
  position:relative;
  overflow:hidden;
}

/* GLOW EFFECT */

.hero::before{
  content:'';
  position:absolute;
  width:500px;
  height:500px;
  background:#ffb40020;
  filter:blur(120px);
  top:-100px;
  right:-100px;
}

.hero-content{
  max-width:700px;
  position:relative;
  z-index:2;
}

.hero h1{
  font-size:68px;
  line-height:1.1;
  margin-bottom:25px;
  font-weight:800;
}

.hero h1 span{
  color:#ffb400;
}

.hero p{
  color:#d4d4d4;
  font-size:18px;
  line-height:1.8;
  margin-bottom:40px;
  max-width:650px;
}

/* HERO BUTTONS */

.hero-buttons{
  display:flex;
  gap:20px;
  flex-wrap:wrap;
}

.btn-main{
  background:#ffb400;
  color:#111;
  padding:17px 38px;
  border-radius:10px;
  text-decoration:none;
  font-weight:700;
  transition:0.3s;
  box-shadow:0 10px 30px rgba(255,180,0,0.2);
}

.btn-main:hover{
  transform:translateY(-4px);
  background:white;
}

.btn-outline{
  border:2px solid #ffb400;
  color:#ffb400;
  padding:17px 38px;
  border-radius:10px;
  text-decoration:none;
  font-weight:700;
  transition:0.3s;
}

.btn-outline:hover{
  background:#ffb400;
  color:#111;
}

/* RESPONSIVE */

@media(max-width:1100px){

  header{
    flex-direction:column;
    gap:25px;
  }

  nav{
    flex-wrap:wrap;
    justify-content:center;
  }

}

@media(max-width:900px){

  .hero{
    text-align:center;
    justify-content:center;
  }

  .hero-content{
    display:flex;
    flex-direction:column;
    align-items:center;
  }

  .hero h1{
    font-size:48px;
  }

}

@media(max-width:600px){

  .top-bar{
    justify-content:center;
    text-align:center;
  }

  .top-info{
    justify-content:center;
    gap:12px;
  }

  .hero h1{
    font-size:36px;
  }

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

  .hero-buttons{
    justify-content:center;
  }

  nav{
    gap:18px;
  }

  nav a{
    font-size:14px;
  }

  .header-btn{
    padding:12px 22px;
  }

  .logo img{
    width:140px;
  }

}

.services{
  padding:100px 8%;
}

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

    .section-title h1{
      font-size:52px;
      font-weight:800;
      margin-bottom:15px;
    }

    .section-title h1 span{
      color:#ffb400;
    }

    .section-title p{
      color:#bdbdbd;
      font-size:18px;
      max-width:700px;
      margin:auto;
      line-height:1.7;
    }

    /* TABLE */

    .table-wrapper{
      overflow-x:auto;
      border-radius:20px;
      border:1px solid rgba(255,255,255,0.08);
      background:#161616;
      box-shadow:0 20px 50px rgba(0,0,0,0.4);
    }

    table{
      width:100%;
      border-collapse:collapse;
      min-width:900px;
    }

    thead{
      background:#ffb400;
    }

    thead th{
      color:#111;
      padding:24px;
      text-align:left;
      font-size:18px;
      font-weight:800;
    }

    tbody tr{
      border-bottom:1px solid rgba(255,255,255,0.06);
      transition:0.3s;
    }

    tbody tr:hover{
      background:#1f1f1f;
    }

    tbody td{
      padding:24px;
      font-size:16px;
      color:#e2e2e2;
    }

    tbody td:nth-child(2),
    tbody td:nth-child(3){
      font-weight:700;
      color:#ffb400;
    }

    /* CARDS MOBILE */

    .mobile-cards{
      display:none;
      flex-direction:column;
      gap:20px;
    }

    .service-card{
      background:#1a1a1a;
      border:1px solid rgba(255,255,255,0.08);
      border-radius:18px;
      padding:25px;
      transition:0.3s;
    }

    .service-card:hover{
      transform:translateY(-5px);
      border-color:#ffb400;
    }

    .service-card h3{
      font-size:20px;
      margin-bottom:18px;
      color:#ffb400;
      line-height:1.5;
    }

    .service-info{
      display:flex;
      justify-content:space-between;
      margin-bottom:12px;
      color:#d0d0d0;
    }

    .service-price{
      margin-top:18px;
      font-size:26px;
      font-weight:800;
      color:#fff;
    }

    /* RESPONSIVE */

    @media(max-width:900px){

      .section-title h1{
        font-size:38px;
      }

      .table-wrapper{
        display:none;
      }

      .mobile-cards{
        display:flex;
      }

    }

  /* FOOTER */

.footer{
  background:#0d0d0d;
  padding:90px 8% 30px;
  border-top:1px solid rgba(255,255,255,0.06);
}

.footer-container{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
  gap:60px;
  margin-bottom:60px;
}

.footer-box{
  display:flex;
  flex-direction:column;
}

.footer-logo{
  width:180px;
  margin-bottom:25px;
}

.footer-box p{
  color:#bdbdbd;
  line-height:1.8;
  font-size:15px;
  max-width:340px;
}

.footer-box h3{
  font-size:24px;
  margin-bottom:25px;
  color:#fff;
  position:relative;
}

.footer-box h3::after{
  content:'';
  position:absolute;
  left:0;
  bottom:-10px;
  width:55px;
  height:3px;
  background:#ffb400;
  border-radius:20px;
}

.footer-box a{
  color:#cfcfcf;
  text-decoration:none;
  margin-bottom:16px;
  transition:0.3s;
  width:fit-content;
}

.footer-box a:hover{
  color:#ffb400;
  transform:translateX(5px);
}

/* BOTTOM */

.footer-bottom{
  border-top:1px solid rgba(255,255,255,0.06);
  padding-top:30px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:20px;
  flex-wrap:wrap;
}

.footer-bottom p{
  color:#8e8e8e;
  font-size:14px;
}

.agency{
  display:flex;
  align-items:center;
  gap:10px;
}

.agency span{
  color:#8e8e8e;
  font-size:14px;
}

.agency a{
  text-decoration:none;
  color:#ffb400;
  font-weight:700;
  transition:0.3s;
}

.agency a:hover{
  color:white;
}

/* RESPONSIVE */

@media(max-width:700px){

  .footer{
    padding:70px 7% 25px;
  }

  .footer-bottom{
    flex-direction:column;
    text-align:center;
  }

}




    .contact-section{
      min-height:100vh;
      padding:100px 8%;
      display:flex;
      justify-content:center;
      align-items:center;
    }

    .contact-container{
      width:100%;
      max-width:1300px;
      display:grid;
      grid-template-columns:1fr 1fr;
      background:#181818;
      border-radius:30px;
      overflow:hidden;
      border:1px solid rgba(255,255,255,0.08);
      box-shadow:0 25px 60px rgba(0,0,0,0.45);
    }

    /* LEFT */

    .contact-info{
      padding:70px;
      background:
      linear-gradient(rgba(0,0,0,0.72), rgba(0,0,0,0.72)),
      url('https://images.unsplash.com/photo-1504307651254-35680f356dfd?q=80&w=2070&auto=format&fit=crop');

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

    .contact-info::before{
      content:'';
      position:absolute;
      width:350px;
      height:350px;
      background:#ffb40025;
      filter:blur(120px);
      top:-100px;
      left:-100px;
    }

    .contact-info-content{
      position:relative;
      z-index:2;
    }

    .contact-info h1{
      font-size:56px;
      line-height:1.1;
      margin-bottom:25px;
      font-weight:800;
    }

    .contact-info h1 span{
      color:#ffb400;
    }

    .contact-info p{
      color:#d2d2d2;
      line-height:1.8;
      margin-bottom:40px;
      font-size:17px;
      max-width:500px;
    }

    .contact-items{
      display:flex;
      flex-direction:column;
      gap:22px;
    }

    .contact-item{
      display:flex;
      align-items:center;
      gap:16px;
      background:rgba(255,255,255,0.05);
      border:1px solid rgba(255,255,255,0.08);
      padding:18px 22px;
      border-radius:16px;
      backdrop-filter:blur(10px);
      transition:0.3s;
    }

    .contact-item:hover{
      transform:translateX(8px);
      border-color:#ffb400;
    }

    .contact-item span{
      font-size:24px;
    }

    .contact-item a{
      text-decoration:none;
      color:white;
      font-weight:600;
      font-size:16px;
    }

    /* RIGHT */

    .contact-form{
      padding:70px;
      display:flex;
      flex-direction:column;
      justify-content:center;
    }

    .contact-form h2{
      font-size:42px;
      margin-bottom:12px;
      font-weight:800;
    }

    .contact-form h2 span{
      color:#ffb400;
    }

    .contact-form p{
      color:#bdbdbd;
      margin-bottom:40px;
      line-height:1.7;
    }

    .input-group{
      margin-bottom:22px;
    }

    .input-group input,
    .input-group textarea{
      width:100%;
      background:#101010;
      border:1px solid rgba(255,255,255,0.08);
      padding:18px 20px;
      border-radius:14px;
      color:white;
      outline:none;
      font-size:15px;
      transition:0.3s;
    }

    .input-group textarea{
      min-height:170px;
      resize:none;
    }

    .input-group input:focus,
    .input-group textarea:focus{
      border-color:#ffb400;
      box-shadow:0 0 0 4px rgba(255,180,0,0.12);
    }

    .submit-btn{
      border:none;
      background:#ffb400;
      color:#111;
      padding:18px;
      border-radius:14px;
      font-size:16px;
      font-weight:800;
      cursor:pointer;
      transition:0.3s;
      box-shadow:0 15px 35px rgba(255,180,0,0.18);
    }

    .submit-btn:hover{
      transform:translateY(-4px);
      background:white;
    }

    /* RESPONSIVE */

    @media(max-width:1100px){

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

    }

    @media(max-width:700px){

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

      .contact-info h1{
        font-size:38px;
      }

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

    }





    .reviews{
      padding:110px 8%;
      position:relative;
    }

    .reviews::before{
      content:'';
      position:absolute;
      width:450px;
      height:450px;
      background:#ffb40020;
      filter:blur(130px);
      top:-120px;
      right:-120px;
    }

    /* TITLE */

    .section-title{
      text-align:center;
      margin-bottom:70px;
      position:relative;
      z-index:2;
    }

    .section-title h1{
      font-size:58px;
      font-weight:800;
      margin-bottom:18px;
    }

    .section-title h1 span{
      color:#ffb400;
    }

    .section-title p{
      color:#bdbdbd;
      max-width:700px;
      margin:auto;
      line-height:1.8;
      font-size:17px;
    }

    /* GRID */

    .reviews-grid{
      display:grid;
      grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
      gap:30px;
      position:relative;
      z-index:2;
    }

    /* CARD */

    .review-card{
      background:#181818;
      border:1px solid rgba(255,255,255,0.07);
      border-radius:24px;
      padding:35px;
      transition:0.4s;
      position:relative;
      overflow:hidden;
    }

    .review-card::before{
      content:'';
      position:absolute;
      width:160px;
      height:160px;
      background:#ffb40010;
      border-radius:50%;
      top:-70px;
      right:-70px;
    }

    .review-card:hover{
      transform:translateY(-8px);
      border-color:#ffb400;
      box-shadow:0 25px 60px rgba(0,0,0,0.45);
    }

    /* STARS */

    .stars{
      color:#ffb400;
      font-size:22px;
      margin-bottom:25px;
      letter-spacing:3px;
    }

    /* TEXT */

    .review-text{
      color:#d5d5d5;
      line-height:1.9;
      font-size:15px;
      margin-bottom:35px;
    }

    /* USER */

    .review-user{
      display:flex;
      align-items:center;
      gap:18px;
    }

    .review-avatar{
      width:62px;
      height:62px;
      border-radius:50%;
      background:#ffb400;
      color:#111;
      display:flex;
      justify-content:center;
      align-items:center;
      font-size:24px;
      font-weight:800;
      flex-shrink:0;
    }

    .review-info h3{
      font-size:18px;
      margin-bottom:6px;
    }

    .review-info span{
      color:#9f9f9f;
      font-size:14px;
    }

    /* STATS */

    .review-stats{
      margin-top:80px;
      display:grid;
      grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
      gap:25px;
      position:relative;
      z-index:2;
    }

    .stat-box{
      background:#181818;
      border:1px solid rgba(255,255,255,0.07);
      border-radius:22px;
      padding:40px 30px;
      text-align:center;
      transition:0.3s;
    }

    .stat-box:hover{
      transform:translateY(-6px);
      border-color:#ffb400;
    }

    .stat-box h2{
      font-size:52px;
      color:#ffb400;
      margin-bottom:10px;
      font-weight:800;
    }

    .stat-box p{
      color:#c8c8c8;
      font-size:15px;
      letter-spacing:0.5px;
    }

    /* RESPONSIVE */

    @media(max-width:900px){

      .section-title h1{
        font-size:42px;
      }

    }

    @media(max-width:600px){

      .reviews{
        padding:80px 6%;
      }

      .section-title h1{
        font-size:34px;
      }

      .review-card{
        padding:28px;
      }

    }

  /* FAQ SECTION */

.faq{
  padding:110px 8%;
  background:#111;
  position:relative;
  overflow:hidden;
}

.faq::before{
  content:'';
  position:absolute;
  width:450px;
  height:450px;
  background:#ffb40015;
  filter:blur(120px);
  top:-150px;
  left:-150px;
}

/* TITLE */

.faq-title{
  text-align:center;
  margin-bottom:70px;
  position:relative;
  z-index:2;
}

.faq-title h1{
  font-size:58px;
  font-weight:800;
  margin-bottom:18px;
}

.faq-title h1 span{
  color:#ffb400;
}

.faq-title p{
  color:#bdbdbd;
  max-width:700px;
  margin:auto;
  line-height:1.8;
  font-size:17px;
}

/* FAQ CONTAINER */

.faq-container{
  max-width:950px;
  margin:auto;
  display:flex;
  flex-direction:column;
  gap:22px;
  position:relative;
  z-index:2;
}

/* ITEM */

.faq-item{
  background:#181818;
  border:1px solid rgba(255,255,255,0.06);
  border-radius:22px;
  overflow:hidden;
  transition:0.3s;
}

.faq-item.active{
  border-color:#ffb400;
}

.faq-item:hover{
  transform:translateY(-4px);
}

/* QUESTION */

.faq-question{
  padding:28px 30px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  cursor:pointer;
}

.faq-question h3{
  font-size:20px;
  font-weight:700;
  line-height:1.5;
}

.faq-question span{
  font-size:30px;
  color:#ffb400;
  font-weight:700;
  transition:0.3s;
}

/* ANSWER */

.faq-answer{
  max-height:0;
  overflow:hidden;
  transition:0.4s ease;
}

.faq-item.active .faq-answer{
  max-height:250px;
  padding:0 30px 30px;
}

.faq-answer p{
  color:#cfcfcf;
  line-height:1.9;
  font-size:15px;
}

/* RESPONSIVE */

@media(max-width:900px){

  .faq-title h1{
    font-size:42px;
  }

}

@media(max-width:600px){

  .faq{
    padding:80px 6%;
  }

  .faq-title h1{
    font-size:34px;
  }

  .faq-question{
    padding:22px;
  }

  .faq-question h3{
    font-size:17px;
    max-width:85%;
  }

  .faq-item.active .faq-answer{
    padding:0 22px 22px;
  }

}

/* MOBILE MENU */

.hamburger{
  display:none;
  flex-direction:column;
  gap:6px;
  cursor:pointer;
  z-index:1001;
}

.hamburger span{
  width:28px;
  height:3px;
  background:#ffb400;
  border-radius:3px;
  transition:0.3s;
}

.hamburger.active span:nth-child(1){
  transform:rotate(45deg) translate(6px, 6px);
}

.hamburger.active span:nth-child(2){
  opacity:0;
}

.hamburger.active span:nth-child(3){
  transform:rotate(-45deg) translate(6px, -6px);
}

.mobile-nav{
  display:none;
  position:fixed;
  top:0;
  left:0;
  width:100%;
  height:100vh;
  background:rgba(10,10,10,0.98);
  backdrop-filter:blur(20px);
  z-index:1000;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  gap:30px;
  transform:translateX(-100%);
  transition:0.4s ease;
}

.mobile-nav.active{
  transform:translateX(0);
}

.mobile-nav a{
  color:white;
  text-decoration:none;
  font-size:24px;
  font-weight:700;
  transition:0.3s;
}

.mobile-nav a:hover{
  color:#ffb400;
  transform:scale(1.1);
}

/* FLOATING WHATSAPP BUTTON */

.whatsapp-float{
  position:fixed;
  bottom:30px;
  right:30px;
  width:60px;
  height:60px;
  background:#25D366;
  border-radius:50%;
  display:flex;
  justify-content:center;
  align-items:center;
  font-size:30px;
  color:white;
  text-decoration:none;
  box-shadow:0 8px 25px rgba(37,211,102,0.4);
  z-index:999;
  transition:0.3s;
  animation:float 3s ease-in-out infinite;
}

.whatsapp-float:hover{
  transform:scale(1.1);
  box-shadow:0 12px 35px rgba(37,211,102,0.5);
}

/* MOBILE CALL BUTTON */

.mobile-call-btn{
  display:none;
  position:fixed;
  bottom:30px;
  left:30px;
  background:#ffb400;
  color:#111;
  padding:15px 25px;
  border-radius:50px;
  text-decoration:none;
  font-weight:700;
  font-size:14px;
  box-shadow:0 8px 25px rgba(255,180,0,0.3);
  z-index:999;
  transition:0.3s;
}

.mobile-call-btn:hover{
  transform:scale(1.05);
  background:white;
}

/* SCROLL REVEAL ANIMATIONS */

.reveal{
  opacity:0;
  transform:translateY(50px);
  transition:all 0.8s ease;
}

.reveal.active{
  opacity:1;
  transform:translateY(0);
}

.reveal-left{
  opacity:0;
  transform:translateX(-50px);
  transition:all 0.8s ease;
}

.reveal-left.active{
  opacity:1;
  transform:translateX(0);
}

.reveal-right{
  opacity:0;
  transform:translateX(50px);
  transition:all 0.8s ease;
}

.reveal-right.active{
  opacity:1;
  transform:translateX(0);
}

.reveal-scale{
  opacity:0;
  transform:scale(0.9);
  transition:all 0.8s ease;
}

.reveal-scale.active{
  opacity:1;
  transform:scale(1);
}

/* ANIMATED BACKGROUND BLOBS */

.blob{
  position:absolute;
  border-radius:50%;
  filter:blur(80px);
  opacity:0.3;
  animation:blob 8s infinite;
}

.blob-1{
  width:400px;
  height:400px;
  background:#ffb400;
  top:10%;
  left:5%;
}

.blob-2{
  width:300px;
  height:300px;
  background:#ffb400;
  top:60%;
  right:10%;
  animation-delay:2s;
}

.blob-3{
  width:350px;
  height:350px;
  background:#ffb400;
  bottom:20%;
  left:30%;
  animation-delay:4s;
}

/* ENHANCED CARD HOVER EFFECTS */

.project-card,
.review-card,
.service-card,
.stat-box{
  transition:all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.project-card:hover,
.review-card:hover,
.service-card:hover,
.stat-box:hover{
  transform:translateY(-12px) scale(1.02);
  box-shadow:0 30px 70px rgba(0,0,0,0.5);
}

/* BUTTON ENHANCEMENTS */

.btn-main,
.btn-outline,
.header-btn,
.submit-btn,
.project-btn{
  transition:all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.btn-main:hover,
.btn-outline:hover,
.header-btn:hover,
.submit-btn:hover,
.project-btn:hover{
  transform:translateY(-6px) scale(1.05);
}

/* RESPONSIVE MOBILE MENU */

@media(max-width:1100px){

  .hamburger{
    display:flex;
  }

  nav{
    display:none;
  }

  .header-btn{
    display:none;
  }

  .mobile-nav{
    display:flex;
  }

  .mobile-call-btn{
    display:flex;
  }

  .whatsapp-float{
    bottom:25px;
    right:25px;
    width:55px;
    height:55px;
  }

  .mobile-call-btn{
    bottom:25px;
    left:25px;
    padding:12px 20px;
    font-size:13px;
  }

}

@media(max-width:600px){

  .whatsapp-float{
    bottom:20px;
    right:20px;
    width:50px;
    height:50px;
    font-size:26px;
  }

  .mobile-call-btn{
    bottom:20px;
    left:20px;
    padding:10px 18px;
    font-size:12px;
  }

}