body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}
.header {
    background-color: #002147;
    color: #fff;
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.header .contact-info span, .header .social-icons a {
    margin-right: 15px;
    color: #fff;
    text-decoration: none;
}
.logo {
    display: flex;
    align-items: center;
}
.logo img {
    height: 90px;
    width: 100px;
}

.nav {
    background-color: #ffc107;
    padding: 10px;
    text-align: right;
}
.nav a {
    margin: 0 15px;
    color: #000;
    text-decoration: none;
    font-weight: bold;
}
.carousel {
    position: relative;
    width: 100%;
    overflow: hidden;
}
.slides {
    display: flex;
    transition: transform 0.5s ease-in-out;
}
.slide {
    min-width: 100%;
    position: relative;
}
.slide img {
    width: 100%;
    height: auto;
}
.slide .text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    text-align: center;
    background-color: rgba(0, 0, 0, 0.6);
    padding: 10px;
    border-radius: 5px;
}
.slide .text h1 {
    font-size: 2rem;
}
.arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: #fff;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    font-size: 1.5rem;
    z-index: 1000;
}
.arrow.left {
    left: 10px;
}
.arrow.right {
    right: 10px;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}
.section {
    display: flex;
    justify-content: space-between;
    margin-bottom: 50px;
}
.section .content {
    width: 48%;
}
.section .content h2 {
    color: #ffc107;
    text-transform: uppercase;
    margin-bottom: 10px;
}
.section .content h1 {
    color: #002147;
    font-size: 2rem;
    margin-bottom: 20px;
}
.section .content p {
    line-height: 1.6;
    margin-bottom: 20px;
}
.section .content ul {
    list-style: none;
    padding: 0;
}
.section .content ul li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 30px;
}
.section .content ul li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: #ffc107;
}
.scroll-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #ffc107;
    color: #002147;
    padding: 10px 15px;
    text-align: center;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 50px auto;
    padding: 20px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.text-content {
    width: 50%;
}
.text-content h2 {
    color: #ffc107;
    font-size: 3rem;
    text-transform: uppercase;
    margin-bottom: 10px;
}
.text-content h1 {
    font-size: 2rem;
    color: #002147;
    margin-bottom: 20px;
}
.text-content p {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
}
.text-content ul {
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
}
.text-content ul li {
    margin-right: 20px;
    margin-bottom: 10px;
    position: relative;
    padding-left: 30px;
}
.text-content ul li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: #ffc107;
}
.read-more-btn, .call-btn {
    display: inline-block;
    margin-top: 10px;
    padding: 10px 20px;
    font-size: 1rem;
    color: #fff;
    background-color: #ffc107;
    text-decoration: none;
    border-radius: 5px;
    cursor: pointer;
    border: 2px solid #ffc107;
}
.call-btn {
    display: inline-block;
    margin-top: 10px;
    padding: 10px 20px;
    font-size: 1rem;
    color: #fff;
    background-color: #ffc107;
    text-decoration: none;
    border-radius: 5px;
    cursor: pointer;
    border: 2px solid #ffc107;          
}
.call-btn img {
    width: 20px;
    margin-right: 10px;
}
.image-content {
    width: 45%;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.image-content img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}
.courses-container {
    display: flex;
    justify-content: center;
    padding: 20px;
    gap: 20px;
}
.course-card {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    width: 300px;
    padding: 20px;
    text-align: center;
}
.course-card h2 {
    color: #333;
    margin: 10px 0;
}
.course-card p {
    color: #555;
    font-size: 14px;
    margin-bottom: 20px;
}
.course-card .price {
    background: #f9c800;
    color: #fff;
    font-weight: bold;
    padding: 5px 10px;
    border-radius: 5px;
}
.course-card .duration {
    display: block;
    color: #333;
    font-size: 14px;
    margin: 10px 0;
}
.course-card button {
    background: #f9c800;
    color: #fff;
    border: none;
    padding: 10px 15px;
    border-radius: 5px;
    cursor: pointer;
}
.course-card button:hover {
    background: #e0b000;
}
.sectionn {
    padding: 20px;
}
.sectionn h1 {
    text-align: center;
    color: #2c3e50;
    margin-bottom: 20px;
}
.contentt {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}
.text-contentt {
    width: 60%;
}
.text-contentt h2 {
    color: #2c3e50;
    margin-bottom: 10px;
}
.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); /* Responsive grid */
    gap: 15px;
    padding: 20px;
    background-color: #f4f4f4;
}

.feature {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    padding: 15px;
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    overflow: hidden;
    transition: transform 0.2s, box-shadow 0.2s;
}

.feature:hover {
    transform: translateY(-5px);
    box-shadow: 0px 6px 10px rgba(0, 0, 0, 0.15);
}

.feature img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 12px;
}

.feature h3 {
    font-size: 1.3em;
    color: #2c3e50;
    margin: 10px 0 8px;
}

.feature p {
    font-size: 0.95em;
    color: #616161;
    line-height: 1.5;
    margin: 0;
    text-align: justify; /* Justify text for a cleaner look */
}

@media (max-width: 768px) {
    .features {
        gap: 10px; /* Adjust gap for smaller screens */
    }

    .feature img {
        height: 140px;
    }

    .feature h3 {
        font-size: 1.2em;
    }

    .feature p {
        font-size: 0.9em;
    }
}


.image-content {
    width: 35%;
}
.image-content img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
.team-section {
    padding: 40px;
    text-align: center;
    background-color: #fff;
}

.team-section h1 {
    font-size: 28px;
    color: #2c3e50;
    margin-bottom: 20px;
}

.team-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.team-card {
    position: relative;
    width: 220px;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-card:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.team-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.team-info {
    padding: 15px;
}

.team-info h2 {
    margin: 10px 0 5px;
    font-size: 18px;
    color: #333;
}

.team-info p {
    margin: 0;
    color: #555;
    font-size: 14px;
}

.team-card .social-icons {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.7);
    padding: 10px;
    display: flex;
    justify-content: center;
    gap: 15px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.team-card:hover .social-icons {
    opacity: 1;
}

.social-icons a {
    color: #fff;
    font-size: 16px;
    text-decoration: none;
}

.highlight {
    border: 3px solid #ffcc00;
}
.contact-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.contact-details, .contact-form {
    flex: 1;
    min-width: 300px;
    margin: 20px;
}
h2 {
    color: #ffc107;
    
}
.contact-details p {
    margin: 10px 0;
}
.contact-form form {
    display: flex;
    flex-direction: column;
}
.contact-form label {
    margin: 10px 0 5px;
}
.contact-form input, .contact-form textarea {
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
}
.contact-form button {
    padding: 10px 15px;
    background-color: #0f355e;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
}
.contact-form button:hover {
    background-color: #083146;
}
iframe {
    width: 100%;
    height: 400px;
    border: none;
    margin-top: 20px;
}
.social-header {
    margin-top: 20px;
    margin-bottom: 10px;
    font-size: 18px;
    text-align: center; /* Aligns the header centrally */
    color: #fdfdfd;
}

.social-icons {
    display: flex;
    justify-content: center; /* Center icons horizontally */
    gap: 15px; /* Space between icons */
    margin-top: 10px;
}

.social-icons a {
    font-size: 24px;
    color: #fff;
    background-color: #007bff; /* Example background color */
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%; /* Circular icons */
    text-decoration: none;
    transition: transform 0.3s, background-color 0.3s;
}

.social-icons a:hover {
    background-color: #0056b3; /* Darker shade on hover */
    transform: scale(1.1); /* Slight zoom effect */
}