@import url("https://fonts.googleapis.com/css2?family=Raleway:wght@100;400;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;600;700&display=swap");
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
    
}

body{
 overflow-x: hidden;
 background: rgba(248, 250, 255, 0.83);
}

.main{
    margin-left: 40px;
    margin-right: 40px;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(248, 250, 255, 0.65);
    padding: 15px 30px;
    position: sticky;
    gap: 20px; /* Adjust spacing between elements */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    top: 0;
}

/* Logo Styling */
.logo img {
    height: 80px; /* Adjust the height as needed */
    width: auto;
    display: block;
}

/* Center logo in navigation */
.logo {
    display: flex;
    align-items: center;
    margin-left: -200px; /* Move the logo a bit to the left */
}


.nav-links {
    list-style: none;
    display: flex;
}

.nav-links li {
    position: relative;
    margin: 0 15px;
}

.nav-links a {
    font-family: 'Raleway';
    color: rgba(23, 25, 62, 1);
    font-size: 18px;
    transition: 0.3s;
    text-decoration: none;
    line-height: 19.5px;
    font-weight: 500;
}

.nav-links a:hover {
    color: rgba(55, 114, 255, 1);
    text-decoration: underline;
    text-underline-offset: 10px;
}

.nav-button {
    background: rgba(28, 40, 86, 1);
    color: rgba(255, 255, 255, 1);
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    font-size: 18px;
    border-radius: 30px;
    transition: 0.3s;
    height: 60px;
    width: 163px;
    line-height: 34px;
    font-weight: 600;
    font-family: 'Raleway';
}

.nav-button:hover {
    background: rgba(55, 114, 255, 1);
}

/* Dropdown Menu */
.dropdown {
    position: relative;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    list-style: none;
    width: 230px;
    padding: 10px 0;
    border-radius: 0px 0px 30px 30px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
    z-index: 1001;
}

.dropdown-menu li {
    padding: 10px;
    text-align: left;
}

.dropdown-menu a {
    color: #1f3a67;
    font-size: 20px;
    text-decoration: none;
    display: block;
    padding: 8px 15px;
}

.dropdown-menu a:hover {
    background: #1f3a67;
    color: #fff;
}

.dropdown:hover .dropdown-menu {
    display: block;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    font-size: 24px;
    color: #1f3a67;
    cursor: pointer;

}

/* Style for dividers */
.divider {
    border-top: 1px solid #888; /* Line color */
    margin: 2px 0; /* Spacing above and below */
    width: 90%;
    margin-left: auto;
    margin-right: auto;
}


.nav-links a.active {
    font-weight: bold;
    color: rgba(23, 25, 62, 1); /* Same as hover effect */
    text-decoration: underline;
    text-underline-offset: 10px;
}





@media (max-width: 768px) {
    html, body {
        overflow-x: hidden;
        }

    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 60px;
        left: 0;
        background: #fff;
        width: 100%;
        text-align: center;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        margin: 15px 0;
    }

    .dropdown-menu {
        position: static;
        width: 100%;
        background: #fff;
        margin-top: 10px;
    }

    .dropdown-menu a {
        padding: 10px;
    }

    .hamburger {
        display: block;
    }
    .logo img {
        height: 50px; /* Adjust the height as needed */
        width: auto;
        display: block;
        margin-left: 190px;
    }
    .main{
        margin-left: 20px;
        margin-right: 20px;
    }

    .nav-button {
        background: #1f3a67;
        color: white;
        padding: 10px 15px;
        border: none;
        cursor: pointer;
        font-size: 14px;
        border-radius: 30px;
        transition: 0.3s;
        width: 130px;
        margin-left: 30px;
    }
    
    
}




/*home page*/

.slider {
    position: relative;
    width: 100%;
    background-color: #fff;
    height: auto; /* Change from 100vh to auto */
    overflow: hidden;
    margin-top: 52px;
    border-radius: 20px;
    margin-bottom: 80px;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.slide img {
    width: 100%;
    height: 70vh; /* Set max height instead of fixed height */
    object-fit: cover;
    transition: transform 1.5s ease-in-out;  
    border-radius: 25px;
    display: block; /* Removes inline spacing issues */
}

/* Responsive Fix */
@media (max-width: 768px) {
    .slider {
        height: auto; /* Change height to auto to fit the image */
    }

    .slide img {
        height: 25vh;
    }
}


/* 🚀 Image on Bottom Right of Slider */
.bottom-right-img {
    position: absolute;
    bottom: -5px;  /* Distance from the bottom */
    right: -1px;   /* Distance from the right */
    width: 280px;  /* Adjust size as needed */
    height: auto;
    z-index: 1000; /* Ensure it's above the slider */
    transition: transform 0.3s ease-in-out;
}

/* Add Hover Effect (Optional) */
/* .bottom-right-img:hover {
    transform: scale(1.1); 
} */

/* Responsive: Adjust Size for Small Screens */
@media (max-width: 768px) {
    .bottom-right-img {
        width: 100px; /* Smaller image for mobile */
        bottom: -1px;
        right: 0px;
    }
}


/* 🚀 Slide Content Styling */
.slide {
    position: relative; /* Make sure each slide is positioned correctly */
    width: 100%;
    flex-shrink: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.slide-content {
    position: absolute; /* Ensures text moves with the slide */
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
    color: white;
    
    width: 100%; /* Prevents text from being too wide */
    max-width: 700px;
    z-index: 10;
     /* Optional dark background for readability */
   
    border-radius: 10px;
    text-align: left;
}

/* Heading Style */
.slide-content h2 {
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 10px;
    line-height: 1.2;
}
.slide-content h4 {
    font-size: 1.0rem;
    font-weight: bold;
    margin-bottom: 20px;
    padding: 10px 30px; /* Adjust padding for better spacing */
    border: 2px solid #fff;
    border-radius: 30px;
    display: inline-block; /* Ensures the border wraps around the text only */
    text-align: center;
    width: auto; 
}

/* Paragraph Style */
.slide-content p {
    font-size: 1.5rem;
    line-height: 1.5;
    margin-bottom: 20px;
    margin-top: 30px;
}


.slide-content1 {
    position: absolute; /* Ensures text moves with the slide */
    top: 52%;
    left: -15%;
    transform: translateY(-50%);
    color: white;
    
    width: 100%; /* Prevents text from being too wide */
    max-width: 1200px;
    z-index: 10;
    /* Optional dark background for readability */
   
    border-radius: 10px;
    text-align: left;
}

/* Heading Style */
.slide-content1 h2 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 5px;
    line-height: 45px;
    font-family: 'Raleway';
    letter-spacing: -0.19px;
}

/* Paragraph Style */
.slide-content1 p {
    font-family: 'Open Sans';
    font-size: 14px;
    line-height: 18px;
    margin-bottom: 20px;
    margin-top: 25px;
    font-weight: 600;
    letter-spacing: 0.75px;
    margin-right: 20px;
}


/* 🌟 Responsive Adjustments */
@media (max-width: 1024px) {
    .slide-content {
        left: 5%;
        width: 50%;
        text-align: left;
    }

    .slide-content h2 {
        font-size: 18px;
    }

    .slide-content p {
        font-size: 12px;
    }
    .slide-content h4 {
        font-size: 12px;
    }

    .slide-content1 {
        left: 5%;
        width: 50%;
    }

    .slide-content1 h2 {
        font-size: 30px;
    }

    .slide-content1 p {
        font-size: 16px;
    }
    .slide-content1 h4 {
        font-size: 14px;
    }

 
}

/* Mobile View */
@media (max-width: 768px) {
    .slide-content {
        left: 50%;
        top: 60%;
        transform: translate(-50%, -50%);
        width: 80%;
        text-align: left;
    }

    .slide-content h2 {
        font-size: 14px;
        margin-top: -15px;
    }

    .slide-content p {
        font-size: 10px;
        margin-top: -5px;
    }

    .slide-btn {
        font-size: 14px;
        padding: 8px 12px;
    }
    .slide-content h4 {
        font-size: 8px;
        padding: 5px 10px;
    }

    .slide-content1 {
        left: 50%;
        top: 60%;
        transform: translate(-50%, -50%);
        width: 80%;
        text-align: center;
    }

    .slide-content1 h2 {
        font-size: 18px;
        margin-top: -15px;
    }

    .slide-content1 p {
        font-size: 8px;
        margin-top: -5px;
        margin-left: 50px;
    
    }
    .slide-content1 h4 {
        font-size: 8px;
        padding: 5px 10px;
    }
}


/* 🚀 Style for the Two Side-by-Side Images */
.slide-images {
    display: flex;
    justify-content: left; /* Center images */
    gap: 20px; /* Space between images */
    margin-top: 50px; /* Space from the text */
    text-align: left;
}

.slide-images img {
    width: 230px; /* Adjust the width as needed */
    height: auto;
   text-align: left;
    transition: transform 0.3s ease-in-out;
}

.slide-images img:hover {
    transform: scale(1.1); /* Slight zoom effect on hover */
}

/* Responsive for Mobile */
@media (max-width: 768px) {
    .slide-images {
        flex-direction: row; /* Stack images on small screens */
        align-items: center;
        margin-top: -10px;
    }

    .slide-images img {
        width: 70px; /* Reduce size for small screens */
    }
}
.slider-container14 {
    position: relative;
    width: 100%;
    max-width: 100%;
    margin: auto;
    padding: 20px;
    text-align: center;
  }
  
  .content14 h4 {
    font-family: "Open Sans";
    font-weight: 700;
    font-size: 12px;
    color: rgba(0, 24, 55, 1);
    margin-bottom: 10px;
    line-height: 22px;
    text-transform: uppercase;
    border: 2px solid #1f3a67;
    padding: 7px 20px;
    display: inline-block; /* Ensures the border wraps around the text only */
    text-align: center;
    width: auto;
    border-radius: 30px;
  }
  
  .content14 h1 {
    font-size: 50px;
    color: rgba(0, 24, 55, 1);
    font-family: "Raleway";
    margin-bottom: 60px;
    font-weight: 600;
    line-height: 60px;
  }
  
  /* Slide Wrapper */
  .slides14 {
    display: flex;
    width: 100%;
    height: auto;
    overflow: hidden;
    justify-content: center;
  }
  
  /* Individual Slide */
  .slide14 {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
  
    padding: 20px;
    border-radius: 10px;
  }
  
  /* Slide Image */
  .slide-image14 {
    flex: 1;
    text-align: center;
  }
  
  .slide-image14 img {
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: 10px;
  }
  
  /* Slide Content */
  .slide-content14 {
    flex: 1;
    text-align: left;
    padding: 20px;
  }
  
  .slide-content14 p {
    font-family: "Raleway";
    font-weight: 400;
    font-size: 16px;
    line-height: 30px;
    color: rgba(0, 0, 0, 1);
    margin-bottom: 15px;
  }
  
  /* Main Content (Menu Buttons) */
  .main-content14 {
    display: flex;
    flex-direction: column;
    gap: 10px;
    justify-content: flex-start;
    margin-top: 25px;
  }
  
  .menu14 {
    display: flex;
    flex-direction: row;
    align-items: center;
    text-align: center;
    margin-top: 4px;
  }
  
  .menu14 img {
    width: 20px;
    height: auto;
    margin-bottom: 5px;
  }
  
  .menu14 p {
    font-size: 16px;
    color: rgba(0, 0, 0, 1);
    font-weight: 400;
    font-family: "Raleway";
    line-height: 10px;
    margin-left: 10px;
    margin-bottom: 5px;
  }
  
  /* Extra Image */
  .image14 {
    text-align: left;
    margin-top: 35px;
  }
  
  .image14 img {
    width: 170px;
    height: auto;
  }
  
  /* Extra Images Section */
  .extra-images14 {
    display: flex;
    gap: 20px;
    margin-top: 35px;
  }
  
  .menu-content14 {
    display: flex;
    align-items: center;
    gap: 10px;
  }
  
  .menu-content14 img {
    width: 135px;
    height: auto;
  }
  
  .menu-content14 p {
    font-size: 18px;
    color: rgba(1, 25, 56, 1);
    font-weight: 600;
    font-family: "Raleway";
    margin-top: 30px;
    line-height: 26px;
  }
/* Responsive Design */
@media (max-width: 768px) {
    .slide14 {
        flex-direction: column;
        text-align: center;
    }

    .slide-content14 {
        text-align: left;
        padding: 10px;
    }
    .content14 h1{
        font-size: 1.8rem;
    }
    .main-content14 {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .menu14 img {
        width: 21px;
    }
    .menu14 p {
        text-align: left;
        line-height: 22px;
    }


    .extra-images14 {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .image14 {
        text-align: center;
    }

    .image14 img {
        width: 150px;
    }

    .menu-content14 p{
        margin-left: 5px;
       text-align: left;

    }
    .menu-content14 img{
        width: 100px;
    }
    
}

@media (max-width: 768px) {
    .slider-container14 {
        margin-top: 0; /* Remove negative margin */
        padding-top: 20px; /* Adjust padding if needed */
    }

   .content14 h1 {
        font-size: 1.5rem;
        line-height: 30px;
    }

    
.content14 h4 {
    font-size: 1.1rem;
    color: rgba(0, 24, 55, 1);
    margin-bottom: 10px;
    text-transform: uppercase;
    border: 2px solid #1f3a67;
    padding: 10px 20px;
    display: inline-block; /* Ensures the border wraps around the text only */
    text-align: center;
    width: auto;
    border-radius: 30px;

}
}

@media (max-width: 480px) {
    
.content14 h4 {
    font-size: 1.1rem;
    color: rgba(0, 24, 55, 1);
    margin-bottom: 10px;
    text-transform: uppercase;
    border: 2px solid #1f3a67;
    padding: 10px 20px;
    display: inline-block; /* Ensures the border wraps around the text only */
    text-align: center;
    width: auto;
    border-radius: 30px;

}
}







/****page2***/


/* Slider Container */
.slider1 {
    position: relative;
    width: 100%;
   
    height: 100%; /* Adjust height as needed */
    overflow: hidden;
    margin: 40px auto;
 
}

/* Slides Wrapper */
.slides1 {
    display: flex;
    transition: transform 0.5s ease-in-out;
    
}

/* Individual Slide */
.slide1 {
    flex: 0 0 calc(100% / 3); /* Show 3 slides at a time */
    position: relative;
}

/* Slide Image */
.slide1 img {
    width: 91.5%;
    height: 99.4%;
    object-fit: cover;
    margin-left: 40px;
}

/* Slide Content */
.slide-content2 {
    position: absolute;
    top: 60%;
    left: 58%;
    transform: translateX(-60%);
    color: #1f3a67;
    padding: 10px 20px;
    text-align: left;
    border-radius: 8px;
    width: 80%;
    height : 30%
    
}

.slide-content2 h4{
    font-size: 14px;
    margin-bottom: 5px;
    margin-top: -40px;
}

.slide-content2 h2 {
    font-size: 18px;
    margin-bottom: 20px;
    font-family: 'Raleway';
    font-weight: 600;
    line-height: 32px;
    color: rgba(0, 24, 55, 1);
}

.slide-content2 p {
    font-family: 'Open Sans';
    font-weight: 400;
    font-size: 15px;
    padding-bottom: 25px;
    line-height: 22px;
    color: rgba(106, 115, 145, 1);
    margin-top: 20px;
}
/* .divider1 {
    border-top: 1px solid #888;
   margin-bottom: 10px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
} */

.slide-content2 img{
    width: 50px;
    height: 50px;
    margin-bottom: -70px;
    margin-left: 370px;
}


/* Responsive Design */
@media (max-width: 768px) {
    .slide1 {
        flex: 0 0 calc(100% / 2);
        margin-bottom: 10px;
    }

    .slides1 {
        display: block; /* Stack slides vertically */
        height: 100%;
    }

    .slide1 img {
        width: 98%;
        height: 50%;
        padding-left: 10px;
    }

    /* .slide-content2 {
        width: 100%;
        text-align: center;
        padding: 10px;
    } */
    .slide-content2 {
        position: absolute;
        bottom: 5%;
        left: 50%;
        transform: translateX(-50%);
        width: 90%;
        text-align: left;
        padding: 10px;
        top: 250px;
    }

    .slide-content2 h2 {
        font-size: 22px;
    }

    .slide-content2 p {
        font-size: 16px;
    }
    .slide-content2 img{
        max-width: 40px;
        height: 30px;
        margin-bottom: -30px;
        margin-left: 290px;
        margin-top: 30px;

    }
}

@media (max-width: 480px) {
    .slide1 {
        flex: 0 0 calc(100% / 2);
        margin-bottom: 10px;
    }

    .slides1 {
        display: block; /* Stack slides vertically */
        height: 100%;
    }

    .slide1 img {
        width: 98%;
        height: 50%;
        padding-left: 10px;
    }

    /* .slide-content2 {
        width: 100%;
        text-align: center;
        padding: 10px;
    } */
    .slide-content2 {
        position: absolute;
        bottom: 5%;
        left: 50%;
        transform: translateX(-50%);
        width: 90%;
        text-align: left;
        padding: 10px;
        top: 250px;
    }

    .slide-content2 h2 {
        font-size: 22px;
    }

    .slide-content2 p {
        font-size: 16px;
    }
    .slide-content2 img{
        max-width: 40px;
        height: 30px;
        margin-bottom: -30px;
        margin-left: 290px;
        margin-top: 30px;

    }
}

.main1{
    position: relative; 
    width: 100%;
    
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 100vh;
    overflow: hidden;
    padding-top: 50px;
}


.content-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;

}
.image-content img {
    width: 80px; 
    max-width: 100%;
    height: auto;
    margin-bottom: 50px;
    border-radius: 10px; 
}
.image-content1 img {
    width: 100px; 
    margin-left: -150px;
    height: auto;
    border-radius: 10px;
    
}

.image1{
    display: block;
}



.slide-content12 {
    max-width: 800px; 
    margin: 0 auto 30px; 
    flex: 1; 
}



.slide-content12 h4 {
    font-size: 11px;
    font-weight: 700;
    color: rgba(0, 24, 55, 1);
    text-transform: uppercase;
    margin-bottom: 10px;
    border: 2px solid #1f3a67;
    border-radius: 20px;
    padding: 5px 25px;
    display: inline-block; 
    text-align: center;
    width: auto; 
    font-family: 'Open Sans';
    line-height: 22px;
}

.slide-content12 h2 {
    font-size: 50px;
    font-weight: 600;
    color: rgba(0, 24, 55, 1); 
    margin-bottom: 15px;
    font-family: 'Raleway';
    line-height: 60px;

}

.slide-content12 p {
    font-family: 'Raleway';
    font-size: 24px;
    color: rgba(0, 24, 55, 1);
    line-height: 30px;
    font-weight: 500;
}

@media (max-width: 768px) {
    .slide-content12 h2 {
        font-size: 28px; 
    }

    .slide-content12 p {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .slide-content12 h2 {
        font-size: 24px;
    }

    .slide-content12 p {
        font-size: 14px;
    }
}




@media (max-width: 480px) {

    .content-container {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .slide-content12 {
        max-width: 100%;
        padding: 10px;
    }

    .slide-content12 h2 {
        font-size: 24px;
    }

    .slide-content12 p {
        font-size: 14px;
    }

    .slide-content12 h4 {
        font-size: 16px;
        padding: 3px 15px;
    }

    .image-content img, 
    .image-content1 img {
        width: 70px;
        margin-left: 0;
        display: block;
        margin: auto;
        padding-left: 10px;
        margin-top: -20px;
    }

    .image1 {
        display: flex;
        flex-direction: row;
        align-items: center;
    }

    .slider1 {
        height: auto;
        margin: 20px auto;
    }

    .slides1 {
        display: flex;
        transition: transform 0.5s ease-in-out;
    }

    .slide1 {
        flex: 0 0 100%;
        margin-right: 15px;
        padding-right: 50px;
        margin-left: -15px;
    }

    .slide1 img {
        width: 98%;
        height: auto;
    }

    .slide-content2 {
        position: absolute;
        bottom: 5%;
        left: 50%;
        transform: translateX(-50%);
        width: 90%;
        text-align: left;
        padding: 11%;
        top: 40%;
    }

    .slide-content2 h4 {
        font-size: 12px;
    }

    .slide-content2 h2 {
        font-size: 80%;
        margin-top: 12%;
        margin-bottom: -12%;
    }

    .slide-content2 p {
        font-size: 68%;
        margin-top: 2%;
        line-height: 165%;
    }

    .divider1 {
        width: 60%;
    }

}






.image-container {
    display: flex;
    justify-content: space-between;
    gap: 20px; 
    padding: 20px;
    flex-wrap: wrap; 

    margin-top: -50px;
    margin-bottom: 50px;
}
.image-box {
    flex: 1; 
    max-width: 22%; 
    text-align: center;
   
    padding: 15px;
    border-radius: 10px;
    
    transition: transform 0.3s ease-in-out;
}

.image-box:hover {
    transform: translateY(-3px);
}

.image-box img {
    width: 70%;
    height: 85px; 
    
    
    
}

.image-content11 {
    margin-top: 10px;
}

.image-content11 h4 {
    font-size: 18px;
    font-weight: bold;
    color: #1f3a67;
}

.image-content11 p {
    font-family: 'Open Sans';
    font-size: 20px;
    color: rgba(106, 115, 145, 1);
    margin-top: 20px;
    font-family: 'Open San';
    font-weight: 400;
    line-height: 24px;
}

@media (max-width: 1024px) {
    .image-box {
        max-width: 45%; 
    }
}

@media (max-width: 600px) {
    .image-container {
        flex-direction: column;
        align-items: center;
    }

    .image-box {
        max-width: 80%;
    }
}





@media (max-width: 600px) {

    .image-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 15px;
        padding: 10px;
        margin-top: 0;
        margin-bottom: 10px;
    }

    .image-box {
        max-width: 50%; 
        padding: 10px;
        border-radius: 8px;
    }

    .image-box img {
        width: 50%; 
        height: 40px; 
    }

    .image-content11 p {
        font-size: 18px; 
        margin-top: 10px;
    }

}


@media (max-width: 480px) {

    .image-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 15px;
        padding: 10px;
        margin-top: 0;
        margin-bottom: 10px;
    }

    .image-box {
        max-width: 50%; 
        padding: 10px;
        border-radius: 8px;
    }

    .image-box img {
        width: 50%; 
        height: 40px; 
    }

    .image-content11 p {
        font-size: 18px; 
        margin-top: 10px;
        margin-right: -35%;
    }

}

.our {
    margin-top: 50px;
    text-align: center;
}

.our img {
    width: 100%; 
    max-width: 1800px; 
    height: auto; 
}

@media (max-width: 1024px) {
    .our img {
        height: 80px; 
    }
}

@media (max-width: 768px) {
    .our img {
        height: 60px; 
    }
}

@media (max-width: 480px) {
    .our img {
        height: 50px; 
    }
}




/**page 3***/





.slider-container {
    position: relative;
    width: 100%;
    max-width: 100%;
    height: 100vh; /* Fixed height */
    overflow: hidden;
   
   
}
.slider-container h1{
    text-align: center;
    font-size: 3.5rem;
    color: #1f3a67;
}

/* Wrap all slides */
.slides13 {
    display: flex;
    width: 100%;
    height: 100%;
    position: relative;
}

/* Individual Slide */
.slide13 {
    display: flex;
    flex: 1;
    position: absolute;
    top: 0;
    left: 100%;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: space-between;
    background: none;
    padding: 20px;
    opacity: 0;
    transition: left 0.8s ease-in-out, opacity 0.8s ease-in-out;
}

.slide13.active {
    left: 0;
    opacity: 1;
}

/* Image Styling */
.slide-image13 {
    flex: 1;
    padding: 20px;
}

.slide-image13 img {
    width: 130%;
    height: auto;
    border-radius: 10px;
}

/* Content Styling */
.slide-content13 {
    flex: 1;
    padding: 20px;
}

.slide-content13 h2 {
    font-size: 3.5rem;
    margin-bottom: 30px;
    color: #1f3a67;
}

.slide-content13 p {
    font-size: 1.8rem;
    color: #333;
    
}

/* Two Extra Images Side by Side */
.extra-images {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.extra-images img {
    width: 200px; /* Adjust size */
    height: auto;
   
}



/* Responsive: Stack content on small screens */
@media (max-width: 768px) {
    .slide13 {
        flex-direction: column;
        text-align: center;
    }

    .slide-image13 img {
        width: 130%;
        height: auto;
        
    }
    .extra-images {
        justify-content: center;
    }
    .slide-content13 h2 {
        font-size: 1.3rem; /* Smaller text for very small screens */
    }
    .slide-content13{
        margin-top: -100px;
        text-align: left;
    }

    .slide-content13 p {
        font-size: 0.9rem;
    }

    .extra-images img {
        width: 60px; /* Even smaller icons */
    }
    .slider-container h1{
        font-size: 2.5rem;
    }
   
    
}

.menu15{
    padding: 30px;
    min-height: 100vh;
    width: 100%;
}


.main15{
    position: relative; /* Establish a positioning context for child elements */
   
    background: url(../img/Roadmaps.png);
    background-repeat: no-repeat;
    background-size: cover;
   
   height: 100vh;
    padding-top: 50px;
    border-radius: 20px;
    
}





/* Slider Container */
.slider16 {
    position: relative;
    width: 90%;
   
    height: 80%; /* Adjust height as needed */
    overflow: hidden;
    margin: 40px auto;
}

/* Slides Wrapper */
.slides16 {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

/* Individual Slide */
.slide16 {
    flex: 0 0 calc(100% / 3); /* Show 3 slides at a time */
    position: relative;
    
}

/* Slide Image */
.slide16 img {
    width: 80%;
    height: 100%;
    
}

/* Slide Content */
.slide-content16 {
    position: absolute;
    top: 10%; /* Position from bottom */
    left: 50%;
    transform: translateX(-60%);
   /* Semi-transparent background */
    color: #fff;
    padding: 10px 20px;
    text-align: left;
    border-radius: 8px;
    width: 80%;
    
}

.slide-content16 h4{
    font-size: 14px;
    margin-bottom: 5px;
}

.slide-content16 h2 {
    font-size: 22px;
    margin-bottom: 5px;
    font-family: 'Raleway';
    font-weight: 600;
    line-height: 29.4px;
    color: rgba(255, 255, 255, 1);
}

.slide-content16 p {
    font-size: 15px;
    margin-top: 20px;
    font-family: 'Open Sans';
    font-weight: 400;
    line-height: 27.52px;

}
.divider1 {
    border-top: 1px solid #888; /* Line color */
    margin: 2px 0; /* Spacing above and below */
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.slide-content16 img{
    width: 50px;
    height: 50px;
    margin-bottom: -70px;
    margin-left: 370px;
}


/* Responsive Design */
@media (max-width: 768px) {
    .main15 {
        height: auto; /* Adjust height automatically */
        padding-bottom: 30px;
    }

    .slider16 {
        width: 100%;
        overflow: visible; /* Show all slides */
    }

    .slides16 {
        display: flex;
        flex-direction: column; /* Stack slides vertically */
        align-items: center; /* Center content */
        gap: 20px; /* Add spacing between slides */
    }

    .slide16 {
        flex: 0 0 100%; /* Full width */
        width: 100%;
        text-align: center;
    }

    .slide16 img {
        width: 90%;
        height: auto;
    }

    .slide-content16 {
        width: 100%;
        text-align: center;
        padding: 20px;
    }

    .slide-content16 h2 {
        font-size: 22px;
    }

    .slide-content16 p {
        font-size: 16px;
    }

    .slide-content16 img {
        max-width: 40px;
        height: 30px;
        margin-bottom: 10px;
        margin-left: 0; /* Center image */
    }
}


.main1{
    position: relative; /* Establish a positioning context for child elements */
    width: 100%;
    
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 100vh;
    overflow: hidden;
    padding-top: 50px;
}

/* Flexbox to Align Content */
.content-container15 {
    display: flex;
    align-items: left;
    justify-content: space-between;
    gap: 20px;
}
/* Image Styling */
.image-content img {
    width: 80px; /* Adjust size as needed */
    max-width: 100%;
    height: auto;
    margin-bottom: 50px;
    border-radius: 10px; /* Optional rounded corners */
}
.image-content1 img {
    width: 100px; /* Adjust size as needed */
    margin-left: -150px;
    height: auto;
    border-radius: 10px; /* Optional rounded corners */
    
}

.image1{
    display: block;
}



/* Content Styling */
.slide-content15 {
    max-width: 1000px; /* Restrict width for readability */
    margin-left: 20px; /* Center content and add spacing */
    flex: 1; 
}



/* Heading Styling */
.slide-content15 h4 {
    font-size: 11px;
    font-weight: 700;
    color: #fff; /* Highlight color */
    text-transform: uppercase;
    margin-bottom: 10px;
    border: 2px solid #fff;
    border-radius: 20px;
    padding: 5px 20px;
    display: inline-block; /* Ensures the border wraps around the text only */
    text-align: center;
    width: auto; 
    font-family: 'Open Sans';
    line-height: 21.56px;
    margin-left: 70px;
    margin-top: 50px;
}

/* Main Title */
.slide-content15 h2 {
    font-size: 49px;
    font-weight: 600;
    color: rgba(255, 255, 255, 1); /* Dark blue */
    margin-bottom: 15px;
    font-family: 'Raleway';
    line-height: 100%;
    margin-top: 25px;
    margin-left: 70px;
}

/* Paragraph Styling */
.slide-content15 p {
    font-size: 25px;
    color: #333; /* Dark gray */
    line-height: 1.5;
}

/* Responsive Design */
@media (max-width: 768px) {
    .slide-content15 h2 {
        font-size: 28px; /* Reduce size for tablets */
    }

    .slide-content15 p {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .slide-content15 h2 {
        font-size: 24px; /* Further reduce size for mobiles */
    }

    .slide-content15 p {
        font-size: 14px;
    }
}




/* MOBILE VIEW (For screens up to 480px) */
@media (max-width: 480px) {

    /* Make the container stack elements vertically */
    .content-container15 {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    /* Adjust text content */
    .slide-content15 {
        max-width: 100%;
        padding: 10px;
    }

    .slide-content15 h2 {
        font-size: 24px;
        margin-left: -13px;
    }

    .slide-content15 p {
        font-size: 14px;
    }

    /* Reduce heading size */
    .slide-content15 h4 {
        font-size: 16px;
        padding: 3px 15px;
        margin-left: -20px;
    }

    /* Make images responsive */
    .image-content img, 
    .image-content1 img {
        width: 70px;
        margin-left: 0;
        display: block;
        margin: auto;
        padding-left: 10px;
        
    }

    /* Ensure the image block is centered */
    .image1 {
        display: flex;
        flex-direction: row;
        align-items: center;
    }

    /* SLIDER SETTINGS */
    .slider16 {
        height: auto;
        margin: 20px auto;
    }

    .slides16 {
        display: flex;
        transition: transform 0.5s ease-in-out;
    }

    /* Display only 1 slide per row on mobile */
    .slide16 {
        flex: 0 0 100%;
    }

    /* Make slide images full width */
    .slide16 img {
        width: 90%;
        height: auto;
    }

    /* Adjust text overlay */
    .slide-content16 {
        position: absolute;
        bottom: 5%;
        left: 50%;
        transform: translateX(-50%);
        width: 90%;
        text-align: left;
        padding: 10px;
    }

    /* Adjust text sizes */
    .slide-content16 h4 {
        font-size: 12px;
    }

    .slide-content16 h2 {
        font-size: 18px;
    }

    .slide-content16 p {
        font-size: 12px;
    }

    /* Reduce divider width */
    .divider1 {
        width: 60%;
    }

}











/* Slider Container */
.slider17 {
    position: relative;
    width: 90%;
   
    height: 100%; /* Adjust height as needed */
    overflow: hidden;
    margin: 40px auto;
}

/* Slides Wrapper */
.slides17 {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

/* Individual Slide */
.slide17 {
    flex: 0 0 calc(100% / 4); /* Show 3 slides at a time */
    position: relative;
}

/* Slide Image */
.slide17 img {
    width: 90%;
    height: 100%;
    object-fit: cover;
}

/* Slide Content */
.slide-content17 {
    position: absolute;
    bottom: 10%; /* Position from bottom */
    left: 50%;
    transform: translateX(-60%);
   /* Semi-transparent background */
    
    padding: 10px 20px;
    text-align: left;
    border-radius: 8px;
    width: 80%;
    
}

.slide-content17 h4{
    font-size: 14px;
    margin-bottom: 5px;
}

.slide-content17 h2 {
    font-size: 27px;
    margin-bottom: 10px;
    color: #1f3a67;
}

.slide-content17 p {
    font-size: 15px;
    margin-top: 20px;
    margin-bottom: -30px;
}
.divider1 {
    border-top: 1px solid #888; /* Line color */
    margin: 2px 0; /* Spacing above and below */
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.slide-content17 img{
    width: 35px;
    height: 37px;
    margin-bottom: -50px;
    margin-left: 190px;
    
    
}


/* Responsive Design */
@media (max-width: 768px) {
    .slide17 {
        flex: 0 0 calc(100% / 2);
    }

    .slide17 img {
        width: 100%;
        height: 50%;

    }

    .slide-content17 {
        width: 100%;
        text-align: center;
        padding: 10px;
    }

    .slide-content17 h2 {
        font-size: 22px;
    }

    .slide-content17 p {
        font-size: 16px;
    }
    .slide-content17 img{
        max-width: 30px;
        height: 30px;
        margin-bottom: -30px;
        margin-left: 230px;
        margin-top: 30px;

    }
}

.main1{
    position: relative; /* Establish a positioning context for child elements */
    width: 100%;
    
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 100vh;
    overflow: hidden;
    padding-top: 50px;
}

/* Flexbox to Align Content */
.content-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}
/* Image Styling */
.image-content img {
    width: 80px; /* Adjust size as needed */
    max-width: 100%;
    height: auto;
    margin-bottom: 50px;
    border-radius: 10px; /* Optional rounded corners */
}
.image-content1 img {
    width: 100px; /* Adjust size as needed */
    margin-left: -150px;
    height: auto;
    border-radius: 10px; /* Optional rounded corners */
    
}

.image1{
    display: block;
}



/* Content Styling */
.slide-content12 {
    max-width: 800px; /* Restrict width for readability */
    margin: 0 auto 30px; /* Center content and add spacing */
    flex: 1; 
}




/* Responsive Design */
@media (max-width: 768px) {
    .slide-content12 h2 {
        font-size: 28px; /* Reduce size for tablets */
    }

    .slide-content12 p {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .slide-content12 h2 {
        font-size: 24px; /* Further reduce size for mobiles */
    }

    .slide-content12 p {
        font-size: 14px;
    }
}




/* MOBILE VIEW (For screens up to 480px) */
@media (max-width: 480px) {

    /* Make the container stack elements vertically */
    .content-container {
        flex-direction: column;
        text-align: center;
        gap: 10px;
        margin-top: -50px;
    }

    /* Adjust text content */
    .slide-content12 {
        max-width: 100%;
        padding: 10px;
    }

    .slide-content12 h2 {
        font-size: 24px;
    }

    .slide-content12 p {
        font-size: 14px;
    }

    /* Reduce heading size */
    .slide-content12 h4 {
        font-size: 16px;
        padding: 3px 15px;
    }

    /* Make images responsive */
    .image-content img, 
    .image-content1 img {
        width: 70px;
        margin-left: 0;
        display: block;
        margin: auto;
        padding-left: 10px;
        margin-top: -20px;
    }

    /* Ensure the image block is centered */
    .image15 {
        display: flex;
        flex-direction: row;
        align-items: center;
    }

    /* SLIDER SETTINGS */
    .slider17 {
        height: auto;
        margin: 20px auto;
    }

    .slides17 {
        display: flex;
        transition: transform 0.5s ease-in-out;
    }

    /* Display only 1 slide per row on mobile */
    .slide17 {
        flex: 0 0 100%;
    }

    /* Make slide images full width */
    .slide17 img {
        width: 100%;
        height: auto;
    }

    /* Adjust text overlay */
    .slide-content17 {
        position: absolute;
        bottom: 5%;
        left: 50%;
        transform: translateX(-50%);
        width: 90%;
        text-align: left;
        padding: 10px;
    }

    /* Adjust text sizes */
    .slide-content17 h4 {
        font-size: 12px;
    }

    .slide-content17 h2 {
        font-size: 18px;
    }

    .slide-content17 p {
        font-size: 12px;
    }

    /* Reduce divider width */
    .divider1 {
        width: 60%;
    }

}












/* Main container */
.menu18 {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
   
}

/* Main box */
.main18 {
    width: 100%;
    max-width: 1400px;
    position: relative;
}

/* Image container */
.image18 {
    width: 100%;
    position: relative; /* Needed for absolute positioning of content */
}

.image18 img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.menu-content18 {
    position: absolute;
    top: 50%; /* Center vertically */
    left: 50%; /* Center horizontally */
    transform: translate(-100%, -50%); /* Center correctly */
    text-align: left;
    padding: 30px;
    width: 600px; /* Reduce width */
    height: 500px; /* Reduce height */
    background: url(../img/Background\ \(5\).png);
    background-size: cover; /* Ensures image covers the full container */
    background-position: center; /* Centers the background */
    background-repeat: no-repeat; /* Prevents repetition */
    border-radius: 10px;
}


.menu-content18 h1 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #1f3a67;
   
}
.menu-content18 h5{
    border: 2px solid #1f3a67;
    padding: 5px 10px;
    display: inline-block; /* Ensures the border wraps around the text only */
   border-radius: 20px;
    width: auto; 
    margin-bottom: 20px;
} 

/* FAQ Questions */
.back18 {
    border: 2px solid #e7e4e4;
    padding: 15px;
    margin: 10px 0;
    border-radius: 40px;
    cursor: pointer; /* Makes it clickable */
    position: relative;
}


/* Style for the FAQ question */
.faq-question {
    font-size: 1.1rem;
    margin-bottom: 5px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Style for the arrow */
.arrow {
    font-size: 1.5rem;
    color: #1f3a67;
    transition: transform 0.3s ease-in-out;
}

/* Hide answer initially */
.faq-answer {
    font-size: 0.9rem;
    line-height: 1.5;
    display: none;
    margin-top: 10px;
}

/* When active, rotate arrow */
.active .arrow {
    transform: rotate(180deg);
}

.back18 h4 {
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.back18 p {
    font-size: 0.8rem;
    line-height: 1.5;
    color: #828181;
}

/* Bottom Right Image */
.bottom-right-image {
    position: absolute;
    bottom: 0;
    right: 13%;
    
    width: 120px; /* Adjust as needed */
}

.bottom-right-image img {
    width: 100%;
    height: auto;
   
}





/* Responsive Design */
@media (max-width: 768px) {
   /* Mobile-specific adjustments */

    .menu18 {
        padding: 10px;
    }

    .menu-content18 {
        padding: 10px;
    }

    .faq-question {
        font-size: 0.9rem;
    }

    .faq-answer {
        font-size: 0.85rem;
    }

    .arrow {
        font-size: 1rem;
    }
    .menu-content18{
        width: 330px;
        left: 95%;
        top: 170%;
    }
    .menu-content18 h1{
        font-size: 1.5rem;
    }

    .bottom-right-image {
        width: 100px; /* Smaller image for mobile */
        bottom: 5px;
        right: 5px;
        top: -10%;
    }
    .menu-content18 h5{
        font-size: 0.7
        
        rem;
    }
}






.logos{
    overflow: hidden;
    padding: 40px 0;
    background-color: #fff;
    white-space: nowrap;
}
.logos:hover .logos-slide1{
    animation-play-state: paused;
}
.logos-slide1 {
    display: inline-block;
    animation: slide 15s linear infinite;
    
}
.logos-slide1 img{
    height: 90px;
    margin: 0 40px;
}
/* Animation Keyframes - This makes the logos slide */
@keyframes slide {
    from {
        transform: translateX(0%);
    }
    to {
        transform: translateX(-100%);
    }
}





.uni {
    margin-top: 30px;
}

.uni h1{
   
   font-size: 2.0rem;
    text-align: center;
    color: #1f3a67;
}

@media (max-width: 768px) {
    .uni{
       margin-top: 370px;
       margin-left: 10px;
       margin-right: 10px;
    }
    
    .uni h1{
        font-size: 1.0rem;
    }
    .logos-slide1 img{
        height: 50px;
        margin: 0 10px;
    }
}




















.slider-container19 {
   
    width: 100%;
    max-width: 100%;
    margin: auto;
    padding: 20px;
    text-align: center;
    
}

.slide-content19 h4 {
    font-size: 0.8rem;
    color: #fff;
    margin-bottom: 10px;
    text-transform: uppercase;
    border: 2px solid #fff;
    padding: 10px 20px;
    display: inline-block; /* Ensures the border wraps around the text only */
    text-align: center;
    width: auto;
    border-radius: 30px;

}

.slide-content19 h1 {
    font-size: 3.5rem;
    color: #fff;
    margin-bottom: 20px;
}

/* Slide Wrapper */
.slides19 {
    display: flex;
    width: 100%;
    height: auto;
    overflow: hidden;
    justify-content: center;
    background-color: #001837;
    border-radius: 20px;
    padding: 20px;
}

/* Individual Slide */
.slide19 {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    
    padding: 20px;
    border-radius: 10px;
}

/* Slide Image */
.slide-image19 {
    flex: 1;
    text-align: center;
}

.slide-image19 img {
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

/* Slide Content */
.slide-content19 {
    flex: 1;
    text-align: left;
    padding: 20px;
}

.slide-content19 p {
    font-size: 1.3rem;
    color: #646363;
    margin-bottom: 15px;
    margin-bottom: 40px;
}

/* Main Content (Menu Buttons) */
.main-content19 {
    display: flex;
    flex-direction: column;
    gap: 10px;
    justify-content: flex-start;
    margin-top: 15px;
}

.menu19 {
    display: flex;
    flex-direction: column;
    align-items: left;
    text-align: left;
    margin-top: 10px;
}

.menu19 img {
    width: 50px;
    height: auto;
    margin-bottom: 10px;
}

.menu19 p {
    font-size: 1.5rem;
    color: #fff;
    margin-left: 10px;
    margin-bottom: 5px;
    text-align: left;

}

/* Extra Image */
.image19 {
    text-align: left;
    margin-top: 20px;
}
.img19 h2{
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: -20px;

}
.img19 p{
    color: #fff;
} 
.img19{
     margin-top: 50px;
}
.image19 img {
    width: 150px;
    height: auto;
}

/* Extra Images Section */
.extra-images19 {
    display: flex;
    gap: 20px;
    margin-top: 15px;
}

.menu-content19 {
    display: flex;
    align-items: center;
    gap: 10px;
}

.menu-content19 img {
    width: 70px;
    height: auto;
}

.menu-content19 p {
    font-size: 1.0rem;
    color: rgb(76, 76, 244);
   font-weight: bold;
   margin-top: 30px;
}
.menu-content09 {
    display: flex;
    align-items: center;
    gap: 10px;
}

.menu-content09 img {
    width: 150px;
    height: auto;
}
.menu-content09 h5{
    font-size: 1.1rem;
    color: #fff;
}
/* Responsive Design */
@media (max-width: 768px) {
    .slider-container19{
        padding-top: 150px;
        position: absolute;
    }
    
    .slide19 {
        flex-direction: column;
        text-align: center;
      
    }

    .slide-content19 {
        text-align: left;
        padding: 10px;
    }
    .slide-content19 h1{
        font-size: 1.5rem;
    }
    .main-content19 {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .menu19 img {
        width: 50px;
    }

    .menu19 p{
        text-align: left;
        font-size: 1.0rem;
    }

    .extra-images19 {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .image19 {
        text-align: center;
    }

    .image19 img {
        width: 150px;
    }

    .menu-content19 p{
        margin-left: 5px;
       text-align: left;

    }
    .menu-content19 img{
        width: 100px;
    }
    .slider-container19{
        margin-top: -150px;
    }
    .img19 h2{
        font-size: 1.1rem;
    }
    .menu-content09 h5{
        font-size: 0.7rem;
    }
    .menu-content09 img{
        width: 90px;
    }
}















.menu08{
    padding: 30px;
    min-height: 100vh;
    width: 100%;
    min-height: 100vh;
}


.main08{
    position: relative; /* Establish a positioning context for child elements */
   
   
    background-repeat: no-repeat;
    background-size: cover;
   
   height: 100vh;
    padding-top: 50px;
    
}



/* Slider Container */
.slider07 {
    position: relative;
    width: 90%;
   
    height: 80%; /* Adjust height as needed */
    overflow: hidden;
    margin: 40px auto;
}

/* Slides Wrapper */
.slides07 {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

/* Individual Slide */
.slide07 {
    flex: 0 0 calc(100% / 3); /* Show 3 slides at a time */
    position: relative;
    
}

/* Slide Image */
.slide07 img {
    width: 80%;
    height: 100%;
    
}

/* Slide Content */
.slide-content07 {
    position: absolute;
    top: 70%; /* Position from bottom */
    left: 40%;
    transform: translateX(-60%);
   /* Semi-transparent background */
    
    padding: 10px 20px;
    text-align: left;
    border-radius: 8px;
    width: 70%;
    
}

.slide-content07 h4{
    font-size: 14px;
    margin-bottom: 5px;
}

.slide-content07 h2 {
    font-size: 1.3rem;
    margin-bottom: 5px;
    color: #1f3a67;
}

.slide-content07 p {
    font-size: 12px;
    margin-top: 20px;
    margin-bottom: -30px;
}
.divider1 {
    border-top: 1px solid #888; /* Line color */
    margin: 2px 0; /* Spacing above and below */
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.slide-content07 img{
    width: 50px;
    height: 50px;
    margin-bottom: -70px;
    margin-left: 370px;
}




.main08{
    position: relative; /* Establish a positioning context for child elements */
    width: 100%;
    
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 100vh;
    overflow: hidden;
    padding-top: 50px;
}

/* Flexbox to Align Content */
.content-container08 {
    display: flex;
    align-items: left;
    justify-content: space-between;
    gap: 20px;
}
/* Image Styling */
.image-content08 img {
    width: 300px; /* Adjust size as needed */
    max-width: 100%;
    height: auto;
    margin-bottom: 50px;
    border-radius: 10px; /* Optional rounded corners */
}


.image08{
    display: block;
}



/* Content Styling */
.slide-content08 {
    max-width: 1000px; /* Restrict width for readability */
    margin-left: 20px; /* Center content and add spacing */
    flex: 1; 
}



/* Heading Styling */
.slide-content08 h4 {
    font-size: 18px;
    font-weight: bold;
    color: #001837; /* Highlight color */
    text-transform: uppercase;
    margin-bottom: 10px;
    border: 2px solid #001837;
    border-radius: 20px;
    padding: 5px 20px;
    display: inline-block; /* Ensures the border wraps around the text only */
    text-align: center;
    width: auto; 
}

/* Main Title */
.slide-content08 h2 {
    font-size: 3.5rem;
    font-weight: bold;
    color: #001837; /* Dark blue */
    margin-bottom: 15px;
}

/* Paragraph Styling */
.slide-content08 p {
    font-size: 25px;
    color: #333; /* Dark gray */
    line-height: 1.5;
}











@media (max-width: 768px) {
    .menu08 {
        padding: 20px;
        text-align: center; /* Center-align everything */
    }

    .main08 {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    /* Content Container */
    .content-container08 {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    /* Heading Section */
    .slide-content08 h4 {
        font-size: 1rem;
        color: #ff9800;
        margin-bottom: 10px;
        text-transform: uppercase;
    }

    .slide-content08 h2 {
        font-size: 1.8rem;
        color: #1f3a67;
    }

    /* Image Section */
    .image08 {
        display: flex;
        justify-content: center;
        margin-top: 10px;
    }

    .image-content08 img {
        width: 120px; /* Reduce button size */
        height: auto;
    }

    /* Change Slider to Vertical Stack */
    .slider07 {
        width: 100%;
        overflow: visible; /* Allow full visibility */
        margin-top: 20px;
    }

    .slides07 {
        display: flex;
        flex-direction: column; /* Stack slides vertically */
        gap: 20px; /* Space between images */
    }

    .slide07 {
        flex: 0 0 auto; /* Allow natural height */
        text-align: center;
        padding: 10px;
        width: 100%;
    }

    .slide07 img {
        width: 100%; /* Make images full width */
        height: auto;
        border-radius: 10px;
    }

    .slide-content07 {
        text-align: center;
        padding: 15px;
    }

    .slide-content07 h2 {
        font-size: 1.5rem;
        margin-bottom: 10px;
    }

    .slide-content07 p {
        font-size: 1rem;
        line-height: 1.5;
    }

    .divider1 {
        border-top: 1px solid #888; /* Line color */
        margin: 2px 0; /* Spacing above and below */
        width: 100%;
        margin-left: auto;
        margin-right: auto;
        margin-top: 30px;
    }
}




