        

/* Reset and Base Styles */
        *, *::before, *::after {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', sans-serif;
            background-color: #f8f9fa;
            color: #2c3e50;
            scroll-behavior: smooth;
            line-height: 1.6;
        }

        nav {
            background-color: #002366; /* Navy blue */
            padding: 1rem 2rem;
            display: flex;
            justify-content: center; /* Center all content in the nav */
            align-items: center;
            position: sticky;
            top: 0;
            z-index: 1000;
        }

        nav .logo {
            position: absolute; /* Position the logo separately */
            left: 2rem; /* Move the logo to the left */
            font-size: 1.5rem;
            font-weight: bold;
            color: white;
        }

        nav ul {
            list-style: none;
            display: flex;
            gap: 2rem;
        }

        nav ul li a {
            color: white;
            text-decoration: none;
            font-weight: 500;
            font-size: 1.1rem;
            transition: color 0.3s;
        }

        nav ul li a:hover {
            color: #fd7a4a; /* Highlight color */
        }
        
        nav .email {
        font-size: 1rem;
        color: white;
    }
    
        /* Register to LMS Unique Style */
    .register-lms a {
        font-size: 1.2rem;
        font-weight: bold;
        color: white;
        text-decoration: none;
        background: linear-gradient(90deg, #ff7a18, #ff3c7e, #007bff);
        background-size: 300%;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        animation: gradient-animation 1s infinite;
        position: relative;
        display: inline-block;
        transition: transform 0.0s ease-in-out;
    }
    
    .register-lms a:hover {
        transform: scale(1.1);
    }
    
    .register-lms a::after {
        content: '';
        position: absolute;
        left: 0;
        bottom: -5px;
        height: 2px;
        width: 100%;
        background: linear-gradient(90deg, #ff7a18, #ff3c7e, #007bff);
        transform: scaleX(0);
        transform-origin: left;
        transition: transform 0.3s ease-in-out;
    }
    
    .register-lms a:hover::after {
        transform: scaleX(1);
    }
    
    /* Gradient Animation for the Text */
    @keyframes gradient-animation {
        0% { background-position: 0%; }
        100% { background-position: 100%; }
    }

    nav .email a {
        color: white;
        text-decoration: none;
        font-weight: 500;
        transition: color 0.3s;
    }
    
    nav .email a:hover {
        color: #fd7a4a; /* Highlight color */
    }

        header {
            background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('header-background.jpg');
            background-size: cover;
            background-position: center;
            padding: 6rem 2rem;
            color: white;
            text-align: center;
        }

        header h1 {
            font-size: 3.5rem;
            margin-bottom: 1rem;
        }

        header p {
            font-size: 1.5rem;
            margin-bottom: 2rem;
        }

        header .btn {
            background-color: #fd7a4a;
            color: white;
            padding: 0.8rem 2rem;
            border-radius: 5px;
            text-decoration: none;
            font-size: 1.2rem;
            font-weight: bold;
            transition: background-color 0.3s;
        }

        header .btn:hover {
            background-color: #e56435;
        }

        .logos {
            display: flex;
            justify-content: center; /* Center the logos horizontally */
            align-items: center; /* Align logos vertically (optional) */
            gap: 40px; /* Add spacing between logos */
            margin: 30px 0; /* Add vertical spacing for the entire section */
        }
        .logos img {
            width: 180px; /* Set the desired width */
            height: auto; /* Maintain aspect ratio */
            object-fit: contain; /* Ensure the image fits within the specified dimensions */
            display: inline-block;
        }

        .logos img:hover {
            transform: scale(1.1);
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 2rem;
        }

        h2.section-title {
            font-size: 2.5rem;
            margin-bottom: 1rem;
            color: #002366;
            text-align: center;
        }

        p.section-subtitle {
            font-size: 1.2rem;
            margin-bottom: 2rem;
            color: #555;
            text-align: center;
        }

        .about-content {
            margin-bottom: 2rem;
        }

        .benefits-list {
            list-style: none;
            padding: 0;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 1rem;
        }

        .benefits-list li {
            background: white;
            border-radius: 10px;
            padding: 1.5rem;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            display: flex;
            align-items: start;
            gap: 1rem;
        }

        .benefits-list li i {
            font-size: 1.5rem;
            color: #fd7a4a;
        }

        .course-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .course-card {
            background: white;
            border-radius: 10px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            overflow: hidden;
            transition: transform 0.3s ease;
        }

        .course-card:hover {
            transform: translateY(-5px);
        }

        .course-card img {
            width: 100%;
            height: auto;
        }

        .course-card .course-content {
            padding: 1.5rem;
        }

        .btn-primary {
            background-color: #fd7a4a;
            color: white;
            padding: 0.8rem 2rem;
            border-radius: 5px;
            text-decoration: none;
            font-weight: bold;
            transition: background-color 0.3s ease;
            display: inline-block;
            margin-top: 1rem;
        }

        .btn-primary:hover {
            background-color: #e56435;
        }

        .contact-section {
            text-align: center;
            padding: 2rem;
            background: #002366;
            color: white;
        }

        .contact-section a {
            color: #fd7a4a;
            text-decoration: none;
            font-weight: bold;
        }

        .contact-section a:hover {
            text-decoration: underline;
        }
        
         .container {
            font-family: Arial, sans-serif;
            padding: 20px;
        }

        .benefits-list {
            list-style: none;
            padding: 0;
        }

        .benefits-list li {
            margin-bottom: 15px;
            display: flex;
            align-items: flex-start;
        }

        .benefits-list i {
            color: #007bff;
            margin-right: 10px;
            font-size: 18px;
        }

        h3 {
            color: #333;
        }
        /* General Reset */
        *, *::before, *::after {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', sans-serif;
            background-color: #f8f9fa;
            color: #2c3e50;
        }

        .course-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 20px;
            padding: 2rem;
            justify-content: center;
            align-items: start;
        }

        .course-card {
            background: white;
            border-radius: 10px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            overflow: hidden;
            transition: transform 0.3s;
            text-align: center;
            padding: 1rem;
        }

        .course-card:hover {
            transform: translateY(-5px);
        }

        .course-card img {
            width: 100%;
            height: auto;
            border-radius: 10px;
            margin-bottom: 1rem;
        }

        .course-content {
            padding: 1rem;
        }

        .course-content h3 {
            font-size: 1.5rem;
            color: #fd7a4a;
            margin-bottom: 1rem;
        }

        .course-content p {
            font-size: 1rem;
            color: #555;
            margin-bottom: 1rem;
        }

        .topics {
            background-color: #f1f1f1;
            border-radius: 8px;
            padding: 1rem;
            margin-top: 1rem;
        }

        .topics h4 {
            font-size: 1.25rem;
            color: #2c3e50;
            margin-bottom: 0.5rem;
            text-align: left;
            border-bottom: 2px solid #fd7a4a;
            display: inline-block;
        }

        .topics ul {
            list-style: none;
            margin: 0;
            padding: 0;
            text-align: left;
        }

        .topics ul li {
            margin-bottom: 0.5rem;
            color: #333;
        }

        .btn-primary {
            background-color: #fd7a4a;
            color: white;
            padding: 0.5rem 1.5rem;
            border-radius: 5px;
            text-decoration: none;
            font-weight: bold;
            display: inline-block;
            margin-top: 1rem;
            transition: background-color 0.3s;
        }

        .btn-primary:hover {
            background-color: #e56435;
        }
        
        .benefits-list {
            list-style: none;
            padding: 0;
            margin: 0;
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }
        
        .benefits-list li {
            padding: 1.5rem;
            border: 1px solid #ddd;
            border-radius: 8px;
            background: #f9f9f9;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            text-align: left;
        }
        
        .benefit-heading {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 1.2rem;
            color: #002366;
            margin-bottom: 0.5rem;
        }
        
        .benefit-heading i {
            font-size: 1.5rem;
            color: #fd7a4a;
        }
        
        .benefit-description {
            font-size: 1rem;
            color: #555;
            line-height: 1.6;
            margin-left: 2rem;
        }
        .btn-enhanced {
            display: inline-block;
            padding: 15px 40px;
            font-size: 1.2rem;
            font-weight: bold;
            text-transform: uppercase;
            background: linear-gradient(135deg, #0056b3, #007bff); /* Premium gradient */
            color: #fff;
            border: none;
            border-radius: 30px; /* Fully rounded corners */
            box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2); /* Subtle shadow for depth */
            text-align: center;
            text-decoration: none;
            transition: all 0.3s ease;
            cursor: pointer;
        }
        
        .btn-enhanced:hover {
            background: linear-gradient(135deg, #003d80, #0056b3); /* Darker gradient on hover */
            transform: translateY(-5px); /* Lift effect on hover */
            box-shadow: 0 12px 24px rgba(0, 0, 0, 0.3); /* Enhanced shadow on hover */
        }
        
        .btn-enhanced:active {
            transform: translateY(0); /* Slight press effect */
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        }

        footer {
          background-color: #002366; /* Blue background */
          padding: 20px 0;
          color: #ffffff; /* White text */
          font-size: 14px;
          text-align: center; /* Center-align overall content */
          box-shadow: 0px -2px 5px rgba(0, 0, 0, 0.1);
        }
        
        .footer-contact {
          text-align: left; /* Align office details to the left */
          max-width: 600px; /* Limit width for better readability */
          margin: 0 auto; /* Center the section in the footer */
        }
        
        .footer-contact h4 {
          text-align: center; /* Center "Contact Us" heading */
          font-size: 18px;
          color: #ffffff; /* Keep heading white */
          margin-bottom: 15px;
        }
        
        .footer-contact p {
          margin: 0 0 8px;
          line-height: 1.5;
          color: #f0f0f0; /* Lighter text for readability */
        }
        
        .footer-social {
          margin-top: 20px;
          text-align: center; /* Social links centered */
        }
        
        .footer-social h4 {
          font-size: 18px;
          color: #ffffff; /* Heading for social section */
          margin-bottom: 10px;
        }
        
        .footer-social a {
          margin: 0 10px;
          color: #ffcc00; /* Gold for social links */
          font-size: 18px;
          text-decoration: none;
        }
        
        .footer-social a:hover {
          color: #ffffff; /* White hover effect */
        }
        
        .footer-bottom {
          margin-top: 20px;
          border-top: 1px solid #f0f0f0;
          padding-top: 10px;
          font-size: 12px;
          color: #f0f0f0;
          text-align: center; /* Center-align copyright info */
        }

        .office-container {
          display: flex;
          justify-content: space-between;
          gap: 2rem; /* Adjust spacing between offices */
          flex-wrap: wrap; /* Wrap if space is constrained */
          text-align: left;
        }
        
        .office {
          flex: 1; /* Allow offices to take equal space */
          min-width: 250px; /* Minimum width to maintain readability */
          max-width: 300px; /* Restrict max width for neatness */
        }
        
        .office p {
          margin-bottom: 5px; /* Adjust spacing between lines */
          line-height: 1.5;
        }

        .section-title {
        font-family: 'Playfair Display', serif; /* Elegant serif font for a rich look */
        font-size: 3rem; /* Larger size for prominence */
        font-weight: 700; /* Bold for a strong emphasis */
        color: #333; /* Sophisticated dark gray */
        text-align: center;
        text-transform: uppercase; /* Premium uppercase style */
        letter-spacing: 2px; /* Slight spacing for elegance */
        position: relative;
        margin-bottom: 2rem;
        padding-bottom: 1rem;
        padding-top:30px;
    }
    
    .section-title::before {
        content: '';
        position: absolute;
        left: 50%;
        bottom: 0;
        transform: translateX(-50%);
        width: 120px; /* Decorative line width */
        height: 4px; /* Line thickness */
        background: linear-gradient(to right, #e6b800, #ffcc00); /* Gold gradient */
        border-radius: 2px; /* Rounded edges for polish */
    }
    
    .section-title::after {
        content: '';
        position: absolute;
        left: 50%;
        bottom: -10px; /* Space between the two lines */
        transform: translateX(-50%);
        width: 80px; /* Shorter secondary line */
        height: 2px; /* Thinner line */
        background: linear-gradient(to right, #ffcc00, #e6b800); /* Inverted gradient */
        border-radius: 2px;
    }
    
    .section-title:hover {
        color: #e6b800; /* Subtle color shift for interactivity */
        transform: scale(1.02); /* Slight zoom for engagement */
        transition: color 0.3s, transform 0.3s;
    }
    .footer {
            background: #002366; /* Attractive gradient */
            color: #fff;
            padding: 40px 20px;
            text-align: center;
        }

        .footer-contact {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: flex-start;
            gap: 20px;
        }

        .footer-contact h4 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            text-transform: uppercase;
            color: #ffcc00;
        }

        .office-container {
            flex: 1 1 300px;
            text-align: left;
        }

        .office p {
            margin: 0 0 10px;
            font-size: 0.9rem;
        }

        .contact-us {
            flex: 1 1 300px;
        }

        .follow-us {
            flex: 1 1 300px;
        }

        .follow-us a {
            margin: 0 10px;
            color: #ffcc00;
            font-size: 1.5rem;
            transition: color 0.3s;
        }

        .follow-us a:hover {
            color: #fff;
        }

        .footer-logo {
            text-align: center;
            margin-bottom: 20px;
        }

        .footer-logo img {
            max-width: 150px;
        }

        .footer-bottom {
            margin-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.2);
            padding-top: 10px;
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.7);
        }

        @media (max-width: 768px) {
            .footer-contact {
                flex-direction: column;
                align-items: center;
                text-align: center;
            }

            .office-container {
                text-align: center;
            }

            .contact-us,
            .follow-us {
                text-align: center;
            }
        }

        /* Grid Layout for Footer */
        .footer-contact {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 20px;
            text-align: center;
        }

        .contact-us, .follow-us {
            text-align: center;
        }

        .contact-us p, .follow-us a {
            margin: 10px 0;
        }

        .follow-us a {
            font-size: 1.5rem;
            color: #ffcc00;
            transition: color 0.3s;
        }

        .follow-us a:hover {
            color: #fff;
        }
        /* Slider Styles */
           #hero-slider {
            position: relative;
            max-width: 1200px; /* Add width constraint */
            margin: 20px auto; /* Center with top and bottom spacing */
            height: 80vh; /* Reduce height */
            overflow: hidden;
            border-radius: 15px; /* Rounded corners */
            box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2); /* Shadow for depth */
        }

        .slider {
            display: flex;
            transition: transform 0.5s ease-in-out;
        }

        .slide {
            min-width: 100%;
            height: 100vh;
            background-size: cover;
            background-position: center;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-align: center;
        }

        .slide-content {
            z-index: 2;
        }

        .slide h1 {
            font-size: 3rem;
            margin-bottom: 1rem;
        }

        .slide p {
            font-size: 1.5rem;
            margin-bottom: 2rem;
        }

        .btn-primary {
            padding: 10px 20px;
            background-color: #007bff;
            color: white;
            text-decoration: none;
            font-size: 1.2rem;
            border-radius: 5px;
            transition: background-color 0.3s;
        }

        .btn-primary:hover {
            background-color: #0056b3;
        }

        .navigation {
            position: absolute;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 10px;
        }

        .navigation .dot {
            width: 12px;
            height: 12px;
            background: white;
            border-radius: 50%;
            cursor: pointer;
            opacity: 0.7;
            transition: opacity 0.3s;
        }

        .navigation .dot.active {
            opacity: 1;
        }

        /* Slide overlay */
        .slide::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            z-index: 1;
        }
        .top-bar {
            background: #002366; /* Deep blue background */
            color: #fff; /* White text for contrast */
            padding: 10px 20px;
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 0.9rem;
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 1000;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2); /* Slight shadow for depth */
        }
        
        .top-bar-content {
            display: flex;
            justify-content: space-between;
            width: 100%;
            max-width: 1200px;
        }
        
        .top-bar-content p {
            margin: 0;
            padding: 0 10px;
        }
        
        .top-bar-content a {
            color: #ffcc00; /* Gold color for links */
            text-decoration: none;
            font-weight: bold;
        }
        
        .top-bar-content a:hover {
            color: #fff; /* Hover effect for links */
            text-decoration: underline;
        }
        
        .top-bar-content i {
            margin-right: 5px;
            font-size: 1rem;
            color: #ffcc00;
        }
        
        @media screen and (max-width: 768px) {
            .top-bar-content {
                flex-direction: column;
                align-items: center;
            }
            .top-bar-content p {
                margin-bottom: 5px;
            }
        }
        
        @media (max-width: 768px) {
    .footer-contact {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}

/*Form*/
        .form-container {
            margin: 2rem auto;
            padding: 2rem;
            background-color: #f8f9fa;
            border-radius: 8px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            max-width: 600px;
        }

        .form-container form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .form-container label {
            font-weight: bold;
            color: #002366;
        }

        .form-container input, .form-container select, .form-container textarea {
            padding: 0.8rem;
            border: 1px solid #ddd;
            border-radius: 5px;
            font-size: 1rem;
        }

        .form-container button {
            padding: 0.8rem;
            background-color: #fd7a4a;
            color: white;
            font-size: 1.2rem;
            font-weight: bold;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            transition: background-color 0.3s;
        }

        .form-container button:hover {
            background-color: #e56435;
        }


/* Responsive Breakpoints */
@media screen and (max-width: 1200px) {
    .container {
        padding: 1rem;
    }

    .course-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
    }

    .course-card {
        width: 100%;
        max-width: 500px;
        margin: 0 auto;
    }
}

@media screen and (max-width: 992px) {
    nav ul {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .logos {
        flex-direction: column;
        align-items: center;
    }

    .logos img {
        margin-bottom: 1rem;
        width: 200px;
    }

    .benefits-grid {
        flex-direction: column;
        align-items: center;
    }

    .benefit-card {
        width: 90%;
        max-width: 400px;
    }

    .footer-contact {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .office-container {
        text-align: center;
    }

    .office {
        max-width: 100%;
    }
}

@media screen and (max-width: 768px) {
    header h1 {
        font-size: 2.5rem;
    }

    header p {
        font-size: 1.2rem;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .course-card img {
        height: 200px;
    }

    .course-content h3 {
        font-size: 1.5rem;
    }

    nav .logo {
        position: static;
        text-align: center;
        margin-bottom: 1rem;
    }

    .slide-content h1 {
        font-size: 2rem;
    }

    .slide-content p {
        font-size: 1rem;
    }
}

@media screen and (max-width: 480px) {
    body {
        font-size: 14px;
    }

    .section-title {
        font-size: 2rem;
    }

    .course-card {
        padding: 10px;
    }

    .btn-primary {
        padding: 10px 25px;
        font-size: 0.9rem;
    }

    .slide-content h1 {
        font-size: 1.5rem;
    }

    .slide-content p {
        font-size: 0.9rem;
    }
}

/* Mobile Navigation Toggle */
@media screen and (max-width: 992px) {
    .nav-toggle {
        display: block;
        position: absolute;
        right: 1rem;
        top: 1rem;
        z-index: 1100;
        background: none;
        border: none;
        font-size: 1.5rem;
        cursor: pointer;
    }

    nav ul {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: #002366;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        z-index: 1000;
    }

    nav ul.active {
        display: flex;
    }
}

/* Responsive Typography */
@media screen and (max-width: 768px) {
    html {
        font-size: 14px;
    }
}
/* Add to the existing responsive styles */
.nav-toggle {
    display: none; /* Hidden by default */
    background: none;
    border: none;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 1100;
    position: fixed;
    top: 20px;
    right: 20px;
}

@media screen and (max-width: 992px) {
    .nav-toggle {
        display: block;
    }

    nav ul {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: #002366;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        z-index: 1000;
        display: none;
        margin: 0;
        padding: 0;
    }

    nav ul.active {
        display: flex;
    }

    nav ul li {
        margin: 1rem 0;
    }

    nav ul li a {
        font-size: 1.5rem;
    }
}
