
/* ========== ✅ GENERAL STYLES ========== */
.navbar {
  background-color: white !important;
  padding: 10px 0;
  transition: background-color 0.8s ease;
}

.navbar-brand img {
  max-height: 90px;
}

/* Desktop nav links */
.navbar .nav-link {
  color: black !important;
  padding: 10px 15px;
  margin: 0 12px;
  position: relative;
  font-weight: 500;
}

.navbar .nav-link::after {
  content: "";
  position: absolute;
  left: 20%;
  right: 20%;
  bottom: 5px;
  height: 2px;
  background-color: black;
  opacity: 0;
  transition: all 0.3s ease;
}

.navbar .nav-link:hover::after {
  opacity: 1;
  left: 10%;
  right: 10%;
}

/* Brochure Button General */
.brochure-btn {
  font-size: 1rem;
  padding: 10px 25px;
  border-radius: 30px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  height: 45px;
  margin-left: 30px;
  margin-top: 5px;
  position: relative;
  top: 2px;
  transition: all 0.3s ease-in-out;
}

.brochure-btn:hover {
  background-color: blue;
  color: #000 !important;
  text-decoration: none;
}

/* ========== ✅ MOBILE NAVIGATION ========== */
@media (max-width: 991px) {
 .navbar-collapse {
        position: fixed;
        top: -10px;
        right: 0 !important;
        left: auto !important;
        width: 75%;
        max-width: 280px;
        height: 110vh;
        background: rgba(0, 0, 0, 0.7);
        backdrop-filter: blur(10px);
        padding: 80px 20px 20px;
        box-shadow: -4px 0 20px rgba(0, 0, 0, 0.6);
        z-index: 1050;
        border-radius: 0;
        transform: translateX(100%);
        transition: transform 0.3s ease-in-out;
        display: flex
;
        flex-direction: column;
        align-items: flex-start;
    }

 .navbar-collapse.show {
    transform: translateX(0);      /* ✅ Slide in from right */
  }
  .navbar-collapse .navbar-nav {
    flex-direction: column;
    align-items: center;
    background: transparent !important;
    width: 100%;
  }

  .navbar-collapse .nav-item {
    margin: 10px 0;
    width: 100%;
    text-align: center;
    background: transparent;
  }

  .navbar-collapse .nav-link {
    font-size: 1.1rem;
    font-weight: 600;
    color: white !important;
    background: transparent;
    transition: color 0.3s ease;
  }

  .navbar-collapse .nav-link:hover {
    color: #00e6e6 !important;
  }

  .navbar-collapse .brochure-btn {
    width: 90%;
    max-width: 240px;
    margin: 10px 
    background-color: #17a2b8;
    color: black;
    border-radius: 30px;
    font-weight: 600;
    text-align: center;
    justify-content: center;
    padding: 10px 25px;
    display: flex;
    align-items: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
	position: relative;
        top: -90px;
  }

  .navbar-collapse .brochure-btn:hover {
    background-color: #00e6e6;
    color: black !important;
  }

  .mobile-close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 1100;
    display: block;
  }

  .mobile-close-btn .close-nav {
    font-size: 1.8rem;
    background: transparent;
    border: none;
    color: white;
    cursor: pointer;
  }

  .navbar-toggler {
    z-index: 1101;
  }

  .navbar-collapse.show ~ .navbar-toggler {
    display: none;
  }

  .navbar-toggler.collapsed {
    display: block;
  }

  .navbar-toggler:not(.collapsed) {
    display: none;
  }
}

/* ✖ Hide close button on desktop */
@media (min-width: 992px) {
  .mobile-close-btn {
    display: none;
  }
}

/* Slide animation */
@keyframes slideDownDark {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Counter Section Styling */
.counter_wrap {
  background-color: #111;
  padding: 60px 0;
}

.box_counter {
  background-color: #1c1c1c;
  border: 1px solid #333;
  padding: 40px 20px;
  transition: all 0.3s ease;
  border-radius: 12px;
  cursor: pointer;
}

.box_counter:hover {
  transform: translateY(-10px);
  background: #000;
  border-color: #555;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
}

.box_counter i {
  font-size: 3rem;
  margin-bottom: 15px;
  display: inline-block;
  color: #fff;
  transition: color 0.3s;
}

.box_counter:hover i {
  color: #00ffcc;
}

.counter_text {
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
}

.box_counter p {
  color: #bbb;
  font-size: 1rem;
  margin-top: 10px;
}

.contact_info li {
  margin-bottom: 10px;
  color: white;
  display: flex;
  align-items: center;
  font-family: Arial, sans-serif;
  font-size: 16px;
}

.contact_info a {
  color: white;
  text-decoration: none;
}

.contact_info a:hover {
  text-decoration: underline;
}
.brand-logos-wrapper img:hover {
  transform: scale(1.03);
}

* 🖱️ Button Styling */
.btn-dark {
  padding: 12px 30px;
  font-size: 1rem;
  border-radius: 30px;
  background-color: #00adef ;
  color: #fff;
  border: none;
  transition: all 0.3s ease;
}

.btn-dark:hover {
  background-color: #32346d;
  color:white !important;
  transform: scale(1.05);
}
.contact_info li {
  margin-bottom: 10px;
  color: white;
  display: flex;
  align-items: center;
  font-family: Arial, sans-serif;
  font-size: 16px;
}

.contact_info a {
  color: white;
  text-decoration: none;
}

.contact_info a:hover {
  text-decoration: underline;
}
.brand-logos-wrapper img:hover {
  transform: scale(1.03);
}
.icon_box_style_5 {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  padding: 25px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.icon_box_style_5:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.icon_box_style_5 .box_icon img {
  width: 100%;
  max-height: 200px;
  object-fit: cover;
  border-radius: 12px;
}

.icon_box_style_5 h5 {
  font-size: 20px;
  font-weight: 600;
  margin: 20px 0 10px;
}

.icon_box_style_5 p {
  font-size: 14px;
  color: #555;
  flex-grow: 1;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media (min-width: 768px) {
  .icon_box_style_5 {
    height: 100%;
  }
}
.icon_box_style_5 ul {
  padding-left: 20px;
  list-style-type: disc;
  font-size: 14px;
  color: #555;
}

.icon_box_style_5 li {
  margin-bottom: 6px;
}

.footer_dark .widget_title {
  color: #17a2b8; /* bright blue, you can replace with your preferred shade */
}
/* ✅ Desktop adjustments for small desktop screens */
@media (max-width: 1200px) and (min-width: 992px) {
  .navbar .nav-link {
    margin: 0 8px;   /* smaller gaps */
    font-size: 0.9rem; /* slightly smaller text */
  }

  .brochure-btn {
    font-size: 0.8rem;
    padding: 6px 16px;
    margin-left: 10px;
  }

  .navbar-brand img {
    max-height: 50px; /* smaller logo */
  }
}

@media (max-width: 1024px) and (min-width: 992px) {
  .navbar .nav-link {
    margin: 0 6px;
    font-size: 0.85rem;
  }

  .brochure-btn {
    font-size: 0.75rem;
    padding: 5px 14px;
    margin-left: 8px;
  }

  .navbar-brand img {
    max-height: 45px;
  }
}
@media (max-width: 767px) {
  .navbar-brand img {
    max-height: 70px;     /* slightly bigger than 40px */
  }

  .navbar-toggler {
    font-size: 1.4rem;    /* slightly bigger toggle icon */
    padding: 6px 8px;
  }

  .navbar {
    padding: 8px 0;       /* balanced vertical space */
  }
}
@media (max-width: 767px) {
  .breadcrumb_section {
    padding-top: 60px;   /* was 100px */
    padding-bottom: 60px; 
  }

  .breadcrumb_section .page-title h1 {
    font-size: 26px;  /* optional: keep slightly larger text */
  }
}

@media (max-width: 991.98px) {
  .navbar .d-flex .btn,
  .navbar .d-flex .navbar-toggler {
    margin: 4px !important;
  }
}


@media (max-width: 576px) {
  .mobile-only {
    display: inline-block;
    background: linear-gradient(90deg,#0e93d8,#32346d);
    color: white;
    border: none;
    padding: 10px 24px;
    font-size: 14px;
    font-weight: 500;
    border-top-left-radius: 40px;
    border-bottom-left-radius: 40px;
    border-top-right-radius: 0;
    border-bottom-right-radius: 40px;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
  }
}

/* Desktop ya bade screens pe hide karne ke liye */
@media (min-width: 577px) {
  .mobile-only {
    display: none;
  }
}


/* Default: hide */
.mobile-only {
  display: none;
}