
    .top-bar {
        background: #dfdfdf;
        /*color: #fff;*/
        /*background: var(--yellow);*/
        color: var(--black);
        font-size: 19px;
        font-weight: bold;
    }

    .top-bar a {
        color: var(--black);
        text-decoration: none;
        margin-right: 15px;
    }

    .top-bar a:hover {
        text-decoration: underline;
    }
    .hero-section a {
        color: #fff;
        text-decoration: none;
        margin-right: 15px;
    }

    .hero-section a:hover {
        text-decoration: underline;
    }
    .hide-mobile{
        margin:0 10px;
    }

    @media (max-width: 576px) {
        .hide-mobile {
            display: none;
        }
    }
        /* Logo */
    .navbar-brand img {
        height: 45px;
    }

    /* Menu style */
    .nav-link {
        font-weight: 500;
        padding: 8px 15px;
    }

    .nav-link:hover,
    .dropdown-item:hover {
        color: #d86b54 ;
        /*#0d6efd;*/
    }

    /* Dropdown animation */
    .dropdown-menu {
        animation: fadeDown 0.3s ease-in-out;
    }

    @keyframes fadeDown {
        from {
            opacity: 0;
            transform: translateY(10px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    /* Shadow */
    .navbar {
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    }
        /* Carousel Height */
        .carousel-item {
            height: 60vh;
            min-height: 300px;
        }

        .carousel-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            animation: zoomIn 6s ease-in-out;
        }

        /* Caption Animation */
        .carousel-caption {
            animation: fadeUp 1.2s ease-in-out;
        }

        /* Zoom Animation */
        @keyframes zoomIn {
            from {
                transform: scale(1);
            }
            to {
                transform: scale(1.1);
            }
        }

        /* Fade Up Animation */
        @keyframes fadeUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Responsive */
        @media (max-width: 768px) {
            .carousel-item {
                height: 40vh;
            }
        }
        .btncls{
            background-color: #000 !important;
            border-color: #000 !important;
        }
        .btncls:hover{
            color: #0d6efd;
            background-color: #eee !important;
            border-color: #eee !important;
            color: #000 !important;
        }
        .about-section {
    padding: 80px 0;
    background: #f8f9fa;
  }

  .about-section h2 {
    font-weight: 700;
  }

  .about-img {
    border-radius: 16px;
    transition: transform 0.6s ease, box-shadow 0.6s ease;
  }

  .about-img:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
  }

  .feature-list li {
    margin-bottom: 10px;
}
.content-box {
    max-width: 650px;
    margin: auto;
    padding: 40px 20px;
    text-align: center;
  }

  .content-box img {
    border-radius: 16px;
    margin-top: 20px;
  }
    /* ============================= */
    /* 3. DUAL LINE PROFESSIONAL */
    /* ============================= */
    .about-dual {
      font-size: clamp(2rem, 4vw, 2.8rem);
      font-weight: 800;
      position: relative;
      display: inline-block;
      padding-bottom: 16px;
    }

    .about-dual::before {
      content: "";
      position: absolute;
      left: 50%;
      bottom: 6px;
      width: 80%;
      height: 2px;
      background-color: #dee2e6;
      transform: translateX(-50%);
      border-radius: 10px;
    }

    .about-dual::after {
      content: "";
      position: absolute;
      left: 50%;
      bottom: 0;
      width: 40%;
      height: 5px;
      background-color: #0d6efd;
      transform: translateX(-50%);
      border-radius: 10px;
    }
    .vision-section {
  background: #f8f9fa;
}

/* Image hover */
.vision-img img {
  transition: transform 0.5s ease;
}
.vision-img img:hover {
  transform: scale(1.05);
}

/* Animation */
.vision-img,
.vision-content {
  opacity: 0;
  transform: translateY(40px);
  animation: fadeUp 1s ease forwards;
}

.vision-img {
  animation-delay: 0.2s;
}
.vision-content {
  animation-delay: 0.4s;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Mobile spacing fix */
@media (max-width: 768px) {
  .vision-content h2 {
    font-size: 1.6rem;
  }
}
.about-vision-section {
  background: url('https://images.unsplash.com/photo-1504307651254-35680f356dfd') center/cover fixed;
  position: relative;
}

.about-vision-section .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
}

.about-img img {
  transition: transform 0.5s ease;
}
.about-img img:hover {
  transform: scale(1.05);
}

.counter-box {
  background: rgba(255,255,255,0.1);
  padding: 15px;
  border-radius: 12px;
}

/* Animation */
.about-img,
.about-content {
  opacity: 0;
  transform: translateY(40px);
  animation: fadeUp 1s ease forwards;
}

.about-img {
  animation-delay: 0.2s;
}
.about-content {
  animation-delay: 0.4s;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Mobile Fix */
@media (max-width: 768px) {
  .about-content h3 {
    font-size: 1.6rem;
  }
}

.services-section {
  background-color: #f8f9fa;
}

.service-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  position: relative;
  display: inline-block;
  padding-bottom: 10px;
}

.service-title::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 60%;
  height: 4px;
  /*background: linear-gradient(90deg, #0d6efd, #20c997);*/
  /*background: linear-gradient(90deg, #f7c600, #070707);*/
  background: #d86b54;
  transform: translateX(-50%);
  border-radius: 10px;
}
.text-warning{
    color:#fff !important;
}
.text-warningg{
    color:#d86b54 !important;
}
.service-card {
  background: #ffffff;
  padding: 30px;
  border-radius: 20px;
  /*box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);*/
  display: flex;
  flex-direction: column;
  transition: all 0.4s ease;
  border: 1px solid #eee;
  border-radius: 24px;
  /*box-shadow: 0 30px 70px rgba(0,0,0,0.7);*/
}

.service-card h4 {
  font-weight: 700;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

.service-card img {
  transition: transform 0.4s ease;
}

.service-card:hover img {
  transform: scale(1.05);
}

:root {
  --yellow: #f7c600;
  --black: #0b0b0b;
  --glass-bg: rgba(0,0,0,0.65);
  --glass-border: rgba(247,198,0,0.4);
}

body {
  font-family: "Poppins", sans-serif;
  /*background: var(--black);*/
}
.btn-warning{
    background:#d86b54 !important;
    color:#fff !important;
    border :#d86b54 !important;
}

/* SECTION WITH BACKGROUND IMAGE + YELLOW GRADIENT */
.location-section {
  position: relative;
  padding: 60px 0;
  background:
    linear-gradient(
      rgba(11,11,11,0.85),
      rgba(247,198,0,0.35)
    ),
    url("https://images.unsplash.com/photo-1503387762-592deb58ef4e");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

/* GLASS CARD */
.glass-card {
  background: var(--glass-bg);
  backdrop-filter: blur(14px);
  /*border: 1px solid var(--glass-border);*/
  border-radius: 24px;
  box-shadow: 0 30px 70px rgba(0,0,0,0.7);
  transition: all 0.4s ease;
}

.glass-card:hover {
  transform: translateY(-12px);
}

/* TEXT */
.section-title {
  color: #d86b54;
  font-weight: 700;
  letter-spacing: 1px;
}

.section-subtitle {
  color: #e5e5e5;
}

/* MAP */
iframe {
  border-radius: 20px;
}

/* ICONS */
.info-icon {
  width: 46px;
  height: 46px;
  background: #d86b54 ;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

/* FORM */
.form-control {
  background: #121212;
  border: 1px solid #333;
  color: #fff;
  border-radius: 30px;
}

.form-control::placeholder {
  color: #aaa;
}

.form-control:focus {
  border-color: var(--yellow);
  box-shadow: 0 0 0 0.15rem rgba(247,198,0,0.3);
}

/* BUTTON */
.btn-custom {
  background: #d86b54 ;
  color: #fff;
  border-radius: 30px;
  padding: 12px;
  font-weight: 600;
  border: none;
}

.btn-custom:hover {
  background: #fff;
  color:#d86b54 ;
}

/* DARK TOGGLE */
.dark-toggle {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1000;
}



@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
  70% { box-shadow: 0 0 0 20px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}
.ratio-16x9{
    --bs-aspect-ratio: 94.25% !important;
}
/* GALLERY SECTION */
.gallery-section {
  background: #0b0b0b;
}

/* TITLES */
.gallery-title {
  color: #f7c600;
  font-weight: 700;
  letter-spacing: 1px;
}
.gallery-subtitle {
  color: #cfcfcf;
}

/* FILTER BUTTONS */
.filter-btn {
  background: transparent;
  color: #d86b54 ;
  border: 1px solid #d86b54 ;
  margin: 5px;
  border-radius: 30px;
  padding: 6px 18px;
}
.filter-btn.active,
.filter-btn:hover {
  background: #d86b54 ;
  color: #000;
}

/* CARD */
.gallery-card {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  cursor: pointer;
  box-shadow: 0 20px 40px rgba(0,0,0,0.6);
}
.gallery-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

/* OVERLAY */
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(0,0,0,0.7), #d86b54);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: 0.5s;
}
.gallery-overlay span {
  background: #d86b54;
  padding: 10px 22px;
  border-radius: 30px;
  font-weight: 600;
}

/* HOVER */
.gallery-card:hover img {
  transform: scale(1.15);
}
.gallery-card:hover .gallery-overlay {
  opacity: 1;
}

/* LIGHTBOX */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.9);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}
.lightbox img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 12px;
}
.testimonial-section {
  background: linear-gradient(135deg, #000 70%, #d86b54  30%);
}

.testimonial-card {
  background: #111;
  color: #fff;
  padding: 30px;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  /*box-shadow: 0 15px 40px #d86b54 ;*/
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}

/* Yellow Accent Border */
.testimonial-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 2px solid rgb(216, 107, 84);
  border-radius: 20px;
  transform: scale(0.95);
  opacity: 0;
  transition: all 0.4s ease;
}

.testimonial-card:hover::before {
  opacity: 1;
  transform: scale(1);
}

.testimonial-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 25px 50px rgba(0,0,0,0.7);
}

/* Quote Icon */
.quote {
  position: absolute;
  top: -20px;
  right: 20px;
  font-size: 120px;
  color: rgb(216 107 84 / 34%);
  font-weight: 900;
}

.testimonial-card p {
  font-size: 15px;
  line-height: 1.8;
}

/* Client */
.client img {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  border: 3px solid #d86b54;
}

/* Fade animation */
.testimonial-card {
  opacity: 0;
  transform: translateY(40px);
  animation: fadeUp 0.8s ease forwards;
}

.col-lg-4:nth-child(1) .testimonial-card {
  animation-delay: 0.2s;
}
.col-lg-4:nth-child(2) .testimonial-card {
  animation-delay: 0.4s;
}
.col-lg-4:nth-child(3) .testimonial-card {
  animation-delay: 0.6s;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Mobile Optimization */
@media (max-width: 768px) {
  .testimonial-section {
    background: #000;
  }
}

/* Footer Background & layout */
.footer-section {
  background: #dfdfdf ;
  color: #000;
  position: relative;
  overflow: hidden;
  padding-bottom: 60px;
}

.footer-box {
  animation: fadeUp 1s ease forwards;
  opacity: 0;
  transform: translateY(40px);
}

.footer-box:nth-child(1) { animation-delay: 0.2s; }
.footer-box:nth-child(2) { animation-delay: 0.4s; }
.footer-box:nth-child(3) { animation-delay: 0.6s; }
.footer-box:nth-child(4) { animation-delay: 0.8s; }

@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

/* Footer links hover */
.footer-links a {
  text-decoration: none;
  color: #000;
  font-weight: 500;
  position: relative;
  transition: all 0.3s ease;
}

.footer-links a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  background: #000;
  left: 0;
  bottom: -3px;
  transition: 0.3s;
}

.footer-links a:hover::after {
  width: 100%;
}

/* Social icons hover */
.social-icons .herobaricon {
  width: 40px;
  height: 40px;
  background: #d2494982;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  /*margin-right: 10px;*/
  transition: transform 0.4s ease;
}

.social-icons .herobaricon:hover {
  transform: translateY(-6px) rotate(10deg);
}

.social-icons .herobaricon {
    /*margin-left: 10px;*/
    font-size: 16px;
}

.social-icons .herobaricon:hover {
  transform: scale(1.2) rotate(10deg);
  box-shadow: 0 0 12px #000;
}

.social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  background: #000;
  color: #f9c600;
  border-radius: 50%;
  margin-right: 5px;
  text-decoration: none;
  transition: 0.3s;
}

/* Social icons hover */
.social-iconss a {
  width: 40px;
  height: 40px;
  background: #d86b54;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-right: 10px;
  transition: transform 0.4s ease;
  text-decoration:none;
}

.social-iconss a:hover {
  transform: translateY(-6px) rotate(10deg);
}

.social-iconss a {
    margin-left: 10px;
    font-size: 16px;
}

.social-iconss a:hover {
  transform: scale(1.2) rotate(10deg);
  box-shadow: 0 0 12px #000;
}

.hero-section {
  min-height: 9vh;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  position: relative;
  /*background: var(--yellow);*/
  background:rgb(216 107 84);
  color: #fff;
  font-size:19px;
  font-weight:500;
  padding:10px;
}

.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  /*background: rgba(0, 0, 0, 0.35);*/
}

.hero-section .container {
  position: relative;
  z-index: 2;
}

.hero-btn-group .btn {
  border-radius: 30px;
  font-weight: 600;
}

/* Mobile optimization */
@media (max-width: 768px) {
  .hero-btn-group {
    flex-direction: column;
    width: 100%;
  }

  .hero-btn-group .btn {
    width: 100%;
    text-align: center;
  }
}


/* WhatsApp Floating Button */
/*.whatsapp-btn {
  position: fixed;
  bottom: 90px;
  right: 25px;
  background: #25d366;
  color: #fff;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 25px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
  transition: transform 0.3s ease;
  z-index: 999;
}
.whatsapp-btn:hover { transform: scale(1.1); }*/

/* WHATSAPP */
.whatsapp-float {
  position: fixed;
  bottom: 90px;
  right: 25px;
  width: 60px;
  height: 60px;
  background: #25D366;
  /*var(--yellow);*/
  color: #fff;
  /*var(--black);*/
  border-radius: 50%;
  font-size: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: pulse 2s infinite;
  z-index: 999;
}

/* Back-to-top Button */
.back-to-top {
  position: fixed;
  bottom: 18px;
  right: 25px;
  background: #d86b54  ;
  color: #fff;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 22px;
  /*display: none;*/
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 1000;
  transition: transform 0.3s ease;
}
.back-to-top:hover { transform: translateY(-5px); }

/* Dark Mode Variant */
.footer-dark {
  background: #111 !important;
  color: #fcb900 !important;
}
.footer-dark .footer-links a { color: #fcb900; }
.footer-dark .footer-links a::after { background: #fcb900; }
.footer-dark .social-icons a { background: #fcb900; color: #111; }

/* Mobile adjustments */
@media(max-width:768px){
  .footer-box { text-align:center; }
  .social-icons { justify-content: center; }
  .social-iconss { justify-content: center; }
}


.team-section { background: #f8f9fa; }

.team-card .card {
  cursor: pointer;
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.team-card .card:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 25px 50px rgba(0,0,0,0.2);
}

/* Role Badge */
.role-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: #000;
  padding: 4px 10px;
  border-radius: 5px;
  font-size: 0.75rem;
  font-weight: 500;
  color: #fcb900;
  transition: transform 0.3s ease;
}
.team-card .card:hover .role-badge {
  transform: translateY(-3px) scale(1.05);
}

/* Social icons animation */
/*.social-icons a {
  width: 35px;
  height: 35px;
  /*background: #000;*/
  /*color: #fcb900;*/
  /*background: var(--yellow) !important;
  color: var(--black) !important;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 5px;
  transform: translateY(20px);
  opacity: 0;
  transition: transform 0.5s ease, opacity 0.5s ease, box-shadow 0.3s ease;
}*/

.team-card .card:hover .social-icons a {
  transform: translateY(0);
  opacity: 1;
  box-shadow: 0 0 8px #000;
}

/* Fade-in animation for cards */
.team-card {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s ease;
}

.team-card.active { opacity: 1; transform: translateY(0); }

/* Responsive */
@media(max-width:992px){ .team-card { margin-bottom:30px; } }