* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    scroll-behavior: smooth;
}

body {
    color: #333;
    background-color: #f9f9f9;
}

/* Header Styles */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    background-color: #ffffff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo-img {
    max-width: 150px;
}

nav ul {
    list-style: none;
    display: flex;
}

nav ul li {
    margin-left: 30px;
}

nav ul li a {
    text-decoration: none;
    color: #333;
    font-weight: 600;
    font-size: 1.1em;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: #ff6f61;
}

/* Hero Section */
.hero {
    height: 100vh;
    background: url('hero-bg.jpg') no-repeat center center/cover; /* Replace with your hero image */
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Dark overlay for readability */
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 3.5em;
    margin-bottom: 20px;
    font-weight: 600;
}

.hero p {
    font-size: 1.3em;
    margin-bottom: 30px;
    font-weight: 300;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: #ff6f61;
    color: #fff;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.btn:hover {
    background-color: #e65b50;
}

/* Services Section */
.services {
    padding: 80px 20px;
    text-align: center;
    background-color: #fff;
}

.services h2 {
    font-size: 2.5em;
    margin-bottom: 40px;
    color: #333;
}

.card {
    background-color: #f9f9f9;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    max-width: 400px;
    margin: 0 auto;
    transition: transform 0.3s ease;
}

.card h3 {
    font-size: 1.5em;
    margin-bottom: 10px;
    color: #ff6f61;
}

.card p {
    font-size: 1.1em;
    color: #666;
}

.card:hover {
    transform: translateY(-10px);
}

/* Videos Section */
.videos {
    padding: 80px 20px;
    text-align: center;
    background-color: #f4f4f4;
}

.videos h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: #333;
}

.videos p {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: #666;
}

.video-placeholder {
    background-color: #ddd;
    padding: 50px;
    border-radius: 15px;
    max-width: 600px;
    margin: 0 auto;
}

/* Contact Section */
.contact {
    padding: 80px 20px;
    text-align: center;
    background-color: #fff;
}

.contact h2 {
    font-size: 2.5em;
    margin-bottom: 40px;
    color: #333;
}

.contact-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.contact .