/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

/* Color Palette */
:root {
    --primary-color: #82c9c3; /* Soft Teal */
    --secondary-color: #f7d9c4; /* Pastel Peach */
    --background-color: #efeae6; /* Light Cream */
    --text-color: #333; /* Dark Gray */
    --accent-color: #ffadad; /* Soft Coral */
    --white: #ffffff; /* White */
    --light-gray: #e5e5e5; /* Light Gray for dividers */
}

html{
    height: 100%;
}
/* Body Styles */
body {
    background-color: var(--background-color);
    color: var(--text-color);
    line-height: 1.6;
    height: 100%;
}

/* Navbar Styles */
/* Header Styles with Gradient */
/* Header Section with Gradient Background */
/* General Styles for Navbar */
header {
    background: var(--primary-color);
    padding: 15px 20px;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar .logo a {
    color: #ffffff;
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: bold;
}

.navbar .menu-icon {
    display: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: #ffffff;
}

.nav-links {
    display: flex;
}

.nav-links ul {
    display: flex;
    list-style: none;
}

.nav-links ul li {
    margin-left: 20px;
}

.nav-links ul li a {
    color: #ffffff;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s;
}

.nav-links ul li a:hover {
    color: #f7d9c4;
}

.nav-links .btn {
    background-color: #ffadad;
    color: #ffffff;
    padding: 8px 15px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s;
}

.nav-links .btn:hover {
    background-color: #f7d9c4;
}

/* Responsive Design for Smaller Devices */
@media (max-width: 768px) {
    .nav-links {
        display: none; /* Hide the nav links initially */
        flex-direction: column; /* Stack the links vertically */
        position: absolute;
        top: 60px; /* Below the navbar */
        right: 20px;
        background: #ffffff;
        border: 1px solid #ddd;
        padding: 15px;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        border-radius: 8px;
    }

    .nav-links ul {
        flex-direction: column; /* Stack the links vertically */
    }

    .nav-links ul li {
        margin: 10px 0; /* Add spacing between links */
    }

    .nav-links ul li a {
        color: #333333; /* Dark text for the dropdown */
    }

   .navbar .menu-icon {
        display: block; /* Show hamburger icon on small screens */
    }
}

/* Hero Section */
.hero {
    background: linear-gradient(180deg, #82c9c3, #f7d9c4);
    color: var(--white);
    text-align: center;
    padding: 20px 20px;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.hero-buttons a {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 1rem;
    text-decoration: none;
    margin: 0 10px;
    transition: background-color 0.3s, color 0.3s;
}

.hero-buttons .btn-primary {
    background-color: var(--accent-color);
    color: var(--white);
}

.hero-buttons .btn-primary:hover {
    background-color: var(--secondary-color);
}

.hero-buttons .btn-secondary {
    background-color: var(--white);
    color: var(--primary-color);
    border: 1px solid var(--white);
}

.hero-buttons .btn-secondary:hover {
    background-color: var(--secondary-color);
    color: var(--white);
}

/* Section Containers */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

section {
    padding: 0px 20px;
}

/* About Section */
.about {
    background-color: var(--secondary-color);
}

.about h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 30px;
}

.about .content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px;
}

.about .text {
    flex: 1;
}

.about .text ul {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.about .text ul li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 10px;
}

.about .text ul li:before {
    content: "✔";
    color: var(--accent-color);
    position: absolute;
    left: 0;
    font-size: 1.2rem;
}

.about .image {
    flex: 1;
    text-align: center;
}

.about .image img {
    max-width: 70%;
    border-radius: 50%;
}

/* Features Section */
.features {
    background: linear-gradient(0deg, #82c9c3, #f7d9c4);
    color: var(--text-color);
    text-align: center;
}

.features h2 {
    margin-bottom: 30px;
    font-size: 2rem;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.feature {
    background-color: var(--background-color);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    cursor: pointer;
}

.feature h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.feature-btn {
    font-weight: bold;    
}

.feature-btn a {
    font-size: 1.3rem;
    background-color: var(--background-color);
    display: inline-block;
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 1.3rem;
    text-decoration: none;
    margin: 0 10px;
    transition: background-color 0.3s, color 0.3s;
    color: var(--primary-color);
}

.feature-btn .feature-btn-a:hover {
    background-color: var(--secondary-color);
    color: var(--white);
}


/* Overlay styles */
.overlay {
    display: none; /* Hidden by default */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7); /* Semi-transparent background */
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.overlay-content {
    background: var(--background-color);
    padding: 30px;
    border-radius: 10px;
    width: 80%; /* Adjust as needed */
    max-width: 500px;
    position: relative;
    text-align: justify;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.overlay-text {
    margin: 20px;
}

.close-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 24px;
    font-weight: bold;
    color: #333;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close-btn:hover {
    color: #0078d7; /* Highlight color on hover */
}


/* Footer */
footer {
    background-color: var(--primary-color);
    color: var(--white);
    text-align: center;
    padding: 20px 10px;
}

footer .footer-links a {
    color: var(--white);
    margin: 0 10px;
    text-decoration: none;
    font-size: 0.9rem;
}

footer .footer-links a:hover {
    color: var(--accent-color);
}


/* newPage*/

.background-video{
    background: linear-gradient( 0deg, var(--primary-color),var(--secondary-color));
    text-align: center;
    height: 100%;
    width: 100%;
    color: var(--white);
}

.video{
    height: 60%;
    width: 100%;
    border-radius: 10px;
}