/* ==========================
   Global Reset and Box Sizing
   ========================== */
   *,
   *::before,
   *::after {
       box-sizing: border-box;
       margin: 0;
       padding: 0;
   }
   
   
   /* ==========================
      Basic Styles
      ========================== */
   html {
       scroll-behavior: smooth;
       font-size: 100%; /* Base for responsive scaling */
       line-height: 1.6;
   }
   
   body {
    font-family: 'Poppins', sans-serif;
       color: #00587C;
       background-color: #fff;
   }
   
   /* Container for Layout */
   .container {
       max-width: 1200px;
       margin: 0 auto;
       padding: 0 1rem;
   }
   
   /* ==========================
      Typography
      ========================== */
   h1, h2, h3, h4, h5, h6 {
       margin: 0 0 1rem;
       font-weight: bold;
       line-height: 1.2;
       color: #00587C;
   }

   h1 {
    font-size: 50px;
    font-weight: 700;
    margin-bottom: 10px;
   
  }

  h2 {
    font-size: 45px;
    font-weight: 600;
    margin-bottom: 10px;
    
  }

  h3 {
    font-size: 40px;
    font-weight: 500;
    margin-bottom: 8px;
    
  }

  h4 {
    font-size: 35px;
    font-weight: 500;
    margin-bottom: 6px;
    
  }

  h5 {
    font-size: 30px;
    font-weight: 400;
    margin-bottom: 5px;
    
  }

  h6 {
    font-size: 25px;
    font-weight: 400;
    margin-bottom: 5px;
    
  }
  
  
  
   p {
       margin: 0 0 1rem;
       font-size: 22px;
       line-height: 35px;
   }
   
   a {
       color: #007bff;
       text-decoration: none;
   }
   
   a:hover {
       text-decoration: underline;
   }
   
   
   
   @media screen and (max-width: 768px) {
          .two-column-section {
    padding-left: 0 !important;
    padding-right: 0 !important;
}

    .right-column h1 {
        font-size: 30px !important;
        text-align: center;
    }
    
    .aboutus-icon-section {
     padding: 0; 
}
  h1 {
    font-size: 28px;
    margin-bottom: 6px;
  }

  h2 {
    font-size: 25px;
    margin-bottom: 6px;
  }

  h3 {
    font-size: 22px;
    margin-bottom: 5px;
  }

  h4 {
    font-size: 20px;
    margin-bottom: 4px;
  }

  h5 {
    font-size: 18px;
    margin-bottom: 3px;
  }

  h6 {
    font-size: 16px;
    margin-bottom: 3px;
  }

 p {
    font-size: 16px;
    line-height: 25px;
    
   
}

}


@media screen and (max-width: 480px) {
  h1 {
    font-size: 24px;
    margin-bottom: 5px;
  }

  h2 {
    font-size: 22px;
    margin-bottom: 5px;
  }

  h3 {
    font-size: 20px;
    margin-bottom: 4px;
  }

  h4 {
    font-size: 18px;
    margin-bottom: 3px;
  }

  h5 {
    font-size: 16px;
    margin-bottom: 2px;
  }

  h6 {
    font-size: 14px;
    margin-bottom: 2px;
  }

 p {
    font-size: 16px !important;
    line-height: 22px !important;
   
    
    
}


}

   /* ==========================
      Button Styles
      ========================== */
   button {
       padding: 0.5rem 1rem;
       border: none;
       cursor: pointer;
       background-color: #E68600;
       font-size: 1rem;
       border-radius: 4px;
       transition: background-color 0.3s ease;
   }
   
   button:hover {
       background-color: #00587C;
       color: #fff;
   }
   
   /* ==========================
      Form Styling
      ========================== */
   input, textarea, select {
       padding: 0.5rem;
       border: 1px solid #ccc;
       border-radius: 4px;
       width: 100%;
       margin: 0.5rem 0;
   }
   
   /* ==========================
      Image Styles (Responsive and Utilities)
      ========================== */
   
   /* Responsive Image Styling */
   img {
       max-width: 100%;
       height: auto;
       display: block;
   }
   
   /* Rounded Corners */
   .rounded {
       border-radius: 8px;
   }
   
   .circle {
       border-radius: 50%;
   }
   
   /* Image Shadow */
   .shadow {
       box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
   }
   
   /* Hover Effect for Images */
   .image-hover {
       position: relative;
       overflow: hidden;
   }
   
   .image-hover img {
       transition: transform 0.3s ease;
   }
   
   .image-hover:hover img {
       transform: scale(1.05);
   }
   
   /* Image Alignment */
   .float-left {
       float: left;
       margin-right: 1rem;
   }
   
   .float-right {
       float: right;
       margin-left: 1rem;
   }
   
   /* Object Fit for Images */
   .cover-image {
       width: 100%;
       height: 100%;
       object-fit: cover;
   }
   
   .contain-image {
       width: 100%;
       height: 100%;
       object-fit: contain;
   }
   
   /* ==========================
      Utility Classes
      ========================== */
   .text-center {
       text-align: center;
   }
   
   .mt-1 { margin-top: 0.5rem; }
   .mb-1 { margin-bottom: 0.5rem; }
   .mx-auto { margin-left: auto; margin-right: auto; }
   
   /* ==========================
      Responsive Breakpoints
      ========================== */
   
   /* Small devices (landscape phones, 576px and up) */
   @media (min-width: 576px) {
       .rounded { border-radius: 10px; }
       .shadow { box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2); }
   }
   
   /* Medium devices (tablets, 768px and up) */
   @media (min-width: 768px) {
       .rounded { border-radius: 12px; }
       .shadow { box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3); }
   }
   
   /* Large devices (desktops, 992px and up) */
   @media (min-width: 992px) {
       .rounded { border-radius: 14px; }
       .shadow { box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4); }
   }
   
   /* Extra large devices (large desktops, 1200px and up) */
   @media (min-width: 1200px) {
       .rounded { border-radius: 16px; }
       .shadow { box-shadow: 0 10px 24px rgba(0, 0, 0, 0.5); }
   }
   

  /* Sliding Banner Styles */
.sliding-banner {
    position: relative;
    height: 600px;
    overflow: hidden;
  }
  
  .slides {
    display: flex;
    height: 100%;
    transition: transform 0.5s ease-in-out;
  }
  
  .slide {
    flex: 0 0 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
  }
  
  .banner-content {
    position: absolute;
    left: 6%;
    top: 50%;
    transform: translateY(-50%);
    color: #FFFFFF;
    
  }
  
  
  
  
  .banner-content h1 {
    font-size: 50px;
    margin-bottom: 20px;
  }
  
  
  /* Mobile version styles */
@media (max-width: 768px) {
  .banner-content h1 {
    font-size: 30px;  /* Adjust font size for mobile */
    margin-bottom: 15px;  /* Adjust bottom margin for mobile */
  }
}

  .banner-content button {
    padding: 10px 20px;
    font-size: 25px;
    background-color: #E68600;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
  }
  
  .banner-content button:hover {
    background-color: #00587C;
  }
  
  /* Dot Controller */
  .dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
  }
  
  .dot {
    width: 12px;
    height: 12px;
    background-color: #00587C;
    border-radius: 50%;
    cursor: pointer;
  }
  
  .dot.active {
    background-color: #FA9F0C;
  }
  
  .heading-container {
    display: flex;           /* Use flexbox */
    justify-content: center; /* Center the content horizontally */
    align-items: center;     /* Center the content vertically */
    width: 80%;  
    margin-top: 20px;  
    margin-bottom: 20px;         /* Ensure full width */
  }
  
  .section-heading {
    text-align: center; 
  }
  
  .two-column-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-left: 15%;
    padding-right: 15%;
  }
  
  .left-column {
    flex: 1;
    padding-right: 30px;
  }
  
  .tour-image {
    width: 500px;
    height: 500px;
    border-radius: 8px;
  }
  
  .right-column {
    flex: 1;
  }

  /* Media query for smaller screens */
@media (min-width: 768px) {
    .left-column {
      padding-right: 20px;
    }
  
    .tour-image {
      width: 500px;
      height: 500px;
    }
  }
  
  .aboutus-icon-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: center; /* Center the entire section */
    align-items: center;
    padding:10px;
    gap: 20px;
    background-color: #F5F5F5;
  }
  
  .icon-row {
    display: flex;
    justify-content: center; /* Center columns in each row */
    width: 100%;
    margin-bottom: 20px;
  }
  
  .icon-column {
    display: flex;
    flex-direction: column; /* Stack icon and description */
    align-items: center; /* Center content */
    text-align: center;
    margin: 0 50px;
  }
  
  .icon img {
    width: 32px;
    height: 32px;
    margin-bottom: 10px;
  }
  
  .icon-description {
    font-size: 25px;
    font-weight: 600;
  }
  
  /* Mobile Version */
  @media (max-width: 768px) {
    .icon-row {
      flex-direction: column; /* Stack rows vertically */
      align-items: center;
    }

    
    .testimonial-card {
      flex: 0 0 100% !important;
      margin: 10px;
      background-color: white;
      padding: 10px;
  }


    .icon-column {
      margin: 10px 0;
      width: auto; /* Adjust width for better fit */
    }

    .logo img {
      width: 150px !important;
    }

    .fa, .fas {
      font-weight: 900;
      font-size: 30px;
  }
  }
  

  .icon-section {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    gap: 20px; /* Space between columns */
    padding: 50px;
  }
  
  .icon-column {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .icon-container {
    width: 90px;
    height: 90px;
    display: flex;
    
    align-items: center;
    justify-content: center;
    
    margin-bottom: 10px; /* Space between icon and name */
    position: relative;
  }
  
  .icon-container img {
    width: 40px;
    height: 40px;
  }
  
  .icon-name {
    font-size: 25px;
  }
  
  .line {
    width: 200px;
    height: 2px;
    background-color: #00587C; /* Line color */
    position: relative;
    margin-bottom: 150px;
  }
  
  .line:before,
  .line:after {
    content: "";
    position: absolute;
    width: 8px;
    height: 8px;
    background-color: #E68600; /* Dot color */
    border-radius: 50%;
    top: -3px;
  }
  
  .line:before {
    left: -10px;
  }
  
  .line:after {
    right: -10px;
  }
  
  /* Mobile Version */
  @media (max-width: 768px) {
    .icon-section {
      flex-direction: column; /* Stack icons vertically */
      gap: 40px; /* Space between stacked icons */
    }
  
    .line {
      width: 2px;
      height: 50px; /* Vertical line */
      margin: 0 auto; /* Center the line */
    }
  
    .line:before,
    .line:after {
      top: auto;
      left: 50%; /* Center dots */
      transform: translateX(-50%);
    }
  
    .line:before {
      top: -10px;
    }
  
    .line:after {
      bottom: -10px;
    }
  }
  
  footer {
    background-color: #02415B;
    color: #fff;
    
  }
  
  .footer-top {
    padding-top: 50px;
    padding-left: 5%; /* Adjust to percentage for responsiveness */
    padding-right: 5%; /* Adjust to percentage for responsiveness */
    
    border-bottom: 0.5px solid #FFFFFF;
}
  
  /* Mobile Version (Screen width 767px or smaller) */
@media screen and (max-width: 767px) {
    .footer-top,
    .footer-top {
        padding-left: 20px; /* Reduced padding for mobile */
        padding-right: 20px; /* Reduced padding for mobile */
        
    }
}
  
  .footer-middle {
    display: flex;
    justify-content: space-between;
    padding: 20px 20px;
    flex-wrap: wrap;
  }
  
  .footer-column {
    flex: 1;
    margin: 0 30px;
    padding-top: 50px;
    min-width: 200px;
  }
  
  .footer-column h3 {
    margin-bottom: 15px;
    font-size: 24px;
    text-transform: uppercase;
  }
  
  .footer-column ul {
    list-style: none;
    padding: 0;
    font-size: 20px;
  }
  
  .footer-column ul li {
    margin-bottom: 10px;
  }
  
  .footer-column ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 20px;
  }
  
  .footer-column ul li a:hover {
    color: #FA9F0C;
  }
  .footer-column ul li a:active {
  color: #E68600 !important; /* Active state color */
}
  .footer-bottom {
    text-align: center;
    padding: 20px;
    background-color: #02415B;
    border-top: 0.5px solid #FFFFFF;
  }
  
  .social-icons {
    margin-bottom: 10px;
    
 
  }
  
  .social-icons a {
    color: #fff;
    margin: 0 10px;
    text-decoration: none;
    font-size: 30px;
  }
  
  .social-icons a:hover {
    color: #FFFFFF;
  }
  .about-logo {
    display: block;
    
    max-width: 250px; /* Adjust size as needed */
    height: auto;
    
}

  
  
 

  .contact-section {
    
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height:100%;
    background-color: #F5F5F5;
    
}


/* Mobile version (0 to 768px) */
@media (max-width: 768px) {
    .contact-section {
        display: block;  /* Remove display: flex and use block */
        padding-left: 05%;
        
    }
    .contact-form {
    width: 90%;
    max-width: 80%;
    padding: 20px;
    border-radius: 8px;
    margin-left: auto;
    margin-right: auto;

}
.form-column {
    flex: 1;
    min-width: 350px;
}
}

.contact-form {
    width: 90%;
    max-width: 80%;
    padding: 20px;
    border-radius: 8px;
}

.form-columns {
    display: flex;
    flex-wrap: wrap;
    gap:50px;
}

.form-column {
    flex: 1;
    min-width: 300px;
}

.form-column label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

.form-column input,
.form-column textarea {
    width: 100%;
    padding: 20px;
    margin-bottom: 15px;
    border: none; /* Remove all borders */
    border-bottom: 1px solid #ccc; /* Add a single bottom border */
    border-radius: 0; /* Remove rounded corners */
    box-sizing: border-box;
    outline: none; /* Remove focus outline */
    transition: border-color 0.3s ease; /* Add smooth transition */
}

.form-column input:focus,
.form-column textarea:focus {
    border-bottom: 1px solid #00587C; /* Highlight bottom border on focus */
}

/* Placeholder styling for single-line text appearance */
.form-column input::placeholder,
.form-column textarea::placeholder {
    color: #00587C; /* Placeholder text color */
    margin-bottom: 0;
    font-size: 20px;
    
    
}


.form-column button:hover {
    color: #E68600;
}

.checkbox-container {
    display: flex;
    align-items: center; /* Vertically centers checkbox */
    justify-content: flex-start; /* Aligns to the left */
    margin-top: 10px;
    gap: -10px; /* Adds space between checkbox and label */
}

.checkbox-container input {
    margin: 0;
    accent-color: #00587C; /* Checkbox color */
}

.newsletter-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 50px;
}

.newsletter-heading {
  font-size: 40px;
  margin-bottom: 10px;
}

.newsletter-description {
  font-size: 22px;
  margin-bottom: 30px;
}

.subscribe-form {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.subscribe-input {
  padding: 10px;
  font-size: 16px;
  margin-bottom: 20px;
  width: 500px;
  max-width: 100%;
}

.subscribe-button {
  padding: 12px 24px;
  font-size: 16px;
  background-color: black;
  color: white;
  border: none;
  cursor: pointer;
  transition: transform 0.3s ease;
  border-radius: 20px;
}

.subscribe-button:hover {
  transform: scale(1.1);
}





.testimonial-slider {
  position: relative;
  width: 80%;
  margin: auto;
  overflow: hidden;
  text-align: center;
}

.testimonial-wrapper {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.testimonial-card {
  flex: 0 0 33.33%; /* Show 3 cards at a time */
  margin: 10px;
  background-color: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.testimonial-image {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  margin-bottom: 15px;
}

.testimonial-content {
  font-family: Arial, sans-serif;
}

.testimonial-name {
  font-size: 1.2em;
  font-weight: bold;
}

.testimonial-text {
  font-style: italic;
}

.testimonial-comments {
  margin-top: 10px;
  font-size: 1em;
}

.testimonial-ratings {
  font-size: 1.2em;
  color: gold;
  margin-top: 5px;
}

/* Dot controller styles */
.testimonial-dot-container {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
}

.testimonial-dot {
  height: 15px;
  width: 15px;
  margin: 0 5px;
  background-color: #02415B;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.3s;
  cursor: pointer;
}

.testimonial-dot.active {
  background-color: #E68600;
}



.main-container {
  width: 100%;
  
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0 50px;
}

.card {
  position: relative;
 
  border-radius: 20px;
  padding: 20px 60px;
  
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}

.card .image {
  width: 100px;
  height: 100px;
  padding: 3px;  
  background: #fff;
  
  margin-bottom: 20px;
}

.card .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  
}

.card h3 {
  text-align: center;
}

.card p {
  color: orange;
  text-align: center;
}

.swiper-container {
  position: relative;
  margin: 0 auto;
  width: 100%;
}

.swiper {
  margin: 0 auto;
  cursor: grab;
}

.swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
}

.swiper-button-next,
.swiper-button-prev {
  width: 05px;
  height: 05px;
  border-radius: 50%;
  
}

.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 10px;
  font-weight: bold;
  color: #E68600;
}

.swiper-button-next:hover {
  transform: scale(1.2) translateX(80%);
}

.swiper-button-prev:hover {
  transform: scale(1.2) translateX(-80%);
}

.swiper-button-next {
  transform: translateX(100%);
}

.swiper-button-prev {
  transform: translateX(-100%);
}

.swiper-pagination {
  transform: translateY(200%);
}

.swiper-pagination-bullet {
  width: 15px;
  height: 15px;
}
/* For active pagination bullet */
.swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #E68600;
}

/* For pagination bullet on hover */
.swiper-pagination-bullet:hover {
  background: #E68600;
}





.image-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr); /* 12-column grid */
  gap: 20px; /* Space between grid items */
  padding: 100px;
}

.image-item {
  position: relative;
  background-size: cover;
  background-position: center;
  height: 700px; /* Adjust height as needed */
  color: white;
  padding: 20px;
  text-align: left;
  overflow: hidden;
}

/* Full-width item */
.full-width {
  grid-column: span 12;
}

/* Two-column layout: 60% and 40% */
.column-60 {
  grid-column: span 7; /* 7/12 = 58.33% */
}
.column-40 {
  grid-column: span 5; /* 5/12 = 41.66% */
}

/* Two-column layout: 50% and 50% */
.column-50 {
  grid-column: span 6; /* 6/12 = 50% */
}

.image-grid-content {
  position: absolute;
  top: 20px;
  left: 20px;
  padding: 10px;
  width: 60%;
  border-radius: 5px;
}

/* Responsive styles for mobile screens */
@media (max-width: 768px) {
  .image-grid {
    display: flex;
    flex-direction: column; /* Stack items vertically */
    gap: 20px; /* Maintain spacing between items */
    padding: 20px; /* Reduce padding for smaller screens */
  }

  .image-item {
    height: 500px; /* Reduce height for smaller screens */
  }

  .image-grid-content {
    position: absolute;
    top: 20px;
    left: 20px;
    padding: 10px;
    width: 80%;
    border-radius: 5px;
  }

}

/* Core Values Section */
.core-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* Three equal columns */
  gap: 20px; /* Space between columns */
  padding-top: 100px;
  padding-bottom: 100px;
  padding-right: 100px;
  padding-left: 100px;
  text-align: center;
  background-color: #F5F5F5;
}

.value-item {
  background: white;
  border: 1px solid #ddd;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.value-item:hover {
  transform: translateY(-10px); /* Slight lift effect on hover */
}

.icon {
  font-size: 48px; /* Large icon size */
  margin-bottom: 15px;
  color: #4caf50; /* Accent color for the icon */
}


/* Responsive styles for mobile */
@media (max-width: 768px) {
  .core-values {
    grid-template-columns: 1fr; /* Single-column layout for mobile */
    padding: 20px; /* Adjust padding for smaller screens */
  }
}



.team-section{
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.team{
  width: 80%;
  height: auto;
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: center;
}
.team-area{
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  flex-direction: row;
}
.single-team{
  width: 23%;
  height: 350px;
  overflow: hidden;
  position: relative;
  margin: 1%;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, 
              rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;
}

.single-team::after{
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  transition: all 0.3s ease;
  opacity: 0;
}
.single-team:hover:after{
  position: absolute;
  content: '';     
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;   
  opacity: 1;
  transform: translateY(0);
  background: linear-gradient(45deg, #02415B 20%, rgba(0, 108, 255, 0));
  z-index: 2;
}
.single-team img{
  height: auto;
  transition: all 0.5s ease;
  width: 100%;
  height: auto;
  object-fit: cover;
  min-height: 100%;    
}
.single-team:hover img{
  transform: scale(1.3) translate(5%, 5%);
}
.single-team .info {
  overflow: hidden;
transform: translateX(-110%);
transition: all 0.5s ease;
position: absolute;
left: 5%;
right: 5%;
bottom: 5%;
padding: 5px 15px;
border-left: 3px solid #ffffff;
border-radius: 15px 0 0 15px;
color: #ffffff;
z-index: 3;
opacity: 0;

}
.single-team:hover .info{
  opacity: 1;
  transform: translateX(0);
}

.info h3, 
.info p{
  transition: all 0.7s ease;
  transform: translateX(-100%);   
  overflow: hidden;
}
.single-team:hover .info h3, 
.single-team:hover .info p{
  transform: translateX(0);
}

@media (max-width: 768px) {
  .single-team {
    width: 48%; /* Two items per row on tablets */
    margin: 1%;
  }
}

@media (max-width: 480px) {
  .single-team {
    width: 100%; /* One item per row on mobile */
    margin: 10px 0;
  }
}


/* Expertise Section */
.expertise-section {
  width: 100%;
  padding: 50px 20px;
  background-color: #f9f9f9;
}

.expertise-section-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  max-width: 1200px;
  margin: auto;
}

.expertise-section-left-column {
  flex: 1; /* Left column takes 50% */
  padding: 20px;
}

.expertise-section-left-column h1 {
  margin-bottom: 20px;
  
}

.expertise-section-left-column p {
  
  line-height: 1.8;
 
}

.expertise-section-right-column {
  flex: 1; /* Right column takes 50% */
  text-align: center;
}

.expertise-section-right-column img {
  width: 100%;
  max-width: 100%;
  border-radius: 8px;
  transition: transform 0.3s ease, box-shadow 0.3s ease; /* Smooth animation */
}

.expertise-section-right-column img:hover {
  transform: scale(1.1); /* Slight zoom effect */
  
}


/* Responsive Design */
@media (max-width: 768px) {
  .expertise-section-container {
    flex-direction: column; /* Stack columns vertically */
    text-align: center;
  }
  
  .h1, h1{
      font-size: 2rem !important;
  }

  .expertise-section-left-column {
    padding: 10px;
  }

  .expertise-section-right-column img {
    max-width: 80%; /* Smaller image size on mobile */
  }
}


@keyframes logos {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}

.logos {
  overflow: hidden; /* Hide overflow to display sliding effect */
  padding: 60px 0;
  background: white;
  position: relative;
  white-space: nowrap; /* Prevent images from wrapping to a new line */
  
  
}

.logos:before,
.logos:after {
  position: absolute;
  top: 0;
  width: 250px;
  height: 100%;
  content: "";
  z-index: 2;
}

.logos:before {
  left: 0;
  background: linear-gradient(to left, rgba(255, 255, 255, 0), white);
}

.logos:after {
  right: 0;
  background: linear-gradient(to right, rgba(255, 255, 255, 0), white);
}

.logos:hover .logos-slide {
  animation-play-state: paused; /* Pause animation on hover */
}

.logos-slide {
  display: inline-flex; /* Align images in a single row */
  animation: logos 15s linear infinite; /* Continuous sliding animation */
}

.logos-slide img {
  height: 50px; /* Adjust the height of logos */
  margin: 0 40px; /* Add space between logos */
}


.faq-container {
  width: 100%;
  max-width: 80%;
  margin: 0 auto;
 
  
}

.faq-item {
  border-bottom: 2px solid #00587C;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px;
  cursor: pointer;
  background-color: #fff;
  transition: background-color 0.3s ease;
}

.faq-question:hover {
  background-color: #f5f5f5;
}

.faq-question h3 {
    font-size:30px;
  margin: 0;
  
}

.faq-icon {
  font-size: 20px;
  font-weight: bold;
  transition: transform 0.3s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  font-size:25px;
  padding: 0 15px;
  background-color: #f5f5f5;
  color: #333;
  transition: max-height 0.5s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 200px; /* Adjust as needed for content size */
  padding: 15px;
}

.faq-item.active .faq-icon {
  content: url('plus-circle.png'); /* Change image source to "X" icon */
}

.faq-item.active .faq-question {
  background-color: #f5f5f5;
}

.contact-address-section {
  display: flex;
  justify-content: space-between;
  gap: 15%;
  background-color: #f5f5f5;
  padding: 50px;
}

.contact-address-column {
  flex: 1;
  padding: 20px;
  border-radius: 8px;
  
}

.contact-address-column h1, .contact-address-column h4 {
  margin: 10px 0;
  color: #000000;
}

.contact-address-column p {
  color: #000000;
}

.contact-address-column a {
  color: #02415B;
  text-decoration: none;
}

.contact-address-column a:hover {
  text-decoration: underline;
  color: #E68600;

}


/* Mobile Responsiveness */
@media (max-width: 768px) {
  .contact-address-section {
      display: block;  /* Stack columns vertically */
  }

  .contact-address-column {
      width: 100%;  /* Each column takes full width */
      padding: 15px;  /* Adjust padding for better spacing */
      margin-bottom: 20px;  /* Adds space between stacked columns */
  }
}

.box-newsletter-section {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  background-color: #005779;
  padding: 10%;
}

.box-newsletter-column {
  flex: 1;
  padding: 20px;
  border-radius: 8px;
}

.box-newsletter-column h1 {
  margin-bottom: 10px;
}

.box-newsletter-column form {
  display: flex;
  flex-direction: row;  /* Align items horizontally */
  gap: 10px;  /* Space between input and button */
  justify-content: center;  /* Center items horizontally */
  align-items: center;  /* Align items vertically in the center */
  margin-top: 10%;
}


.box-newsletter-column input {
  padding: 10px;
  font-size: 16px;
  border-radius: 5px;
  flex-grow: 1;  /* Makes the input take available space */
  margin-bottom: 0;  /* No bottom margin since it's now in a row */
}

.box-newsletter-column button {
  padding: 10px;
  font-size: 16px;
  background-color: #E68600;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  margin-top: 0;  /* Remove any top margin */
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .box-newsletter-section {
    flex-direction: column;  /* Stack columns on mobile screens */
  }

  .box-newsletter-column {
    width: 100%;  /* Each column takes full width */
    padding: 15px;
    margin-bottom: 20px;  /* Space between stacked columns */
  }

  .box-newsletter-column form {
    flex-direction: column;  /* Stack input and button vertically on mobile */
  }
}

#mobile-version-service {
  padding: 80px;
}
/* Mobile responsiveness */
@media (max-width: 768px) {
  #mobile-version-service {
    text-align:justify;
    padding: 20px;              /* Apply 20px padding */
  }
}


.breadcrumb-container {
  width: 100%;
}

.breadcrumb-list {
  list-style: none;  /* Remove default list bullets */
  padding: 0;
  margin: 0 05%;
  display: flex;
  align-items: center;
  justify-content: flex-start;  /* Align breadcrumbs to the left */
}

.breadcrumb-list li {
  margin-top: 10px;
  margin-right: 10px;  /* Space between breadcrumb items */
  font-size: 20px;
  font-weight: 700;
}

.breadcrumb-list li a {
  text-decoration: none;  /* Remove underline from links */
  color: #005779;  /* Breadcrumb link color */
}

.breadcrumb-list li a:hover {
  color: #E68600;
}

.breadcrumb-list li::after {
  content: '>';  /* Add separator between breadcrumb items */
  margin-left: 10px;  /* Space after the separator */
}

.breadcrumb-list li:last-child::after {
  content: '';  /* Remove separator after the last item */
}


.image-newsletter-section {
  background-image: url('1.png'); /* Replace with your image URL */
  background-size: cover;
  background-position: center;
  padding: 180px 0; /* Adjust padding as needed */
  width: 95%;
}

.image-newsletter-wrapper {
  width: 70%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.image-newsletter-title {
  flex: 1;
  padding-right: 20px;
}

.image-newsletter-form {
  flex: 1;
  padding-left: 20px;
}

.image-newsletter-form form {
  display: flex;
  flex-direction: column;
}

.image-newsletter-form input[type="email"] {
  padding: 10px;
  margin: 10px 0;
  width: 100%;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.image-newsletter-form button {
  padding: 10px;
  background-color: #E68600;
  color: #fff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}






/* Mobile version (For screens ≤ 767px) */
@media screen and (max-width: 767px) {
    .left-column {
        display: none; /* Hide the left column on mobile */
    }

    .right-column {
        width: 100%; /* Make the right column take full width */
        text-align: center;
    }
}


@media screen and (min-width: 0px) and (max-width: 768px) {
    .right-column h1 {
        font-size: 25px !important; /* Adjust font size for mobile */
        
        width:100% !important;
    }
    
}




.font-weight-600 {
    font-weight: 300;
}


/* Media Query for Devices between 480px and 768px */
@media (max-width: 768px) {
    .form-column input,
    .form-column textarea {
        width: 100%; /* Adjust width for mid-sized screens */
        padding: 12px; /* Adjust padding for better spacing */
        margin-bottom: 15px; /* Adjust space between fields */
    }
}


/* Mobile version (0 to 768px) */
@media (max-width: 768px) {
  h1.section-heading {
    font-size: 2rem; /* Adjust font size for mobile */
   
  }
  
}


/* Mobile Version (0 to 768px) */
@media (max-width: 768px) {

.faq-question h3 {
    font-size:24px;
  
}

.faq-answer {
  font-size:18px;
}
}


/* Class for active menu item */
.active-menu {
    color: #E68600!important;
}

/* Kavitha */

/* Existing styles for header */
#header {
  width: 100%;
  height: 100px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  z-index:99;
  box-shadow: 0 0 10px #000;
  background: white;
}

#chk1 {
  display: none;
}

i {
  color: #02415B;
  cursor: pointer;
}
#header .logo {
  flex: 1;
  color: #fff;
  margin-left: 50px;
  text-transform: uppercase;
  font-size: 15px;
}
#header ul {
  flex: 2;
  display: flex;
  justify-content: space-evenly;
}
#header ul li {
  list-style: none;
}
#header ul li a {
  text-decoration: none;
  color: #02415B;
  font-weight: 600;
  text-transform: uppercase;
  padding: 10px 15px;
}
#header ul li a:hover {
  color: #E68600;
}
#header .menu {
  font-size: 2.5em;
  display: none;
}

/* Dropdown menu styles */
#header ul li.dropdown {
  position: relative;
}

#header ul li .dropdown-menu {
  display: none;
  position: absolute;
  top: 133%; /* Align below the parent item */
  left: 10px;
  background: white;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  list-style: none;
  padding: 0;
  margin: 0;
  z-index: 10;
  /* width: 550px; */
}
#header ul li .dropdown-menu1 {
  display: block;
  position: absolute;
  background: white;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  list-style: none;
  padding: 0;
  margin: 0;
  z-index: 10;
  width: 350px;
}

.dropdown:hover .dropdown-menu {
  display: block;
}
/* Style for nested dropdown */
.nested-dropdown {
  left: 100%;
  top: 0;
}

/* Adjust positioning for nested dropdown */
.dropdown .dropdown-menu .dropdown:hover > .nested-dropdown {
  display: block;
}

#header ul li .dropdown-menu li {
  width: 100%;
}

#header ul li .dropdown-menu li a {
  display: block;
  padding: 10px 15px;
  color: #02415B;
  text-decoration: none;
  text-transform: none;
  font-weight: normal;
}

#header ul li .dropdown-menu li a:hover {
  background: #E68600;
  color: white;
}

/* Show dropdown on hover (desktop) */
#header ul li.dropdown:hover .dropdown-menu {
  display: block;
}

/* Mobile styles */
@media (max-width: 1000px) {
  #header ul {
      position: fixed;
      top: 0;
      right: -100%;
      background: white;
      height: 100%;
      width: 80%;
      flex-direction: column;
      align-items: center;
      transition: right 0.5s linear;
      padding-top: 20px;
  }

  #header ul li.close-menu {
      position: absolute;
      top: 10px;
      left: 10px;
      width: auto;
  }

  #header ul li.close-menu i {
      font-size: 1.5em;
      color: #02415B;
      cursor: pointer;
  }

  #header ul li {
      margin: 10px 0;
  }

  #header ul li a {
      padding: 10px 15px;
      text-align: left;
      width: 60%;
  }

  #header ul li.dropdown .dropdown-menu {
      position: static;
      width: 100%;
      max-height: 300px; /* Limit height for scrollable area */
      overflow-y: auto; /* Enable vertical scrolling */
      box-shadow: none;
  }

  #header ul li .dropdown-menu li a {
      padding: 10px;
  }

  #header .menu {
      display: block;
      text-align: center;
  }

  #chk1:checked ~ ul {
      right: 0;
  }

  /* Dropdown icon */
  #header ul li.dropdown .dropdown-icon {
      display: block;
      font-size: 0.8em;
      color: #E68600!important;
      cursor: pointer;
      position: absolute;
      right: -15px;
      top: 50%;
      transform: translateY(-50%);
  }

  #header ul li .dropdown-menu {
      display: none;
  }

  #header ul li.dropdown.active .dropdown-menu {
      color:#E68600;
      display: block; /* Show dropdown when active */
  }
}

/* Scrollbar styling (optional for better UI) */
#header ul li.dropdown .dropdown-menu::-webkit-scrollbar {
  width: 6px;
}

#header ul li.dropdown .dropdown-menu::-webkit-scrollbar-thumb {
  background: #02415B;
  border-radius: 3px;
}

#header ul li.dropdown .dropdown-menu::-webkit-scrollbar-track {
  background: #f1f1f1;
}

/* Hide close menu for larger screens */
@media (min-width: 1001px) {
  #header ul li.close-menu {
      display: none;
  }
}

/* Large screens - Two columns on hover */
@media (min-width: 1001px) {
  #header ul li.dropdown:hover .dropdown-menu {
      /* display: grid; */
      grid-template-columns: repeat(3, 1fr); /* Create three equal columns */
      gap: 10px; /* Space between the columns */
  }

  #header ul li .dropdown-menu {
      display: none; /* Keep dropdown hidden by default */
  }

  #header ul li .dropdown-menu li {
      width: auto; /* Let the list items take up the grid space */
  }
  
}
#header ul li.dropdown:hover .dropdown-icon,
#header ul li.dropdown:focus .dropdown-icon {
display: none; /* Hide the dropdown icon when the menu is active */
}
/* Class for active menu item */
.active-menu {
  color: #E68600;
}
@media (min-width: 1001px) {
  .dropdown-icon {
      display: none;
  }
}
@media (max-width: 768px) {
  .contact-section {
      display: block;  /* Remove display: flex and use block */
      
      
  }
  .contact-form {
  width: 100%;
  max-width: 100%;
  padding: 20px;
  border-radius: 8px;
  margin-left: auto;
  margin-right: auto;

}
}
@media (max-width: 768px) {
  .Button1, .mobile-ban{
    display: block;
  }
  .Button2, .desktop-ban
  {
    display:none;
  }
  /* #menu ul.menus .has-submenu:hover .submenu {
    display: none;
  }
  #menu ul.menus a:hover {
    background: #E68600;
    color:#FFFFFF;
    width: 100%;
    height: auto;
    display:none;
  }
  #header ul li .dropdown-menu li a,.dropdown-menu li a:hover{
    display:none!important;
  } */
}
@media (min-width: 769px) {
  .Button1, .mobile-ban{
    display: none;
  }
  .Button2, .desktop-ban{
    display:block;
  }

  
}

#menu ul.menus {
  height: auto;
  width: 180px;
  position: absolute;
  z-index: 99;
  display: none;
  border-bottom: 1px solid #E68600;
  background: white;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  list-style: none;
  padding: 0;
  margin: 0;
}

#menu ul.menus li {
  display: block;
  width: 100%;
  font: 12px Arial;
  text-transform: none;
  padding:10px;
}

#menu li:hover ul.menus {
  display: block
}

#menu a.home {
  background: #c00;
}

#menu a.prett {
  padding: 0 27px 0 14px
}

#menu a.prett::after {
  content: "";
  width: 0;
  height: 0;
  border-width: 6px 5px;
  border-style: solid;
  border-color: #E68600 transparent transparent transparent;
  position: absolute;
  top: 10px;
  right: 9px;
  }



#menu ul.menus .submenu {
  display: none;
  position: absolute;
  left: 180px;
  background: #FFFFFF;
  top: 0;
  width: 180px;
  border-left:5px solid #e28a0e1e;
}

#menu ul.menus .submenu li {
  background: #FFFFFF;
}

