html, body {
    margin: 0;
    padding: 0;
    height: 100%;
    
}

h5{
  font-weight: 900 !important;
  color:#ffb300da;
  letter-spacing: 1px;
  text-shadow: 1px 1px rgb(148, 144, 144);
}

h2 {
  font-weight: 900 !important;
  color: #ffb300da;
  -webkit-text-stroke: 1px rgba(0, 0, 0, 0.39); /* Black border */
  text-stroke: 1px rgba(0, 0, 0, 0.247);          /* For future support */
}

#heroCarousel,
.hero-slide {
    height: 100vh;
    width: 100%;
}

:root {
    --transition-duration: 1.2s;
    --overlay-opacity: 0.2;
    --text-color: #ffffff;
    --accent-color: #c19b76;
}

html, body {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: 'Urbanist', sans-serif;
}

#heroCarousel,
.hero-slide {
    height: 100vh;
    width: 100%;
}

.hero-slide {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-slide::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,var(--overlay-opacity)) 0%, rgba(0,0,0,0.4) 100%);
    z-index: 1;
    transition: opacity var(--transition-duration) ease;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: var(--text-color);
    text-align: center;
    max-width: 1200px;
    padding: 0 20px;
    margin-top: 70px;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    opacity: 0;
    transform: translateY(40px);
    transition: all var(--transition-duration) cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.hero-subtitle {
    font-size: 1.2rem;
    font-weight: 300;
    margin: 2rem 0 2rem 0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
    opacity: 0;
    transform: translateY(40px);
    transition: all var(--transition-duration) cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.2s;
}

.hero-buttons {
    opacity: 0;
    transform: translateY(40px);
    transition: all var(--transition-duration) cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.4s;
}

.carousel-item.active .hero-title,
.carousel-item.active .hero-subtitle,
.carousel-item.active .hero-buttons {
    opacity: 1;
    transform: translateY(0);
}

.hero-btn {
    padding: 15px 40px;
    border-radius: 5px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin: 0 10px;
    transition: all 0.3s ease;
    text-decoration: none;
    color: #111;
    background-color: white;
    border: none;
    display: inline-block;
}

.hero-btn:hover {
    background-color: #f0f0f0;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.carousel-fade .carousel-item {
    opacity: 0;
}

.carousel-fade .carousel-item.active {
    opacity: 1;
}

.scroll-down {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    color: var(--text-color);
    font-size: 2rem;
    animation: bounce 2s infinite;
    cursor: pointer;
    transition: all 0.3s ease;
}

.scroll-down:hover {
    color: var(--accent-color);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0) translateX(-50%);
    }
    40% {
        transform: translateY(-15px) translateX(-50%);
    }
    60% {
        transform: translateY(-7px) translateX(-50%);
    }
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--accent-color);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #a88462;
}

/* Navbar Styles */

.navbar .scrolled {
    background-color: rgb(16, 5, 5) !important;
    padding: 10px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar-brand, .nav-link {
    color: white !important;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px ;
    font-family: 'Urbanist', sans-serif;
font-weight: 600;
    
}

.navbar.scrolled .navbar-brand,
.navbar.scrolled .nav-link {
    color: black !important;
}



.navbar-toggler {
    border-color: rgba(255,255,255,0.5);
}



.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 255, 255, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}



/* Responsive adjustments */
@media (max-width: 992px) {
    .hero-title {
        font-size: 3.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .navbar-collapse {
        background-color: rgba(0,0,0,0.8);
        padding: 20px;
        border-radius: 5px;
    }
    
    .navbar.scrolled .navbar-collapse {
        background-color: rgb(24, 23, 23);
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-btn {
        padding: 12px 25px;
        margin: 5px;
        display: block;
        width: 80%;
        max-width: 250px;
        margin: 10px auto;
    }
    
    .navbar {
        padding: 5px 0;
    }
    
    .navbar.scrolled {
        padding: 0px 0;
    }
}

.contact-btn-one{
    border: 1px solid black;
    padding: 20px 40px;
    width: 100%;
    color: black;
    background-color: white;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 1px;
}

.contact-btn-two{
    border: 1px solid black;
    padding: 20px 40px;
    width: 100%;
    background-color: black;
    color: white;
    text-decoration: none;
        font-weight: 600;
    letter-spacing: 1px;
}



    .left-img {
      max-width: 100%;
    }

    .left-img img {
      width: 100%;
      height: auto;
      display: block;
    }

    .right-content {
        padding: 0px 50px;
      max-width: 100%;
    }

    .right-content p {
      font-size: 1.20rem;
      margin-bottom: 2.5rem;
      line-height: 1.8;
    }

 

    .accordion-item {
      border-bottom: 1px solid #ccc;
      overflow: hidden;
      transition: all 0.3s ease;
    }

    .accordion-header {
      padding: 1.3rem;
      cursor: pointer;
      font-weight: 600;
      font-size: 1.2rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
      transition: background 0.3s;
    }

    .accordion-header:hover {
      background-color: #f9f9f9;
    }

    .accordion-body {
      padding: 0 1.5rem;
      font-size: 1.05rem;
      color: #555;
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.5s ease, padding 0.3s ease;
    }

    .accordion-item.active .accordion-body {
      max-height: 300px; /* enough height to reveal text */
      padding: 1rem 1.5rem 1.5rem;
    }

    .accordion-item.active .accordion-header::after {
      content: "−";
    }

    .accordion-header::after {
      content: "+";
      font-size: 1.5rem;
      transition: transform 0.3s ease;
    }

    @media (max-width: 768px) {
      .container {
        flex-direction: column;
        padding: 1rem;
      }

      .right-content p {
        font-size: 1.1rem;
      }

      .accordion-header {
        font-size: 1.1rem;
      }

      .accordion-body {
        font-size: 1rem;
      }
    }




    .specialization-section {
  position: relative;
  background: url('https://demo.themesoul.com/bungkoh/images/background/bg-home-1.jpg') center/cover no-repeat;
  color: #fff;
  padding: 0rem 2rem;
}

.specialization-container {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  max-width: 1300px;
  margin: 0 auto;
}

.specialization-left {
  flex: 1;
  min-width: 300px;
  padding-right: 30px;
}

.specialization-left h5 {
  color: #ffffff;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;

}

.specialization-left h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  line-height: 1.3;
  font-weight: 700;
}

.specialization-left p {
  line-height: 1.7;
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
}

.specialization-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  list-style: none;
  padding: 0;
  margin-top: 20px;
  gap: 8px;
}

.specialization-list li::before {
  content: "• ";
  color: #ffffff;
}

.specialization-right {
  flex: 1;
  min-width: 300px;
}

.specialization-right img {
  width: 100%;
  border-radius: 8px;
  display: block;
}




.counter-section{
    padding-top: 60px;
}

.counter-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.counter-box {
  flex: 1 1 200px;
}

.counter-box p{
    font-weight: 700;
    font-size: 17px;
}

.counter {
  font-size: 5rem;
  font-weight: 200;
  display: block;
}





.testimonial-slider {
  padding: 4rem 2rem;
  background: #fff;
  text-align: center;
  color: #000;
}

.testimonial-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 1rem;
}

.testimonial-content p {
  font-size: 1.25rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.testimonial-content h4 {
  font-weight: 600;
  margin: 0.5rem 0 0.2rem;
}

.testimonial-content span {
  font-size: 0.95rem;
  color: #555;
}

.swiper-pagination-bullet {
  background-color: #ccc;
  opacity: 1;
}

.swiper-pagination-bullet-active {
  background-color: #000;
}







.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.blog-card {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.blog-card img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}

.blog-card:hover img {
  transform: scale(1.05);
}

.blog-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.838), rgba(0, 0, 0, 0.263));
  color: #fff;
}

.blog-info h3 {
  margin: 0 0 10px;
  font-size: 1.3rem;
}

.blog-info p {
  margin: 0;
  font-size: 0.9rem;
  opacity: 0.85;
}




    .footer {
        background-color: #181B2A;
      padding: 100px 0 30px;
    }
    .footer input[type="email"] {
      background: transparent;
      border: none;
      border-bottom: 1px solid #444;
      color: #fff;
      width: 100%;
      padding: 40px 0;
      margin-bottom: 20px;
    }
    .footer input[type="email"]::placeholder {
      color: #aaa;
    }
    .subscribe-btn {
      border: none;
      background: none;
      color: #fff;
      font-weight: bold;
      letter-spacing: 2px;
    }
    .social-icons i {
      font-size: 20px;
      margin-right: 15px;
      color: #fff;
      transition: color 0.3s;
    }
    .social-icons i:hover {
      color: #ddd;
    }
    .footer a {
      color: #fff;
      text-decoration: none;
    }
    .footer a:hover {
      text-decoration: underline;
    }
    .scroll-top {
      font-size: 24px;
      cursor: pointer;
    }

         /* Navbar Styles */
            .navbar {
                position: fixed;
                top: 0;
                left: 0;
                right: 0;
                z-index: 1030;
                background-color: transparent !important;
                transition: all 0.3s ease;
                padding: 20px 0;
                /* border-bottom: 1px solid rgba(255, 255, 255, 0.271); */
            }
            


            .navbar.scrolled {
                background-color:#181B2A !important;
                padding: 10px 0;
                box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            }
            


            .navbar-brand, .nav-link {
                color: white !important;
                transition: all 0.3s ease;
            }
            



            .navbar.scrolled .navbar-brand,
            .navbar.scrolled .nav-link {
                color: rgb(239, 233, 233) !important;
            }
            
            .navbar-toggler {
                border-color: rgba(255,255,255,0.5);
            }
            
            .navbar.scrolled .navbar-toggler {
                border-color: rgba(0,0,0,0.5);
            }
            
            .navbar-toggler-icon {
                background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 255, 255, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
            }
   

            /* Hero Section */
            .hero-slide {
                height: 100vh;
                background-size: cover;
                background-position: center;
                position: relative;
            }
            
            .hero-content {
                position: absolute;
                color: white;
                top: 30%;
            }

            .portfolio-card {
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  height: 100%;
  cursor: pointer;
  transition: all 0.3s ease;
}

.portfolio-img-container {
  height: 250px; /* Fixed height for all images */
  overflow: hidden;
}

.portfolio-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.portfolio-overlay {
  position: absolute;
  bottom: -100%;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 20px;
  transition: all 0.3s ease;
}

.portfolio-overlay h5 {
  font-size: 1.2rem;
  margin-bottom: 5px;
}

.portfolio-overlay p {
  font-size: 0.9rem;
  margin-bottom: 15px;
}

.zoom-btn {
  background: rgba(255,255,255,0.9);
  color: #333;
  border: none;
  padding: 5px 15px;
  border-radius: 20px;
  font-weight: 500;
  transition: all 0.6s ease;
}

.zoom-btn:hover {
  background: white;
  transform: scale(1.05);
}

.portfolio-card:hover .portfolio-overlay {
  bottom: 0;
}

.portfolio-card:hover img {
  transform: scale(1.1);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .portfolio-img-container {
    height: 200px;
  }
  
       .navbar {
                position: fixed;
                top: 0;
                left: 0;
                right: 0;
                z-index: 1030;
                background-color: transparent !important;
                transition: all 0.3s ease;
                padding: 0px 0;
                border-bottom: 1px solid rgba(255, 255, 255, 0.271);
            }
}



    /* Masonry Gallery */
    .gallery {
      column-count: 3;
      column-gap: 1.5rem;
      padding: 1rem 0;
    }

    .gallery-item {
      break-inside: avoid;
      margin-bottom: 1.5rem;
      background: #fff;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
      transition: all 0.3s ease;
      position: relative;
    }

    .gallery-item:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    }

    .gallery-item img {
      width: 100%;
      height: auto;
      display: block;
      transition: transform 0.5s ease;
    }
    
    .gallery-item:hover img {
      transform: scale(1.05);
    }
    
    /* Overlay Effect */
    .gallery-overlay {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: rgba(0, 0, 0, 0.6);
      color: white;
      padding: 20px;
      opacity: 0;
      transition: opacity 0.3s ease;
    }
    
    .gallery-item:hover .gallery-overlay {
      opacity: 1;
    }
    
    .gallery-overlay h3 {
      font-size: 1.4rem;
      margin-bottom: 8px;
      transform: translateY(20px);
      transition: transform 0.3s ease;
    }
    
    .gallery-overlay p {
      font-size: 0.95rem;
      margin-bottom: 15px;
      transform: translateY(20px);
      transition: transform 0.3s ease 0.1s;
    }
    
    .gallery-item:hover .gallery-overlay h3,
    .gallery-item:hover .gallery-overlay p {
      transform: translateY(0);
    }
    
    .view-btn {
      background: rgba(255, 255, 255, 0.9);
      color: #333;
      border: none;
      padding: 8px 20px;
      border-radius: 4px;
      font-weight: 500;
      align-self: flex-start;
      text-decoration: none;
      transition: all 0.3s ease;
      transform: translateY(20px);
      opacity: 0;
    }
    
    .gallery-item:hover .view-btn {
      transform: translateY(0);
      opacity: 1;
      transition-delay: 0.2s;
    }
    
    .view-btn:hover {
      background: white;
      transform: translateY(0) scale(1.05);
    }

    /* Responsive adjustments */
    @media (max-width: 1024px) {
      .gallery {
        column-count: 2;
      }
    }

    @media (max-width: 600px) {
      .gallery {
        column-count: 1;
      }
    }

       
       /* Makes sure the zoom doesn't overflow */
.hero-slide {
    overflow: hidden;
}

/* Zoom animation for the background */
.hero-slide.zoom-bg {
    animation: bgZoom 15s linear infinite alternate;
    background-size: cover;
    background-position: center;
}

@keyframes bgZoom {
    from {
        transform: scale(1);
    }
    to {
        transform: scale(1.2);
    }
}

/* Pause zoom when not active (optional) */
.carousel-item:not(.active) .hero-slide.zoom-bg {
    animation: none;
    transform: scale(1);
}
       

/* Breadcrumb with Background Image */
.breadcrumb-wrapper {
    padding: 45px 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}



/* Make text stand out more */
.breadcrumb-container {
    position: relative;
    z-index: 2;
}

/* Optional: Add a subtle animation to the background */
@keyframes zoomBackground {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.05);
    }
}




.section-title {
      color: #b28b67;
      text-transform: uppercase;
      font-weight: 600;
      font-size: 14px;
      letter-spacing: 1.5px;
    }
    .main-heading {
      font-weight: 700;
      font-size: 3rem;
      line-height: 1.2;
    }
    .brochure-btn {
      border: 1px solid #000;
      padding: 12px 32px;
      font-weight: 500;
      text-transform: uppercase;
      letter-spacing: 2px;
      background-color: transparent;
      transition: all 0.3s ease;
    }
    .brochure-btn:hover {
      background-color: #000;
      color: #fff;
    }
    .text-content {
      font-size: 1.03rem;
      line-height: 1.9;
      color: #333;
    }



    .drop-services li{
padding: 10px;
border-bottom: 1px solid rgb(189, 187, 187);    
letter-spacing: 1px;
}

.drop-services li:last-child {
  padding: 10px;
  border-bottom: transparent;
}




    /* Custom hamburger icon design */
    .hamburger-icon {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        width: 24px;
        height: 18px;
        cursor: pointer;
    }
    
    .hamburger-icon .bar {
        height: 2px;
        width: 100%;
        background-color: #ffffff;
        transition: all 0.3s ease;
    }
    
    .navbar-toggler:focus {
        outline: none !important;
        box-shadow: none !important;
    }
    
    /* Close button styles */
    .close-menu-btn {
        color: #333;
        transition: transform 0.3s ease;
    }
    
    .close-menu-btn:hover {
        transform: rotate(90deg);
    }
    
    /* Custom styles for full-width sidebar with centered links and animations */
    @media (max-width: 991.98px) {
        .navbar-collapse {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            width: 100%;
            height: 100%;
            padding: 2rem;
            background-color: #fff;
            z-index: 1050;
            display: flex !important;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.4s ease-in-out, visibility 0.4s ease-in-out;
        }
        
        .navbar-collapse.show {
            opacity: 1;
            visibility: visible;
        }
        
        .navbar-nav {
            flex-direction: column !important;
            gap: 1.5rem !important;
            width: 100%;
            text-align: center;
        }
        
        .nav-item {
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
        }
        
        .navbar-collapse.show .nav-item {
            opacity: 1;
            transform: translateY(0);
        }
        
        /* Staggered animation for nav items */
        .navbar-collapse.show .nav-item:nth-child(1) { transition-delay: 0.1s; }
        .navbar-collapse.show .nav-item:nth-child(2) { transition-delay: 0.2s; }
        .navbar-collapse.show .nav-item:nth-child(3) { transition-delay: 0.3s; }
        .navbar-collapse.show .nav-item:nth-child(4) { transition-delay: 0.4s; }
        .navbar-collapse.show .nav-item:nth-child(5) { transition-delay: 0.5s; }
        .navbar-collapse.show .nav-item:nth-child(6) { transition-delay: 0.6s; }
        .navbar-collapse.show .nav-item:nth-child(7) { transition-delay: 0.7s; }
        
        .nav-link {
            padding: 0.75rem 1rem !important;
            font-size: 1.25rem;
            color: #212529 !important;
            transition: color 0.2s ease-in-out;
        }
        
     
        
        /* Dropdown styles for mobile */
        .dropdown-menu {
            background: transparent;
            border: none;
            text-align: center;
            opacity: 0;
            max-height: 0;
            overflow: hidden;
            transition: opacity 0.5s ease, max-height 0.5s ease;
            display: block !important;
            position: static !important;
            transform: none !important;
        }
        
        .dropdown-menu.show {
            opacity: 1;
            max-height: 500px;
        }
        
        .dropdown-item {
            padding: 0.5rem 1rem;
            font-size: 1.1rem;
            color: #6c757d !important;
        }
        
        .dropdown-item:hover {
            color: #000000 !important;
            background: transparent;
        }
        
        .dropdown-item:active {
            color: #000000 !important;
            background: transparent;
        }
        /* Backdrop effect */
        .navbar-backdrop {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-color: rgba(0, 0, 0, 0.7);
            z-index: 1040;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
        }
        
        .navbar-backdrop.show {
            opacity: 1;
            visibility: visible;
        }
    }
    
    /* Desktop dropdown styles */
    @media (min-width: 992px) {
        .dropdown-menu {
            transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
            display: block;
            opacity: 0;
            visibility: hidden;
            transform: translateY(10px);
        }
        
        .dropdown:hover .dropdown-menu {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }
    }


    .navbar.scrolled  .hamburger-icon .bar {
    background-color: black !important;
}






        .contact-hero {
            height: 55vh;
            background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), 
                        url('/assets/images/new/6.jpg');
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
            color: white;
            position: relative;
        }
        



        .dropdown-item:focus,
.dropdown-item:active {
    background-color: transparent !important; /* or set your custom color */
    color: inherit !important; /* keep original text color */
    outline: none !important;
    box-shadow: none !important;
}




    .nav-link.active {
        font-weight: bold;
        position: relative;
    }
    
    /* Optional: Add an underline effect */
    .nav-link.active:after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 2px;
        background-color: #f0d4d479;
    }
    
    /* Style for dropdown toggle when a child is active */
    .dropdown-toggle.active {
        color: #0d6efd !important;
        font-weight: bold;
    }





            .disclaimer-widget {
            position: fixed;
            bottom: 25px;
            left: 25px;
            z-index: 999;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        .disclaimer-trigger {
            display: flex;
            padding: 5px 10px;
            align-items: center;
            justify-content: center;
                        background-color:#000000;
color: white;
letter-spacing: 1px;
            cursor: pointer;
            transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
            border: 1px solid white;
            overflow: hidden;
        }
        
        .disclaimer-trigger:hover {
            transform: scale(1.1) rotate(5deg);
        }
        
        .disclaimer-trigger img {
            width: 70%;
            height: 70%;
            object-fit: contain;
        }
        
        .disclaimer-popup {
            position: absolute;
            bottom: 70px;
            left: 0;
            width: 580px;
            max-height: 450px;
            border-radius: 12px;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
            padding: 20px;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
            transform: translateY(20px) scale(0.95);
            border: 1px solid #eee;
            overflow-y: auto;
            background-color: white;
        }

        @media only screen and (max-width: 600px) {




  .disclaimer-popup {
            position: absolute;
            bottom: 70px;
            left: 0;
            width: 360px;
            max-height: 460px !important;
            border-radius: 12px;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
            padding: 20px;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
            transform: translateY(20px) scale(0.95);
            border: 1px solid #eee;
            overflow-y: auto;
            background-color: white;
        }
}
        
        .disclaimer-widget:hover .disclaimer-popup {
            opacity: 1;
            visibility: visible;
            transform: translateY(0) scale(1);
        }
        
        .disclaimer-popup h4 {
            color: #2c3e50;
            font-size: 18px;
            margin-bottom: 15px;
            padding-bottom: 10px;
            border-bottom: 2px solid #f1f1f1;
            font-weight: 700;
        }
        
        .disclaimer-popup p {
            font-size: 14px;
            color: #555;
            margin-bottom: 15px;
            line-height: 1.6;
        }
        
        .disclaimer-popup .close-btn {
            position: absolute;
            top: 7px;
            right: 10px;
            width: 25px;
            height: 25px;
            background: #f1f1f1;
            border: none;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: background 0.2s;
        }
        
        .disclaimer-popup .close-btn:hover {
            background: #e74c3c;
            color: white;
        }
        
        /* Pulse animation for attention */
        

.disclaimer-lines li{
            color: #555;
            font-size: 14px;

}




        
        /* Call Button Styles */
        .call-button {
            position: fixed;
            bottom: 25px;
            right: 25px;
            z-index: 999;
            width: 60px;
            height: 60px;
            background-color: #03a645;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
            transition: all 0.3s ease;
            animation: pulse-2 2s infinite;
        }
        
      
        
        .call-button a {
            display: block;
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            color: white;
        }
        
        .call-button i {
            font-size: 28px;
        }
        
        @keyframes pulse-2 {
            0% { box-shadow: 0 0 0 0 rgba(94, 231, 60, 0.7); }
            70% { box-shadow: 0 0 0 12px rgba(231, 76, 60, 0); }
            100% { box-shadow: 0 0 0 0 rgba(231, 76, 60, 0); }
        }
        
        @media (max-width: 768px) {
            .call-button {
                bottom: 25px;
                right: 25px;
                width: 50px;
                height: 50px;
            }
            
            .call-button i {
                font-size: 24px;
            }
        }