 <style        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        body {
            line-height: 1.5;
        }

        /* Background images with transparency */
        .main-container2 {
            position: relative;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            padding: 135px 4% 50px;
            background-color: #fff;
            box-shadow: 0 0 30px rgba(0, 0, 0, 0.05);
        }

        .main-container2::before {
            content: "";
            position: absolute;
            background-color: #ffc107;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-size: cover;
            background-position: center;
            opacity: 0.9;
            z-index: 1;
        }

        .course-info, .registration-form {
            position: relative;
            z-index: 2;
        }

        /* Course Information Section */
        .course-info {
            flex: 1;
            min-width: 300px;
            padding: 15px;
            max-width: 600px;
        }

        .main-title {
            font-size: 2.2rem;
            margin-bottom: 15px;
            color: #25221d;
            font-weight: 700;
            letter-spacing: 0.5px;
        }

        .description {
            font-size: 1.1rem;
            margin-bottom: 20px;
            color: #444;
        }

        .highlight {
            color: #060505;
            font-weight: 600;
        }

        .branch-info {
            margin-bottom: 15px;
            font-size: 0.95rem;
        }

        .features-container {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-bottom: 20px;
        }

        .features-column {
            flex: 1;
            min-width: 250px;
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .feature1 {
            display: flex;
            align-items: center;
            background-color: rgba(255, 255, 255, 0.8);
            padding: 8px 30px;
            border-radius: 5px;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
            transition: transform 0.2s, box-shadow 0.2s;
        }

        .feature1:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        }

        .feature-icons {
            color: #005792;
            margin-right: 10px;
            font-weight: bold;
        }

        .rating-container {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
        }

        .rating {
            color: black;
            font-weight: 500;
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 0.95rem;
            margin-right: 15px;
        }

        .stars {
            color: black;
        }
        
        .google-badge {
            display: flex;
            align-items: center;
            background-color: rgba(255, 255, 255, 0.8);
            padding: 4px 8px;
            border-radius: 4px;
            font-size: 0.8rem;
            font-weight: 500;
        }
        
        .google-logo {
            height: 31px;
            margin-right: 5px;
        }

        .download-btn {
            margin: auto;
            background-color: #4CAF50;
            color: white;
            border: none;
            padding: 12px 24px;
            border-radius: 8px;
            cursor: pointer;
            font-size: 0.95rem;
            display: flex;
            align-items: center;
            gap: 8px;
            margin-bottom: 15px;
            transition: all 0.3s;
            font-weight: 600;
        }

        .download-btn:hover {
            background-color: #45a049;
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
        }

        .certification {
            font-style: italic;
            margin-top: 15px;
            font-size: 0.9rem;
            color: #555;
        }

        /* Syllabus Section */

/* Syllabus Section */
.syllabus-section {
    width: 1052px;
    margin-top: 61px;
    margin-left: 0;
    margin-right: 0;
    background-color: rgba(255, 255, 255, 0.85);
    border-radius: 8px;
    padding: 57px 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.syllabus-title {
    text-align: center;
    font-size: 1.5rem;
    color: #005792;
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 10px;
}

.syllabus-title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: #ffc107;
}

.syllabus-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-bottom: 18px;
}

/* Media Query for Tablets and Smaller Devices */
@media screen and (max-width: 1052px) {
    .syllabus-section {
        width: 100%;
        padding: 40px 15px;
    }
}

@media screen and (max-width: 768px) {
    .syllabus-title {
        font-size: 1.25rem;
    }

    .syllabus-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .module-card {
        margin-bottom: 15px;
    }

    .download-btn {
        width: 100%;
    }
}

/* Media Query for Extra Small Devices (Mobile Phones in Portrait Mode) */
@media screen and (max-width: 480px) {
    .syllabus-title {
        font-size: 1rem;
    }

    .syllabus-grid {
        grid-template-columns: 1fr;
    }

    .module-card {
        padding: 15px;
    }
}
        
        .module-card {
            background: linear-gradient(135deg, #ffffff, #f7f7f7);
            border-radius: 8px;
            padding: 15px;
            box-shadow: 0 3px 8px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            border-left: 4px solid #ffc107;
            height: 100%;
            display: flex;
            flex-direction: column;
        }
        
        .module-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
            border-left: 4px solid #4CAF50;
        }
        
        .module-header {
            display: flex;
            align-items: flex-start;
        }
        
        .module-number {
            background-color: #005792;
            color: white;
            width: 28px;
            height: 28px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 600;
            font-size: 0.85rem;
            margin-right: 10px;
            flex-shrink: 0;
        }
        
        .module-title {
            font-size: 0.95rem;
            font-weight: 600;
            color: #333;
            line-height: 1.3;
        }

        /* Registration Form */
        .form-container {
            flex: 1;
            min-width: 280px;
            max-width: 350px;
            display: flex;
            flex-direction: column;
            justify-content: flex-start;
        }

        .registration-form {
            background-color: rgba(255, 255, 255, 0.92);
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
            padding:37px 20px;
            margin-bottom: 20px;
        }

        .form-title {
            text-align: center;
            margin-bottom: 5px;
            color: #005792;
            font-size: 1.5rem;
            font-weight: 600;
        }

        .form-subtitle {
            text-align: center;
            margin-bottom: 15px;
            color: #666;
            font-size: 0.85rem;
        }

        .form-group {
            margin-bottom: 10px;
        }

        .form-label {
            display: block;
            margin-bottom: 4px;
            font-weight: 500;
            font-size: 0.85rem;
            color: #444;
        }

        .required {
            color: #ff6b35;
        }

        .form-input {
            width: 100%;
            padding: 10px 12px;
            border: 1px solid #ddd;
            border-radius: 4px;
            font-size: 0.9rem;
            transition: border-color 0.3s;
        }

        .form-input:focus {
            outline: none;
            border-color: #005792;
            box-shadow: 0 0 0 2px rgba(0, 87, 146, 0.1);
        }

        .submit-btn {
            width: 100%;
            background-color: #ff6b35;
            color: white;
            border: none;
            padding: 12px;
            border-radius: 4px;
            cursor: pointer;
            font-size: 0.95rem;
            font-weight: 600;
            margin-top: 8px;
            transition: all 0.3s;
        }

        .submit-btn:hover {
            background-color: #e85a2a;
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
        }

        /* Stats Section */
        .stats-container {
            position: relative;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-around;
            padding: 25px 4%;
            background-color: #f8f9fa;
            text-align: center;
        }

        .stats-container::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: url('https://images.unsplash.com/photo-1613665813446-82a78c468a1d?ixlib=rb-4.0.3');
            background-size: cover;
            background-position: center;
            opacity: 0.08;
            z-index: 1;
        }

        .stat-item {
            position: relative;
            z-index: 2;
            flex: 1;
            min-width: 130px;
            margin: 8px;
            padding: 15px;
            background-color: rgba(255, 255, 255, 0.85);
            border-radius: 8px;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.04);
            transition: transform 0.3s;
        }

        .stat-item:hover {
            transform: translateY(-5px);
        }

        .stat-number {
            font-size: 2.2rem;
            font-weight: 700;
            color: #005792;
            margin-bottom: 5px;
        }

        .stat-label {
            font-size: 0.9rem;
            color: #555;
        }

        /* Floating Buttons */
        .floating-call, .floating-whatsapp {
            position: fixed;
            z-index: 1000;
            display: flex;
            align-items: center;
            justify-content: center;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            text-decoration: none;
            color: white;
            font-size: 1.3rem;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
            transition: transform 0.3s;
        }

        .floating-call:hover, .floating-whatsapp:hover {
            transform: scale(1.1);
        }

        .floating-call {
            bottom: 124PX;
            right: 20px;
            background-color: #005792;
        }

        .floating-whatsapp {
            bottom: 64PX;
            right: 20px;
            background-color: #25D366;
        }

        .call-tag {
            position: absolute;
            right: 60px;
            background-color: #fff;
            padding: 4px 8px;
            border-radius: 4px;
            font-size: 0.75rem;
            color: #333;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
            display: none;
            white-space: nowrap;
        }

        .floating-call:hover .call-tag, .floating-whatsapp:hover .call-tag {
            display: block;
        }

        /* Responsive Design */
        @media (max-width: 1024px) {
            .syllabus-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .main-container2 {
                flex-direction: column;
                padding: 100px 3% 50px;
            }

            .course-info, .form-container {
                max-width: 100%;
            }

            .syllabus-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .main-title {
                font-size: 1.8rem;
            }
            
            .form-container {
                margin-top: 15px;
            }
        }

        @media (max-width: 480px) {
            .features-column {
                width: 100%;
            }
            
            .syllabus-grid {
                grid-template-columns: 1fr;
            }
            
            .stat-item {
                min-width: 45%;
            }
        }
     .popup {
                display: none;
                /* Hidden by default */
                position: fixed;
                /* Stay in place */
                z-index: 5;
                /* Sit on top */
                left: 0;
                top: 65px;
                width: 100%;
                /* Full width */
                height: 100%;
                /* Full height */
                overflow: auto;
                /* Enable scroll if needed */
                background-color: rgb(0, 0, 0);
                /* Fallback color */
                background-color: rgba(0, 0, 0, 0.4);
                /* Black w/ opacity */
                justify-content: center;
                /* Center the modal */
                align-items: center;
                /* Center the modal */
            }

            .popup-content {
                background-color: #fefefe;
                margin: auto;
                padding: 20px;
                border: 1px solid #888;
                width: 80%;
                max-width: 500px;
                text-align: center;
            }

            .close {
                color: #aaa;
                float: right;
                font-size: 28px;
                font-weight: bold;
            }

            .close:hover,
            .close:focus {
                color: black;
                text-decoration: none;
                cursor: pointer;
            }

            form input[type="text"],
            form input[type="email"] {
                width: 100%;
                padding: 12px 20px;
                margin: 8px 0;
                display: inline-block;
                border: 1px solid #ccc;
                border-radius: 4px;
                box-sizing: border-box;
                font-size: 16px;
            }

            form input[type="text"]:focus,
            form input[type="email"]:focus {
                border-color: #4CAF50;
                outline: none;
            }

            form button[type="submit"] {
                width: 100%;
                background-color: #4CAF50;
                color: white;
                padding: 14px 20px;
                margin: 8px 0;
                border: none;
                border-radius: 4px;
                cursor: pointer;
                font-size: 16px;
                transition: background-color 0.3s ease;
            }

            form button[type="submit"]:hover {
                background-color: #45a049;
            }

            /* Form header */
            .popup-content h2 {
                margin-bottom: 20px;
                font-size: 24px;
                color: #333;
            }