/* Resetting some default browser styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body styles */
body {
    font-family: 'Arial', sans-serif;
    background-color: #f9f9f9; /* Light background */
    color: #333; /* Dark text color for readability */
}

/* Header Styles */
header {
    background-color: #ffffff; /* White background */
    padding: 20px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); /* Slight shadow for separation */
   
}



/*dropdown*/
/* Dropdown Menu */
.dropdown-menu {
    display: none;
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    background:#ffffff;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
    padding: 20px;
}

/* Mega Menu Container */
.mega-menu {
    display: flex;
    justify-content: space-between;
}

/* Category Sections */
.menu-section {
    width: 15%;
    padding: 10px;
    border-right: 1px solid #ddd;
}

.menu-section:last-child {
    border-right: none;
}

/* Section Title */
.menu-section h3 {
    font-size: 16px;
    color: #333;
    margin-bottom: 10px;
    border-bottom: 2px solid deepskyblue;
    padding-bottom: 5px;
}

/* Subcategories */
.menu-section ul {
    list-style: none;
}

.menu-section ul li {
    padding: 8px 0;
    font-size: 14px;
    color: #555;
    cursor: pointer;
    transition: color 0.3s;
}

.menu-section ul li a {
    padding: 8px 0;
    font-size: 14px;
    color: #555;
    cursor: pointer;
    transition: color 0.3s;
}


.menu-section ul li:hover {
    color: deepskyblue;
}

.menu-section ul li a:hover {
    color: deepskyblue;
}


















/* Footer Section Styles */
#footer {
    background-color: #f9f9f9; /* Light background color */
    padding: 40px 0;
    color: #333; /* Dark text color */
    text-align: center;
    border-top: 1px solid #ddd; /* Light border to separate from content */
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}


.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    margin-bottom: 30px;
}



.footer-logo {
    flex: 1;
    max-width: 250px;
}

.footer-logo h2 {
    font-size: 2rem;
    margin-bottom: 10px;
    color:deepskyblue; /* Orange color for the logo */
}

.footer-logo p {
    font-size: 1rem;
    color: #555;
}

.footer-links {
    flex: 1;
    max-width: 300px;
}

.footer-links ul {
    list-style-type: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    text-decoration: none;
    color: #333;
    font-size: 1rem;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: deepskyblue; /* Orange color on hover */
}

.footer-social {
    flex: 1;
    max-width: 300px;
}

.footer-social a {
    display: inline-block;
    margin: 5px 10px;
    text-decoration: none;
    color: #333;
    font-size: 1.2rem;
    transition: color 0.3s;
}

.footer-social a:hover {
    color: deepskyblue; /* Orange color on hover */
}

.footer-bottom {
    margin-top: 20px;
    font-size: 1rem;
    color: #777; /* Light gray text for footer bottom */
}

.footer-bottom p {
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-logo {
        margin-bottom: 20px;
    }

    .footer-links,
    .footer-social {
        margin-bottom: 20px;
    }

    .footer-social a {
        font-size: 1rem;
    }
}


.container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 2000px;
    margin: 0 auto;
    padding: 0 20px;
    
}



.logo img {
    height: 50px; /* Adjust logo size */
}






















nav ul {
    list-style: none;
    display: flex;
}

nav ul li {
    margin: 0 20px;
}

nav ul li a {
    text-decoration: none;
    color: #333;
    font-weight: bold;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: deepskyblue; /* Accent color for hover */
}

.cta .btn {
    background-color: deepskyblue; /* Orange button */
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s;
}

.cta .btn:hover {
    background-color: deepskyblue; /* Darker shade on hover */
}

#hello{
    background-color: #fff;
    color: #fff;
    background-size: cover;
}

/* Hero Section Styles */
#hero {
  
    position: relative;
    width: 100%;
    height: 100vh; /* Full height */
    display: flex;
    justify-content: center;
    align-items: center;
    color: navy;
    text-align: center;
    overflow: hidden;
    padding: 100px 0;
}
#hero video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures video fills the section */
    transform: translate(-50%, -50%);
    z-index: -1; /* Keeps video behind the content */
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.hero-btn {
    background-color: deepskyblue;
    color: #fff;
    padding: 15px 30px;
    border-radius: 5px;
    font-size: 1.2rem;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s;
}

.hero-btn:hover {
    background-color: deepskyblue;
}



/* Hero Section Styles */
#hero2 {
  
    position: relative;
    width: 50%;
    height: 80vh; /* Full height */
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    text-align: center;
    overflow: hidden;
    padding: 50px 0;
}
#hero2 video {
    position: absolute;
    top: 50%;
    left: 50%;
    width:100%;
    height: 100%;
    object-fit: cover; /* Ensures video fills the section */
    transform: translate(-50%, -50%);
    z-index: -1; /* Keeps video behind the content */
}

.hero2-content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    top: 80%;
}

.hero2-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    top: 80%;
}

.hero2-btn {
    background-color: deepskyblue;
    color: #fff;
    padding: 15px 30px;
    border-radius: 5px;
    font-size: 1.2rem;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s;
}

.hero2-btn:hover {
    background-color: deepskyblue;
}

#hero3 {
  
    position: relative;
    width: 50%;
    height: 80vh; /* Full height */
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    text-align: center;
    overflow: hidden;
    padding: 50px 0;
}

#hero3 video {
    position: absolute;
    top: 50%;
    left: 50%;
    width:100%;
    height: 100%;
    object-fit: cover; /* Ensures video fills the section */
    transform: translate(-50%, -50%);
    z-index: -1; /* Keeps video behind the content */
}

@media (max-width: 768px) {
    .container {
        flex-direction: column;
        text-align: center;
    }
    
    nav ul {
        flex-direction: column;
        margin-top: 20px;
    }

    nav ul li {
        margin: 10px 0;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }
}
