     /* General Styles */
  
     ul {
        list-style: none;
        padding: 0;
        margin: 0;
        text-align: left;
    }
    
    ul li {
        padding: 12px 20px;
        font-size: 18px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.3); /* Light border */
    }
    
    ul li a {
        text-decoration: none;
        color: white; /* White text */
        display: block;
        transition: color 0.3s ease-in-out;
    }
    
    ul li:hover {
        background-color: rgba(255, 255, 255, 0.2); /* Light hover effect */
    }
    
    ul li a:hover {
        color: #f0f0f0; /* Slightly lighter white on hover */
    }
    
    /* Main Container */
    .container {
        display: flex;
      
        height: 100vh;
        width: 100%;
        margin-left: -12px;
        margin-right: -12px;
      
    }
    
    /* Left Section */
    .left-section {
        width: 50%;
        background: linear-gradient(to bottom right, #007C9A, #00B2CC);
        color: white;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        padding: 20px;
    }
    
    
    
    /* Delay stagger effect */
    .left-section h1:nth-child(1) { animation-delay: 0s; }
    .left-section h1:nth-child(2) { animation-delay: 0.3s; }
    .left-section h1:nth-child(3) { animation-delay: 0.6s; }
    
    /* Right Section */
    .right-section {
        width: 50%;
    }
    
    .right-section img {
        width: 100%;
        height: 100vh;
        object-fit: cover;
    }
    
    /* Navigation Menu */
    .menu-button {
        position: absolute;
        top: 20px;
        left: 20px;
        font-size: 24px;
        background: none;
        border: none;
        color: white;
        cursor: pointer;
    }
    
    .menu-button:focus {
        outline: none;
    }
    
    .menu {
        position: fixed;
        top: 0;
        left: 0;
        width: 80%;
        height: 100vh;
        background: #004D5B;
        color: white;
        transform: translateX(-100%);
        transition: transform 0.3s ease-in-out;
        padding: 20px;
    }
    
    .menu.open {
        display: block;
        transform: translateX(0);
    }
    
    .menu .close-button {
        font-size: 24px;
        cursor: pointer;
        background: none;
        border: none;
        color: white;
        position: absolute;
        top: 20px;
        right: 20px;
    }
    
    .menu ul {
        list-style: none;
        padding: 50px 0;
    }
    
    .menu ul li {
        margin: 15px 0;
        font-size: 18px;
    }
    

    
    /* Responsive Design */
    @media (max-width: 768px) {
        .container {
            flex-direction: column;
        }
    
        .left-section,
        .right-section {
            width: 100%;
            height: 50vh;
        }
    }
    /* Responsive Design */
   @media (max-width: 768px) {
    .container1 {
        flex-direction: column;
        margin-top:100%;
    }

    .all{
        width: 100%;
      
    }
}

    /* Keyframe Animation */
    @keyframes slideIn {
        from {
            opacity: 0;
            transform: translateX(-100px);
        }
        to {
            opacity: 1;
            transform: translateX(0);
        }
    }
    
    /* Logo */
    .logo-container {
        position: absolute;
        top: 10px;
        right: 10px;
        z-index: 1000;
    }
    
    .logo-container img {
        width: 150px;
        height: auto;
    }
 
 
 .card-box {
    background-color: white;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    padding: 16px;
    max-width: 600px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: auto;
    margin-top: -130px;
}
@media (min-width: 1200px) {
    .container, .container-lg, .container-md, .container-sm, .container-xl {
        max-width: 101%;
    }
}

/* Responsive Padding */
@media (min-width: 640px) { /* sm breakpoint */
    .card-box {
        padding: 24px;
    }
}

/* Heading Style */
.card-box h2 {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 8px;
}

/* Paragraph Style */
.card-box p {
    font-size: 1rem;
    color
    : #555;
}
.box-left-box {
        background-image: linear-gradient(15deg, #5ccaeb 54%, #387b8f 55%);
    width: 100%;
    height: 8vh;
    min-height: 300px;
    /* margin-bottom: 1.5rem; */
    /* position: relative; */
    box-sizing: border-box;
    /* padding: 20px; */
    /* border-radius: 10px; */
    /* text-align: center; */
    /* display: flex
; */
    flex-direction: column;
    /* align-items: center; */
    justify-content: center;
    color: white;
    font-weight: bold;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
   
}


.box-left-box h2 {
    font-size: 3.75rem;
    margin-bottom: 10px;
}

.box-left-box p {
    font-size: 1rem;
}


.box-right-box
{
    float: right;
}
.slider {
            position: relative;
            width: 100%;
            max-width: 600px;
            margin: auto;
            overflow: hidden;
           
           
            
            
        
        }
        .slides {
            display: flex;
            transition: transform 0.5s ease-in-out;
        }
        .slide {
            min-width: 100%;
            padding: 20px;
        }
        .slide h2 {
            font-size: 1.5rem;
            color: #333;
            margin-bottom: 10px;
        }
        .slide p {
            font-size: 1rem;
            color: #555;
        }
        /* Navigation Buttons */
        .prev, .next {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(0, 0, 0, 0.5);
            color: white;
            border: none;
            cursor: pointer;
            padding: 10px;
            font-size: 20px;
        }
        .prev { left: 10px; }
        .next { right: 10px; }
         /* Apply gradient color to the H2 text */
         .gradient-text {
            background: linear-gradient(to right, #0048FF, #D6008D);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            font-size: 2rem;
            font-weight: bold;
        }





    
    .footer {
        background: linear-gradient(to right, #4BA3C3, #52B2CF);
        color: black;
        padding: 40px 0;
        text-align: center;
        margin-Top: 20rem;
    }
    
    .footer-container {
        display: flex;
        justify-content: space-around;
        align-items: center;
        max-width: 1200px;
        margin: auto;
        flex-wrap: wrap;
        padding: 20px;
    }
    
    .footer-left {
        text-align: left;
    }
    
    .footer-logo {
        width: 80px;
        margin-bottom: 10px;
    }
    
    .footer-left h2 {
        font-size: 22px;
        font-weight: bold;
        margin: 0;
    }
    
    .footer-left p {
        font-size: 16px;
        margin: 5px 0;
    }
    
    .footer-middle {
        text-align: center;
        max-width: 400px;
    }
    
    .footer-middle h3,
    .footer-right h3 {
        font-size: 20px;
        font-weight: bold;
        margin-bottom: 10px;
    }
    
    .footer-middle p,
    .footer-right p {
        font-size: 14px;
        line-height: 1.5;
        margin-bottom: 10px;
    }
    
    .footer-email {
        font-size: 16px;
        font-weight: bold;
        color: black;
        text-decoration: none;
    }
    
    .footer-email:hover {
        text-decoration: underline;
    }
    
    .footer-right {
        text-align: right;
    }
    
    .social-icon {
        width: 30px;
        height: auto;
        margin-top: 10px;
    }
    
    /* Responsive Footer */
    @media (max-width: 768px) {
        .footer-container {
            flex-direction: column;
            text-align: center;
        }
    
        .footer-left,
        .footer-middle,
        .footer-right {
            text-align: center;
            margin-bottom: 20px;
        }
    }