*{
    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/event30.png) 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;
  }
  
  h2::after {
    content: "";
    display: block;
    width: 100px;
    height: 4px;
    background: linear-gradient(to right, #ffffff, #f9a825);
    margin: 0 auto;
  }

  /*--- 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;
    }
}

  
  /*-------------------------------*/



/* 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;
    }
}

/*------------content2----------*/

.content2 {
    width: 100%;
    margin: auto;
    padding-top: 80px;
    padding-bottom: 50px;
}

.content2-col {
    flex-basis: 48%;
    padding: 30px 2px;
}

.content2-col img {
    width: 100%;
}

.content2-row {
    display: flex;
    justify-content: space-between;
    gap: 1px;
    padding: 3rem;
    background-color: #f9f9f9; /* or you can use background-image */
    height: auto;
    width: 100%;
    flex-wrap: wrap; 
}

/* Responsive behavior for smaller screens */
@media (max-width: 768px) {
    .content2-row {
        flex-direction: column;
        align-items: center;
    }

    .content2-col {
        flex-basis: 100%;
        padding: 20px 0;
    }

    .content2-col img {
        width: 90%;
    }
}



/* training part img right */
.training-part {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 40px 8%; 
    gap: 0;
    background: linear-gradient( to bottom, #B99B3B, #e0c978, #f3e7be);
    border-radius: 0;

}

h6 span {
    color: #fff;
}

.training {
    flex-basis: 50%; 
    padding: 40px;
    box-shadow: none; 
    border-radius: 0; 
    height: 100%;
}

.training-text h6 {
    font-size: 24px;
    font-weight: 700;
    color: #202c5d;
    margin-bottom: 15px;
}

.training-text p {
    font-size: 18px;
    color: #fff;
    line-height: 1.6;
    text-align: justify;
}

/* training Image Section */
.training-image {
    flex-basis: 50%; 
    display: flex;
    justify-content: flex-end;
    height: auto; 
}

.training-image img {
    width: 70%;
    height: 70%;
    object-fit: cover; 
    border-radius: 0; 
    max-width: 1945px; 
    max-height: 7648px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .training {
        flex-basis: 100%;
    }

    .training-image img {
        width: 100%;
        height: auto;
    }
}

/* training part img left */

.training2-part {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: row-reverse; /* Reverse the order of text and image */
    width: 100%;
    padding: 40px 8%; 
    gap: 0;
    background-color: #2a2a72;
    background-image: linear-gradient(to bottom, #2a2a72 0%, #009ffd 74%);
    border-radius: 0;
    
}

.training2 {
    flex-basis: 50%; 
    padding: 40px;
    box-shadow: none; 
    border-radius: 0; 
    height: 100%;
    display: flex;
    justify-content: flex-start; /* Align text to the start */
}

.training2-image {
    flex-basis: 50%; 
    display: flex;
    justify-content: flex-start; /* Align image to the start */
    height: auto; 
}

.training2-text h6 {
    font-size: 24px;
    font-weight: 700;
    color: #fdd965;
    margin-bottom: 15px;
}

.training2-text p {
    font-size: 18px;
    color: var(--text-color);
    line-height: 1.6;
    text-align: justify;
}


.training2-image img {
    width: 70%;
    height: 70%;
    object-fit: cover; 
    border-radius: 0; 
    max-width: 1945px; 
    max-height: 7648px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .training2-part {
        flex-direction: column; /* Stack image and text vertically */
    }

    .training2 {
        flex-basis: 100%;
    }

    .training2-image {
        justify-content: center; /* Center the image */
    }

    .training2-image img {
        width: 100%;
        height: auto;
    }
}



/* Features Section */
.features {
    padding: 40px 8%;
    text-align: center; /* Center align text */
    background-color: #fff; /* Light background for contrast */
    padding-bottom: 50px;
}

.features .fea-box i {
    color: #202c5d; /* Default icon color */
    font-size: 40px;
    margin-bottom: 10px;
    transition: color 0.3s ease; /* Smooth transition for icon color */
}

.features .fea-box:hover h3, 
.features .fea-box:hover p {
    color: #B99B3B; /* Change text color on hover */
    transition: color 0.3s ease; /* Smooth transition for text color */
}


/* You can also add hover effect to change the icon color on hover */
.features .fea-box:hover i {
    color: #B99B3B; /* Change this to the color you want on hover */
}

.features h1 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--main-color);
    text-transform: uppercase;
}

.features h1::after {
    content: "";
    display: block;
    width: 100px;
    height: 4px;
    background: linear-gradient(to right, #ffffff, #f9a825);
    margin: 0 auto;
}

.features p {
    font-size: 18px;
    color: var(--text-color);
    margin-bottom: 20px; /* Space between paragraph and boxes */
}

.fea-base {
    display: flex;
    flex-wrap: wrap; /* Allow boxes to wrap on smaller screens */
    justify-content: center; /* Center align boxes */
    gap: 20px; /* Space between boxes */
}

.fea-box {
    color: #202c5d; /* Text color */
    border-radius: 8px; /* Rounded corners */
    padding: 20px;
    flex: 1 1 250px; /* Flex properties: grow and shrink, with a min-width */
    max-width: 300px; /* Max width for each box */
    text-align: center; /* Center align content inside boxes */
    transition: transform 0.5s; /* Smooth scale on hover */
}

.fea-box:hover {
    transform: scale(1.05); /* Scale up box on hover */
}

.fea-box i {
    font-size: 40px; /* Icon size */
    margin-bottom: 15px; /* Space between icon and heading */
}

.fea-box h3 {
    font-size: 20px; /* Font size for heading */
    margin: 0; /* Remove default margin */
}

/* Text content styling */
.text-content {
    flex: 1;
    max-width: 100%; /* Set to 100% on smaller screens */
    padding: 20px; /* Add padding for better spacing */
    text-align: center; /* Center the text */
    background-color: #fff;
    margin: auto; /* Center the container horizontally */
}



/* Responsive Text Styling  content1*/

.content1 {
    width: 100%;
    margin: auto;
    text-align: center;
    padding-top: 15px;
}
.text-content p {
    font-size: 1.2rem; /* Default font size */
    line-height: 1.6;
    color: #202c5d;
    text-align: center;
    margin: 0 auto; /* Ensures the text block is centered */
    max-width: 1200px; /* Limit the width of the text */
}

.content1-heading {
    font-size: 28px;
    font-weight: bold;
    color: #202c5d;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-align: center;
    margin-top: 20px;
}

.content1-heading::after{
        content: "";
        display: block;
        width: 120px;
        height: 4px;
        background: linear-gradient(to right, #ffffff, #f9a825);
        margin: 0 auto;
}



/* Responsive adjustments */
@media (min-width: 768px) {
    .text-content p {
        font-size: 1.3rem; /* Larger font for medium to larger screens */
        line-height: 1.8;
    }
}

.center-text {
    max-width: 100%;
    height: auto;
    animation: wipeIn 1s ease-in forwards; /* Add the animation */
}

.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;
}

h2::after {
    content: "";
    display: block;
    width: 100px;
    height: 4px;
    background: linear-gradient(to right, #ffffff, #f9a825);
    margin: 0 auto;
}

/*--------- HRDC--------*/
.hrdc-training {
    padding: 20px;
    background-color: #f3f3f3;
}


.hrdc-training h2 {
    font-size: 28px;
    font-weight: 700;
    color: var(--main-color);
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 20px;
    margin-top: 20px;
}


.content-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.hrdc-picture {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.hrdc-picture img {
    max-width: 150px; /* Set a maximum width for smaller images */
    height: auto;
    border-radius: 5px;
    
}

.text-hrdc-content {
    flex: 2;
    max-width: 600px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.text-hrdc-content h3 {
    font-size: 1.4rem;
    color: #B99B3B;
    margin-bottom: 10px;
}

.text-hrdc-content p {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
}

/* Responsive styles */
@media (max-width: 768px) {
    .content-wrapper {
        flex-direction: column;
        text-align: center;
    }

    .hrdc-picture {
        justify-content: center;
    }

    .text-hrdc-content {
        max-width: 100%;
    }

    .hrdc-training h2 {
        font-size: 28px;
        font-weight: 700;
        color: var(--main-color);
        text-transform: uppercase;
        text-align: center;
        margin-bottom: 20px;
        margin-top: 20px;
    }

    .text-hrdc-content h3 {
        font-size: 1.2rem;
    }

    .text-hrdc-content p {
        font-size: 0.9rem;
    }

    .hrdc-picture img {
        max-width: 120px; /* Smaller images for tablet screens */
    }
}

@media (max-width: 480px) {
    .hrdc-training h2 {
        font-size: 1.5rem;
    }

    .text-hrdc-content h3 {
        font-size: 1rem;
    }

    .text-hrdc-content p {
        font-size: 0.8rem;
    }

    .hrdc-picture img {
        max-width: 100px; /* Smaller images for mobile screens */
    }
}

/*--------- 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;
    }
}

/*----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%);
    /* Soft and transparent gradient */
}

.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 */
    }
}

.training-text ul {
    list-style-type: disc; /* Adds bullet points */
    margin-left: 20px; /* Indents the list */
    padding-left: 0; /* Removes default padding */
    font-size: 18px; /* Matches paragraph text size */
    line-height: 1.6; /* Keeps proper spacing */
    color: var(--text-color); /* Matches the text color */
    text-align: justify;
}

.training-text ul li {
    margin-bottom: 10px; /* Adds spacing between points */
}

/* Custom Bullet Container */
.custom-bullet {
    display: flex;
    align-items: center;
    justify-content: flex-start; /* Aligns text and bullet to the left */
    margin-bottom: 10px; /* Spacing between points */
    text-align: left;
    gap: 10px; /* Ensures consistent spacing between bullet and text */
}

/* Bullet Style */
.custom-bullet .bullet {
    flex-shrink: 0; /* Prevents bullet from resizing */
    width: 8px;
    height: 8px;
    background-color: #202c5d; /* Matches text color */
    border-radius: 50%; /* Creates a circular bullet */
    margin-right: 10px; /* Ensures a gap between bullet and text */
}

/* Bullet Text Style */
.custom-bullet {
    font-size: 18px; /* Matches paragraph text size */
    color: #202c5d; /* Matches text color */
    line-height: 1.6; /* Proper line spacing */
    max-width: 100%; /* Adjusts max width of text for responsiveness */
    word-break: break-word; /* Ensures text wraps for longer lines */
}

/* Responsive Design */
@media (max-width: 768px) {
    .training-part {
        flex-direction: column; /* Stacks image and text vertically */
    }

    .training-text {
        margin-bottom: 20px; /* Adds spacing between text and image */
    }

    .custom-bullet {
        font-size: 16px; /* Slightly smaller font for smaller screens */
    }
}

@media (max-width: 480px) {
    .custom-bullet {
        font-size: 14px; /* Smaller font for very small screens */
        gap: 8px; /* Adjust spacing for small screens */
    }

    .custom-bullet .bullet {
        width: 6px; /* Smaller bullet size for smaller screens */
        height: 6px;
    }
}

.training2-text ul {
    list-style-position: inside; /* Ensures bullets stay inside the content area */
    
    list-style-type: disc; /* Adds bullet points */
    margin: 0 20px 0 0; /* Adjusts spacing on the right */
    padding-left: 0; /* Removes default left padding */
    font-size: 18px; /* Matches paragraph text size */
    line-height: 1.6; /* Maintains proper spacing */
    color: var(--text-color); /* Matches the text color */
}

.training2-text ul li {
    margin-bottom: 10px; /* Adds spacing between points */
}

/* Custom Bullet Container */
.custom-bullet2 {
    display: flex;
    align-items: center;
    justify-content: flex-start; /* Aligns text and bullet to the left */
    margin-bottom: 10px; /* Spacing between points */
    text-align: left;
    gap: 10px; /* Ensures consistent spacing between bullet and text */
}

/* Bullet Style */
.custom-bullet2 .bullet2 {
    flex-shrink: 0; /* Prevents bullet from resizing */
    width: 8px;
    height: 8px;
    background-color: #fff; /* Matches text color */
    border-radius: 50%; /* Creates a circular bullet */
    margin-right: 10px; /* Ensures a gap between bullet and text */
}

/* Bullet Text Style */
.custom-bullet2 {
    font-size: 18px; /* Matches paragraph text size */
    color: #fff; /* Matches text color */
    line-height: 1.6; /* Proper line spacing */
    max-width: 100%; /* Adjusts max width of text for responsiveness */
    word-break: break-word; /* Ensures text wraps for longer lines */
}

/* Responsive Design */
@media (max-width: 768px) {
    .training2-part {
        flex-direction: column; /* Stacks image and text vertically */
    }

    .training2-text {
        margin-bottom: 20px; /* Adds spacing between text and image */
    }

    .custom-bullet2 {
        font-size: 16px; /* Slightly smaller font for smaller screens */
    }
}

@media (max-width: 480px) {
    .custom-bullet2 {
        font-size: 14px; /* Smaller font for very small screens */
        gap: 8px; /* Adjust spacing for small screens */
    }

    .custom-bullet2 .bullet2 {
        width: 6px; /* Smaller bullet size for smaller screens */
        height: 6px;
    }
}

h2 {
    font-size: 28px;
    font-weight: 700;
    color: #202c5d;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 20px;
    margin-top: 20px;
}

/* Service Content: Grid with 3 Boxes Per Row */
.service-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* Always 3 columns */
    gap: 2rem; /* Space between boxes */
    margin-top: 4rem;
    cursor: pointer;
}

/* Style for "Read More" Content */
.more-text {
    display: none; /* Hidden by default */
    color: var(--main-color); /* Optional: Matches the design theme */
    margin-top: 10px; /* Space above the list */
    padding-left: 20px; /* Indent for bullet points */
    font-size: 14px; /* Adjust font size if needed */
    line-height: 1.6; /* Improve readability */
}

/* List Items */
.more-text li {
    margin-bottom: 8px; /* Space between each bullet point */
    list-style-type: disc; /* Default bullet style */
}


/* Individual Box Style */
.col {
    padding: 40px;
    border: 1px solid var(--second-color);
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transition: all 0.6s ease;
    background-color: #fff; /* Optional: Ensures contrast */
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1); /* Optional: Subtle shadow for depth */
}

/* Hover Effect */
.col:hover {
    transform: scale(1.04) translateY(-4px);
}

/* Column Text */
.col-text h4 {
    font-size: 23px;
    font-weight: 600;
    margin-bottom: 10px;
}

.col-text p {
    color: var(--main-color);
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 15px;
}

.more-text {
    display: none;
    color: var(--main-color);
}

/* Button Style */
.training_methodology-btn {
    padding: 10px 20px;
    font-size: 13px;
    font-weight: 600;
    border: 1px solid var(--main-color);
    color: var(--main-color);
    transition: all 0.6s ease;
    background-color: transparent;
    cursor: pointer;
}

.training_methodology-btn:hover {
    background: var(--main-color);
    color: #ffffff;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .service-content {
        grid-template-columns: repeat(2, 1fr); /* 2 columns for medium screens */
    }
}

@media (max-width: 768px) {
    .service-content {
        grid-template-columns: 1fr; /* 1 column for smaller screens */
    }

    .col {
        padding: 30px; /* Reduce padding for smaller screens */
    }

    .col-text h4 {
        font-size: 20px; /* Adjust font size */
    }

    .col-text p {
        font-size: 12px;
    }
}

