*{
    padding: 0px;
    margin: 0px;
}

/* header */ 
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
}

header {
    background-color: yellow;
    color: black;
    padding: 20px 0;
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.head {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.logo a {
    color: black;
    text-decoration: none;
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 10px;
}

.navigate ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
}

.navigate ul li {
    margin: 0 10px;
}

.navigate ul li a {
    color: black;
    text-decoration: none;
    font-size: 16px;
    padding: 5px 10px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.navigate ul li a:hover {
    background-color: #0056b3;
}

/* footer */
.foot{
    text-align: center;
    padding-top: 10px;
    padding-bottom: 10px;
}

/* main body*/

main{
    padding-top: 80px;
    text-align: center;
    height: inherit;
    overflow: hidden;
}

/* social page */

#move{
    white-space: nowrap;
    animation: scroll-horizontal 10s linear infinite;
    overflow: hidden;
}

@keyframes scroll-horizontal {
    from {
        transform: translateX(100%);
    }
    to {
        transform: translateX(-100%);
    }
}

main div{
    font-size: 40px;
}

/* videos */

/* Style for the videos section */
section.videos {
    display: flex;
    flex-direction: column;  
    align-items: center;     
    gap: 20px;               
    padding: 20px;           
    background-color: #f0f0f0;
    border-radius: 10px;   
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); 
}


section.videos video {
    width: 80%;              
    max-width: 800px;        
    border: 2px solid #ccc;  
    border-radius: 8px;      
    transition: transform 0.3s ease;
}

section.videos video:hover {
    transform: scale(1.05);  
    border-color: #007BFF;  
}

@media (max-width: 768px) {
    section.videos video {
        width: 100%;         
        height: 500px;       
    }
}

/* legal page*/
/* Reset some default browser styles */
body, h1, h2, h3, h4, p {
    margin: 0;
    padding: 0;
}

/* Basic styling */
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-color: #f4f4f4;
    color: #333;
    padding: 20px;
}

/* Main container styling */
main {
    max-width: 900px;
    margin: 0 auto;
}

/* Section styling */
section {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    padding: 20px;
    margin-bottom: 20px;
}

/* Headings */
h1 {
    font-size: 24px;
    border-bottom: 2px solid #333;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

h2, h3, h4 {
    font-size: 18px;
    color: #555;
    margin-bottom: 10px;
}

h3 {
    font-size: 20px;
}

/* Paragraph styling */
p {
    margin-bottom: 15px;
    line-height: 1.6;
}

/* Links */
a {
    color: #007bff;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Contact Us Section */
.contact-us {
    background: #e9ecef;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.contact-us form {
    display: flex;
    flex-direction: column;
}

.contact-us label {
    margin-bottom: 5px;
    font-weight: bold;
}

.contact-us input, .contact-us textarea {
    margin-bottom: 15px;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
}

.contact-us button {
    background-color: yellow;
    color: #fff;
    border: none;
    padding: 10px 15px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
}

.contact-us button:hover {
    background-color: red;
}

/* course */
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-color: #f4f4f4;
    padding: 20px;
    margin: 0;
}

figure {
    background-color: #fff;
    padding: 20px;
    margin: 20px 0;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

figure img {
    width: 100%;
    border-radius: 8px;
}

figcaption.about-course {
    padding: 20px 0;
}

figcaption h3 {
    margin-top: 0;
    color: #333;
}

figcaption p {
    color: #555;
}

.enroll-button {
    background-color: #007BFF;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
}

.enroll-button:hover {
    background-color: #0056b3;
}






