body {
    font-family: sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    background-color: #f7f7f7;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Sticky Navigation Bar */
.sticky-nav {
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 20px;
}

/* .logo {
    height: 40px;
} */

.logo img {
    height: 70px;
    width: 70px;
    display: block; /* Ensure image doesn't affect text baseline */
}

/* Desktop Navigation */
.desktop-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 20px;
}

.desktop-nav li {
    margin-left: 20px;
}

.desktop-nav a {
    text-decoration: none;
    color: #555;
    transition: color 0.3s ease;
}

.desktop-nav a:hover {
    color: #007bff;
}

.desktop-nav .contact-btn {
    background-color: #007bff;
    color: #fff;
    padding: 10px 15px;
    border-radius: 5px;
}

.desktop-nav .contact-btn:hover {
    background-color: #0056b3;
}

/* Mobile Navigation (Hidden by Default) */
.mobile-nav {
    display: none;
}

.hamburger {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
}

.bar {
    width: 100%;
    height: 3px;
    background-color: #333;
    transition: all 0.3s ease;
}

.mobile-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
    position: absolute;
    top: 60px; /* Adjust based on header height */
    left: 0;
    background-color: #fff;
    width: 100%;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    display: none; /* Hidden by default */
}

.mobile-nav-list.open {
    display: block;
}

.mobile-nav-list li {
    padding: 15px 20px;
    border-bottom: 1px solid #eee;
}

.mobile-nav-list li:last-child {
    border-bottom: none;
}

.mobile-nav-list a {
    text-decoration: none;
    color: #555;
    display: block;
}

.mobile-nav-list .contact-btn {
    background-color: #007bff;
    color: #fff;
    padding: 10px 15px;
    border-radius: 5px;
    display: inline-block;
}

.mobile-nav-list .contact-btn:hover {
    background-color: #0056b3;
}

/* Hero Section */
.hero-section {
    padding: 80px 0;
    background-color: #fff;
}

.hero-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.hero-text {
    flex: 1;
    padding-right: 40px;
    text-align: start;
}

.hero-text h1 {
    font-size: 3.5rem;
    margin-bottom: 15px;
    color: #333;
    font-weight: 700;
     /* Ensure blue text breaks to a new line */
}

.blue-text {
    color: #007bff;
    /* Make it a block-level element to force a new line */
}
.hero-text .yellow-text {
    font-family: sans-serif; /* Choose your preferred font */
    font-size: 3em; /* Adjust the size as needed */
    color: gold;
    font-weight: 800; /* Make it bold */
    font-style: bold;
    text-align: start; /* Center the heading */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3); /* Add a subtle shadow */
  }

.hero-text .business{
    margin-top: -20px;
}

.hero-text p {
    color: #666;
    margin-bottom: 25px;
}

.hero-buttons {
    width: 100%;
    display: flex;
    align-items: center; /* Vertically align items in the button container */
}

.hero-buttons a {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s ease;
    width: auto; /* Adjust width to content */
    margin: 0 5px; /* Add some horizontal margin between buttons */
}

.explore-btn {
    background-color: #007bff;
    color: #fff;
}

.explore-btn:hover {
    background-color: #0056b3;
}

.contact-link {
    color: #555;
    border: 1px solid #ccc;
}

.contact-link:hover {
    background-color: #eee;
}

.arrow {
    margin-left: 5px;
}

.hero-image {
    flex: 1;
   
    text-align: right;
}

.hero-image img {
    padding-top: 30px;
    max-width: 100%;
    height: auto;
    border-radius: 5px; /* Optional: for rounded corners */
}

/* Responsive Design */
@media (max-width: 768px) {
    .desktop-nav {
        display: none;
    }

    .mobile-nav {
        display: block;
    }

    .hero-container {
        flex-direction: column;
        text-align: center;
    }

    .hero-text {
        padding-right: 0;
        text-align: center;
        /* margin-bottom: 30px; */
    }
    .hero-text .yellow-text{
        text-align: center;
    }

    .hero-text h1 {
        font-size: 2rem;
    }

    .hero-buttons {
        flex-direction: column; /* Stack buttons vertically on mobile */
        align-items: center; /* Center the buttons */
    }

    .hero-buttons a {
        margin: 10px 0;
        width: 80%; /* Adjust button width on mobile */
        text-align: center;
    }

    /* Hide the hero image on mobile */
    .hero-image {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 1.75rem;
    }

    .hero-buttons a {
        width: 95%; /* Make buttons wider on smaller mobiles */
    }
}

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

.section-title {
    font-size: 2rem;
    color: #007bff;
    margin-bottom: 15px;
}

.section-description {
    color: #666;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.service-card {
    height: auto;
    width: auto;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.service-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background-color: #e0f2f7; /* Light blue background */
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.service-icon img {
    max-width: 60px;
    max-height: 60px;
}

.service-card h3 {
    color: #333;
    margin-bottom: 10px;
}

.service-card p {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.5;
}

.services-cta .request-service-btn {
    display: inline-block;
    background-color: #007bff; /* Green button */
    color: #fff;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.services-cta .request-service-btn:hover {
    background-color: #0056b3;
}

/* Responsive Design for Services Section */
@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }

    .service-card {
        padding: 20px;
        width: auto;
        height: auto;
        
    }

    .service-card h3 {
        font-size: 1.2rem;
    }

    .service-card p {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .services-grid {
        grid-template-columns: 1fr; /* Single column on very small screens */
    }

    .service-card {
        padding: 15px;
    }

    .service-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 15px;
    }

    .service-icon img {
        max-width: 30px;
        max-height: 30px;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .section-description {
        font-size: 0.9rem;
        padding: 0 15px;
    }
}

/* Existing Responsive Design for other sections remains */
@media (max-width: 768px) {
    /* ... existing responsive rules ... */
}

@media (max-width: 480px) {
    /* ... existing responsive rules ... */
}

/* About Section */
.about-section {
    padding: 80px 0;
    background-color: #fff;
}

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

.about-text {
    flex: 1;
    padding-right: 40px;
    text-align: left;
}

.about-text h2 {
    font-size: 2rem;
    color: #007bff;
    margin-bottom: 20px;
}

.about-text p {
    color: #555;
    line-height: 1.7;
    margin-bottom: 15px;
}

.about-text .get-in-touch-btn {
    display: inline-block;
    background-color: #007bff;
    margin-top: 30px;
    color: #fff;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.about-text .get-in-touch-btn:hover {
    background-color: #0056b3;
}

.about-image {
    flex: 1;
    text-align: right;
}

.about-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px; /* Optional: for rounded corners */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05); /* Optional: subtle shadow */
}

/* Responsive Design for About Section */
@media (max-width: 768px) {
    .about-container {
        flex-direction: column;
        text-align: center;
    }

    .about-text {
        padding-right: 0;
        margin-bottom: 30px;
    }

    .about-image {
        text-align: center;
    }

    .about-image img {
        max-width: 80%;
    }
}

@media (max-width: 480px) {
    .about-text h2 {
        font-size: 1.75rem;
    }

    .about-text p {
        font-size: 0.95rem;
    }

    .about-text .get-in-touch-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .about-image img {
        max-width: 95%;
    }
}

/* Existing Responsive Design for other sections remains */
@media (max-width: 768px) {
    /* ... existing responsive rules ... */
}

@media (max-width: 480px) {
    /* ... existing responsive rules ... */
}

/* Contact Section */
.contact-section {
    /* padding: 80px 0; */
    background-color: #f9f9f9;
    text-align: center;
}

.contact-container {
    max-width: 1200px; /* Adjust as needed */
    margin: 0 auto;
    padding: 20px;
}

.contact-wrapper {
    display: flex;
    gap: 100px;
    width: auto;
    margin-top: 30px;
    text-align: left;
}

.contact-info {
    flex: 1;
}

.contact-info h3 {
    font-size: 1.75rem;
    color: #333;
    margin-bottom: 15px;
}

.contact-info p {
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
}
.office-hours{
    padding: auto;
    padding-top: 20px;
    height: auto;
    padding-bottom: 10px;
    border-radius: 8px;
    background-color: #F8F9FD;
}

.office-hours h4 {
    font-size: 1.1rem;
    color: #007bff;
    margin-bottom: 10px;
}

.office-hours p {
    color: #555;
    margin-bottom: 5px;
    display: flex;
    justify-content: space-between;
}

.office-hours p span {
    
    color: #555;
}
.direct-contact p{
    padding-top: 30px;
}
.direct-contact a {
    color: #007bff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.direct-contact a:hover {
    color: #0056b3;
    text-decoration: underline;
}

.form-container {
    max-width: 500px;
    background: #F8F9FD;
    background: linear-gradient(0deg, rgb(255, 255, 255) 0%, rgb(244, 247, 251) 100%);
    border-radius: 40px;
    padding: 25px 35px;
    border: 5px solid rgb(255, 255, 255);
    box-shadow: rgba(133, 189, 215, 0.8784313725) 0px 30px 30px -20px;
    margin: 20px;
  }
  
  .heading {
    text-align: center;
    font-weight: 900;
    font-size: 30px;
    color: rgb(16, 137, 211);
  }
  
  .form {
    margin-top: 20px;
  }
  
  .form .input {
    width: 100%;
    background: white;
    border: none;
    padding: 15px 20px;
    border-radius: 20px;
    margin-top: 15px;
    box-shadow: #cff0ff 0px 10px 10px -5px;
    border-inline: 2px solid transparent;
  }
  
  .form .input::-moz-placeholder {
    color: rgb(170, 170, 170);
  }
  
  .form .input::placeholder {
    color: rgb(170, 170, 170);
  }
  
  .form .input:focus {
    outline: none;
    border-inline: 2px solid #12B1D1;
  }
  
  .form .forgot-password {
    display: block;
    margin-top: 10px;
    margin-left: 10px;
  }
  
  .form .forgot-password a {
    font-size: 11px;
    color: #0099ff;
    text-decoration: none;
  }
  
  .form .login-button {
    display: block;
    width: 100%;
    font-weight: bold;
    background: linear-gradient(45deg, #0099ff 0%, #0099ff 100%);
    color: white;
    padding-block: 15px;
    margin: 20px auto;
    border-radius: 20px;
    box-shadow: rgba(133, 189, 215, 0.8784313725) 0px 20px 10px -15px;
    border: none;
    transition: all 0.2s ease-in-out;
  }
  
  .form .login-button:hover {
    transform: scale(1.03);
    box-shadow: rgba(133, 189, 215, 0.8784313725) 0px 23px 10px -20px;
  }
  
  .form .login-button:active {
    transform: scale(0.95);
    box-shadow: rgba(133, 189, 215, 0.8784313725) 0px 15px 10px -10px;
  }
  
  .social-account-container {
    margin-top: 25px;
  }
  
  .social-account-container .title {
    display: block;
    text-align: center;
    font-size: 10px;
    color: rgb(170, 170, 170);
  }
  
  .social-account-container .social-accounts {
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 5px;
  }
  
  .social-account-container .social-accounts .social-button {
    background: linear-gradient(45deg, rgb(0, 0, 0) 0%, rgb(112, 112, 112) 100%);
    border: 5px solid white;
    padding: 5px;
    border-radius: 50%;
    width: 40px;
    aspect-ratio: 1;
    display: grid;
    place-content: center;
    box-shadow: rgba(133, 189, 215, 0.8784313725) 0px 12px 10px -8px;
    transition: all 0.2s ease-in-out;
  }
  
  .social-account-container .social-accounts .social-button .svg {
    fill: white;
    margin: auto;
  }
  
  .social-account-container .social-accounts .social-button:hover {
    transform: scale(1.2);
  }
  
  .social-account-container .social-accounts .social-button:active {
    transform: scale(0.9);
  }
  
  .agreement {
    display: block;
    text-align: center;
    margin-top: 15px;
  }
  
  .agreement a {
    text-decoration: none;
    color: #0099ff;
    font-size: 9px;
  }
/* Responsive Design for Contact Section */
@media (max-width: 768px) {
    .contact-wrapper {
        flex-direction: column;
        gap: 30px;
    }

    .contact-info,
    .contact-form {
        text-align: center;
    }

    .contact-form h3 {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .contact-container {
        padding: 15px;
    }

    .contact-info h3,
    .contact-form h3 {
        font-size: 1.5rem;
    }

    .form-group label {
        font-size: 0.95rem;
    }

    .form-group input[type="text"],
    .form-group input[type="email"],
    .form-group textarea,
    .submit-btn {
        font-size: 0.9rem;
        padding: 10px;
    }
}

/* Existing CSS */
/* ... */

/* Footer Section */
.site-footer {
    background-color: #407BFF ; /* Dark background */
    color: white;
    padding: 60px 0;
    font-size: 0.9rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.footer-logo img {
    height: 50px;
    margin-bottom: 5px;
}

.footer-logo p {
    line-height: 1.7;
    margin-bottom: 8px;
}

.social-links a {
    display: inline-block;
    margin-right: 10px;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.social-links a:hover {
    opacity: 1;
}

/* .social-links img {
    height: 24px;
    width: 24px;
    vertical-align: middle;
} */

.footer-services h3,
.footer-links h3,
.footer-contact h3 {
    color: #fff;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.footer-services ul,
.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-services li,
.footer-links li {
    margin-bottom: 10px;
}

.footer-services a,
.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-services a:hover,
.footer-links a:hover {
    color: #fff;
}

.footer-contact p {
    line-height: 1.7;
    margin-bottom: 10px;
    color: #ccc;
}

.footer-contact a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: #fff;
    text-decoration: none;
}

.footer-contact i {
    margin-right: 8px;
    color: #007bff;
}


/* Responsive Design for Footer */
@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        text-align: center;
    }

    .footer-logo {
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .footer-container {
        grid-template-columns: 1fr; /* Single column on very small screens */
        text-align: center;
    }

    .footer-logo {
        text-align: center;
    }

    .footer-logo p {
        font-size: 0.85rem;
    }

    .footer-services,
    .footer-links,
    .footer-contact {
        margin-top: 30px;
    }
}