* { margin: 0; padding: 0; box-sizing: border-box; }
body, html {
  height: 100%; font-family: Arial, sans-serif;
  background: #020077; color: white;
}
.hero {
  position: relative; height: 100vh; overflow: hidden;
  margin: 0% auto; display: flex;
  align-items: center; justify-content: center;
}
video {
  position: absolute; top: 0; left: 0;
  width: 100%; height: 100%; object-fit: cover;
  z-index: 0;
}
.overlay {
  position: absolute; top: 0; left: 0;
  width: 100%; height: 100%; background: rgba(0, 0, 0, 0.6);
  z-index: 1;
}
.whatsapp-button {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: #25D366;
  box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  transition: box-shadow 0.3s ease-in-out;
}

.whatsapp-button img {
  width: 32px;
  height: 32px;
  transform: scale(1.8) translateZ(-2px);
}

.whatsapp-button:hover {
  animation: pulse-ring 0.7s infinite;
}
@keyframes pulse-ring {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  }
  70% {
    box-shadow: 0 0 0 30px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

.content {
  position: relative; 
  z-index: 2; height: 100%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center; padding: 1rem;
}
.homelogo{
  width: 200px; height: auto;
  margin-bottom: 1rem; opacity: 0;
  transition: opacity 2s ease;
}

.title {
  font-size: 3rem; font-weight: bold;
  margin-bottom: 1rem; text-decoration: none;
  color: white;
  opacity: 0;
  animation: fadeIn 5s ease-out forwards;
  transition: 5s ease;
}

.title:hover {
  transform: scale(2);
  transition: 0.9s ease;
 }

@keyframes fadeIn {
  from{ opacity: 0; transform: scale(0);}
}
to{ opacity: 1; transform: scale(1);}

.title.visible { opacity: 1; }



.button {
  padding: 0.75rem 2rem;
  background: transparent; border: 2px solid cyan;
  border-radius: 25px; color: cyan;
  font-size: 1rem; cursor: pointer;
  transform: translateY(100px);
  opacity: 0;
  transition: transform 2s ease, opacity 2s ease;
}
.button:hover{
  color: white;
  transition: 0.9s ease;
  border-color: white;
  background-color: #e44100 ;
}

.button.visible {
  transform: translateY(0);
  opacity: 1;
}
.dropdown {
  position: relative;
  display: inline-block;
  cursor: pointer;
  text-decoration: none;
}
.dropdown:hover{
  color:#e44100
}
.menu {
  position: fixed;
  top: 50%; right: 3rem;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  z-index: 3;
  transition: transform 2s ease;
  text-decoration: none;
}
/* Menu Item */
.menu-item {
  left:0;
  border-bottom: 1px solid transparent;

}

/* Menu Link */
.menu-link {
  left: 0;
  display: block;
  padding: 20px 10px;
  background-color: transparent;
  color: #fff;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.menu-link:hover {
  
  color: orange;
  border: 1px solid cyan; /* Adjust border thickness and color as needed */
  border-radius: 14px; /* Adjust the radius to control corner roundness */
 
  
}

/* Dropdown Content */
.dropdown-content {

  max-height: 0;
  overflow: hidden;
  background-color: transparent;
  transition: max-height 4.5s ease, visibility 0.3s ease;
  position:relative;
  left: 30px;
  right: 20px;
  border-radius: 14px;
  
}

.menu-item:hover .dropdown-content {
  max-height: 500px; /* Adjust as needed */
}

/* Dropdown Links */
.dropdown-content a {
  display: block;
  padding: 10px 20px;
  color: white;
  text-decoration: none;
  
  transition: background-color 0.3s ease;
}

.dropdown-content a:hover {
  color: orange;
  border: 0.5px solid #e44100;
  border-radius: 14px;;
}



@media (max-width: 768px) {
  .menu {
    top: 10%; right: 10px;
    transform: translateY(0);
    align-items: left;
  }
  .menu-item {
    margin-bottom: 10px;
  }

}



  .menu-title {
    background: none;
    border: none;
    color: #ffffff;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    margin-bottom: 10px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .toggle-icon {
    font-size: 24px;
    transition: transform 0.3s;
  }

  /* Smooth dropdown animation with transition */
  .menu-list {
    list-style: none;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    margin-top: 0;
    transition: max-height 0.4s ease, opacity 0.4s ease;
  }



    .header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 10px 20px;
        background-color: #ffffff;
        box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
        width: 100%;
        position: fixed;
        top: 0;  /* Initially visible */
        left: 0;
        z-index: 1000;
        transition: top 0.3s ease-in-out; /* Smooth transition */
    }
    
    
    /* Header Styling */
    .header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 10px 20px;
        background-color: white;
        box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
        width: 100%;
        position: fixed;
        top: 0;  /* Initially visible */
        left: 0;
        z-index: 1000;
        transition: top 0.3s ease-in-out; /* Smooth transition */
    }
    
    /* Logo Container */
    .logo-container {
        display: flex;
        align-items: center;
        gap: 15px;
    }
    
    .logo-container img {
        height: 40px;
        width: auto;
    }
    
    /* Hide all logos by default on mobile */
    .logo-container img {
        display: fixed;
    }
    
    
      

    
    /* Hamburger Menu */
    .menu-icon {
        display: inline-block;
        font-size: 24px;
        cursor: pointer;
    }
    .bar1, .bar2, .bar3 {
        width: 35px;
        height: 5px;
        background-color: #333;
        margin: 6px 0;
        transition: 0.4s;
      }
      
      .change .bar1 {
        transform: translate(0, 11px) rotate(-45deg);
      }
      
      .change .bar2 {opacity: 0;}
      
      .change .bar3 {
        transform: translate(0, -11px) rotate(45deg);
      }
    
    /* Show all logos on larger screens */
    @media (min-width: 768px) {
        .logo-container img {
            display: block;
        }
    }
    
    /* Full-screen Dropdown Menu */
    .menu-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: white(0, 0, 0, 0.9);
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
        z-index: 2;
    }
    
    .menu-overlay.active {
        opacity: 1;
        visibility: visible;
        background-color: #020077;
    }
    
    .menu-overlay a {
        color: white;
        font-size: 24px;
        text-decoration: none;
        margin: 15px 0;
        transition: color 0.3s;
    }
    
    .menu-overlay a:hover {
        color: #1e90ff;
    }
    
    /* Close Button */
    .close-menu {
        position: absolute;
        top: 20px;
        right: 30px;
        font-size: 30px;
        color: white;
        cursor: pointer;
    }
    



      /**********************************************************************************************************************
      
      ABOUT.HTML

      **********************************************************************************************************************/
      /* Create three equal columns that floats next to each other */
      .columnleft {
        float: left;
        width: 15%;
        padding: 15px;
        margin-top: 60px;
        background-color: #020077;
        color: white;
      }
      .columncenter {
        float: center;
        width: 50%;
        padding: 15px;
        margin-top: 60px;
        background-color: #020077;
        color: white;
        text-align: center;
      }
      .columnright {
        float: left;
        width: 15%;
        padding: 15px;
        margin-top: 60px;
        background-color: #020077;
        color: white;
      }
      
      /* Responsive layout - makes the three columns stack on top of each other instead of next to each other */
      @media screen and (max-width:600px) {
        .columnleft, .columncenter, .columnright {
          width: 100%;
        }
      }

@media screen and (max-width: 900px) {
  .columnleft, .columnright {display: none;}

}


     

      .leftadv {
        position: absolute;
        justify-content: left;
        padding: 5px;
        display: inline-block;
        max-width: 100%;
        top: 5%;
        left: 0px;
        margin-top: 30px;
        transform: translateY(-50%);
        width: 400px; /* Adjust as needed */
        height: fit-content;
        z-index: 2; /* Ensure it appears above other content */
        
      }

      .leftadv video {
        width: 100%;
        height: 800px;
        border-radius: 14px;
        display: block;
      }
      .rightadv {
        position: absolute;
        justify-content: left;
        padding: 5px;
        display: inline-block;
        max-width: 100%;
        top: 6%;
        right: 0px;
        margin-top: 30px;
        transform: translateY(-50%);
        width: 290px; /* Adjust as needed */
        height: fit-content;
        z-index: 2; /* Ensure it appears above other content */
      }
      .rightadv video {
        width: 100%;
        height: 400px;
        border-radius: 14px;
        display: block;
      }

      @media screen and (max-width: 1800px) {
        .rightadv {
            display: none; 
        }
        .leftadv {
            display: none; 
        }
      }

      /***********************************************************************************************************************/
      /*************************************************SLIDE SHOW BUSINESS PARTNERS LOGO ************************************/
    .partners-carousel-wrapper {
      
               position: absolute;
                bottom: 30px; 
                width: 100%; 
                margin: 10px auto;
              
                text-align: center;
                padding: 1rem; 
                background-color: transparent; 
                color: white; 
                font-size: 1.2rem; 
                text-align: center;
                float: left;
                border-top: 2px solid orange;
                border-bottom: 2px solid orange;
      
      
      
      
      
      
      /*
      width: 70%;              /* match your center column *
      margin: 10px auto;       /* center it horizontally *
      background-color: #020077;
      text-align: center;
      padding: 10px;
      border-top: 2px solid orange;
      border-bottom: 2px solid orange;
      font-size: larger;
      */
    }
    .imageoffice {
      position: absolute;
      
    }

    .layout {
      display: flex;
      width: 100%;
      min-height: 100vh;
      background-color: #020077;
      color: white;
      font-size: larger;
    }

    .col {
      padding: 20px;
    }

    .left, .right {
      width: 25%;
    }

    .center {
      width: 50%;
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    h2 {
      margin: 10px 0;
      text-align: center;
    }

    .carousel-container {
      overflow: hidden;
      width: 100%;
      padding: 20px 0;
    }

    .carousel-track {
      display: flex;
      width: fit-content;
      animation: scroll 40s linear infinite;
    }

    .carousel-container:hover .carousel-track {
      animation-play-state: paused;
    }

    .logo {
      flex: 0 0 auto;
      padding: 0 30px;
      transition: transform 0.3s ease;
    }

    .logo img {
      height: 40px;
      max-width: 150px;
      align-items: center;
    }

    .logo:hover {
      transform: scale(1.5);
    }

    @keyframes scroll {
      0% {
        transform: translateX(0);
      }
      100% {
        transform: translateX(-50%);
      }
    }

    @media (max-width: 768px) {
      .left, .right {
        display: none;
      }
      .center {
        width: 100%;
      }
      .logo img {
        height: 50px;
      }
    }

      /*************************************************************************************************************************
      *************************************************************************************************************************/
      /*************************************************GOOGLE MAPS INTEGRATION ********************************************/
      .map-container {
        width: 100%;
        height: 400px;
        border: 2px solid #ccc;
        border-radius: 8px;
        overflow: hidden;
      }
      iframe {
        width: 100%;
        height: 100%;
        border: 0;
      }


      /*************************************************************************************************************************
      *************************************************************************************************************************/
       /* Popup Base */
    .popup {
      position: fixed;
      top: 0;
      right: -100%;
      width: 100%;
      height: 100%;
      z-index: 1001;
      transition: right 0.4s ease;
      pointer-events: none;
    }

    .popup:target {
      right: 0;
      pointer-events: auto;
    }

    /* Overlay to close on outside click */
    .popup .popupoverlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: transparent;
      z-index: 1;
      cursor: default;
    }

    /* Popup content box */
    .popup-content {
      position: absolute;
      top: 0;
      right: 0;
      width: 60%;
      max-width: 600px;
      height: 100%;
      background: #fff;
      box-shadow: -5px 0 15px rgba(0, 0, 0, 0.3);
      padding: 30px;
      z-index: 2;
      box-sizing: border-box;
      overflow-y: auto;
    }

    .popup-content img {
      max-width: 100%;
      height: auto;
      display: block;
      margin-bottom: 20px;
    }

    .popup-content p {
      font-size: 16px;
      color: #333;
    }

    .close {
      position: absolute;
      top: 15px;
      right: 20px;
      font-size: 28px;
      text-decoration: none;
      color: #666;
    }

    .close:hover {
      color: #000;
    }

      /*************************************************CONTACT.HTML *****************************************************/