
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/** Header related javascript */

/* Header Styles */
.header {
    background-color: #1c1c1c;
    color: #fff;
    padding: 15px 20px;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.header .container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    margin: 0;
    font-size: 24px;
    font-weight: bold;
    color: #00bfa6;
}

.logo h1 a {
    text-decoration: none;
    color: inherit;
}

.nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 20px;
}

.nav ul li {
    margin: 0;
}

.nav ul li a {
    text-decoration: none;
    color: #fff;
    font-size: 16px;
    transition: color 0.3s;
}

.nav ul li a:hover {
    color: #00bfa6;
}

.cta .btn {
    padding: 10px 20px;
    background: #00bfa6;
    color: #fff;
    border: none;
    border-radius: 4px;
    text-decoration: none;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s;
}

.cta .btn:hover {
    background: #019b85;
}

/** Footer related script */

.footer {
    background: #1c1c1c;
    color: #fff;
    padding: 40px 20px;
    font-family: Arial, sans-serif;
}

.footer .container {
    max-width: 1200px;
    margin: auto;
}

.footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 20px;
}

.footer-brand {
    max-width: 300px;
}

.footer-brand h2 {
    margin: 0;
    font-size: 24px;
    color: #00bfa6;
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-column h4 {
    font-size: 16px;
    margin-bottom: 10px;
    color: #00bfa6;
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column ul li {
    margin: 5px 0;
}

.footer-column ul li a {
    color: #fff;
    text-decoration: none;
}

.footer-column ul li a:hover {
    text-decoration: underline;
}

.social-links {
    display: flex;
    gap: 10px;
}

.social-links img {
    width: 20px;
    height: 20px;
}

.footer-bottom {
    text-align: center;
    margin-top: 20px;
}

.newsletter h4 {
    font-size: 16px;
    margin-bottom: 10px;
}

.newsletter form {
    display: flex;
    gap: 10px;
    justify-content: center;
    align-items: center;
}

.newsletter input {
    padding: 10px;
    font-size: 14px;
    border: none;
    border-radius: 4px;
    width: 250px;
}

.newsletter button {
    padding: 10px 20px;
    background: #00bfa6;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.newsletter button:hover {
    background: #019b85;
}

/**
Styles for main.php
*/

/* Hero Section */
.hero {
    background: linear-gradient(to bottom right, #00bfa6, #00796b);
    color: #fff;
    text-align: center;
    padding: 80px 20px;
}

.hero h1 {
    font-size: 36px;
    margin-bottom: 20px;
}

.hero p {
    font-size: 18px;
    margin-bottom: 30px;
}

.hero .btn {
    background: #fff;
    color: #00bfa6;
    padding: 10px 20px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s, color 0.3s;
}

.hero .btn:hover {
    background: #00bfa6;
    color: #fff;
}

/* Services Section */
.services {
    background: #f9f9f9;
    padding: 60px 20px;
    text-align: center;
}

.services h2 {
    font-size: 28px;
    margin-bottom: 20px;
}

.services-grid {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.service-item {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    width: 300px;
    text-align: center;
}

.service-item img {
    max-width: 100px;
    margin-bottom: 15px;
}

.service-item h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.service-item p {
    font-size: 14px;
    color: #555;
}

/* About Section */
.about {
    padding: 60px 20px;
    text-align: center;
}

.about h2 {
    font-size: 28px;
    margin-bottom: 20px;
}

.about p {
    font-size: 16px;
    max-width: 600px;
    margin: auto;
    color: #555;
}

.hero {
    position: relative;
    text-align: center;
    padding: 50px 0;
}
.media {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}
.hero-image {
    max-width: 50%;
    height: auto;
}
.hero-video {
    max-width: 50%;
    height: auto;
    margin-left: 20px;
}
.logo {
    display: flex;
    align-items: center;
}

.logo-link {
    text-decoration: none;
    display: flex;
    align-items: center;
}

.logo-img {
    height: 50px; /* Adjust as needed */
    margin-right: 10px; /* Spacing between the logo and text */
}

.logo-text {
    font-size: 1.5rem; /* Adjust for text size */
    color: #ebe3e3; /* Adjust to match your theme */
}

