* General Reset */
* {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;

}
.logo img {
    width: 160px;
    height: auto;
}
.content {
    padding: 20px;
}

/* Navbar Container */
#navbar {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 1000;
}

/* Open and Close Buttons */
.menu-btn {
    background-color: #007BFF;
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
    font-size: 18px;
    border-radius: 5px;
    margin: 5px;
    display: none; /* Hidden by default */
}

/* Menu */
#menu {
    display: none; /* Hidden by default */
    flex-direction: column;
    background-color: #007BFF;
    padding: 10px;
    position: absolute;
    top: 0;
    right: 0;
    border-radius: 8px 0 0 8px;
}

#menu .nav-link {
    text-decoration: none;
    color: white;
    padding: 10px 15px;
    margin: 5px 0;
    display: block;
    border-radius: 4px;
    transition: background-color 0.3s;
}

#menu .nav-link:hover {
    background-color: #007BFF;;
}

/* Show Menu and Buttons on Small Screens */
@media (max-width: 768px) {
    .menu-btn {
        display: block; /* Show open and close buttons on small screens */
    }

    #menu {
        display: none; /* Hide menu initially */
    }
}

/* Hide Menu and Buttons on Large Screens */
@media (min-width: 769px) {
    #navbar {
        display: none; /* Entire navbar (buttons + menu) hidden on large screens */
    }
}
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    background: #007BFF;
    color: #fff;
}

.navbar .logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #fff;
    text-decoration: none;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 1rem;
}

.nav-links li a {
    text-decoration: none;
    color: #fff;
    padding: 0.5rem 1rem;
    transition: color 0.3s;
}

.nav-links li a:hover,
.nav-links li a.active {
    color: blue;
}

.menu-toggle,
.close-toggle {
    display: none;
}

/* Hero Section */
.hero {
    height: 100vh;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-btn {
    display: inline-block;
    text-decoration: none;
    color:#007BFF;
    border: 2px solid #007BFF;
    padding: 12px 34px;
    background: transparent;
    position: relative;
    cursor: pointer;
    transition: 1s;
}

.hero-btn:hover {
    border: 2px solid #007BFF;
    background: #007BFF;
    color: #fff;
}
.whatsapp-icon {
    position: fixed; /* Makes it stay in place even when scrolling */
    bottom: 10px;    /* Distance from the bottom of the screen */
    right: 10px;     /* Distance from the right side of the screen */
    z-index: 1000;   /* Ensures it appears above other elements */
}

.whatsapp-icon a img {
    width:40px;    
    height: 40px;
    border-radius: 40%; 
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s, box-shadow 0.3s; 
}

.whatsapp-icon a img:hover {
    transform: scale(1.1); 
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.3); 
}
/* Footer */
footer {
    background: #007BFF;
    color: #fff;
    padding: 2rem 0;
    text-align: center;
}

.footer-contact,
.footer-links {
    margin-bottom: 1.5rem;
}

.footer-links ul {
    list-style: none;
}

.footer-links ul li a {
    color: #fff;
    text-decoration: none;
    display: block;
}

.footer-links ul li a:hover {
    color: blue;
}
.footer {
    background-color: #007BFF;
    color: white;
    text-align: center;
    padding: 20px;
}

.social-media {
    margin: 20px 0;
}

.social-icon {
    text-decoration: none;
    color: white;
    font-size: 24px;
    margin: 0 10px;
    transition: color 0.3s ease;
}

.social-icon:hover {
    color: #ff6347; 
}

.facebook:hover {
    color: #3b5998;
}

.twitter:hover {
    color: #1da1f2;
}

.instagram:hover {
    color: #e4405f;
}

.linkedin:hover {
    color: #0077b5;
}


.tiktok:hover {
    color: #69c9d0;
}

.copyright {
    margin-top: 1rem;
    font-size: 0.9rem;
}
@media(max-width: 900px){
    .text-box h1{
        font-size: 19px;
    }
}

/* Page Header */
.page-header {
    background: #f4f4f4;
    padding: 3rem 0;
    text-align: center;
}

.page-header h1 {
    font-size: 2.5rem;
    color: #007BFF;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.2rem;
    color: #007BFF;
}
/* about us */
.about us {
    padding: auto;
}

.about us h1 {
    color: #007BFF;
}



/* Blog Posts */
.blog-posts {
    padding: 2rem 0;
}

.blog-post {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.blog-post h2 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: #0d0d0e;
}

.blog-post p {
    margin: 0.5rem 0;
    color: #111111;
    line-height: 1.6;
}

.highlight {
    color: #007BFF;
    font-weight: bold;
  }
.blog-post a {
    text-decoration: none;
    color:  #007BFF;
    font-weight: bold;
    transition: color 0.3s;
}

.blog-post a:hover {
    color:  #007BFF;
}
/* Contact Us Section */
.contact {
    padding: 4rem 0;
    text-align: center;
}

.contact h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.contact p {
    margin-bottom: 2rem;
    font-size: 1rem;
    color: #007BFF;
}

.contact-details {
    margin-bottom: 2rem;
    text-align: left;
}

.contact-details p {
    font-size: 1rem;
    margin: 0.5rem 0;
}

form {
    max-width: 600px;
    margin: 0 auto;
    text-align: left;
}

.form-group {
    margin-bottom: 1.5rem;
}

form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: bold;
}

form input,
form textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1rem;
}

form textarea {
    resize: none;
}

form button {
    display: inline-block;
    margin-top: 1rem;
}
/* Base styles */
body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #007BFF;
    padding: 1rem;
}

.nav-links {
    display: flex;
    gap: 1rem;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: white;
    padding: 0.5rem 1rem;
}

.menu-toggle, .close-toggle {
    display: none;
    background: none;
    color: white;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Responsive styles for small screens */
@media screen and (max-width: 900px) {
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 60px;
        right: 10px;
        background-color: #007BFF;
        padding: 1rem;
        border-radius: 5px;
        width: 200px;
        text-align: right;
    }

    .nav-links.show {
        display: flex;
    }

    .menu-toggle {
        display: block;
    }

    .close-toggle {
        display: none;
    }
}
/* Base styles */
.nav-links {
    display: flex;
    list-style: none;
    gap: 1rem;
}

.menu-toggle, .close-toggle {
    display: none; /* Hidden by default */
    background: none;
    color: white;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Responsive navbar styles */
@media screen and (max-width: 900px) {
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 60px;
        right: 10px;
        background-color: #007BFF;
        padding: 1rem;
        border-radius: 5px;
        width: 200px;
        text-align: right;
    }

    .nav-links.show {
        display: flex; /* Show menu when "show" class is added */
    }

    .menu-toggle {
        display: block; /* Show menu bar on small screens */
    }

    .close-toggle {
        display: none; /* Close button is hidden by default */
    }

    .nav-links.show + .close-toggle {
        display: block; /* Show close button when menu is open */
    }
}

