/* Global Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    color: #001E62;
  }
  
  .container-fluid {
    height: 100vh;
  }
  
  /* Modal Styles */
  .modal .logo {
    max-width: 150px;
    height: auto;
  }
  
  .modal .btn-primary {
    background-color: #FF8300;
    border-color: #FF8300;
  }
  
  .modal .btn-primary:hover {
    background-color: #e67600;
    border-color: #e67600;
  }
  
  /* Sidebar Styles */
  .sidebar {
    background-color: #FFFFFF;
    color: #707070;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  
  .sidebar .logo img {
    max-width: 100%;
    height: auto;
  }
  
  .sidebar .nav-link {
    color: #707070;
    text-decoration: none;
    font-size: 25px;
  }

  .sidebar ul.dropdown-menu .nav-link {
    font-size: 15px;
  }

  .dropdown-menu.show {
    display: block;
    width: 100%;
}
  
  .sidebar .nav-link:hover {
    color: #FF8300;
    text-decoration: underline;
  }
  
  .sidebar .bottom-icons a,
  .sidebar .social-media a {
    color: #FFFFFF;
    font-size: 20px;
  }
  
  .sidebar .bottom-icons a:hover,
  .sidebar .social-media a:hover {
    color: #FF8300;
  }
  
  /* Main Content Styles */
  .content {
    background-color: #F5F5F5;
    overflow-y: auto;
  }
  
  .content header {
    background-color: #FFFFFF;
  }
  
  .content .hero {
    height: calc(100vh - 58px);
    color: #FFFFFF;
    background-size: cover;
    background-position: center;
  }
  
  .content .hero .carousel-item {
    height: 100%;
    background-size: contain !important;
  }
  
  .content .hero .carousel-caption {
    left: 10%;
    right: 10%;
    bottom: 50%;
    transform: translateY(50%);
    text-align: left;
  }
  
  .content .hero .carousel-caption h1 {
    font-size: 48px;
    font-weight: bold;
  }
  
  .content .hero .carousel-caption h2 {
    font-size: 36px;
  }
  
  .content .hero .carousel-caption h3 {
    font-size: 24px;
    margin-bottom: 20px;
  }
  
  .content .hero .carousel-caption p {
    font-size: 18px;
    margin-bottom: 20px;
  }
  
  .content .hero .carousel-caption .btn-primary {
    background-color: #FF8300;
    border-color: #FF8300;
  }
  
  .content .hero .carousel-caption .btn-primary:hover {
    background-color: #e67600;
    border-color: #e67600;
  }
  
  .content section {
    padding: 50px 0;
  }
  
  .floating-contact {
    position: fixed;
    right: 7px;
    bottom: 7px;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  
  .floating-contact button {
    width: 50px;
    height: 50px;
    background-color: #FF8300;
    color: #FFFFFF;
    border: none;
    font-size: 24px;
    cursor: pointer;
  }
  
  .floating-contact button:hover {
    background-color: #e67600;
  }

  #middleBoxes img{
    transition: opacity 0.3s ease-in-out;
  }