/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body Styling */
body {
    font-family: 'Arial', sans-serif;
    background-color: #f4f4f4;
    color: #333;
}

/* Header Styling */
header {
    background-color: #007BFF;
    color: white;
    padding: 20px 0;
    text-align: center;
}

header .logo {
    font-size: 2rem;
    font-weight: bold;
    
}

header nav ul {
    list-style: none;
    margin-top: 10px;
}

header nav ul li {
    display: inline;
    margin-right: 20px;
}

header nav ul li a {
    text-decoration: none;
    color: white;
    font-weight: bold;
    font-size: 1.1rem;
}

/* Hero Section */
#hero {
    background-color: #00C6FF;
    color: white;
    padding: 80px 20px;
    text-align: center;
}

#hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

#hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

#hero button {
    background-color: #FF7F50;
    color: white;
    padding: 12px 25px;
    font-size: 1.1rem;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

#hero button:hover {
    background-color: #FF6347;
}

/* Courses Section */
#courses {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    padding: 50px 20px;
    text-align: center;
}

.course {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.course:hover {
    transform: translateY(-10px);
}

.course img {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
}

.course h2 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 10px;
}

.course p {
    font-size: 1rem;
    color: #555;
}

/* Footer */
footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 20px;
    margin-top: 40px;
}

.mylogo {
    height:150px;
}

.discont {
    text-align: center;
}

.addl {
    display: inline-block;
    text-align: left;
}

.hh h3{
    text-align: center;
    background-color: #00C6FF;
}
/* Responsive Design */
@media (max-width: 768px) {
    header nav ul li {
        display: block;
        margin-bottom: 10px;
    }

    #courses {
        grid-template-columns: 1fr;
    }

    #hero h1 {
        font-size: 2.5rem;
    }

    #hero p {
        font-size: 1rem;
    }

    #hero button {
        font-size: 1rem;
    }
}
