
/* 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  !important; 
  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 !important; /* 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/About\ Us\ hero.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 */
  }
}
/*Certification*/
/* Styling for the certification cards */
.certification-card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
  overflow: hidden;
  text-align: center;
  padding: 20px;
}

.certification-card img {
  max-width: 100%;
  border-radius: 5px;
  transition: transform 0.3s ease-in-out;
}

.certification-card h5 {
  margin-top: 15px;
  color: #333;
}

.certification-card p {
  color: #666;
}

/* Hover effects */
.certification-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

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

/* Animation for the section */
#certifications {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

#certifications.visible {
  opacity: 1;
  transform: translateY(0);
}

.btn-primary{
  background-color: #10375C;
  border: #10375C;
}
.btn-primary:hover{
  background-color: #ffffff;
  border: 2px solid #10375C;
  color: #10375C;
}

.img-fluid {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

.bg-light {
          display: flex;
          align-items: center;
          justify-content: center;
          text-align: center;
      }
      .section-padding {
        padding: 60px 0;
    }
    .img-fullwidth {
        position: relative;
        width: 100vw;
        left: 50%;
        margin-left: -50vw;
    }
    .img-fullwidth img {
        width: 100%;
        height: auto;
    }

    body {
      overflow-x: hidden; /* Prevent horizontal overflow */
    }
    
    .container {
      overflow-y: hidden; /* Prevent vertical overflow */
    }
    .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;
    }