/* Universal Colors */
:root {
    --primary: #183672; /* Deep Blue */
    --secondary: #27c2b2; /* Green */
    --base: #FFFFFF; /* White */
  }
  
  /* General Styles */
  body {
    font-family: 'Archivo', sans-serif;
    background-color: var(--base);
    color: #333;
  }
  
  h2 {
    color: var(--primary);
    font-weight: 600;
  }
  
  .bg-primary {
    background-color: var(--primary) !important;
  }
  
  .bg-secondary {
    background-color: var(--secondary) !important;
  }
  
  .text-primary {
    color: var(--primary) !important;
  }
  
  .text-success {
    color: var(--secondary) !important;
  }
  
  .border-primary {
    border-color: var(--primary) !important;
  }
  
  .border-success {
    border-color: var(--secondary) !important;
  }
  
  .btn-primary {
    background-color: var(--primary);
    border-color: var(--primary);
    transition: all 0.3s ease;
  }
  
  .btn-primary:hover {
    background-color: #002060;
    border-color: #002060;
    transform: scale(1.05);
  }
  
  .card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1) !important;
  }
  
  /* Slider Styles */
  #hero-slider .carousel-item {
    height: 500px;
    position: relative;
  }
  
  #hero-slider .carousel-item img {
    object-fit: cover;
    height: 100%;
    width: 100%;
  }
  
  #hero-slider .carousel-caption {
    background: rgba(0, 0, 0, 0.5);
    padding: 20px;
    border-radius: 10px;
  }
  
  #hero-slider .carousel-caption h1 {
    color: var(--base);
  }
  
  #hero-slider .carousel-caption p {
    color: #ddd;
  }
  
  /* Section Padding and Spacing */
  section {
    padding: 0px 0;
  }
  
  /* Contact Section Icons */
  #contact i {
    font-size: 1.2rem;
  }
  
  /* Animation Delay for Smooth Entry */
  .animate__animated {
    animation-duration: 1s;
  }

  /* Ensure the navbar has enough padding */
.navbar {
    padding: 1.5rem 0;
    transition: all 0.3s ease;
  }
  
  /* Center the logo and menu items */
  .navbar .navbar-brand {
    margin-bottom: 1rem;
  }
  
  /* Logo container and image */
  .logo-container {
    display: flex;
    justify-content: center;
  }
  
  .logo-img {
    height: 100px;
    max-height: 100px;
    transition: height 0.3s ease;
  }
  
  /* Logo and Toggler Wrapper */
  .logo-toggler-wrapper {
    position: relative;
  }
  
  /* Toggler Button Positioning */
  .toggler-right {
    right: 1rem;
    transition: opacity 0.3s ease, transform 0.3s ease;
  }
  
  /* Ensure toggler is hidden on desktop */
  @media (min-width: 992px) {
    .toggler-right {
      display: none;
    }
  }
  
  /* Menu items row styling */
  .navbar-nav {
    text-align: center;
  }
  
  /* Ensure menu items are spaced nicely */
  .navbar-nav .nav-item {
    margin: 0 1rem;
  }
  
  /* Smooth transition for navbar collapse */
  .navbar-collapse {
    transition: all 0.3s ease;
  }
  
  /* Responsive adjustments */
  
  /* Mobile View (≤576px) */
  @media (max-width: 576px) {
    .navbar {
      padding: 1rem 0;
    }
  
    .logo-img {
      height: 60px;
      max-height: 60px;
    }
  
    .navbar .navbar-brand {
      margin-bottom: 0.5rem;
    }
  
    .menu-items {
      flex-direction: column !important;
      gap: 1rem !important;
    }
  
    .navbar-nav .nav-item {
      margin: 0.5rem 0;
    }
  
    .navbar-nav .nav-link {
      font-size: 1rem;
      padding: 0.5rem 1rem;
    }
  
    .toggler-right {
      right: 0.5rem;
      transform: translateY(-50%);
      top: 50%;
    }
  }
  
  /* Tablet View (577px–991px) */
  @media (min-width: 577px) and (max-width: 991px) {
    .logo-img {
      height: 80px;
      max-height: 80px;
    }
  
    .navbar .navbar-brand {
      margin-bottom: 0.75rem;
    }
  
    .menu-items {
      flex-direction: row !important;
      gap: 1.5rem !important;
    }
  
    .navbar-nav .nav-item {
      margin: 0 0.75rem;
    }
  
    .navbar-nav .nav-link {
      font-size: 1.1rem;
      padding: 0.5rem 0.75rem;
    }
  
    .toggler-right {
      right: 0.75rem;
      transform: translateY(-50%);
      top: 50%;
    }
  }
  
  /* Desktop View (≥992px) */
  @media (min-width: 992px) {
    .logo-img {
      height: 100px;
      max-height: 100px;
    }
  
    .menu-items {
      flex-direction: row !important;
      gap: 3rem !important;
    }
  
    .navbar-nav .nav-item {
      margin: 0 1rem;
    }
  
    .navbar-nav .nav-link {
      font-size: 1.2rem;
      padding: 0.5rem 1rem;
    }
  }
  
  /* Hover effect for menu items */
  .navbar-nav .nav-link {
    transition: color 0.3s ease, transform 0.3s ease;
  }
  
  .navbar-nav .nav-link:hover {
    color: #ffffff;
    transform: scale(1.05);
  }
  
  /* Style the toggler icon for better visibility */
  .navbar-toggler {
    border: none;
    padding: 0.5rem;
  }
  
  .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 255, 255, 0.9)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
  }

  /* Section with full-height images */
.section-full-height {
    min-height: 600px; /* Define a minimum height for the section */
    padding: 0; /* Remove default padding to allow images to touch top/bottom */
    display: flex;
    align-items: stretch;
  }
  
  /* Ensure the container takes full height */
  .section-full-height .container {
    display: flex;
    align-items: stretch;
  }
  
  /* Ensure the row takes full height */
  .section-full-height .row {
    flex: 1;
  }
  
  /* Image column styling */
  .image-col {
    overflow: hidden; /* Prevent overflow if image aspect ratio causes issues */
    height: 100%; /* Ensure the column takes the full height of the row */
  }
  
  /* Full-height image styling */
  .full-height-img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensure the image covers the full height without distortion */
    object-position: center; /* Center the image */
  }
  
  /* Responsive adjustments */
  
  /* Mobile View (≤576px) */
  @media (max-width: 576px) {
    .section-full-height {
      min-height: 400px; /* Reduce height for mobile */
    }
  
    .image-col {
      height: 300px; /* Fixed height for the image on mobile to avoid excessive stretching */
    }
  
    .full-height-img {
      height: 100%;
    }
  }
  
  /* Tablet View (577px–991px) */
  @media (min-width: 577px) and (max-width: 991px) {
    .section-full-height {
      min-height: 500px; /* Adjust height for tablet */
    }
  
    .image-col {
      height: 100%; /* Full height for tablet */
    }
  }
  
  /* Desktop View (≥992px) */
  @media (min-width: 992px) {
    .section-full-height {
      min-height: 300px; /* Maintain height for desktop */
    }
  }
  
  /* Ensure text column has proper padding */
  .py-md-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  
  @media (max-width: 576px) {
    .py-md-5 {
      padding-top: 1.5rem !important;
      padding-bottom: 1.5rem !important;
    }
  }