/* General Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body {
    line-height: 1.6;
    color: #333;
    background-color: #f4f4f4;
}

a {
    text-decoration: none;
    color: #333;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Header */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    background-color: #333;
    color: #fff;
}

header .logo img {
    padding-left: 80px;
    height: 50px;
    width: 250px;
}

header nav ul {
    padding-right: 80px;
    display: flex;
}

header nav ul li {
    margin-left: 20px;
}

header nav ul li a {
    color: #fff;
    font-weight: bold;
    padding: 5px 10px;
    
}

header nav ul li a:hover {
    color: #050708;
    background-color: #00a8ff;
}

/* Hero Section with Video Background */
.hero {
    position: relative;
    height: 90vh;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #f1f3f6;
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1; /* Place the video behind the content */
}

.video-background video {
    min-width: 100%;
    min-height: 100%;
    object-fit: cover; /* Ensure the video covers the entire hero section */
}

.hero-content {
    position: relative;
    z-index: 1; /* Place the content above the video */
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.hero-content button {
    padding: 10px 20px;
    margin: 10px;
    border: none;
    background-color: #00a8ff;
    color: #272729;
    font-size: 1rem;
    cursor: pointer;
    border-radius: 5px;
}

.hero-content button:hover {
    background-color: #0097e6;
}

/* Services Section */
.services {
    padding: 50px 0;
    background-color: #fff;
    text-align: center;
}

.services h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: #333;
}

.services-grid {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.service {
    flex: 1;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.service:hover {
    transform: translateY(-10px);
}

.service i {
    font-size: 2.5rem;
    color: #00a8ff;
    margin-bottom: 20px;
}

.service h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #333;
}

.service p {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
}

/* Responsive Services Section */
@media (max-width: 768px) {
    .services-grid {
        flex-direction: column;
    }

    .service {
        margin-bottom: 20px;
    }

    .service:last-child {
        margin-bottom: 0;
    }
}

@media (max-width: 480px) {
    .services h2 {
        font-size: 2rem;
    }

    .service h3 {
        font-size: 1.3rem;
    }

    .service p {
        font-size: 0.9rem;
    }
}

/* About Section */
.about {
    margin-left: 100px;
    margin-right: 100px;
    margin: 5px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 50px 0;
}

.about-image {
    flex: 1;
    margin-right: 20px;
    margin-left: 40px;
}

.about-text {
    flex: 2;
    margin-right: 40px;
}

.about-text h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.about-text p {
    font-size: 1rem;
    color: #666;
    text-align: justify;
}

/* Contact Form */
.message {
    margin-left: 100px;
    margin-right: 100px;
    text-align: center;
}

form {
    margin: 10px 10px;
    margin-left: 100px;
    margin-right: 100px;
    display: flex;
    flex-direction: column;
    padding: 50px 0;
}

form input, form textarea {
    margin-bottom: 20px;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1rem;
}

form button {
    padding: 10px 20px;
    background-color: #00a8ff;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

form button:hover {
    background-color: #0097e6;
}

/* Footer */
footer {
    background-color: #333;
    color: #fff;
    padding: 50px 0;
}

footer .container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap; /* Allow wrapping on smaller screens */
}

footer .footer-logo,
footer .footer-menu,
footer .footer-contact {
    flex: 1; /* Each column takes equal width */
    min-width: 250px; /* Minimum width for each column */
    margin: 10px; /* Add some spacing between columns */
}

footer .footer-logo img {
    width: 150px;
    height: 50px;
    margin-bottom: 10px;
}

footer .footer-logo p {
    margin-bottom: 10px;
    color: #ccc;
}

footer .social-icons a {
    color: #fff;
    margin-right: 15px;
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

footer .social-icons a:hover {
    color: #00a8ff; /* Change color on hover */
}

footer .footer-menu h3,
footer .footer-contact h3 {
    margin-bottom: 15px;
    font-size: 1.2rem;
    color: #00a8ff; /* Add a highlight color for headings */
}

footer .footer-menu ul li {
    margin-bottom: 8px;
}

footer .footer-menu ul li a {
    color: #ccc;
    transition: color 0.3s ease;
}

footer .footer-menu ul li a:hover {
    color: #00a8ff; /* Change color on hover */
}

footer .footer-contact p {
    margin-bottom: 8px;
    color: #ccc;
}

/* Responsive Footer */
@media (max-width: 768px) {
    footer .container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    footer .footer-logo,
    footer .footer-menu,
    footer .footer-contact {
        margin-bottom: 20px;
    }

    footer .social-icons {
        justify-content: center;
    }
}

/* Blog Section */
.blog {
    padding: 50px 0;
    background-color: #f9f9f9;
}

.blog h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: #333;
}

.blog-posts {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.blog-post {
    flex: 1 1 calc(33.333% - 20px);
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease;
}

.blog-post:hover {
    transform: translateY(-10px);
}

.blog-post img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.blog-post h3 {
    font-size: 1.5rem;
    margin: 20px 20px 10px;
    color: #333;
}

.blog-post .meta {
    margin: 0 20px 15px;
    font-size: 0.9rem;
    color: #777;
}

.blog-post .meta span {
    color: #00a8ff;
    font-weight: bold;
}

.blog-post p {
    margin: 0 20px 20px;
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
}

.blog-post .read-more {
    display: inline-block;
    margin: 0 20px 20px;
    padding: 10px 20px;
    background-color: #00a8ff;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.blog-post .read-more:hover {
    background-color: #0097e6;
}

/* Responsive Blog Section */
@media (max-width: 768px) {
    .blog-post {
        flex: 1 1 calc(50% - 20px);
    }
}

@media (max-width: 480px) {
    .blog-post {
        flex: 1 1 100%;
    }
}

/* Full Blog Post Styles */
.full-blog-post {
    padding: 50px 0;
}

.full-blog-post .back-to-blog {
    display: inline-block;
    margin-bottom: 20px;
    color: #00a8ff;
    text-decoration: none;
    font-weight: bold;
}

.full-blog-post article {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.full-blog-post h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #333;
}

.full-blog-post img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 10px;
    margin: 20px 0;
}

.full-blog-post .blog-content {
    margin-top: 30px;
}

.full-blog-post h2 {
    font-size: 1.8rem;
    margin: 25px 0 15px;
    color: #333;
}

.full-blog-post p, 
.full-blog-post ul {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.full-blog-post ul {
    padding-left: 20px;
}

.full-blog-post ul li {
    margin-bottom: 10px;
}

@media (max-width: 768px) {
    .full-blog-post h1 {
        font-size: 2rem;
    }

    .full-blog-post img {
        height: 250px;
    }
}

/* Responsive Styles */
@media (max-width: 768px) {
    header {
        flex-direction: column;
        text-align: center;
    }

    header nav ul {
        margin-top: 10px;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .about {
        flex-direction: column;
        text-align: center;
    }

    .about-image {
        margin-right: 0;
        margin-bottom: 20px;
    }

    footer .container {
        flex-direction: column;
        text-align: center;
    }

    footer .footer-logo, footer .footer-menu, footer .footer-contact {
        margin-bottom: 20px;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.5rem;
    }

    .hero-content button {
        font-size: 0.9rem;
    }

    .about-text h2 {
        font-size: 1.5rem;
    }

    .about-text p {
        font-size: 0.9rem;
    }
}

/* Registration Form */
.registration-form {
    padding: 50px 0;
    background-color: #f9f9f9;
    text-align: center;
}

.registration-form h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #333;
}

.registration-form form {
    max-width: 400px;
    margin: 0 auto;
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.registration-form .form-group {
    margin-bottom: 20px;
    text-align: left;
}

.registration-form label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: #333;
}

.registration-form input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1rem;
}

.registration-form button {
    width: 100%;
    padding: 10px;
    background-color: #00a8ff;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
}

.registration-form button:hover {
    background-color: #0097e6;
}

.registration-form p {
    margin-top: 20px;
    color: #666;
}

.registration-form p a {
    color: #00a8ff;
    text-decoration: none;
}

.registration-form p a:hover {
    text-decoration: underline;
}

/* Login Form */
.login-form {
    padding: 50px 0;
    background-color: #f9f9f9;
    text-align: center;
}

.login-form h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #333;
}

.login-form form {
    max-width: 400px;
    margin: 0 auto;
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.login-form .form-group {
    margin-bottom: 10px;
    text-align: left;
}

.login-form label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: #333;
}

.login-form input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1rem;
}

.login-form button {
    width: 100%;
    padding: 10px;
    background-color: #00a8ff;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
}

.login-form button:hover {
    background-color: #0097e6;
}

.login-form h5 {
    margin-bottom: 10px;
    color: #666;
    text-align: right;
}

.login-form h5 a {
    color: #00a8ff;
    text-decoration: none;
}

.login-form h5 a:hover {
    text-decoration: underline;
}


.login-form p {
    margin-top: 20px;
    color: #666;
}

.login-form p a {
    color: #00a8ff;
    text-decoration: none;
}

.login-form p a:hover {
    text-decoration: underline;
}

/* Forgot Password & Reset Password Forms */
.forgot-password,
.reset-password {
    padding: 50px 0;
    background-color: #f9f9f9;
    text-align: center;
}

.forgot-password h2,
.reset-password h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #333;
}

.forgot-password form,
.reset-password form {
    max-width: 400px;
    margin: 0 auto;
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.forgot-password .form-group,
.reset-password .form-group {
    margin-bottom: 10px;
    text-align: left;
}

.forgot-password label,
.reset-password label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: #333;
}

.forgot-password input,
.reset-password input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1rem;
}

.forgot-password button,
.reset-password button {
    width: 100%;
    padding: 10px;
    background-color: #00a8ff;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
}

.forgot-password button:hover,
.reset-password button:hover {
    background-color: #0097e6;
}

.forgot-password p,
.reset-password p {
    margin-top: 20px;
    color: #666;
}

.forgot-password p a,
.reset-password p a {
    color: #00a8ff;
    text-decoration: none;
}

.forgot-password p a:hover,
.reset-password p a:hover {
    text-decoration: underline;
}

/* About Section this is for about page */
.about-section {
    background-color: #fff;
    padding: 60px 20px;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
}

.about-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}

.about-imag img {
    width: 300px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.about-tex {
    flex: 1;
    padding: 20px;
}

.about-tex h1 {
    font-size: 36px;
    color: #333;
}

.about-tex h2 {
    font-size: 24px;
    color: #007bff;
    margin-top: 10px;
}

.about-tex p {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
}

.about-tex h3 {
    font-size: 20px;
    margin-top: 20px;
    color: #333;
}

.about-tex ul {
    list-style: none;
    padding: 0;
}

.about-tex ul li {
    font-size: 16px;
    color: #555;
    margin-bottom: 10px;
}

/* Button */
.btn {
    display: inline-block;
    background-color: #007bff;
    color: #fff;
    padding: 12px 24px;
    text-decoration: none;
    font-size: 18px;
    border-radius: 5px;
    margin-top: 20px;
}

.btn:hover {
    background-color: #0056b3;
}

/* Responsive Design */
@media (max-width: 768px) {
    .about-content {
        flex-direction: column;
        text-align: center;
    }

    .about-imag img {
        width: 200px;
    }
}

/* Google Login Button */
.google-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 6px 13px;
    color: rgb(7, 6, 6);
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    font-size: 0.9rem;
}

.google-login {
    display: inline-block;
    color: #fff;
    padding: 1px 2px;
    text-decoration: none;
    font-size: 18px;
    border-radius: 5px;
    margin-top: 20px;
}

.google-login :hover{
    background-color: #c6e7fb;

}

.google-btn img {
    width: 22px;
    height: 22px;
    background-color: white; /* Add white background for visibility */
    border-radius: 3px;
    padding: 1px;
}

/* Contact Section */
.contact-section {
    padding: 10px 0;
    margin-bottom: 20px;
    background-color: #f9f9f9;
}

.contact-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #333;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.contact-form {
    background-color: #fff;
    padding: 5px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.contact-form .form-group {
    margin-bottom: 5px;
}

.contact-form label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: #333;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 5px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1rem;
}

.contact-form textarea {
    height: 100px;
}

.contact-form button {
    width: 100%;
    padding: 10px;
    background-color: #00a8ff;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
}

.contact-form button:hover {
    background-color: #0097e6;
}

.contact-map {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-map {
        height: 500px;
    }
}

/* Services Hero Section */
/* Services Page Hero Section */
.services-page-hero {
    background: url('../images/services-hero.jpg') no-repeat center center/cover;
    height: 60vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
    position: relative;
    z-index: 1; /* Add this */
}

.services-page-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: -1; /* Add this */
}

.services-page-hero .hero-content {
    position: relative;
    z-index: 1;
}

.services-page-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.services-page-hero p {
    font-size: 1.2rem;
}

/* Services Page Section */
.services-page-section {
    padding: 50px 0;
    background-color: #f9f9f9;
    text-align: center;
    position: relative; /* Add this */
    z-index: 2; /* Add this to bring services above the hero */
}

.services-page-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.services-page-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: -100px;
    position: relative; /* Add this */
    z-index: 3; /* Ensure cards are above everything */
}

.service-page-card {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-page-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.2);
}

.service-page-card i {
    font-size: 2.5rem;
    color: #00a8ff;
    margin-bottom: 20px;
}

.service-page-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #333;
}

.service-page-card p {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
}

/* Call-to-Action Button */
.cta-button {
    margin-top: 50px;
}

.cta-button .btn {
    padding: 15px 30px;
    background-color: #00a8ff;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1.1rem;
    transition: background-color 0.3s ease;
}

.cta-button .btn:hover {
    background-color: #0097e6;
}

/* Responsive Design */
@media (max-width: 768px) {
    .services-page-grid {
        grid-template-columns: 1fr;
        margin-top: -50px;
    }

    .services-page-hero h1 {
        font-size: 2.5rem;
    }

    .services-page-hero p {
        font-size: 1rem;
    }

    .service-page-card {
        padding: 20px;
    }
}

