/* Navbar Styles */
/* Main navbar styles */
.navbar {
    position: absolute;
    width: 100%;
    z-index: 10;
  }
  
  /* Navbar Links */
  .navbar-nav .nav-link {
    color: white !important;
  }
  .navbar-nav .nav-link:hover {
    opacity: 0.8;
  }
  
  /* Mobile Navbar Toggler */
  .navbar-toggler {
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: none;
    border-radius: 8px;
  }
  .navbar-toggler-icon {
    filter: brightness(0) invert(1);
  }
  
  /* Sidebar Navigation */
  .sidenav {
    height: 100%;
    width: 0;
    position: fixed;
    top: 0;
    right: 0;
    background-color: #f38230;
    overflow-x: hidden;
    transition: 0.3s;
    padding-top: 60px;
    text-align: right;
    z-index: 1001;
  }
  .sidenav a {
    padding: 10px 30px;
    text-decoration: none;
    font-size: 24px;
    color: white;
    display: block;
    transition: 0.3s;
  }
  .sidenav a:hover {
    opacity: 0.7;
  }
  
  /* Close Button */
  .close-btn {
    position: absolute;
    top: 10px;
    right: 25px;
    font-size: 36px;
    color: white;
    background: none;
    border: none;
    cursor: pointer;
  }
  
  /* Overlay */
  #overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
  }
  
  /* Carousel Styles */
  .carousel-item {
    height: 100vh;
    position: relative;
  }
  .carousel-item img {
    object-fit: cover;
    height: 100%;
    width: 100%;
  }
  /* Dark overlay */
  .carousel-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
  }
  /* Text styles */
  .overlay-text,
  .bottom-left-text {
    position: absolute;
    color: white;
    z-index: 2;
    font-family: "Recoleta", sans-serif;
  }
  .overlay-text {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 3rem;
    font-weight: bold;
    text-align: center;
  }
  .bottom-left-text {
    bottom: 20px;
    left: 20px;
    font-size: 1.2rem;
  }
  /* Custom Carousel Indicators */
  .carousel-indicators {
    bottom: 20px;
    right: -10px;
    left: auto;
    display: flex;
    justify-content: flex-end;
    gap: 8px;
  }
  
  /* Custom Style for Indicators */
  .carousel-indicators button {
    width: 15px !important;
    height: 15px !important;
    border-radius: 50%;
    border: 2px solid white !important;
    background-color: transparent !important;
    border: none;
    transition: background-color 0.3s ease, transform 0.3s ease;
  }
  
  /* Active Indicator */
  .carousel-indicators .active {
    background-color: white !important;
    transform: scale(1.3);
    border: none !important;
  }
  
  @media (max-width: 425px) {
    .bottom-left-text {
      margin-bottom: 20px !important;
    }
  }
  
  /*1st hero section*/
  .geo-section {
    padding: 50px 0;
  }
  
  .geo-text {
    padding-right: 30px;
  }
  
  .geo-icon {
    color: #f38230;
    font-size: 40px;
  }
  
  .geo-title {
    font-size: 2rem;
  
    font-family: "Recoleta", sans-serif;
  }
  
  .geo-description {
    font-size: 1rem;
    font-weight: 300;
    font-family: "poppins", sans-serif;
    color: #555;
  }
  
  .geo-link {
    color: #f38230;
    font-family: "Recoleta", sans-serif;
    font-size: 21px;
    font-weight: 500;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
  }
  .geo-link i {
    margin-left: 5px; /* Initial small space */
    transition: margin-left 0.3s ease;
  }
  .geo-link:hover i {
    margin-left: 11px; /* Moves slightly to the right */
    color: #eb6b0f;
  }
  
  .geo-image img {
    width: 100%;
    height: auto;
  }
  
  /*image gallery*/
  @media (max-width: 768px) {
    .colrow {
      flex-direction: column !important;
    }
  }
  /* Grid Layout */
  .col1 {
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
    font-family: "Recoleta", sans-serif;
  }
  
  .colrow {
    display: flex;
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
  }
  
  /* Image Container */
  .image-container {
    position: relative;
    max-width: 350px;
    margin: 10px;
    overflow: hidden;
  }
  
  /* Image Styling */
  .image-container img {
    width: 100%;
    display: block;
    transition: transform 0.3s ease-in-out;
  }
  
  /* Overlay (Hidden by Default) */
  .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Semi-transparent dark overlay */
    color: white;
    font-size: 1.5rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
  }
  
  /* Hover Effect */
  .image-container:hover .overlay {
    opacity: 1;
    cursor: pointer;
  }
  
  .image-container:hover img {
    transform: scale(1.05); /* Slight zoom effect */
  }
  
  /*Person Role*/
  .team-card {
    margin-bottom: 20px;
  }
  .team-card img {
    width: 100%;
    height: 350px;
    object-fit: cover;
  }
  .team-card h5 {
    margin-top: 10px;
    font-weight: 300;
    font-family: "Futura Md BT Medium", sans-serif;
  }
  .team-card p {
    color: gray;
    font-family: "Futura Md BT Medium", sans-serif;
    font-size: 13px;
  }
  .btn-custom {
    background-color: #f38230;
    color: white;
    border: none;
    border-radius: 0px;
    padding: 15px 20px;
    transition: 0.4s;
    font-family: "Futura Md BT Medium", sans-serif;
  }
  .btn-custom:hover {
    background-color: #eb6b0f;
    color: white;
    transition: 0.4s;
  }
  .btn-custom:active {
    background-color: #f38230 !important;
    color: white !important;
  }
  
  /*Our partners*/
  .partner-logo {
    width: 120px; /* Default size */
    height: 100%;
    filter: grayscale(100%); /* Optional: Make logos grayscale */
  }
  
  @media (max-width: 576px) {
    .partner-logo {
      width: 80px;
    }
  }
  
  /*Footer*/
  .footer {
    font-family: "Futura Md BT Medium", sans-serif;
    background-color: #a44a08;
    color: white;
    padding: 40px 0;
    overflow-x: hidden;
  }
  .footer h5 {
    letter-spacing: 2px;
    margin-bottom: 15px;
  }
  .footer a {
    color: white;
    text-decoration: none;
    display: block;
    margin-bottom: 5px;
    font-size: 16px;
  }
  .footer a:hover {
    color: #e3e3e3;
  }
  .copyright {
    background-color: #fff;
    color: black;
    padding: 25px 0;
    text-align: center;
    font-family: "Recoleta", sans-serif;
  }
  
  /*ABOUT US PAGE*/
  
  .maps {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 100px;
    padding-bottom: 100px;
    gap: 20px;
  }
  
  .text-sections {
    max-width: 40%;
  }
  
  .map-section {
    width: 55%;
  }
  
  .map-container {
    position: relative;
    width: 100%;
    max-width: 800px;
    height: 450px;
    overflow: hidden;
    border-radius: 10px;
  }
  
  .map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
  }
  
  /* Responsive Design */
  @media (max-width: 1024px) {
    .text-sections {
      max-width: 50%;
    }
    .map-section {
      width: 50%;
    }
  }
  
  @media (max-width: 768px) {
    .maps {
      flex-direction: column;
      align-items: start;
    }
  
    .text-sections,
    .map-section {
      width: 100%;
      max-width: 100%;
    }
  
    .map-container {
      max-width: 100%;
      height: 300px;
    }
  }
  
  @media (max-width: 480px) {
    .map-container {
      height: 250px;
    }
  }
  
  /*ABOUT US PAGE*/
  .mapss {
    display: flex;
    align-items: center;
    flex-direction: column;
    padding-top: 100px;
    text-align: center;
  }
  
  /*PRODUCTS PAGE*/
  .product-item {
    margin-bottom: 20px;
  }
  .product-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
  }
  .product-name {
    margin-top: 10px;
    font-weight: 300;
    font-family: "Futura Md BT Medium", sans-serif;
  }
  
  /*CONTACT PAGE*/
  .contact-container {
    font-family: "Futura Md BT Medium", sans-serif;
    padding-top: 100px;
    padding-bottom: 100px;
  }
  .form-control {
    border-radius: 8px;
  }
  .inp {
    height: 50px;
  }
  