* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  overflow-x: hidden;
}

/* ================= NAVBAR ================= */
header {
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 9999;
  transition: 0.3s;
}

header.fixed {
  position: fixed;
  background: #fff;
  box-shadow: 0 6px 25px rgba(0,0,0,0.2);
}

.nav-container {
  max-width: 1200px;
  margin: auto;
  padding: 4px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* ===== LOGO IMAGE ===== */
.logo img {
  height: 90px;
  transition: 0.3s ease;
}

/* ===== LOGO SIZE CONTROL ===== */
.logo img {
  height: 90px;
  width: auto;
  transition: all 0.3s ease;
}

/* 🔥 FIXED NAVBAR LOGO — BADA + WIDE */
header.fixed .logo img {
  /* height: 90px;      */
  width: 200px;     
  object-fit: contain;
}

@media (max-width: 768px) {
  header.fixed .logo img {
    /* height: 55px; */
    width: 130px;
  }
}

/* ================= LINKS ================= */
.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
}

.nav-links li {
  margin-left: 28px;
  position: relative;
}

.dropdown-menu {
  display: none;
}

.nav-links a {
  text-decoration: none;
  font-size: 18px;
  white-space: nowrap;
}

/* TEXT COLOR */
header:not(.fixed) a {
  color: #fff;
}

header.fixed a {
  color: #000;
}

/* ================= DROPDOWN ================= */
.dropdown-menu {
  position: absolute;
  top: 45px;
  left: 0;
  width: 260px;
  background: #fff;
  /* display: none; */
  box-shadow: 0 15px 40px rgba(0,0,0,0.25);
  max-height: 240px;
  overflow-y: auto;
}

.dropdown-menu li a {
  display: block;
  padding: 14px;
  color: #000;
}

.dropdown-menu li a:hover {
  background: #000;
  color: #fff;
}


/* ================= MENU ICON ================= */
.menu-icon {
  display: none;
  font-size: 26px;
  cursor: pointer;
}

.menu-icon .fa-xmark {
  display: none;
}

/* ================= BANNER FIX ================= */
.banner {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
}

/* PSEUDO ELEMENT FOR FIXED IMAGE */
.banner::before {
  content: "";
  position: fixed;           
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: url("photo/home.jpeg") center / cover no-repeat;
  z-index: -1;
}

/* Overlay stays normal */
.overlay {
  position: relative;
  z-index: 1;
}

/* MOBILE FIX (parallax issue avoid) */
@media (max-width: 768px) {
  .banner {
    min-height: 85vh;
  }
}

/* FULL OVERLAY */
.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
  padding: 20px;
}

/* TEXT */
.overlay h1 {
  font-size: 52px;
  margin-bottom: 10px;
  animation: fadeDown 1s ease;
}

.overlay p {
  font-size: 20px;
  letter-spacing: 1px;
  animation: fadeUp 1.2s ease;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .banner {
    background-attachment: scroll; 
  }

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

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

/* ANIMATION */
@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-30px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ================= ABOUT ================= */
.about-section {
  background: #fff;
  padding: 30px 20px;
  font-family: 'Poppins', sans-serif;
}

.about-wrapper {
  max-width: 1200px;
  margin: auto;
}

/* HEADING */
.about-heading {
  text-align: center;
  font-size: 44px;
  font-weight: 600;
  color: #000;
  margin-bottom: 30px;
  animation: slideDown 1s ease;
}

/* ROW */
.about-container {
  display: flex;
  align-items: center;
  gap: 20px;
}

/* IMAGE */
.single-img {
  flex: 1;
}

.about-image img {
  width: 90%;
  height: 420px;
  border-radius: 14px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.25);
  animation: zoomFade 1.2s ease;
  transition: transform 0.6s ease;
}

.about-image img:hover {
  transform: scale(1.05);
}

/* TEXT */
.about-right {
  flex: 1;
}

.about-right p {
  font-size: 16px;
  line-height: 1.9;
  color: #333;
  margin-bottom: 20px;
  animation: fadeRight 1s ease;
}

.about-right .highlight {
  font-size: 18px;
  font-weight: 600;
  color: #000;
}

/* BUTTON */
.about-btn {
  display: inline-block;
  margin-top: 5px;
  padding: 14px 36px;
  border: 2px solid #000;
  color: #000;
  text-decoration: none;
  letter-spacing: 2px;
  transition: all 0.4s ease;
}

.about-btn:hover {
  background: #000;
  color: #fff;
  box-shadow: 0 18px 35px rgba(0,0,0,0.35);
}

/* ================= RESPONSIVE ================= */
/* 900px & below */
@media (max-width: 900px) {

  .about-container {
    flex-direction: column;
    gap: 0;
  }

  .single-img {
    display: none;
  }

  .about-heading {
    font-size: 34px;
    margin-bottom: 30px;
  }

  .about-right {
    text-align: center;
  }
}

/* Mobile */
@media (max-width: 600px) {
  .about-heading {
    font-size: 28px;
  }

  .about-right p {
    font-size: 15px;
  }
}

/* ================= ANIMATIONS ================= */
@keyframes zoomFade {
  from {opacity: 0; transform: scale(0.9);}
  to {opacity: 1; transform: scale(1);}
}

@keyframes fadeRight {
  from {opacity: 0; transform: translateX(50px);}
  to {opacity: 1; transform: translateX(0);}
}

@keyframes slideDown {
  from {opacity: 0; transform: translateY(-40px);}
  to {opacity: 1; transform: translateY(0);}
}

/* ================= PARALLAX IMAGE SECTION ================= */
.parallax-section {
  width: 100%;
  height: 80vh;               
  background-image: url("photo/b77.jpeg");
  background-size: cover;
  background-position: top;
  background-repeat: no-repeat;
  background-attachment: fixed; 
}

/* Tablet */
@media (max-width: 1024px) {
  .parallax-section {
    height: 60vh;
  }
}

/* Mobile Fix (important) */
@media (max-width: 768px) {
  .parallax-section {
    height: 50vh;
    background-attachment: scroll;
  }
}

/* SERVICE SECTION */
.services-section {
  background: #fff;
  padding: 30px 0;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

.section-header {
  max-width: 700px;
  margin-bottom: 70px;
}

.section-header h2 {
  font-size: 42px;
  font-weight: 400;
  color: #111;
}

.section-header p {
  color: #666;
  line-height: 1.8;
}

/* ONE CARD */
.service-card {
  display: flex;
  background: #f6f6f6;
  margin-bottom: 40px;
  overflow: hidden;
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
}

.service-card.show {
  opacity: 1;
  transform: translateY(0);
}

.service-card.reverse {
  flex-direction: row-reverse;
}

.card-image {
  position: relative;
  flex: 1;
  overflow: hidden;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.service-card:hover img {
  transform: scale(1.1);
}

.card-image h3 {
  position: absolute;
  top: 20px;
  left: 20px;
  color: #fff;
  font-size: 32px;
  font-weight: 400;
}

.card-content {
  flex: 1;
  padding: 35px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.card-content p {
  color: #555;
  line-height: 1.7;
  font-size: 20px;
}

.btn {
  width: fit-content;
  margin-top: 25px;
  padding: 12px 30px;
  border: 1px solid #000;
  color: #000;
  text-decoration: none;
  transition: 0.4s;
}

.btn:hover {
  background: #000;
  color: #fff;
}

.card-image {
  max-height: 350px;
}

@media (max-width: 992px) {
  .card-image {
    max-height: 260px;
  }
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .service-card,
  .service-card.reverse {
    flex-direction: column;
  }

  .card-content {
    padding: 25px;
  }

  .card-image h3 {
    font-size: 26px;
  }
}

@media (max-width: 576px) {
  .section-header h2 {
    font-size: 32px;
  }

  .card-image h3 {
    font-size: 20px;
  }
}

/* ================= TESTIMONIAL SECTION ================= */
.testimonial-section {
  background: #000;
  padding: 80px 0;
  color: #fff;
  overflow: hidden;
}

/* HEADER */
.section-header.center {
  text-align: center;
  max-width: 700px;
  margin: auto;
  margin-bottom: 60px;
}

.section-header.center h1 {
  font-size: 42px;
  font-weight: 500;
}

.section-header.center p {
  color: #aaa;
}

/* ================= SLIDER FIX ================= */
.testimonial-slider {
  position: relative;
  padding: 0 60px;   /* space for arrows */
}

/* IMPORTANT FIX */
.testimonial-slider .slick-list {
  overflow: hidden;  /* no card cut */
}

.testimonial-slider .slick-track {
  display: flex;
}

.testimonial-slider .slick-slide {
  padding: 0 15px;  
  height: auto;
}

/* ================= CARD ================= */
.testimonial-card {
  background: #fff;
  color: #000;
  padding: 30px 24px;
  border-radius: 14px;
  min-height: 300px;
  text-align: center;
  box-shadow: 0 20px 45px rgba(0,0,0,0.35);
  transition: all 0.4s ease;
  height: 100%;
}

.testimonial-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 65px rgba(0,0,0,0.55);
}

.testimonial-card i {
  font-size: 34px;
  margin-bottom: 18px;
}

.testimonial-card p {
  font-size: 15px;
  line-height: 1.7;
  color: #333;
  margin-bottom: 22px;
}

/* USER IMAGE */
.client-img {
  width: 65px;
  height: 65px;
  margin: 0 auto 12px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid #000;
}

.client-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-card h4 {
  font-size: 17px;
  font-weight: 600;
}

.testimonial-card span {
  font-size: 13px;
  color: #777;
}

/* ================= DOTS ================= */
.slick-dots li button:before {
  color: #fff;
  opacity: 0.4;
}

.slick-dots li.slick-active button:before {
  opacity: 1;
}

/* ================= ARROWS ================= */
.testimonial-slider .slick-prev,
.testimonial-slider .slick-next {
  width: 45px;
  height: 45px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 10px 25px rgba(0,0,0,0.4);
  z-index: 99;
}

.testimonial-slider .slick-prev {
  left: 10px;
}

.testimonial-slider .slick-next {
  right: 10px;
}

.testimonial-slider .slick-prev:before,
.testimonial-slider .slick-next:before {
  color: #000;
  font-size: 20px;
}

/* ===== FORCE REAL GAP BETWEEN CARDS ===== */
.testimonial-slider .slick-track {
  display: flex !important;
  gap: 35px;                 
}

/* IMPORTANT */
.testimonial-slider .slick-slide {
  height: auto;
}

/* CUT / OVERFLOW FIX */
.testimonial-slider .slick-list {
  overflow: hidden;
}

/* CARD FULL WIDTH */
.testimonial-card {
  width: 100%;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 992px) {
  .section-header.center h1 {
    font-size: 34px;
  }

  .testimonial-slider {
    padding: 0 40px;
  }
}

@media (max-width: 576px) {
  .section-header.center h1 {
    font-size: 28px;
  }

  .testimonial-slider {
    padding: 0 15px;
  }

  .testimonial-slider .slick-slide {
    padding: 0 8px;
  }

  .testimonial-slider .slick-prev,
  .testimonial-slider .slick-next {
    display: none !important;
  }
}


/* ================= FIX IMAGE RESPONSIVE ================= */

.fixed-image-section {
  width: 100%;
  height: 100vh;
  background: url("photo/b44.jpeg") center / cover no-repeat;
}

/* Disable fixed on mobile */
@media (max-width: 768px) {
  .fixed-image-section {
    height: 55vh;
  }
}

/* Laptop & Desktop */
@media (min-width: 1025px) {
  .fixed-image-section {
    height: 100vh;
    background-attachment: fixed;
  }
}

/* Tablet */
@media (max-width: 1024px) {
  .fixed-image-section {
    height: 70vh;
    background-attachment: scroll;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .fixed-image-section {
    height: 55vh;
    background-attachment: scroll; 
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .fixed-image-section {
    height: 45vh;
  }
}

.fixed-image-section {
  position: relative;
}

.fixed-image-section::after {
  content: "";
  position: absolute;
  inset: 0;
  /* background: rgba(0,0,0,0.15); */
}

/* ================= MOBILE NAVBAR ================= */
@media (max-width: 900px) {

  .menu-icon {
    display: block;
    color: #fff;
    z-index: 10000;
  }

  header.fixed .menu-icon {
    color: #000;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 35%;
    height: 100vh;
    background: #fff;
    flex-direction: column;
    align-items: flex-start;
    padding: 90px 25px;
    transition: 0.4s ease;
    z-index: 9999;
  }

  .nav-links.active {
    right: 0;
  }

  .nav-links li {
    margin: 18px 0;
  }

  .nav-links a {
    color: #000 !important;
    font-size: 17px;
  }

  /* Dropdown mobile */
  .dropdown-menu {
    position: static;
    width: 100%;
    box-shadow: none;
    max-height: none;
  }
}

.menu-icon i {
  transition: 0.3s;
}

/* Force BLACK cross icon */
.menu-icon .fa-xmark {
  color: #000;
}

/* Bars color white on banner */
header:not(.fixed) .menu-icon .fa-bars {
  color: #fff;
}

/* Bars color black when fixed */
header.fixed .menu-icon .fa-bars {
  color: #000;
}

/* ================= BRANDS SECTION ================= */
.brands-section {
  background: #fff;
  padding: 50px 0;
  overflow: hidden;
}

.brands-container {
  width: 90%;
  max-width: 1300px;
  margin: auto;
  text-align: center;
}

/* TITLE */
.brands-title {
  font-size: 42px;
  font-weight: 500;
  color: #000;
  margin-bottom: 40px;
  letter-spacing: 1px;
}

/* SLIDER */
.brands-slider {
  display: flex;
  align-items: center;
}

/* LOGO CARD */
.brand-item {
  background: #fff;
  height: 120px;
  display: flex !important;
  align-items: center;
  justify-content: center;
  padding: 20px;
  transition: all 0.5s ease;
}

/* LOGO IMAGE */
.brand-item img {
  max-width: 150px;
  max-height: 120px;
  /* filter: grayscale(100%); */
  opacity: 0.7;
  transition: all 0.5s ease;
}

/* HOVER EFFECT */
.brand-item:hover img {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.08);
}

/* REMOVE BLUE OUTLINE */
.brand-item:focus {
  outline: none;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 992px) {
  .brands-title {
    font-size: 34px;
  }

  .brand-item {
    height: 100px;
  }

  .brand-item img {
    max-width: 130px;
  }
}

@media (max-width: 576px) {
  .brands-title {
    font-size: 28px;
    margin-bottom: 35px;
  }

  .brand-item {
    height: 90px;
  }

  .brand-item img {
    max-width: 110px;
  }
}

/* ================= RECRUITMENT CARD ================= */
.recruitment-section {
  padding: 70px 20px;
  background: #f6f6f6;
}

.recruitment-card {
  max-width: 1100px;
  margin: auto;
  background: #fff;
  display: flex;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 25px 55px rgba(0,0,0,0.18);
}

/* IMAGE */
.recruitment-img {
  flex: 1;
}

.recruitment-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* TEXT */
.recruitment-text {
  flex: 1;
  padding: 55px 50px;
}

.recruitment-text h2 {
  font-size: 34px;        
  font-weight: 500;
  margin-bottom: 18px;
  color: #222;
}

.recruitment-text p {
  font-size: 15px;        
  line-height: 1.8;
  color: #555;
  margin-bottom: 18px;
}

.recruit-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 13px 34px;
  background: #29241c;
  color: #fff;
  text-decoration: none;
  letter-spacing: 2px;
  font-size: 13px;
  transition: 0.2s ease;
}

.recruit-btn:hover {
  background: #000;
}

/* ================= TABLET ================= */
@media (max-width: 991px) {
  .recruitment-card {
    flex-direction: row;
  }

  .recruitment-text {
    padding: 45px 40px;
  }
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {

  /* 🔥 IMAGE HIDE ON PHONE */
  .recruitment-img {
    display: none;
  }

  .recruitment-card {
    flex-direction: column;
  }

  .recruitment-text {
    padding: 40px 25px;
    text-align: center;
  }

  /* 🔥 BUTTON CENTER */
  .recruit-btn {
    margin: 25px auto 0;
  }

  .recruitment-text h2 {
    font-size: 28px;
  }
}

/* SMALL MOBILE */
@media (max-width: 480px) {
  .recruitment-text {
    padding: 35px 20px;
  }

  .recruitment-text p {
    font-size: 14px;
  }
}

/* ================= FORCE HEIGHT FIX (LAPTOP / DESKTOP) ================= */
@media (min-width: 992px) {

  .recruitment-card {
    height: 500px !important;   
  }

  .recruitment-img {
    height: 500px !important;
  }

  .recruitment-img img {
    height: 100% !important;
  }

  .recruitment-text {
    padding: 20px 30px !important; 
    display: flex;
    flex-direction: column;
    justify-content: center;      
  }

  .recruitment-text p {
    margin-bottom: 12px;
    line-height: 1.6;
  }
}

/* ================= FINAL DESKTOP POLISH ================= */
@media (min-width: 992px) {

  /* CARD WIDTH + HEIGHT */
  .recruitment-card {
    max-width: 960px;       
    height: 500px;             
  }

  /* IMAGE */
  .recruitment-img {
    flex: 1;
    height: 500px;
  }

  .recruitment-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  /* TEXT */
  .recruitment-text {
    flex: 1;
    padding: 30px 40px;       
    display: flex;
    flex-direction: column;
    justify-content: center;   
  }

  .recruitment-text h2 {
    font-size: 50px;           
    margin-bottom: 14px;
  }

  .recruitment-text p {
    font-size: 22px;
    line-height: 1.7;
    margin-bottom: 12px;
  }

  /* BUTTON */
  .recruit-btn {
    width: fit-content;       
    padding: 11px 26px;       
    font-size: 12.5px;
    letter-spacing: 1.5px;
    margin-top: 14px;
  }
}

/* ================= PREMIUM FOOTER ================= */
.premium-footer {
  background: #000;
  color: #fff;
  padding: 40px 20px 30px;
  font-family: 'Poppins', sans-serif;
}

/* CTA */
.footer-cta {
  text-align: center;
  max-width: 900px;
  margin: auto;
}

.footer-cta h2 {
  font-size: 64px;
  letter-spacing: 3px;
  font-weight: 500;
}

.footer-cta .divider {
  display: block;
  width: 80px;
  height: 2px;
  background: #1f9d55;
  margin: 25px auto;
}

.footer-cta p {
  color: #ccc;
  font-size: 17px;
  line-height: 1.8;
}

/* CONTACT */
.footer-contact {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  gap: 120px;
  flex-wrap: wrap;
}

.contact-box {
  text-align: center;
  transition: transform 0.4s ease;
}

.contact-box i {
  font-size: 26px;
  color: #1f9d55;
  margin-bottom: 12px;
}

.contact-box p {
  font-size: 15px;
  letter-spacing: 0.5px;
}

.contact-box:hover {
  transform: scale(1.12);
}

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

.footer-logo h3 {
  font-size: 26px;
  letter-spacing: 3px;
}

.footer-logo span {
  font-size: 11px;
  letter-spacing: 2px;
  color: #aaa;
}

.footer-copy {
  font-size: 12px;
  color: #888;
  text-align: center;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border: 1px solid #444;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #fff;
  margin-left: 10px;
  transition: all 0.4s ease;
}

.footer-social a:hover {
  background: #1f9d55;
  border-color: #1f9d55;
  transform: scale(1.15);
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  padding: 15px 0;
}

.footer-copy a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
}

.footer-copy a:hover {
  text-decoration: underline;
}

.footer-social a {
  margin: 0 8px;
  font-size: 18px;
  color: #ffffff;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 992px) {
  .footer-cta h2 {
    font-size: 44px;
  }

  .footer-contact {
    gap: 60px;
  }
}

@media (max-width: 768px) {
  .footer-cta h2 {
    font-size: 34px;
  }

  .footer-contact {
    flex-direction: column;
    gap: 40px;
  }

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

@media (max-width: 480px) {
  .footer-cta h2 {
    font-size: 28px;
  }

  .footer-cta p {
    font-size: 15px;
  }
}

/* ================= FLOATING ICONS ================= */
.floating-icons {
  position: fixed;
  bottom: 25px;
  right: 25px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  z-index: 99999;
}

/* COMMON BUTTON */
.float-btn {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 24px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.35);
  transition: all 0.3s ease;
  text-decoration: none;
}

/* CALL BUTTON */
.call-btn {
  background: #0a58ca;
}

/* WHATSAPP BUTTON */
.whatsapp-btn {
  background: #25D366;
}

/* HOVER EFFECT */
.float-btn:hover {
  transform: scale(1.12);
}

/* MOBILE SIZE FIX */
@media (max-width: 480px) {
  .float-btn {
    width: 48px;
    height: 48px;
    font-size: 22px;
  }

  .floating-icons {
    bottom: 18px;
    right: 18px;
  }
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(37,211,102,0.6); }
  70% { box-shadow: 0 0 0 15px rgba(37,211,102,0); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}

.whatsapp-btn {
  animation: pulse 2s infinite;
}

/* ================= WOW MOBILE MENU ================= */
@media (max-width: 900px) {

  /* MENU PANEL */
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 330px;
    height: 100vh;
    background: linear-gradient(180deg, #ffffff, #f1f1f1);
    padding: 110px 22px 30px;
    display: flex;
    flex-direction: column;
    gap: 0px;
    transition: 0.5s cubic-bezier(.68,-0.55,.27,1.55);
    box-shadow: -18px 0 50px rgba(0,0,0,0.35);
    z-index: 9999;
  }

  .nav-links.active {
    right: 0;
  }

  /* ITEM */
  .nav-links li {
    width: 100%;
  }

  /* LINK – NORMAL LOOK (WOW) */
  .nav-links a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 22px;
    font-size: 18px;
    font-weight: 600;
    color: #111 !important;
    background: #ffffff;
    border-radius: 14px;
    position: relative;
    letter-spacing: 0.6px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.12);
    transition: all 0.35s ease;
    overflow: hidden;
  }

  /* LEFT GLOW BAR */
  .nav-links a::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 6px;
    height: 100%;
    background: linear-gradient(180deg, #1f9d55, #000);
  }

  /* 🔥 HOVER WOW EFFECT */
  .nav-links a:hover {
    background: #000;
    color: #fff !important;
    transform: translateX(6px) scale(1.02);
    box-shadow: 0 18px 45px rgba(0,0,0,0.5);
  }

  .nav-links a:hover {
  box-shadow: 0 0 25px rgba(31,157,85,0.6);
}

  /* ACTIVE PAGE (OPTIONAL) */
  .nav-links a.active {
    background: #000;
    color: #fff !important;
  }

}

