*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    list-style: none;
    text-decoration: none;
    scroll-behavior: smooth;
    font-family: "Poppins", sans-serif;
  }
  
  html{
    overflow-x: hidden;
  }
  
  :root {
    --bg-color: #ffffff;
    --main-color: #202c5d;
    --second-color: #B99B3B;
    --text-color: #000000;
  
    --h1-font: 5.5rem;
    --h2-font: 2.8rem;
    --p-font: 1.1rem;
  }
  
  body{
    background: var(--bg-color);
    color: var(--text-color);
  }
  
  /*navigation bar*/
  header{
    position: fixed;
    width: 100%;
    height: auto;
    top: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 10%;
    background: var(--bg-color);
    box-shadow: 0 2px 5px -2px #0000001a;
    transition: all .6s ease;
  }
  
  .logo img {
    max-width: 180px;
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
  
  .navlist {
    display: flex;
  }
  
  .navlist a {
    display: inline-block;
    font-size: var(--p-font);
    color: var(--text-color);
    margin: 0 30px;
    padding: 2px 0;
    border-bottom: 2px solid transparent;
    transition: all .6s ease;
    text-decoration: none;
  }
  
  .navlist a:hover {
    color: var(--main-color);
    border-bottom: 2px solid var(--second-color);
    text-decoration: none;
  }
  
  .nav-content {
    display: flex;
    align-items: center;
  }
  
  .nav-content a{
    display: inline-block;
    font-size: 23px;
    color: var(--text-color);
    margin: 0 10px;
    transition: all .6s ease;
    text-decoration: none;
  }
  
  .nav-content button:hover{
    transform: scale(1.1);
    color: var(--second-color);
    text-decoration: none;
  }
  
  /*hero image*/
  section {
    padding: 80px 10% 80px;
  }
  
  .hero {
    position: relative;
    width: 100%;
    height: 75vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(180deg, rgba(32, 44, 93, 1.2), rgba(246, 246, 246, 0.4)), 
    url(../img/tb3.jpg) no-repeat center center;
    background-size: cover;
    background-position: center;
    aspect-ratio: 1920/600;
  }
  
  .hero-text h1 {
    align-items: center;
    font-size: var(--h1-font);
    font-weight: 700;
    color: var(--bg-color);
    margin: 10px 0 20px;
    line-height: 1;
  }
  
  .hero-text h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--bg-color);
    letter-spacing: 4px;
    margin: 140px 0 20px;
  }
  
  .hero-text p{
    font-size: 25px;
    font-weight: 500;
    line-height: 1.5;
    color: var(--bg-color);
    margin-bottom: 30px;
  }
  
  /* btn ws */
  .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 11px 20px;
      font-size: 14px;
      font-weight: 600;
      border: 1px solid var( #1DA851);
      color: var(--bg-color);
      letter-spacing: 2px;
      transition: all .6s ease;
      text-decoration: none;
  }
  
  .btn-whatsapp {
      background-color: #25D366;
      border-color: #25D366;
      color: #fff;
  }
  
  .btn-whatsapp:hover {
      background-color: #1DA851;
      border-color: #1DA851;
      color: #fff;
  }
  
  .btn-whatsapp i {
      margin-right: 8px;
      font-size: 18px;
  }
  /*---------*/
  
  .btn:hover {
    background: var(--bg-color);
    border: 1px solid var(--bg-color);
    color: var(--text-color);
  }
  
  .center-text {
    margin-top: -30px;
    text-align: center;
  }
  
  .center-text h6{
    font-size: 12px;
    font-weight: 600;
    color: var(--second-color);
  }
  
  .center-text h2{
    font-size: var(--h2-font);
    font-weight: 600;
    color: var(--main-color);
  }
  
  h2 {
    text-align: center;
    font-size: 36px;
    color: #000;
    margin-bottom: 20px;
    position: relative;
  }
  
 

  /*--- menu bars---*/
.toggle_btn {
    display: none;
    cursor: pointer;
    font-size: 1.5rem;
    color: var(--main-color);
}

.action_btn {
    background-color: #B99B3B ;
    color: #fff;
    padding: 0.5rem 1rem;
    border: none;
    outline: none;
    border-radius: 20pc;
    font-size: 0.8rem;
    font-weight: bold;
    cursor: pointer;
    transition: scale 0.2 ease;
}

.action_btn:hover {
    scale: 1.05;
    color: #fff; 
}

.action_btn:active {
    scale: 0.95;;
}

/* dropdown bar menu */
.dropdown_bar_menu {
    display: none;
    flex-direction: column;
    background-color: var(--bg-color);
    position: absolute;
    top: 100%;
    right: 0;
    width: 100%;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    z-index: 999;
}

.dropdown_bar_menu li {
    padding: 1rem;
    border-bottom: 1px solid #ddd;
    text-align: center;
}

.dropdown_bar_menu li a {
    color: var(--main-color);
    text-decoration: none;
}

.dropdown_bar_menu li:hover {
    background-color: #f9f9f9;
}

.dropdown_bar_menu.open {
    display: flex;
}

@media (max-width: 768px) {
    .navlist {
        display: none;
    }

    .toggle_btn {
        display: block;
    }
}

/* Submenu styles */
.submenu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: none; /* Hidden by default */
    position: absolute;
    left: 0;
    top: 100%;
    background-color: var(--bg-color);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    z-index: 999;
}

.submenu li {
    padding: 0.5rem 1rem;
    white-space: nowrap; /* Prevent text wrapping */
}

.has-submenu:hover .submenu {
    display: block; /* Show submenu on hover */
}

/* Responsive dropdown bar */
@media (max-width: 768px) {
    .dropdown_bar_menu {
        display: none;
        flex-direction: column;
    }

    .dropdown_bar_menu.open {
        display: flex;
    }

    .submenu {
        position: static; /* Stack submenus for small screens */
    }
}

/*----whatsApp button phone size-----*/
.whatsapp-btn {
  display: none;
  align-items: center;
  justify-content: center;
  padding: 11px 20px;
  font-size: 14px;
  font-weight: 600;
  border: 1px solid var( #1DA851);
  color: var(--bg-color);
  letter-spacing: 2px;
  transition: all .6s ease;
  text-decoration: none;
}

@media (max-width: 768px) {
    .nav-content {
        display: none;
    }

    .whatsapp-btn {
        display: block;
    }
}

.whatsapp-mini-btn {
  background-color: #25D366;
  border-color: #25D366;
  color: #fff;
}

.whatsapp-mini-btn:hover {
  background-color: #1DA851;
  border-color: #1DA851;
  color: #fff;
}

.whatsapp-mini-btn i {
  margin-right: 8px;
  font-size: 18px;
}



 /* Footer */
footer {
    background-color: #f9f9f9;
    padding: 2rem 0;
    color: #333;
    font-family: 'Poppins', sans-serif;
    width: 100%;
    max-width: 100vw;
}

.footer-container {
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
    padding: 0 10%;
    flex-wrap: wrap;
}

.footer-col {
    flex: 1;
    margin: 1rem;
    max-width: 300px;
}

.footer-col .material-symbols-outlined {
    font-size: 20px;
    margin-right: 10px;
    color: #333;
}

.footer-col h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--main-color);
}

/* Arrow for About and Services titles */
.footer-col .dropdown > a:after {
    content: " ▼";
    font-size: 0.8rem;
    margin-left: 5px;
}

.footer-col .dropdown:hover > a:after {
    content: " ▲"; 
}

/* Dropdown behavior for About and Services */
.footer-col .dropdown:hover {
    background-color: #f9f9f9; 
}

.footer-col .dropdown .sub-links {
    display: none; 
    padding-left: 20px;
}

.footer-col .dropdown:hover .sub-links {
    display: block; 
}

.footer-col p,
.footer-col ul,
.footer-col li {
    margin: 0.5rem 0;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col li {
    margin: 0.5rem 0;
}

.footer-col a {
    text-decoration: none;
    color: #333;
    transition: color 0.3s;
    font-weight: 400;
}

.footer-col a:hover {
    color: var(--main-color);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    display: inline-block;
}

.social-links img {
    width: 24px;
    height: 24px;
}

.footer-bottom {
    text-align: center;
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid #ddd;
}

.footer-bottom p {
    margin: 0.5rem 0;
}

/* Media Queries */
@media (max-width: 1200px) {
    .hero-text h1 {
        font-size: 40px;
    }
}

@media (max-width: 992px) {
    .hero-text h1 {
        font-size: 35px;
    }
}

@media (max-width: 768px) {
    .hero {
        height: auto;
    }

    .hero-text h1 {
        font-size: 30px;
    }
}

@media (max-width: 576px) {
    .hero {
        height: auto;
    }

    .hero-text h1 {
        font-size: 25px;
    }
}

  
  /*--------------------------------*/

  /* Combine heading and form container into one section */
.content4-section {
    background: linear-gradient(135deg, #F2E09D, #B99B3B, #8C7630); /* Responsive gradient background */
    padding: 60px 20px; /* Add some padding to the whole section */
    text-align: center;
}

.content4-heading {
    font-size: 28px;
    font-weight: bold;
    color: #202c5d;
    margin-bottom: 50px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.content4-form-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.content4-box {
    flex: 1 1 25%; /* Set the boxes to take up approximately 25% of the row */
    max-width: 25%;
    box-sizing: border-box;
    padding: 20px;
    text-align: center;
    border-radius: 10px;
    background-color: linear-gradient(135deg, #F2E09D, #B99B3B, #8C7630); /* Responsive gradient background */
    transition: transform 0.4s ease;
}

.content4-box i {
    font-size: 40px;
    margin-bottom: 10px;
    color: #202c5d; /* Adjust icon color if necessary */
}

.content4-box p {
    font-size: 18px;
    font-weight: bold;
    color: #202c5d;
    text-transform: uppercase;
}

.content4-box:hover {
    transform: scale(1.05); /* Adds a slight zoom effect on hover */
}

@media (max-width: 1024px) {
    .content4-box {
        flex: 1 1 45%; /* 2 boxes per row on medium screens */
        max-width: 45%;
    }
}

@media (max-width: 768px) {
    .content4-box {
        flex: 1 1 100%; /* 1 box per row on smaller screens */
        max-width: 100%;
    }
    
    .content4-heading {
        font-size: 24px; /* Smaller heading text */
    }

    .content4-box i {
        font-size: 50px; /* Slightly smaller icons for small screens */
    }

    .content4-box p {
        font-size: 18px; /* Smaller text on small screens */
    }
}



/* General Facilities Section Styling */
.facilities {
    width: 100%;
    margin: auto;
    text-align: center;
    padding-top: 40px; /* Adjusted padding for layout */
}

.content3-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: stretch; 
    padding: 2rem;
    gap: 15px; /* Reduced gap */
    height: auto;
    background-color: #fff;
}
.content3-row:last-child {
    justify-content: center; /* Center the last two boxes */
}


/* Facilities Column Styling */

/* Facilities Column Styling with Borders */
.facilities {
    padding: 20px; /* Add some padding around the section */
    margin-bottom: 40px;
}

.content3-heading {
    text-align: center;
    font-size: 28px;
    font-weight: bold;
    color: #202c5d;
    margin-bottom: 20px;
    margin-top: 40px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.content3-heading::after {
    content: "";
    display: block;
    width: 100px;
    height: 4px;
    background: linear-gradient(to right, #ffffff, #f9a825);
    margin: 0 auto;
  }

.facilities-col {
    flex: 1 1 24%; /* Base width for larger screens */
    max-width: 25%; /* Prevents boxes from growing too large */
    margin: 20px; /* Margin around boxes */
    text-align: center;
    border: 3px solid #B99B3B; /* Border thickness */
    border-radius: 10px; /* Rounded corners */
    overflow: hidden; /* Keep child elements within rounded corners */
    transition: transform 0.3s, box-shadow 0.3s;
    margin-top: 10px;
}

/* Image Styling */
.facilities-col img {
    width: 100%; /* Full width to fit the container */
    height: 200px; /* Fixed height */
    object-fit: cover; /* Maintain aspect ratio and cover the box */
}

/* Text Styling */
.facilities-col h3 {
    margin-top: 10px;
    margin-bottom: 10px;
    font-size: 1.2em; /* Increased font size */
    color: #202c5d;
    text-transform: uppercase;
}

/* Media Queries for Responsiveness */
@media (max-width: 1200px) {
    .facilities-col {
        flex: 1 1 30%; /* 3 boxes per row */
        max-width: 100%;
    }
}

@media (max-width: 900px) {
    .facilities-col {
        flex: 1 1 45%; /* 2 boxes per row */
        max-width: 100%;
    }
}

@media (max-width: 600px) {
    .facilities-col {
        flex: 1 1 100%; /* 1 box per row */
        max-width: 100%;
    }
}


/* Hover Effect */
.facilities-col:hover {
    transform: scale(1.05);
    box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.2);
}

/* Center the last two boxes if there are an odd number of boxes */
.row:nth-child(odd) {
    justify-content: flex-start; /* Left align the odd number of boxes */
}

.row:nth-last-child(-n+2):nth-child(odd) .facilities-col {
    flex-basis: 30%; /* Adjust last two boxes size */
}

.row:nth-last-child(-n+2) {
    justify-content: center; /* Center the last two boxes */
}


/*----content2-----*/
.content2-heading {
    text-align: center;
    font-size: 28px;
    font-weight: bold;
    color: #fdd965;
    margin-bottom: 20px;
    margin-top: 5px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.content2 {
    width: 100%;
    padding: 20px;
    background-color: #2a2a72;
    background-image: linear-gradient(to bottom, #2a2a72 0%, #009ffd 74%);
}

.images-client {
    width: 100%; /* Full width */
    overflow: hidden; /* Hide overflow */
    position: relative; /* Relative positioning */
    margin-top: 5px;
    margin-bottom: 20px;
}

.images-wrapper {
    display: flex; /* Arrange images in a row */
    animation: move 40s linear infinite; /* Continuous left-to-right movement */
}

.images-wrapper img {
    width: 40%; /* Increased size for images */
    height: auto; /* Maintain aspect ratio */
    margin-right: 20px; /* Space between images */
}

@keyframes move {
    0% {
        transform: translateX(0); /* Start at the initial position */
    }
    100% {
        transform: translateX(-100%); /* Move left by the full width of the images */
    }
}

@media (min-width: 768px) {
    .images-wrapper img {
        width: 30%; /* Adjust image size for larger screens */
    }
}

@media (min-width: 1024px) {
    .images-wrapper img {
        width: 25%; /* Further adjust image size for even larger screens */
    }
}








.team-building-section {
    text-align: center;
    padding: 50px;
    background-color: #fff;
    margin-bottom: 50px;
}

/* Flexbox wrapper to align text and image side by side */
.text-image-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between; /* Align text and image evenly */
    flex-wrap: wrap; /* Ensures wrapping for smaller screens */
    gap: 20px; /* Add space between text and image */
}

/* Text content styling */
.text-content {
    flex: 1;
    max-width: 50%; /* Adjust to take up 50% of the width */
    text-align: center; /* Align text to the left */
}

.text-content p {
    font-size: 1.5rem;
    line-height: 1.8;
    color: #333;
    text-align: center;
}

.text-content .highlight {
    font-weight: bold;
    color: #b99B3B;
}

.btn-consultation {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 20px;
    background-color: #28a745;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.btn-consultation:hover {
    background-color: #218838;
}

/* Image section for the team-building images */
.image-grid {
    flex: 1;
    max-width: 50%; /* Make the container exactly half the page width */
    width: 50%; /* Ensure it occupies half the width */
}

.image-grid img {
    width: 100%; /* Make the image fully fill the container */
    height: auto; /* Maintain aspect ratio */
    border-radius: 10px;
    object-fit: cover; /* Ensures the image doesn't stretch */
}

/* Adjust layout for smaller screens */
@media (max-width: 768px) {
    .text-image-wrapper {
        flex-direction: column; /* Stack the text and image vertically */
    }

    .text-content, .image-grid {
        max-width: 100%; /* Make both full width on small screens */
        width: 100%; /* Full width for smaller screens */
    }

    .image-grid img {
        width: 100%; /* Ensure the image takes the full width on small screens */
    }
}


.top-background {
    position: relative;
    width: 100%;
    height: 75vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(180deg, rgba(32, 44, 93, 1.2), rgba(246, 246, 246, 0.4)), 
    url(../img/background-page\ tb.jpg) no-repeat center center;
    background-size: cover;
    background-position: center;
    aspect-ratio: 1920/600;
}

/*--------*/



/* Media Queries */
@media (max-width: 1200px) {
    .hero-text h1 {
        font-size: 40px;
    }
}

@media (max-width: 992px) {
    .hero-text h1 {
        font-size: 35px;
    }
}

@media (max-width: 768px) {
    .hero {
        height: auto;
    }

    .hero-text h1 {
        font-size: 30px;
    }
}

@media (max-width: 576px) {
    .hero {
        height: auto;
    }

    .hero-text h1 {
        font-size: 25px;
    }
}

/*--------- Training Highlights Section ---------*/
.highlights-training {
    padding: 20px;
    background-color: #f9f9f9;
    text-align: center;
}

.highlights-training h2 {
    font-size: 28px;
    font-weight: 700;
    color: var(--main-color);
    text-transform: uppercase;
    margin-bottom: 20px;
    margin-top: 20px;
}

/* Carousel Container */
.carousel {
    position: relative;
    width: 80%;
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    background-color: #000; /* Optional: Add background to highlight videos */
}

/* Track for videos */
.carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

/* Carousel Videos */
.carousel-track video {
    width: 100%;
    flex: 0 0 100%; /* Each video takes the full width of the carousel */
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    background-color: #000; /* Background for video load time */
}

/* Navigation Buttons */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    font-size: 2rem;
    padding: 10px 15px;
    cursor: pointer;
    border-radius: 50%;
    z-index: 10;
    transition: background-color 0.3s ease;
}

.carousel-btn:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

.prev-btn {
    left: 10px;
}

.next-btn {
    right: 10px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .highlights-training h2 {
        font-size: 1.5rem;
    }

    .carousel-btn {
        font-size: 1.5rem;
        padding: 8px 12px;
    }
}

@media (max-width: 480px) {
    .highlights-training h2 {
        font-size: 1.3rem;
    }

    .carousel-btn {
        font-size: 1.2rem;
        padding: 6px 10px;
    }
}

/* Wizard Section Styling */
.event-wizard {
    padding: 20px;
    background: linear-gradient(135deg, rgba(32, 44, 93, 0.7), rgba(185, 155, 59, 0.7)); /* Soft and transparent gradient */
    text-align: center;
    font-family: Arial, sans-serif;
}

.event-wizard h2 {
    font-size: 28px;
    font-weight: 700;
    color: #fdd965;
    text-transform: uppercase;
    margin-bottom: 20px;
}

/* Step Progress Bar */
.wizard-steps {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.wizard-step {
    padding: 10px 20px;
    margin: 0 5px;
    background-color: #ccc;
    color: white;
    border-radius: 5px;
    cursor: pointer;
    transition: transform 0.3s, background-color 0.3s;
}

.wizard-step.active {
    background-color: #B99B3B;
    transform: scale(1.1);
}

.wizard-step:hover {
    background-color: #888;
}

/* Wizard Content */
.wizard-details {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}

.wizard-content {
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.wizard-content.active {
    display: block;
    opacity: 1;
}

.wizard-content h3 {
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 15px;
}

.wizard-content ul {
    padding: 0;
    list-style: none;
}

.wizard-content ul li {
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
    font-size: 22px;
    color: #fff;
}

.wizard-content ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #fff;
    font-size: 1.4rem;
}

/* Navigation Buttons */
.wizard-navigation {
    margin-top: 20px;
}

.wizard-btn {
    padding: 10px 20px;
    margin: 0 10px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    background-color: #B99B3B;
    color: white;
    font-size: 1rem;
    transition: background-color 0.3s;
}

.wizard-btn:disabled {
    background-color: #ccc;
    cursor: not-allowed;
}

.wizard-btn:hover:not(:disabled) {
    background-color: #202c5d;
}

/* Responsive Design */
@media (max-width: 768px) {
    .wizard-steps {
        flex-direction: column;
    }

    .wizard-step {
        margin: 5px 0;
    }

    .wizard-navigation .wizard-btn {
        width: 100%;
    }
}
