*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
/* For Chrome, Edge, Safari */
::-webkit-scrollbar {
  width: 10px;  
}

::-webkit-scrollbar-track {
  background: #f1f1f1;  
}

::-webkit-scrollbar-thumb {
  background: #ff7323;   
  border-radius: 10px;   
}

::-webkit-scrollbar-thumb:hover {
  background: #f2a579;   
}

/* For Firefox */
html {
  scrollbar-width: thin;       
  scrollbar-color: #ff7323 #f1f1f1; 
}

body{
  background: #f9f9f9;
}
 .top-bar {
           background: #010101 !important;
        color: #fff;
        font-size: 14px;
        padding: 10px 0;
    }

    .top-bar a {
        color: #fff!important;
        text-decoration: none;
        margin-left: 15px;
    }

    /* Navbar */
    .navbar {
        box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.1);
            padding: 2.5vh 0;
    }

    .navbar-brand {
        font-weight: 700;
        font-size: 1.5rem;
        color: #ff7323 !important;
    }

    .nav-link {
        font-weight: 500;
        padding: 8px 15px;
        border-radius: 5px;
font-size: 18px;
        transition: 0.3s;
    }

    .nav-link:hover,
    .nav-link.active {
           background: #ff73230f;
    color: #5a5a5a !important;
    border-bottom: 2px solid #ff7323;
    }
.navbar .dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0; /* removes space so it looks smooth */
}
@media (min-width: 992px) { /* lg and above */
  .navbar .dropdown:hover .dropdown-menu {
      display: block;
      margin-top: 0;
  }
}
    /* Button Styling */
    .nav-btn {
        margin-left: 15px;
        padding: 8px 20px;
        border-radius: 25px;
        font-weight: 600;
        transition: 0.3s;
    }

    .nav-btn:hover {
        background: #09474e;
        transform: scale(1.05);
    }
    .navbar-nav .nav-item {
    margin: 0 20px; /* increase this for more gap */
} 
       /* Banner Section */
    .banner {
      background: url("../asset/img/banner.png") no-repeat center center/cover;
      min-height: 60vh;
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
    
    }

    /* Dark overlay */
    .banner::before {
      content: "";
      position: absolute;
      top: 0; left: 0;
      width: 100%; height: 100%;
      background: rgba(0, 0, 0, 0.55);
      z-index: 0;
    }

    .banner-content {
      position: relative;
      z-index: 1;
    }

    .banner h1 {
      font-size: 3rem;
      font-weight: 700;
    }

    .banner p {
      font-size: 1.2rem;
      margin-bottom: 20px;
    }

    .banner .btn {
      padding: 12px 25px;
      font-size: 1rem;
      font-weight: 600;
      border-radius: 30px;
      margin: 5px;
      transition: 0.3s;
    }
    .btn-primary:hover {
      background: #07525b;
      transform: scale(1.05);
    }
    .btn-outline-light:hover {
      background: #fff;
      color: #000;
      transform: scale(1.05);
    }

    /* Responsive Fix */
    @media (max-width: 768px) {
      .banner h1 {
        font-size: 2rem;
      }
      .banner p {
        font-size: 1rem;
      }
    }
     /* Service Section */
    .services {
      padding: 80px 0;
      background: #f9f9f9;
      text-align: center;
    }

    .services h2 {
      font-weight: 700;
      /* margin-bottom: 50px; */
      font-size: 2.2rem;
    }

    .service-box {
      background: #fff;
      border-radius: 15px;
      padding: 25px;
      box-shadow: 0 4px 12px rgba(0,0,0,0.08);
      transition: all 0.4s ease;
      position: relative;
      overflow: hidden;
    }

    .service-box img {
      width: 100%;
      max-width: 100px;
      margin-bottom: 20px;
      transition: transform 0.4s ease;
    }

    .service-box h3 a {
      font-size: 1.4rem;
      font-weight: 600;
      text-decoration: none!important;
      color: #ff7323;
      transition: 0.3s;
      cursor: pointer;
    }

    .service-box h3 a:hover {
      color: #0b5ed7;
      text-decoration: underline;
    }

    /* Hover Effects */
    .service-box:hover {
      transform: translateY(-10px);
      box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    }
    .service-box:hover img {
      transform: scale(1.1);
    }
    .btn-prime-color{
        background-color: #ff7323;
        color: white;
    }
    .btn-prime-color:hover{
      background-color:#1c5157 ;
      color: white;
    }
    .prime-color{
      color:#ff7323 ;
    }

    /* Decorative Overlay */
    .service-box::before {
      content: "";
      position: absolute;
      top: -50%;
      left: -50%;
      width: 200%;
      height: 200%;
      background: rgba(13, 110, 253, 0.05);
      transform: rotate(25deg);
      z-index: 0;
      transition: 0.5s;
    }
    .service-box:hover::before {
      top: 0;
      left: 0;
    }

    .service-content {
      position: relative;
      z-index: 1;
    }
     p.subtitle.service {
    margin-bottom: 50px;
    color: #ff7323;
    font-size: 1.1rem;
}
        .about-section {
      padding: 50px 0;
      background: #f9f9f9;
    }
    .about-img img {
      width: 100%;
      border-radius: 15px;
      box-shadow: 0 6px 18px rgba(0,0,0,0.1);
    }
    .about-content h2 {
      font-size: 2.2rem;
      font-weight: 700;
      margin-bottom: 15px;
    }
    .about-content h4 {
      font-size: 1.3rem;
      font-weight: 500;
      color: #ff7323;
      margin-bottom: 20px;
    }
    .about-content p {
      font-size: 1rem;
      color: #333333;;
      line-height: 1.7;
    }
    @media (max-width: 768px) {
      .about-content {
        margin-top: 30px;
        text-align: center;
      }
    }
        .choose-section {
      padding: 50px 0;
      background: #f9f9f9;
      text-align: center;
    }
    .choose-section h2 {
      font-weight: 700;
      font-size: 2.2rem;
      margin-bottom: 10px;
    }
    .choose-section p.subtitle {
      font-size: 1.1rem;
      color: #ff7323;
      margin-bottom: 50px;
    }

    .choose-box {
      background: #fff;
      padding: 30px 20px;
      border-radius: 15px;
      box-shadow: 0 4px 12px rgba(0,0,0,0.08);
      transition: all 0.4s ease;
          background-color: #ffd7bf;
    }
    .choose-box i {
      font-size: 2.5rem;
      color: #ff7323;
      margin-bottom: 15px;
      transition: transform 0.3s;
    }
    .choose-box h4 {
      font-size: 1.3rem;
      font-weight: 600;
      margin-bottom: 10px;
    }
    .choose-box p {
      color: #737070;
      font-size: 0.95rem;
      line-height: 1.6;
    }

    /* Hover effect */
    .choose-box:hover {
      transform: translateY(-10px);
      box-shadow: 0 8px 20px rgba(0,0,0,0.15);
          border-bottom: 2px solid #ff7323;
    }
    .choose-box:hover i {
      transform: scale(1.2);
    }
    .testimonial-section {
      padding: 50px 20px;
      text-align: center;
      background: #f9f9f9;
    }
    .testimonial-section h2 {
      font-size: 2.5rem;
      font-weight: 700;
    
      color: #222;
    }
    .swiper {
      width: 100%;
      max-width: 900px;
      margin: auto;
    }
    .swiper-slide {
      background: #fff;
      border-radius: 20px;
      padding: 40px 30px;
      box-shadow: 0 8px 20px rgba(0,0,0,0.08);
      text-align: center;
      transition: transform 0.4s ease;
    }
    .swiper-slide p {
      font-size: 1rem;
      color: #555;
      font-style: italic;
      line-height: 1.6;
      margin-bottom: 20px;
    }
    .testimonial-author img {
      width: 80px;
      height: 80px;
      border-radius: 50%;
      margin-bottom: 15px;
      border: 3px solid #ff7323;
      object-fit: cover;
    }
    .testimonial-author h5 {
      font-weight: 600;
      margin-bottom: 5px;
      font-size: 1.1rem;
    }
    .testimonial-author span {
      font-size: 0.9rem;
      color: #777;
    }
    .swiper-pagination-bullet {
      background: #ff7323 !important;
    }
     .faq-form-section {
      padding: 50px 20px;
         background: #f9f9f9;
    }
    .faq-form-section h2 {
      font-weight: 700;
      margin-bottom: 30px;
    }
    .accordion-button {
      font-weight: 600;
    }
    .contact-form {
      background: #fff;
      padding: 30px;
      border-radius: 12px;
      box-shadow: 0 6px 20px rgba(0,0,0,0.08);
    }
    .btn-custom {
      background: #ff7323;
      color: #fff;
      border-radius: 50px;
      padding: 10px 20px;
      font-weight: 600;
    }
    .btn-custom:hover {
      background: #084298;
    }
    .cta-section {
      background: linear-gradient(135deg, #ff7323, #ff7323);
      color: #fff;
      padding: 80px 20px;
     
      border-radius: 12px;
      box-shadow: 0 8px 20px rgba(0,0,0,0.2);
    }
    .cta-section h2 {
      font-weight: 700;
      font-size: 2.5rem;
      margin-bottom: 20px;
      
    }
    .cta-section p {
      font-size: 1.1rem;
      margin-bottom: 30px;
      opacity: 0.9;
    }
    .cta-btn {
      background: #fff;
      color: #ff7323;
      padding: 12px 30px;
      border-radius: 50px;
      font-weight: 600;
      transition: all 0.3s ease;
    }
    .cta-btn:hover {
      background: #f8f9fa;
      color: #d97026;
      transform: translateY(-3px);
    }
        .footer {
      background: #000000;
      color: #fff;
      padding: 60px 0 20px;
    }
    .footer h5 {
      font-weight: 600;
      margin-bottom: 20px;
      font-size: 1.2rem;
      color: #fff;
    }
    .footer p, .footer a {
      color: #ddd;
      font-size: 0.95rem;
      text-decoration: none;
    }
    .footer a:hover {
      color: #ff7323;
      text-decoration: none;
    }
    .footer .social-icons a {
      display: inline-block;
      margin: 0 8px;
      color: #fff;
      font-size: 1.2rem;
      transition: 0.3s;
    }
    .footer .social-icons a:hover {
      color: #ff7323;
    }
    .footer-bottom {
      border-top: 1px solid rgba(255,255,255,0.2);
      margin-top: 30px;
      padding-top: 15px;
      text-align: center;
      font-size: 0.9rem;
      color: #aaa;
    }
    /* Breadcrumb Hero */
    .page-hero {
        background: url('./img/baner-2.jpg ') center/cover no-repeat;
        padding: 100px 0;
        color: #fff;
        text-align: center;
        position: relative;
    }

    .page-hero::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.6);
    }

    .page-hero .content {
        position: relative;
        z-index: 1;
    }
 
   .mission-vision-values .card-box {
  position: relative;
  background: #fff;
  border-radius: 12px;
  padding: 40px 20px 30px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.1);
  transition: 0.3s;
}

.mission-vision-values .card-box:hover {
  transform: translateY(-8px);
}

.card-header {
  position: absolute;
  top: -15px;
  left: 20px;
  background: #ff4b4b; /* default red */
  color: #fff;
  font-weight: 600;
  padding: 6px 15px;
  border-radius: 20px;
  font-size: 14px;
}
.im-sec-bg{
  background-color: #f2a579 !important;
}
.left-sec{
  text-align: left !important;
   padding-left: 64px;
}

.card-footer {
  position: absolute;
  bottom: -15px;
  right: 20px;
  background: #ff4b4b; /* default red */
  color: #fff;
  font-weight: bold;
  padding: 6px 15px;
  border-radius: 20px;
  font-size: 14px;
}

.card-body .icon {
  font-size: 40px;
  margin-bottom: 15px;
  display: block;
  color: #ff7323;}

.card-body p {
  font-size: 14px;
  color: #555;
  text-align: justify;
}

/* Mission Card Colors */
.mission .card-header,
.mission 
 {
  background: #ff7323;;
  color: #fff;
}

/* Vision Card Colors */
.vision .card-header,
.vision 
 {
  background: #ff7323;;
  color: #fff;
}

/* Values Card Colors */
.values .card-header,
.values   {
  background: #ff7323;
  color: #fff;
}

.btn-primary {
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-primary::before {
  content: "";
  position: absolute;
  top: -10px;
  left: -10px;
  width: calc(100% + 20px);
  height: calc(100% + 20px);
  border: 2px solid var(--bs-primary);
  z-index: -1;
  transition: all 0.3s ease;
  border-radius: inherit; /* button ke border-radius ko follow karega */
}

.btn-primary:hover::before {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.fancy-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.fancy-list li {
  font-size: 16px;
  color: #333;
  padding: 8px 0 8px 30px;
  position: relative;
  transition: all 0.3s ease;
}

.fancy-list li i {
  color: #09474e;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 18px;
}

.fancy-list li:hover {
  color: var(--bs-primary);
  transform: translateX(5px);
}


   .contact-wrapper {
      max-width: 1306px;
      margin: 50px auto;
      display: grid;
    
      gap: 40px;
      align-items: stretch;
    }

    .contact-info, .contact-form {
      background: rgba(255,255,255,0.15);
      backdrop-filter: blur(12px);
      padding: 40px;
      border-radius: 18px;
      box-shadow: 0 10px 25px rgba(0,0,0,0.15);
      color: #000000;
    }

    .contact-info h2 {
      font-size: 32px;
      margin-bottom: 20px;
      color: #000000;
    }

    .contact-info p {
      font-size: 16px;
      margin-bottom: 30px;
      line-height: 1.6;
    }

    .contact-info ul {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .contact-info ul li {
      margin-bottom: 18px;
      font-size: 16px;
      display: flex;
      align-items: center;
    }

    .contact-info ul li i {
      font-size: 20px;
      color: #ff7323;
      margin-right: 12px;
    }

    .contact-form form {
      display: flex;
      flex-direction: column;
      gap: 20px;
    }

    .contact-form input,
    .contact-form textarea {
      padding: 14px;
      border-radius: 10px;
      border: none;
      font-size: 15px;
      background: rgba(255,255,255,0.85);
      color: #333;
      transition: 0.3s;
    }

    .contact-form input:focus,
    .contact-form textarea:focus {
      background: #fff;
      box-shadow: 0 0 10px rgba(0,234,255,0.6);
      outline: none;
    }

    .contact-form button {
      padding: 14px;
      border: none;
      border-radius: 10px;
      background: linear-gradient(45deg, #00eaff, #007bff);
      color: #fff;
      font-size: 16px;
      cursor: pointer;
      font-weight: 600;
      transition: 0.3s;
    }

    .contact-form button:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 18px rgba(0,0,0,0.2);
    }

    /* Map section */
    .map {
      margin: 60px auto;
      max-width: 1100px;
      border-radius: 18px;
      overflow: hidden;
      box-shadow: 0 12px 25px rgba(0,0,0,0.25);
    }

    .map iframe {
      width: 100%;
      height: 400px;
      border: none;
    }

    /* Responsive */
    @media (max-width: 900px) {
      .contact-wrapper {
        grid-template-columns: 1fr;
      }
    }