/* === Reset & Base === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background: #f9f9f9;
    color: #333;
}

/**FOR IOS SETTINGS**/
html, body {
    -webkit-overflow-scrolling: touch;
}


.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}



/* === Top Navbar === */
.top-nav {
    background-color: #013a5f;
    color: #fff;
    font-size: 0.9rem;
    padding: 0.3rem 0;
/*    position: sticky; */
    top: 0;
   /*z-index: 1001; /* Should be higher than .navbar's z-index */
}

	

.top-nav-content {
    display: flex;
    justify-content: space-between;
    /**align-items: center;**/ 
    flex-wrap: wrap;
}

.contact-info a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: #00000;
}

.social-icons a {
    color: #fff;
    margin-left: 1rem;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: #bdbdbd;
}

@media (max-width: 600px) {
	
	.top-nav {
    padding: 0rem 0;
}

    .top-nav-content {
        flex-direction: flex;
        text-align: center;
        gap: 0rem;
    }

   .social-icons {
        margin-top: 0.3rem;
		
		
    } 
}

/* === Main Navbar === */
.navbar {
    background: #bdbdbd;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.bottom-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    padding: 0.3rem 0;
    position: relative;
}

/* === Logo === */

.logo {
    display: flex;
    align-items: center;
    font-size: 2rem; /* was 1.5rem — increased for company name */
    font-weight: 700;
    color: #013a5f;
    text-decoration: none;
}

.logo-img {
    width: 60px; /* was 50px — increased for logo image */
    height: auto;
    margin-right: 12px;
}


@media (max-width: 768px) {
    .logo {
        font-size: 1.8rem;
    }

    .logo-img {
        width: 60px;
    }
}

/* === Nav Links === */
#nav-links {
    list-style: none;
    display: flex;
    gap: 1.5rem;
    margin-left: auto;
}

#nav-links a {
    text-decoration: none;
    color: #013a5f;
    font-weight: 500;
    transition: color 0.3s;
}

#nav-links a:hover {
    color: #fff;
}

/* === Hamburger Menu === */
.hamburger-menu {
    display: none;
    font-size: 2rem;
    cursor: pointer;
    margin-left: auto;
}

@media (max-width: 768px) {
    .hamburger-menu {
        display: block;
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
    }

    #nav-links {
        display: none;
        position: fixed;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        flex-direction: column;
        align-items: center;
        background-color: #bdbdbd;
        padding: 2rem;
        border-radius: 0px;
        box-shadow: 0 0 20px rgba(0,0,0,0.1);
        z-index: 1000;
        width: 80%;
        max-width: 300px;
		
    }

    #nav-links.nav-links-active {
        display: flex;
		
    }

    #nav-links a {
        font-size: 1.2rem;
        padding: 0.75rem 0;
        color: #333;
        width: 100%;
        text-align: center;
    }

    .bottom-nav {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
}

/* === Hero Section === */
/* === Hero Section === */
.hero-section {
    position: relative;
    color: #fff;
    width: 100%;
    height: 100vh;
    min-height: -webkit-fill-available;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

/* Base video styles */
.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    pointer-events: none;
}

/* Mobile video (800x1200) - shown by default */
.mobile-video {
    display: block;
    object-position: center top; /* Adjust as needed */
}

/* Desktop video - hidden by default */
.desktop-video {
    display: none;
}

/* Desktop styles */
@media (min-width: 769px) {
    .mobile-video {
        display: none;
    }
    
    .desktop-video {
        display: block;
    }
}

/* Mobile-specific adjustments */
@media (max-width: 768px) {
    .hero-section {
        aspect-ratio: 2/3; /* Matches 800x1200 (2:3 ratio) */
        height: auto;
    }
    
    .hero-video {
        object-fit: contain; /* Shows full video without cropping */
        background: #000; /* For letterboxing if needed */
    }
}

/* Overlay and content styles remain the same */
.hero-overlay-1 {
    position: relative;
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    background: rgba(0, 0, 0, 0.6);
    padding: 0 calc((100% - 1200px) / 2);
    box-sizing: border-box;
}

.hero-overlay {
    width: 100%;
    height: 100%;
    /**background: rgba(0, 0, 0, 0.6);**/
    display: flex;
    justify-content: left;
    align-items: center;
    padding: 0 calc((100% - 1200px) / 2);
    box-sizing: border-box;
}

.hero-content {
 max-width: 600px;
    margin-top: 1vh;
    text-align: left;
    height: 70%;
    padding-left: 20px;
    padding-right: 20px;
    width: 100%; /* Add this to ensure padding works properly */
    box-sizing: border-box; /* This includes padding in width calculation */
}


.hero-content {
    max-width: 600px;
	
}

.hero-content h1 {
    font-size: 2.5rem;
    margin-bottom: 0.3rem;

}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    line-height: 1.5;
}

.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background-color: transparent;
    color: #fff;
    border: 2px solid #fff;
    border-radius: 0;
    font-weight: 600;
    text-decoration: none;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.btn:hover {
    background-color: #013a5f;
    color: #fff;
	border: 2px solid #013a5f;
}


/* Or you can use media queries for more control */
@media (max-width: 768px) {
    .hero-content {
        padding-left: 20px;
        padding-right: 20px;
    }
    
    .hero-content h1 {
        font-size: 2rem; /* Slightly smaller font on mobile */
    }
    
    .hero-content p {
        font-size: 1rem; /* Slightly smaller text on mobile */
    }
	
	 
    
}





/* === Kid's Hero Section === */
.kid-hero-section {
    background: url('../img/kids/hero-bg.jpg') no-repeat center center/cover;
    height: 50vh;
    display: flex;
    align-items: inherit;
    position: fix;
    color: #fff;

    min-height: 100vh;
    height: 100vh;
    height: 100dvh;
	
}


.kid-hero-overlay {
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: flex-start; /* Align content to top */
    justify-content: center;
    padding: 15%;
    position: relative;
}

.kid-hero-content {
    max-width: 900px;
    margin-top: 5vh; /* Push content downward just a bit, adjust as needed */
    text-align: center;
}


.kid-hero-content {
    max-width: 800px;
	
}

.kid-hero-content h1 {
    font-size: 2.5rem;
    margin-bottom: 0.3rem;

}

.kid-hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    line-height: 1.5;
}

.kid-btn {
    display: inline-block;
    padding: 0.30rem 1.5rem;
    background-color: transparent;
    color: #fff;
    border: 2px solid #fff;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
	 margin-top: 30px;
	  margin-bottom: 30px; /* Override if needed */
    transition: background-color 0.3s ease, color 0.3s ease;
}

.kid-btn:hover {
    background-color: #013a5f;
    color: #fff;
	border: 2px solid #013a5f;
}





.btn-readmore {
	
	display: inherit;
    padding: 0.50rem 1.5rem;
    background-color: #013a5f;
    color: #fff;
    border: 2px solid #013a5f;
    border-radius: 0;
    font-weight: 600;
    text-decoration: none;
    transition: background-color 0.3s ease, color 0.3s ease;
	
}

.btn-readmore:hover {
    background-color: transparent;
    color: #013a5f;
}





/* === VA Hero Section === */

.va-hero-section {
    background: url('../img/va-bg.jpg') no-repeat center center/cover;

    display: flex;
  
    position: fix;
    color: #fff;
position: relative;
    min-height: 100vh;
    height: 100vh;
    height: 100dvh;
	
}


.va-hero-overlay {
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
   
    justify-content: left;
    align-items: center;
    padding: 0 calc((100% - 1200px) / 2); /* Matches nav container width */
    box-sizing: border-box;
}

.va-hero-content {
 max-width: 600px;
    margin-top: 1vh;
    text-align: left;
    height: 70%;
    padding-left: 20px;
    padding-right: 20px;
    width: 100%; /* Add this to ensure padding works properly */
    box-sizing: border-box; /* This includes padding in width calculation */
}


.va-hero-content {
    max-width: 600px;
	
}

.va-hero-content h1 {
    font-size: 2.5rem;
    margin-bottom: 0.3rem;

}

.va-hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    line-height: 1.5;
}

.va-btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background-color: transparent;
    color: #fff;
    border: 2px solid #fff;
    border-radius: 0;
    font-weight: 600;
    text-decoration: none;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.va-btn:hover {
    background-color: #013a5f;
    color: #fff;
	border: 2px solid #013a5f;
}


/* Or you can use media queries for more control */
@media (max-width: 768px) {
    .va-hero-content {
        padding-left: 20px;
        padding-right: 20px;
    }
    
    .va-hero-content h1 {
        font-size: 2rem; /* Slightly smaller font on mobile */
    }
    
    .va-hero-content p {
        font-size: 1rem; /* Slightly smaller text on mobile */
    }
}



/* Horizontal scroll container */



    .va-section {
      position: relative;
      max-width: 1200px;
      margin: 0 auto;
	  margin-bottom: 70px;
    }

    .va-scroll-wrapper {
      position: relative;
      overflow: hidden;
    }

    .va-scroll-container {
      display: flex;
      gap: 25px;
      overflow-x: auto;
      scroll-behavior: smooth;
      padding: 20px 0;
      scrollbar-width: none;
    }

    .va-scroll-container::-webkit-scrollbar {
      display: none;
    }
	
.va-service-item {
  flex: 0 0 calc(100% / 3 - 20px); /* Change to /4 if showing 4 at a time */
  background-size: cover;
  background-position: center;
  border-radius: 10px;
  padding: 70px 30px;
  color: #fff;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  transition: transform 0.3s ease;
  position: relative;
  z-index: 1;

}

.va-service-item::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
   background: rgba(0, 0, 0, 0.2); /* Dark overlay */
  border-radius: inherit;
  z-index: -1;
}


    .va-service-item:hover {
      transform: translateY(-5px);
    }

    .va-service-item h3 {
      font-size: 25px;
	  text-align: center;
       background: rgba(0, 0, 0, 0.5); /* Dark overlay */
      color: #00000;
	   margin-top: 70px;
    }

    .va-service-item p {
      font-size: 20px;
	  text-align: center;
      color: black;
      line-height: 1.6;
		background: #ffffff;
	    
    }

    .va-service-btn {
      display: inline-block;
      margin-top: 15px;
      background-color: #004aad;
      color: white;
      padding: 8px 14px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: 600;
    }

    .va-arrow-btn {
      position: absolute;
      top: 45%;
      transform: translateY(-50%);
      /**background: #004aad;**/
      color: white;
      border: none;
      padding: 10px 14px;
      border-radius: 0px;
      font-size: 30px;
      cursor: pointer;
      z-index: 10;
      opacity: 0.8;
      transition: opacity 0.3s;
    }

    .va-arrow-btn:hover {
      opacity: 5;
	
    }

    .va-arrow-btn.left {
      left: -10px;
	  background: #004aad;
    }

    .va-arrow-btn.right {
      right: -10px;
	  background: #004aad;
    }

    @media (max-width: 992px) {
      .va-service-item {
        flex: 0 0 calc(100% / 2 - 20px);
      }
    }

    @media (max-width: 600px) {
      .va-service-item {
        flex: 0 0 100%;
      }

      .va-arrow-btn {
        display: none;
      }
	}






































/* === Sections === */
.section {
    padding: 60px 20px;
	
    scroll-margin-top: 80px; /* adjust based on your navbar height */

}

.section:nth-child(even) {
    background-color: #f1f1f1;
}

.section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.section p {
    max-width: 700px;
    margin: 0 auto;
    text-align: left;
}

/* === Services === */
.services-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
	align-items: stretch;
	
  
	
}

.service-item {
    background: #fff;
    padding: 1.5rem;
    border-radius: 0px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: transform 0.3s;
	overflow: hidden;
	cursor: pointer;
	position: relative;
	 grid-auto-flow: column;
	 flex: 1;
	  flex-direction: column;
	  padding-bottom: 2px; /* Reserve 2px space below card */
	  height: 100%; /* Ensures full height */
	

}

 .service-item img {
      position: inherit;
      width: 45px;
      height: 45px;
      transition: opacity 0.5s ease-in-out;
	  
     
    }

 


  .service-item i {
  font-size: 1.2rem; /* adjust icon size as needed */
}





.service-item:hover {
    transform: translateY(-10px);
	/**color: white;
	background: #013a5f;**/
	 
} 



.service-item:hover .service-item img{
    
	/**color: white;
	background: #013a5f;**/
	 filter: brightness(0) invert(1); /* Makes logo white - remove if you want original colors */
} 



.service-item h3 {
    margin-bottom: 0.75rem;
}


.service-item p {
   text-align: center;
}


.service-btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
	
	margin-top: 20px;
	
  margin-bottom: 30px; /* Override if needed */
	
	
    background-color: #013a5f;
    color: #fff;
    border: 2px solid #fff;
    border-radius: 0;
    font-weight: 600;
    text-decoration: none;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.service-btn:hover {
    background-color: #ccc;
    color: #013a5f;
	border: 2px solid #013a5f;
}






  





/* === About Section Layout === */
.about-container {
    display: flex;
    flex-wrap: wrap;
    align-items: right;
    justify-content: space-between;
    gap: 2rem;
}

.about-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 1rem;
}


.about-text {
    flex: 1 1 50%;
    max-width: 600px;
}

.about-image {
    flex: 1 1 40%;
    text-align: center;
}

.about-image img {
    width: 100%;
    max-width: 510px;
    height: auto;
    border-radius: 0px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* === Modal === */
.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.6);
}

.modal-content {
    background-color: #fff;
    margin: 10% auto;
    padding: 2rem;
    border-radius: 6px;
    width: 90%;
    max-width: 600px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    position: relative;
}

.modal-content h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.modal-content p {
    line-height: 1.6;
}

.close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Responsive */
@media (max-width: 768px) {
    .about-container {
        flex-direction: column;
    }

    .about-image,
    .about-text {
        width: 100%;
        text-align: center;
    }
}


/* events-section.css */

.events-section {
  background-color: #ffffff;
  padding: 3rem 1rem;
}

.events-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 1rem;
}



/**.events-section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.events-section p {
    max-width: 700px;
    margin: 0 auto;
    text-align: left;
}
**/

.events-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  gap: 2.5rem;
  align-items: center;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .events-container {
    grid-template-columns: 1fr 1fr;
  }
}

.events-video-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 */
  height: 0;
  overflow: hidden;
  border-radius: 0rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.events-video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.events-title-2 {
  font-size: 30px;
  font-weight: bold;
  color: #1f2937; /* Gray-800 */
  margin-bottom: 1rem;
}

.events-description {
  color: #4b5563; /* Gray-600 */
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.events-button {
  display: inline-block;
  background-color: #013a5f; /* Blue-600 */
  color: #ffffff;
  padding: 10px 20px;
  border-radius: 0rem;
  text-decoration: none;
  transition: background-color 0.3s ease;
  margin: 5px; /* Adds spacing between buttons */
  text-align: center;
}

.events-button:hover {
  background-color: #bdbdbd; /* Blue-700 */
}

.events-buttons-container {
  display: flex;
  flex-wrap: wrap; /* Allows buttons to wrap on small screens */
  justify-content: flex-start; /* Aligns buttons to the left */
  gap: 10px; /* Adds consistent spacing between buttons */
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .events-buttons-container {
    flex-direction: column; /* Stack buttons vertically on mobile */
    gap: 8px;
  }
  
  .events-button {
    width: 100%; /* Full width buttons on mobile */
    box-sizing: border-box; /* Includes padding in width calculation */
  }
}













/* === Contact === */
form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

input, textarea {
    padding: 0.75rem;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 6px;
}

textarea {
    min-height: 120px;
    resize: vertical;
}

/* === Footer === */
footer {
    background-color: #222;
    color: #fff;
    text-align: center;
    padding: 1.5rem 0;
    font-size: 1px;
}




/***LOADER**/

.loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #333333;
  transition: opacity 0.75s, visibility 0.75s;
  z-index: 9999;
}

.loader--hidden {
  opacity: 0;
  visibility: hidden;
}

.loader::after {
  content: "";
  width: 75px;
  height: 75px;
  border: 15px solid #dddddd;
  border-top-color: #013a5f;
  border-radius: 50%;
  animation: loading 0.75s ease infinite;
}

@keyframes loading {
  from {
    transform: rotate(0turn);
  }
  to {
    transform: rotate(1turn);
  }
}





/* === Call to Action Section === */
.cta-section {
    background-color: #013a5f;
    color: #fff;
    padding: 60px 20px;
    text-align: center;
}

.cta-container h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.cta-container p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-container .btn {
    background-color: #fff;
    color: #013a5f;
    border-color: #fff;
}

.cta-container .btn:hover {
    background-color: transparent;
    color: #fff;
    border-color: #fff;
}

/* === Contact Section with Icons === */
.contact-section .contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
    text-align: center;
}

.contact-box {
    background: #fff;
    padding: 2rem;
    border-radius: 0px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
	text-align: center;
}

/**.contact-box:hover {
    transform: translateY(-5px);
    background-color: #013a5f;
    color: #fff;
}**/

.contact-box i {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #013a5f;
    transition: color 0.3s;
}

.contact-box:hover i {
    color: #fff;
}

.contact-box h4 {
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
	text-align: center;
}

.contact-box p {
	text-align: center;
}

.contact-box img {
    position: inherit;
    width: 45px;
    height: 45px;
	transition: opacity 0.5s ease-in-out;
     
    }








/**FOOTER**/

/* === Footer Styles === */
.site-footer {
    /**background-color: #222;**/
    color: #fff;
    padding: 60px 20px 20px;
    font-size: 0.9rem;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-box {
    flex: 1 1 200px;
    min-width: 200px;
}

/* Logo Styling */
.logo-container {
    margin-bottom: .5rem;
    text-align: center;
}

.footer-logo {
    max-width: 100px; /* Adjust based on your logo */
    height: auto;
   /** filter: brightness(0) invert(1); /* Makes logo white - remove if you want original colors */

}

.footer-box h4 {
    margin-bottom: 1rem;
    color: #013a5f;
    font-size: 1.1rem;
}

.footer-box p,
.footer-box li,
.footer-box a {
    color: #ccc;
    line-height: 1.6;
    text-decoration: none;
    list-style: none;
}

.footer-box a:hover {
    color: #013a5f;
}

.footer-box ul {
    padding: 0;
    margin: 0;
}

.footer-box li {
    margin-bottom: 0.5rem;
}

/* Contact Box Styling */
.footer-box:first-child {
    /**border: 1px solid #013a5f;**/
    padding: 1.5rem;
    border-radius: 0px;
    /**background-color: #2c2c2c;
    box-shadow: 0 0 10px rgba(0,188,212,0.1); **/
	 text-align: center;
}

.footer-social {
    margin-top: 1rem;
    display: inline-block;
    gap: 15px;
	
}

.footer-social a {
    color: #ccc;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.footer-social a:hover {
    color: #00bcd4;
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid #444;
    padding-top: 1.5rem;
    margin-top: 3rem;
    font-size: 0.85rem;
    color: #aaa;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        gap: 2rem;
    }
    
    .footer-box {
        flex: 1 1 100%;
    }
    
    .footer-logo {
        max-width: 150px;
    }
}





/**TRAINING SECTION STYLES**/


.slider-section {
  width: 100%;
  padding: 2rem 0;
  background: #f9f9f9;
}

.slideshow-container {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: auto;
  overflow: hidden;
  border-radius: 0px;
}

.slide {
  display: none;
  position: relative;
}

.slide img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 0px;
}

.slide-text {
  position: absolute;
  bottom: 15%;
  left: 0;
  color: white;
  font-size: 1.5rem;
  background: rgba(0, 0, 0, 0.6);
  padding: 12px 20px;
  border-radius: 0 0px 0px 0;
  max-width: 80%;
  font-family: 'Poppins', sans-serif;
  opacity: 0;
  transform: translateX(-100%);
  animation: swipeIn 1s ease forwards 0.5s;
}

@keyframes swipeIn {
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

.fade {
  animation-name: fade;
  animation-duration: 0.7s;
}

@keyframes fade {
  from {opacity: 10}
  to {opacity: 1}
}

/* Navigation Arrows */
.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  padding: 12px;
  color: white;
  font-size: 2rem;
  border-radius: 0%;
  background-color: rgba(0,0,0,0.4);
  user-select: none;
  transform: translateY(-50%);
  z-index: 2;
}

.prev {
  left: 15px;
}

.next {
  right: 15px;
}

/* Pagination dots */
.dots-container {
  text-align: center;
  margin-bottom: 1rem;
}

.dots-overlay {
  position: absolute;
  bottom: 20px;
  width: 100%;
  text-align: center;
  z-index: 3;
}

.dot {
  height: 14px;
  width: 14px;
  margin: 0 6px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.4s ease;
  cursor: pointer;
}

.dot.active {
  background-color: #fff;
  border: 2px solid #444;
}


/* Hide arrows on screens smaller than 768px */
@media (max-width: 768px) {
  .prev, .next {
    display: none;
  }
}




/**BREADCRUMB**/

/* Breadcrumb Navigation */
.breadcrumb-nav {
  position: sticky;
 /* top: 80px; /* Adjust based on your header height */
  background: #ffffff;
  z-index: 99;
  padding: 12px 0;
  border-bottom: 1px solid #f0f0f0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.breadcrumb-list {
  display: flex;
  align-items: center;
  font-size: 0.9rem;
}

.breadcrumb-link {
  color: #4a6cf7;
  text-decoration: none;
  transition: all 0.2s ease;
  font-weight: 500;
  position: relative;
  padding-right: 5px;
}

.breadcrumb-link:hover {
  color: #2a4bd7;
  text-decoration: underline;
}

.breadcrumb-link:after {
  content: "";
  position: absolute;
  right: -3px;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 14px;
  background: transparent;
}

.breadcrumb-separator {
  color: #a0a0a0;
  margin: 0 8px;
  font-size: 0.7rem;
  position: relative;
  top: -1px;
}

.breadcrumb-current {
  color: #555;
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 300px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .breadcrumb-nav {
    top: 60px; /* Adjust for mobile header */
    padding: 10px 0;
  }
  
  .breadcrumb-list {
    font-size: 0.8rem;
  }
  
  .breadcrumb-current {
    max-width: 180px;
  }
}






/**END OF TRAINING SECTION STYLES**/








/**HIDE THE FOOTER ON MOBILE**/

@media (max-width: 768px) {
    .footer-box:nth-child(2),  /* Useful Links */
    .footer-box:nth-child(3),  /* Training & Development */
    .footer-box:nth-child(4) { /* Virtual Assistance */
        display: none;
    }
}

/* Hide arrows on screens smaller than 768px */
@media (max-width: 768px) {
  .prev, .next {
    display: none;
  }
}
