    body {
            font-family: Arial, sans-serif;
            margin: 0;
            padding: 0;
            background-color: #f9f9f9; /* Light background for the page */
            color: #333; /* Dark text for better readability */
        }
        /* Remove arrows from number input (for Chrome, Safari, Edge, Opera) */
input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Full height wrapper for centering */
.login_wrapper {
    text-align: center;
    padding: 20px;
    min-height: 100vh; /* Full viewport height */
    background: #f4f4f4; /* Optional background color */
}

.login-container {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 10px;
    padding: 40px;
    width: 400px;
    margin: 0 auto;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    text-align: center;
    /* Ensure the container scales well on mobile */
    max-width: 100%;
    box-sizing: border-box;
}

.login-container h1 {
    font-size: 24px;
    color: #2c3e50;
    margin-bottom: 10px;
}

.login-container p {
    font-size: 14px;
    color: #7f8c8d;
    margin-bottom: 30px;
}

.input-field {
    width: 100%;
    padding: 12px;
    margin: 10px 0;
    border-radius: 5px;
    border: 1px solid #ccc;
    font-size: 14px;
    color: #333;
}

.input-field:focus {
    outline: none;
    border-color: #FF7F32; /* Theme color */
}

.login-button {
    width: 100%;
    padding: 14px;
    background-color: #FF7F32; /* Theme color */
    color: #fff;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    border: none;
    transition: background-color 0.3s ease;
}

.login-button:hover {
    background-color: #e67e22; /* Darker shade of theme color */
}

.forgot-password {
    font-size: 12px;
    margin-top: 10px;
}

.forgot-password a {
    color: #FF7F32; /* Theme color */
    text-decoration: none;
}

.forgot-password a:hover {
    text-decoration: underline;
}

.footer-text {
    font-size: 12px;
    color: #7f8c8d;
    margin-top: 20px;
}

.footer-text a {
    color: #FF7F32; /* Theme color */
    text-decoration: none;
}

.footer-text a:hover {
    text-decoration: underline;
}

/* Mobile responsiveness */
@media (max-width: 680px) {
    .login-container {
        width: 90%; /* Take up more width on smaller screens */
        padding: 20px; /* Adjust padding for mobile */
    }

    .login-container h1 {
        font-size: 20px; /* Slightly smaller heading on mobile */
    }

    .input-field {
        font-size: 16px; /* Larger text for inputs on mobile */
        padding: 14px; /* Bigger padding for easier interaction */
    }

    .login-button {
        font-size: 18px; /* Bigger text for button */
        padding: 16px; /* More padding for ease of clicking */
    }

    .footer-text {
        font-size: 14px; /* Slightly bigger text for footer */
    }

    .forgot-password {
        font-size: 14px; /* Bigger font size for mobile links */
    }
}


.php_success{
  padding: 20px;
  text-align: center;
  border-radius: 3px;
  width: 100%;
  color:rgba(33, 87, 19, 0.842);
  background-color: rgba(0, 128, 0, 0.267);
}  



.php_error{
  padding: 20px;
  width: 100%;
  padding-top: 3px;
  border-radius: 3px;
  padding-bottom: 3px;
  text-align: center;
  color:rgba(87, 19, 19, 0.842);
  background-color: rgba(128, 0, 0, 0.267);
}

.php_warning{
  padding-left: 20px;
  padding-right: 20px;
  width: 100%;
  padding-top: 3px;
  padding-bottom: 3px;
  text-align: center;
  color:dark-yellow;
  background-color: #EBE03C;
}




/* Loading Overlay */
#loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh; /* Full viewport height */
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center; /* Center vertically */
    justify-content: center; /* Center horizontally */
    color: white;
    font-size: 1.5rem;
    z-index: 9999;
    display: none; /* Initially hidden */
}

/* Centering Content */
.loading-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh; /* Ensures full viewport height */
}

/* Spinner Animation */
.loading-spinner {
    width: 50px;
    height: 50px;
    border: 5px solid rgba(255, 255, 255, 0.3);
    border-top: 5px solid #FF7F32;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 15px; /* Adds spacing between spinner and text */
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}


/* Spinner Animation */
.loading-spinner {
    width: 50px;
    height: 50px;
    border: 5px solid rgba(255, 255, 255, 0.3);
    border-top: 5px solid #FF7F32;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 15px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}


/* Remove arrows from number input (for Firefox) */
input[type="number"] {
    -moz-appearance: textfield;
}
/* Contact Hero Section */
.contact-hero {
    background: url('images/contact-hero.jpg') center/cover no-repeat;
    height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
}

.contact-hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
}

.contact-hero h1 {
    font-size: 3rem;
    color: #FF7F32;
}

.contact-hero p {
    font-size: 1.2rem;
    margin-top: 10px;
}

/* Contact Container */
.contact-container {
    padding: 80px 5%;
    background-color: #f9f9f9;
}

.contact-content {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-text {
    flex: 1;
}

.contact-text h2 {
    color: #FF7F32;
    font-size: 2rem;
}

.contact-info {
    margin-top: 20px;
}

.contact-info p {
    font-size: 1.1rem;
    color: #333;
}

.contact-info a {
    text-decoration: none;
    color: #FF7F32;
    font-weight: bold;
}

.contact-info a:hover {
    text-decoration: underline;
}

/* Contact Form */
.contact-form-container {
    flex: 1;
    max-width: 500px;
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: left;
}

.contact-form {
    width: 100%;
}

.form-group {
    margin-bottom: 15px;
}

label {
    display: block;
    font-weight: bold;
    color: #333;
}

input, textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1rem;
}

textarea {
    height: 120px;
    resize: none;
}

/* Contact Button */
.contact-button {
    background: #FF7F32;
    color: white;
    padding: 12px 20px;
    border: none;
    cursor: pointer;
    font-size: 1.2rem;
    width: 100%;
    border-radius: 5px;
    transition: background 0.3s ease;
}

.contact-button:hover {
    background: #000;
    color: white;
}

/* FAQ Section */
.faq-section {
    padding: 60px 5%;
    background-color: #fff;
    text-align: center;
}

.faq-section h2 {
    font-size: 2.5rem;
    color: #FF7F32;
    margin-bottom: 30px;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-bottom: 15px;
}

.faq-item h3 {
    font-size: 1.4rem;
    color: #FF7F32;
}

.faq-item p {
    font-size: 1rem;
    color: #333;
}

/* Responsive Adjustments */
@media screen and (max-width: 768px) {
    .contact-content {
        flex-direction: column;
        text-align: center;
    }

    .contact-text {
        text-align: center;
    }

    .contact-form-container {
        max-width: 100%;
    }

    .faq-container {
        text-align: left;
    }
}


/* General Styling */
.about-container {
    font-family: 'Poppins', sans-serif;
    color: #333;
    background-color: #f9f9f9;
    padding: 80px 5%;
}
.about-card ul{
  text-align: left;
}

.about-card i{
  font-size: 2rem;
    color: #FF7F32;
    margin-bottom: 10px;
}
/* Mini Hero Section */
.about-hero {
    background: url('../images/about-hero.jpg') center/cover no-repeat;
    height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
}

.abput_hero_p{
  color: white;
}
.about-hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.about-hero-content {
    position: relative;
    z-index: 2;
}

.about-hero h1 {
    font-size: 3rem;
    margin-bottom: 10px;
}

.about-hero span {
    color: #FF7F32;
}

/* About Content Section */
.about-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}


.about-text {
    flex: 1;
    min-width: 300px;
}

.about-text h2 {
    font-size: 2rem;
    color: #FF7F32;
    margin-bottom: 15px;
}

.about-text p {
    font-size: 1.2rem;
    line-height: 1.7;
}

.about-image img {
    width: 100%;
    max-width: 500px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}




/* Mission, Vision, and Values */
.about-values {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    max-width: 1000px;
    margin: 50px auto;
}

.about-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    flex: 1;
    min-width: 300px;
    max-width: 500px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Why Choose Us - Section Styling */
.why-choose-us {
    text-align: center;
    padding: 60px 5%;
    background-color: #f9f9f9;
}

.why-choose-us h2 {
    font-size: 2.5rem;
    color: #FF7F32;
    margin-bottom: 30px;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

/* Individual Box */
.why-box {
    background: white;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.why-box:hover {
    transform: translateY(-5px);
}

/* Image Styling */
.why-box img {
    width: 100%; /* Adjusted for smaller size */
    object-fit: cover;
    margin-bottom: 15px;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
}

/* Headings */
.why-box h3 {
    font-size: 1.4rem;
    color: #FF7F32;
    margin-bottom: 10px;
}

/* Paragraph */
.why-box p {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
}

/* Responsive Adjustments */
@media screen and (max-width: 768px) {
    .why-grid {
        grid-template-columns: repeat(1, 1fr);
    }

    .why-box {
        padding: 25px;
    }

    .why-box img {
        width: 100%;
    }
}


/* CTA Section */
.about-cta {
    text-align: center;
    padding: 50px 20px;
    background: #dddd;
    color: #fff;
    border-radius: 10px;
    margin-top: 60px;
    margin-bottom: 40px;
}

.about-cta h2 {
    font-size: 2.2rem;
    margin-bottom: 15px;
}

.cta-button {
    display: inline-block;
    padding: 14px 30px;
    background: #fff;
    color: #FF7F32;
    font-size: 1.2rem;
    font-weight: bold;
    border-radius: 5px;
    text-decoration: none;
    transition: background 0.3s ease;
}

.cta-button:hover {
    background: #000;
    color: #fff;
}

    .cta_section {
    background-image: url('../images/max-deductions.jpeg');
    height: 100vh;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
}

.cta_section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6); /* Darker overlay for readability */
    z-index: 1;
}

.cta_section .container {
    position: relative;
    z-index: 2;
    background-color: rgba(255, 255, 255, 0.95); /* More visible container */
    padding: 50px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    max-width: 900px; /* Wider container */
    width: 90%;
}

.cta-title {
    font-size: 2.8rem;
    font-weight: bold;
    margin-bottom: 20px;
    color: #333;
}

.cta-description {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: #444;
    line-height: 1.6;
}

.cta_section .cta-button {
    display: inline-block;
    padding: 14px 35px;
    background-color: #FF7F32;
    color: white;
    font-size: 1.1rem;
    font-weight: bold;
    border-radius: 6px;
    text-decoration: none;
    transition: background-color 0.3s ease;
    box-shadow: 0 3px 5px rgba(0, 0, 0, 0.2);
}

.cta_section .cta-button:hover {
    background-color: #E66D28;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
}

     
/* Sticky Navigation Bar */
nav {
    position: sticky;
    top: 0;
    background-color: rgb(255,127,50);
    padding: 15px 0;
    z-index: 1000 !important;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
}

nav .logo {
    color: white;
    font-size: 1.8rem;
    font-weight: bold;
    text-decoration: none;
}

nav .logo img {
    max-width: 150px; /* Limits width but keeps original aspect ratio */
    height: 40px
}

nav .nav-links {
    display: flex;
}

nav .nav-links a {
    color: white;
    text-decoration: none;
    padding: 12px 20px;
    margin: 0 10px;
    font-size: 18px;
    transition: background-color 0.3s ease;
}

nav .nav-links a:hover {
    background-color: #cc6223;
}

/* Hamburger Menu Icon */
.menu-toggle {
    display: none;
    font-size: 1.8rem;
    color: white;
    cursor: pointer;
}

/* Mobile Navigation Sidebar */
.mobile-nav {
    height: 100%;
    width: 0;
    position: fixed;
    top: 0;
    left: 0;
    background-color: #ff7f32;
    overflow-x: hidden;
    transition: 0.5s;
    z-index: 1000;
    padding-top: 60px;
}

.mobile-nav a {
    padding: 12px 30px;
    text-decoration: none;
    font-size: 1.5rem;
    color: white;
    display: block;
    transition: 0.3s;
}

.mobile-nav a:hover {
    background-color: #cc6223;
}

.mobile-nav .close-btn {
    position: absolute;
    top: 15px;
    right: 25px;
    font-size: 2rem;
    color: white;
    cursor: pointer;
}

/* Responsive Styling */
@media screen and (max-width: 768px) {
    nav .nav-links {
        display: none;
    }

    .menu-toggle {
        display: block;
    }





.about-image img {
    width: 100%;
    max-width: 100%;
}

/* About Content Section */
.about-content {
    width: 100%;
    max-width: 100%;
}
}





        /* Hero Section Styles */
        .hero {
            position: relative;
            background-image: url('../images/hero.jpg') !important; /* Replace with actual image */
            background-size: cover;
            background-position: center;
            height: 100vh;
            color: white;
            text-align: center;
            display: flex;
            justify-content: center;
            align-items: center;
            flex-direction: column;
            padding: 0 20px;
        }

        .hero_container{
            background-color: rgba(3, 3, 3, 0.5);
            padding: 30px;
        }

        .hero h1 {
            font-size: 3.5rem;
            margin: 0;
            color: #fff; /* White text */
        }
        .hero p {
            font-size: 1.5rem;
            margin: 10px 0;
            color: #ffffffb3; /* Slightly transparent white */
        }
        .hero .cta-button {
            background-color: #FF7F32; /* Warm orange for CTA button */
            color: white;
            padding: 15px 30px;
            text-decoration: none;
            border-radius: 5px;
            font-size: 1.2rem;
            margin-top: 20px;
            transition: background-color 0.3s ease;
        }
        .hero .cta-button:hover {
            background-color: #E66D28; /* Darker orange for hover */
        }

    

        main h2 {
            font-size: 2.5rem;
            color: #333;
        }

        main p {
            font-size: 1.2rem;
            color: #555;
            line-height: 1.6;
        }


          /* Main section styling */
  .tax-benefits {
    background-color: #f8f9fa;
    padding: 60px 20px;
    color: #333;
    font-family: 'Arial', sans-serif;
  }

  .container {
    max-width: 900px;
    margin: 0 auto;
  }

  .section-title {
    font-size: 34px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
    text-align: center;
  }

  .section-subtitle {
    font-size: 26px;
    font-weight: 600;
    color: #2c3e50;
    margin-top: 40px;
  }

  .section-description {
    font-size: 18px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 25px;
    text-align: center;
  }

  /* Benefit boxes */
  .benefits-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
  }

  .benefit-box {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
  }

.benefit-icon {
    font-size: 50px; /* Adjust the size of the icon */
    display: block; /* Ensures proper spacing */
    margin-bottom: 15px;
    text-align: center;
}


  .benefit-title {
    font-size: 18px;
    font-weight: 600;
    color: #007bff;
    margin-bottom: 10px;
  }

  .benefit-box p {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
  }

  /* Service boxes */
  .services-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
  }

  .service-box {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
  }

  .service-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 15px;
  }

  .service-title {
    font-size: 20px;
    font-weight: 600;
    color: #007bff;
    margin-bottom: 10px;
  }

  .service-box p {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
  }

  /* CTA button styling */
  .cta-button-renamed {
    display: inline-block;
    background-color: #007bff;
    color: white;
    padding: 15px 30px;
    text-align: center;
    text-decoration: none;
    border-radius: 30px;
    font-size: 18px;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.3s ease;
    margin: 0 auto;
    display: block;
    max-width: 220px;
    margin-top: 30px;
  }

  .cta-button-renamed:hover {
    background-color: #0056b3;
    transform: translateY(-3px);
  }

  /* Responsive design */
  @media (max-width: 768px) {
    .section-title {
      font-size: 28px;
    }

    .section-description {
      font-size: 16px;
    }

    .cta-button-renamed {
      font-size: 16px;
      padding: 12px 25px;
    }
  }

 

        /* Footer */
        footer {
            background-color:rgb(255,127,50); /* Light blue background */
            color: white;
            padding: 10px 0;
            text-align: center;
            position: relative;
            width: 100%;
        }