/* Header Section */
.navbar {
  background-color: rgba(255, 255, 255, 0.95); /* White with 95% opacity */
  transition: background-color 0.3s ease-in-out; /* Smooth transition */
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000; /* Ensure it's above other content */
  padding: 0px 0; /* Increased top and bottom padding */
 
}

.navbar.scrolled {
  background-color: #ffffff; /* Solid white background on scroll */
}
.navbar-brand img {
  max-height: 70px; 
  margin-left: 50px;/* Increased logo height */
}

.navbar-nav {
  margin-left: auto; /* Push the items to the right */
}

.navbar-nav .nav-item {
  margin-left: 15px; /* Adjusted spacing between items */
}

.navbar-nav .nav-link {
  margin-right: 10px;
  padding: 10px 15px; /* Adjusted padding */
  transition: color 0.3s ease-in-out; /* Smooth transition for text color */
  color: #10375C;
}

.navbar-nav .nav-link:hover {
  color: #FF7B00; /* Hover text color */
}
.btn-contact {
  padding: 10px 20px;
  background-color: #FF7B00;
  color: #ffffff;
  transition: background-color 0.3s ease-in-out, border-color 0.3s ease-in-out, color 0.3s ease-in-out;
}

.btn-contact:hover {
  background-color: #ffffff; /* White background on hover */
  color: #FF7B00; /* Text color on hover */
  border: 1px solid #FF7B00; /* Border color on hover */
}

.navbar-nav .nav-item:last-child {
  margin-right: 40px; /* Remove margin from the last item (Contact Us button) */
}

.navbar-nav .nav-item:nth-last-child(2) {
  margin-right: 15px; /* Adjust the margin before the Contact Us button */
}
/* Reset dropdown styles */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #ffffff;
  border: 1px solid #ddd;
  padding: 0;
  margin: 0;
}

.header-section {
    position: relative;
    background-image: url('/images/contact\ us\ heropage.png'); 
    background-size: cover;
    background-position: center;
    height: 100vh;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    perspective: 1000px;
    object-fit: cover;
    margin-bottom: 40px;
  }
  
  /* Parallax effect for the background image */
  .header-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(16, 55, 86, 0.7); /* Overlay color */
    z-index: 1;
    transform: translateZ(-1px) scale(2);
  }
  
  /* Styling for the header content */
  .header-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    animation: fadeIn 1.5s ease-out;
  }
  
  /* Animated heading with keyframes */
  .header-content h1 {
    font-size: 3.5rem;
    font-weight: bold;
    line-height: 1.2;
    animation: typing 3s steps(40, end), blink-caret .75s step-end infinite;
    white-space: nowrap;
    overflow: hidden;
    color: #ffffff;
    border-right: .15em solid #ff7b00;
    margin-bottom: 30px;
  }
  
  /* Styling for the paragraph with slide-in effect */
  .header-content p {
    font-size: 1.5rem;
    margin-bottom: 40px;
    color: antiquewhite;
    animation: slideInUp 1s ease-out;
  }
  
  /* Button styling and hover effects */
  .header-content .btn {
    font-size: 1.2rem;
    padding: 15px 40px;
    border-radius: 50px;
    text-transform: uppercase;
    font-weight: medium;
    animation: bounceIn 1.5s ease-out;
    animation-delay: 0.5s;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
  }
  
  /* Primary button color */
  .header-content .btn-primary {
    background-color: #ff7b00;
    color: white;
    border: none;
  }
  
  /* Hover effect for the button */
  .header-content .btn-primary:hover {
    background-color: white;
    color: #ff7b00;
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  }
  
  /* Keyframes for fade-in animation */
  @keyframes fadeIn {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }
  
  /* Keyframes for slide-in animation */
  @keyframes slideInUp {
    from {
      transform: translateY(50px);
      opacity: 0;
    }
    to {
      transform: translateY(0);
      opacity: 1;
    }
  }
  
  /* Keyframes for bounce-in animation */
  @keyframes bounceIn {
    from, 20%, 40%, 60%, 80%, to {
      transform: translateY(0);
    }
    40% {
      transform: translateY(-15px);
    }
    60% {
      transform: translateY(10px);
    }
    80% {
      transform: translateY(-5px);
    }
  }
  
  /* Keyframes for typing animation */
  @keyframes typing {
    from { width: 0; }
    to { width: 100%; }
  }
  
  /* Keyframes for caret blinking effect */
  @keyframes blink-caret {
    from, to { border-color: transparent; }
    50% { border-color: #ff7b00; }
  }
  /* Responsive adjustments for tablets and mobile devices */
  @media (max-width: 992px) {
    .header-content h1 {
      font-size: 2.5rem; /* Smaller heading size for tablets */
    }
  
    .header-content p {
      font-size: 1.2rem; /* Smaller paragraph size for tablets */
    }
  
    .header-content .btn {
      font-size: 1rem; /* Smaller button size for tablets */
      padding: 12px 30px;
    }
  }
  
  @media (max-width: 768px) {
    .header-content h1 {
      font-size: 2rem; /* Smaller heading size for mobile devices */
    }
  
    .header-content p {
      font-size: 1rem; /* Smaller paragraph size for mobile devices */
      margin-bottom: 20px;
    }
  
    .header-content .btn {
      font-size: 0.9rem; /* Smaller button size for mobile devices */
      padding: 10px 25px;
    }
  
    .header-section {
      padding: 0 15px; /* Add padding for smaller screens */
    }
  }
  

.location-section {
    background-color: #ffffff; /* Adjust as needed */
}

.map-box iframe {
    border: 0;
    border-radius: 8px; /* Optional: Add border radius */
    align-items: center;
    width: 100%;
}
.address-section .address-box {
  padding: 20px;
  border-right: 1px solid #fff; /* Divider line */
}

.address-section .address-box:last-child {
  border-right: none; /* Remove divider from the last address */
}

@media (max-width: 767px) {
  .address-section .address-box {
      border-right: none; /* Remove divider on small screens */
  }
}



.accordion-button {
    background: none; /* Remove background color */
    border: none; /* Remove border */
    color: #000; /* Default text color */
    font-family: Poppins, sans-serif;
    font-size: 18px;
    padding: 0;
    box-shadow: none; /* Remove shadow */
    outline: none;
   
}

.accordion-button:focus {
    box-shadow: none; /* Ensure no focus shadow */
    outline: none;
}

.accordion-button:not(.collapsed) {
    color: #FF7B00; /* Text color when active (orange) */
    background: none; /* Ensure background remains none */
    border: none;
    
}




.accordion-item {
   
    border-top: none; /* Remove grey border */
    border-left:none ;
    border-right: none;
    border-radius: 0px;
    padding: 20px;
    margin-bottom: 16px;
}
.label-container {
    display: flex;
    align-items: center;
    margin-bottom: 10px; /* Adjust spacing between the label and the heading */
}

.icon {
    width: 20px; /* Adjust size of the icon container */
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 8px; /* Adjust spacing between the icon and the title */
}

.icon i {
    font-size: 16px; /* Adjust size of the icon */
    color: #FF7B00; /* Adjust icon color */
}

.label-title {
    font-size: 16px; /* Adjust size of the label title */
    font-weight: medium;
    color: #333; /* Adjust text color */
}
.custom-col-spacing {
    padding-right: 25px; /* Adjust the value as needed */
}

.custom-col-spacing:nth-child(2) {
    padding-left: 25px; /* Same value as padding-right for consistency */
}



@media (min-width: 768px) {
    .col-spacing {
        margin-right: 20px; /* Adjust as needed */
    }
}

/* Custom Styles for Interactive FAQ Section */
.faq-card {
  perspective: 1000px;
}

.faq-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.6s;
  transform-style: preserve-3d;
}

.faq-card:hover .faq-card-inner {
  transform: rotateY(180deg);
}

.faq-card-front, .faq-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.faq-card-front {
  background-color: #007bff;
  color: white;
}

.faq-card-back {
 
  color: #333;
  transform: rotateY(180deg);
  padding: 1rem;
}

.faq-card-front i {
  margin-bottom: 0.5rem;
}

.faq-card-front h5 {
  font-weight: bold;
}

.faq-card-back img {
  margin-top: 1rem;
  border-radius: 8px;
  transition: transform 0.3s ease-in-out;
}

.faq-card-back img:hover {
  transform: scale(1.05);
}

@media (max-width: 768px) {
  .faq-card {
    margin-bottom: 1rem;
  }
}

@media (max-width: 576px) {
  .contact-item {
      flex-direction: column;
      align-items: flex-start;
  }
  .contact-divider {
      display: none;
  }
}
.footer {
  background-color: #10375C;
  color: #fff;
  padding: 40px 0;
}
.footer .divider {
  border-top: 1px solid #a8a8a8;
  margin: 40px 0;
}
.footer .contact-form input,
.footer .contact-form textarea {
  margin-bottom: 10px;
  border-radius: 5px;
}
.footer .contact-form button {
  background-color: #ff7b00;
  border: none;
  border-radius: 5px;
}

.footer .contact-form button:hover {
  background-color: white;
  border: none;
  border-radius: 5px;
  color: #ff7b00;
}
.footer .address i {
  color: #ff7b00;
  margin-right: 10px;
  font-size: 24px;
}
.footer .social-icons i {
  font-size: 20px;
  margin-right: 10px;
  color: #fff;
}
.footer .bottom-footer {
  border-top: 1px solid #333;
  padding-top: 20px;
  margin-top: 20px;
}
.footer .row-first .col-md-8,
.footer .row-first .col-md-4 {
    margin-bottom: 20px;
}
.footer .row-first .col-md-4 img {
    max-width: 100%;
}
.footer .row-first .form-group.col-md-8,
.footer .row-first .form-group.col-md-4 {
    padding-right: 5px;
    padding-left: 5px;
}
.footer .row-first .contact-form {
    margin-bottom: 20px;
}
 li a{
  text-decoration: none;
  color: #a8a8a8;
}
li a:hover{
  
  color: #FF7B00;
}