* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    background: #0b1c51;
    color: #A68E72;
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
}
 span{
    color:#fff;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.75rem;
    font-weight: bold;
}


nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

nav a {
    color: white;
    text-decoration: none;
    font-weight: 500;
}

nav a:hover {
    color: #ead76d;
}

/* Hero */
.hero {
    /* background: url('https://via.placeholder.com/1200x400') no-repeat center/cover; */
    background-color:#6679b6 ;
    color: white;
    text-align: center;
    padding: 100px 0;
    margin-top: 60px;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.btn {
    display: inline-block;
    background: #A68E72;
    color: #0b1c51;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
}

.btn:hover {
    background: #A68E72;
}

/* Videos */
.videos {
    padding: 50px 0;
    background: #A8B0C8;
}

.videos h2, .blog h2, .live-qa h2, .contact h2 {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2rem;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.video-card {
    background: white;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.video-card iframe {
    width: 100%;
    aspect-ratio: 16/9;
}

/* Blog */
.blog {
    padding: 50px 0;
    background-color: #6679b6;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.blog-card {
    background: white;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.blog-card img {
    width: 100%;
    height: 300px;
    object-fit:cover;
}

.blog-card h3, .blog-card p {
    padding: 10px 20px;
}

.blog-card .btn {
    margin: 0 20px 20px;
}

/* Live Q&A */
.live-qa {
    background: #0b1c51;
    color: white;
    text-align: center;
    padding: 50px 0;
}

.live-qa .btn {
    background: #a68e72;
    color: #0b1c51;
}

.btn:hover{
    background-color: #ead76d;
}

/* Contact */
.contact {
    padding: 50px 0;
    background-color: #A8B0C8;
}

.contact form {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;    
}

.contact input, .contact textarea {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1rem;
}

.contact textarea {
    height: 150px;
}

.contact button {
    align-self: flex-start;
}

/* Footer */
footer {
    background: #333;
    color: white;
    padding: 20px 0;
    text-align: center;
}



/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 1.8rem;
    }

    .hero p {
        font-size: 1rem;
    }

    nav ul {
        flex-direction: column;
        gap: 10px;
    }
}
/* Footer */
footer {
    background: #333;
    color: white;
    padding: 20px 0;
    text-align: center;
}

.social-links a {
    color: #A68e72;
    margin: 0 10px;
    text-decoration: none;
    font-size: 1.5rem; /* Adjust icon size */
    transition: color 0.3s;
}

.social-links a:hover {
    color: #ead76d; /* Hover effect */
}

/* Ensure Font Awesome icons display correctly */
.fab {
    vertical-align: middle;
}