@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

* {
    font-family: 'Poppins', 'Arial', sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background-color: transparent;


}
html {
    scrollbar-width: none;
    /* Firefox */
    -ms-overflow-style: none;
    /* IE and Edge */
    overflow-y: scroll;
}

html::-webkit-scrollbar {
    display: none;
    /* Chrome, Safari, Opera */
}






.nav-links img {
    width: 90px;
    padding: 0;
    margin: 0;
    background: transparent;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    position: static;
    top: 0;
    background-color: #135490;
}

.navbar ul {
    background: #135490;
    margin-bottom: 27px;
}

.navbar ul li {
    display: inline;
    list-style: none;
    padding: 5px;
    background-color: #135490;
}


.nav-links {
    display: flex;
    align-items: center;
    gap: 18rem;
    margin: 0;
    padding: 0;
    background-color: #135490;
} 


.nav-links a {
    color: #ffffff;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    padding: 0.5rem 1rem;
    transition: all 0.3s ease;
    background-color: #135490;
}

.nav-links a:hover {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    color: #000000;
    background-color: #ffffff;
    /* background-color: #8db7fc; */
}

.hero {
    background-color: #135490;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0rem 2rem;
}

.hero img {
    max-width: 410px;
    height: auto;
    background-color: #135490;
    margin-left: 90px;
}

.hero-content {
    flex: 1;
    padding-right: 2rem;
    color: #000000;
    background: transparent;
}

.hero h2 {
    color: #ffffff;
    font-size: 3rem;
    background-color: transparent;
}






.hero p {
    color: #ffffff;
    background: transparent;
    margin-bottom: 24px;
}

.hero .btn {
    background: #f3f5f7;
    color: rgb(0, 0, 0);
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1rem;
    transition: 0.3s;
}

.hero .btn:hover {
    background: #9898f0;
    color: white;
    transition: 0.1s;
}

@keyframes typing {
    from {
        width: 0;
    }
    to {
        width: 100%;
    }
}

@keyframes blink {
    50% {
        border-color: transparent;
    }
}

.hero h2 {
    font-size: 2.5rem;
    font-weight: bold;
    color: #ffffff;
    background-color: transparent;
    line-height: 1.2; 
}

.cursor {
    display: inline-block;
    width: 10px;
    height: 2rem;
    background-color: white; /* Match text color */
    animation: blink 0.7s infinite;
    margin-left: 5px;
}

@keyframes blink {
    50% {
        opacity: 0;
    }
}
 





    




.about-uss {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 4rem 2rem;
    gap: 3rem;
    background-color: #f8f9fa;
    min-height: 500px;
}


.about-us {
    flex: 1;
    max-width: 500px;
    background-color: #135490;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transform: rotateY(90deg);
    opacity: 0;
    animation: flipIn 0.8s ease forwards;
    perspective: 1000px;
    margin-bottom: 109px;
}


.about-us .btn {
    background: #f3f5f7;
    color: rgb(0, 0, 0);
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1rem;
    transition: 0.3s;
}

.about-us .btn:hover {
    background: #9898f0;
    color: white;
    transition: 0.1s;
}





@keyframes flipIn {
    from {
        transform: rotateY(90deg);
        opacity: 0;
    }
    to {
        transform: rotateY(0deg);
        opacity: 1;
    }
}


.about-us h2 {
    color: #ffffff;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    position: static;
    transform: none;
    text-align: left;
    background-color: transparent;
}

.about-us h3 {
    color: #135490;
    font-size: 2.0rem;
    margin-top: -275px;
    margin-left: -40%;



}

.about-us p {
    color: #ffffff;
    margin-bottom: 2rem;
    font-size: 1rem;
    line-height: 1.8;
    text-align: justify;
    max-width: 100%;
    margin-left: 0;
    background-color: transparent;
}

.features-section {
    flex: 1;
    max-width: 500px;
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transform: translateY(50px);
    opacity: 0;
    animation: slideUp 0.8s ease 0.2s forwards;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 1rem;
    border-radius: 10px;
    background-color: #ffffff;
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateX(10px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.feature-icon {
    width: 50px;
    height: 50px;
    background-color: #135490;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.feature-text h3 {
    color: #135490;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.feature-text p {
    color: #666;
    font-size: 0.9rem;
}

@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* what we offer */
/* Wrapper styling */
.wrappers {
    max-width: 100%;
    width: 100%;
    position: relative;
    margin: 20px;
}

.wrappers i {
    height: 50px;
    width: 50px;
    background: #135490;
    opacity: 99%;
    text-align: center;
    line-height: 50px;
    border-radius: 50%;
    cursor: pointer;
    position: absolute;
    top: 50%;
    font-size: 1.25rem;
    transform: translateY(-50%);
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.23);
    color: white;
}

.wrappers i:first-child {
    left: 9px;
}

.wrappers i:last-child {
    right: 30px;
}

.wrappers .carousels {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: calc((100% / 2) - 12px);
    gap: 16px;
    padding: 36px;
    background: #ebeced;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    scrollbar-width: none;
}

.carousels::-webkit-scrollbar {
    display: none;
}

.carousels .card {
    scroll-snap-align: start;
    height: 100%;
    list-style: none;
    background: #fff;
    border-radius: 8px;
    display: flex;
    cursor: pointer;
    width: 100%;
    padding-bottom: 15px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    padding: 2px;
}

.offer-card img {
    width: 40%;
    /* height: 100px; */
    object-fit: cover;
    border-radius: 12%;
    margin-bottom: 15px;
}

.offer-card h4 {
    font-size: 1.2rem;
    color: #135490;
}

.what-we-offer h2 {
    color: #135490;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    justify-self: center;
    margin-top: 20px;
}



.courses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    background: #f8f9fa;
    margin: 24px;
}

.course-card {
    background: #FFFFFF;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    position: relative;
    overflow: hidden;
    margin: 10px;
    margin-left: 12px;
    margin-top: 15px;
}

.course-card:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.course-card h3 {
    color: #135490;
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.course-card p {
    color: #555555;
    font-size: 1rem;

}

.course-card img {
    width: 100%;
    max-width: 200px;
    border-radius: 8px;
}

.cbtn {
    background: #679bf0;
    color: rgb(255, 255, 255);

    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1rem;
    transition: transform 0.3s ease-in-out, background 0.3s ease-in-out;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    margin-left: 2%;
    margin-top: 12px;
}

.cbtn:hover {
    background: #8989d8;
    color: rgb(255, 255, 255);
    transform: scale(1.1);
}

/* Ripple Effect */
.cbtn::after {
    content: "";
    position: absolute;
    width: 200%;
    height: 200%;
    top: 50%;
    left: 50%;
    background: rgba(255, 255, 255, 0.3);
    transition: 0.4s ease-out;
    transform: translate(-50%, -50%) scale(0);
    border-radius: 50%;
}

.cbtn:active::after {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0;
}

.course h2 {
    color: #135490;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    justify-self: center;
    margin-top: 20px;
}






.wrapper {
    max-width: 100%;
    width: 100%;
    position: relative;
    margin: 20px;

}

.wrapper i {
    height: 50px;
    width: 50px;
    background: #135490;
    opacity: 99%;

    text-align: center;
    line-height: 50px;
    border-radius: 50%;
    cursor: pointer;
    position: absolute;
    top: 50%;
    font-size: 1.25 rem;
    transform: translateY(-50%);
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.23);
    color: white;

}

.wrapper i:first-child {
    left: 9px;

}

.wrapper i:last-child {
    right: 30px;

}

.wrapper .carousel {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: calc((100% / 3) - 12px);
    gap: 16px;
    padding: 36px;
    background: #ebeced;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    scrollbar-width: 0;


}

.carousel::-webkit-scrollbar {
    display: none;
}

.carousel :where(.card, .img) {
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel.dragging {
    scroll-snap-type: none;
    scroll-behavior: auto;
}

.carousel.no-transition {
    scroll-behavior: auto;
}

.carousel.dragging .card {
    cursor: grab;
    user-select: none;
}

.carousel .card {
    scroll-snap-align: start;
    height: 100%;
    list-style: none;
    background: #fff;
    border-radius: 8px;
    display: flex;
    cursor: pointer;
    width: 100%;
    padding-bottom: 15px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}


.testimonial-card p {
    font-style: normal;
    padding: 12px;
    font-size: 1rem;
    color: #555555;
}

.testimonial-card h4 {
    margin-top: 18px;
    font-size: 1.1rem;
    color: #135490;
    margin-left: 10px;
}

.testimonial h2 {
    color: #135490;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    justify-self: center;
    margin-top: 20px;
}


/* Certificate Validation */
.certificate-validation {
    text-align: center;
    padding: 40px 20px;
    background: #FFFFFF;
    margin: 0px 0;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.certificate-validation input {
    padding: 10px;
    font-size: 1rem;
    width: 80%;
    max-width: 400px;
    border: 1px solid #CCCCCC;
    border-radius: 5px;
    margin-bottom: 20px;
    margin-top: 10px;
}

.certificate-validation button {
    background: #135490;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    transition: background 0.3s;
}

.certificate-validation button:hover {
    background: #b083eb;
    color: white;
}

.certificate-validation .result {
    margin-top: 20px;
    font-size: 1.2rem;
    color: #333333;
}

.certificate-validation h2 {
    color: #135490;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    justify-self: center;
    margin-top: 20px;

}









/* Contact Info Styles */



.contact-section {
    padding: 0 0;
    background-color: #f5f5f5;
}

.container {
    width: 92%;
    max-width: 1200px;
    margin: 0 auto;
}

.container1 {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}
.contact-info h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #135490;
    margin-top: 20px;
}

.description {
    color: #666;
    margin-bottom: 30px;
    line-height: 1.6;
}

.info-items {
    margin-bottom: 40px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.info-item i {
    background-color: #135490;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
}

.info-item i:hover {
    background-color: #7373e0;
}

.info-content h4 {
    margin: 0 0 5px;
    color: #333;
}

.info-content p {
    margin: 0;
    color: #666;
}

.info-content a {
    text-decoration: none;
    color: #333;
}

/* Social Links */
.social-links h4 {
    margin-bottom: 15px;
    color: #333;
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background-color: #135490;
    color: white;
    border-radius: 50%;
    margin-right: 10px;
    text-decoration: none;
    transition: background-color 0.3s;
}

.social-icons a:hover{
    background-color: #7373e0;

}



/* Contact Form Styles */
.contact-form {
    background-color: white;
    padding: 30px 45px;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    margin-top: 12px;
}

.contact-form h3 {
    margin-left: 11px;
    margin-bottom: 20px;
    color: #333;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 14px;
}

.form-group textarea {
    height: 120px;
    resize: vertical;
}

.privacy-text {
    font-size: 12px;
    color: #666;
    margin-bottom: 20px;
}

.submit-btn {
    background-color: #135490;
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s;
}

.submit-btn:hover {
    background-color:  #7373e0;
    
}

/* Map Container */
.map-container {
    margin-top: 50px;
    width: 100%;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        grid-template-columns: 1fr;
    }

    .contact-info,
    .contact-form {
        margin-bottom: 30px;
    }
}


.main-footer {
    background: #000000;
    color: white;
    text-align: center;
    padding: 20px 0;
    margin-top: 20px;
}


