/* Reset */
body, h1, h2, h3, p, ul {
    margin: 0;
    padding: 0;
}

body {
    font-family: Arial, sans-serif;
}

/* Prevent horizontal scrolling */
html, body {
    overflow-x: hidden;
    width: 100%;
}

/* Top Navbar Styling */
.top-bar {
    background-color: #3E4A66;
    color: white;
    display: flex;
    justify-content: space-between;
    padding: 10px 50px;
    font-size: 14px;
    align-items: center;
}

/* Social Icons in Navbar */
.top-social-icons {
    display: flex;
    gap: 12px; /* Adjust spacing between icons */
}

.top-social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    transition: 0.3s ease-in-out;
}

/* Adjust Icon Size */
.top-social-icons img {
    width: 18px;
    height: 18px;
}

/* Hover Effect */
.top-social-icons a:hover {
    background-color: #00A1A1;
}

.top-bar .contact-info {
    display: flex;
    gap: 15px;
}

.top-bar i {
    margin-right: 5px;
    color: #00d1d1;
}

.social-icons a {
    color: white;
    margin-left: 10px;
    text-decoration: none;
    font-size: 16px;
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 50px;
    background-color: white;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.nav-buttons {
    display: flex;
    gap: 5px; /* Reduce space between buttons */
    align-items: center;
}

/* Make Tax Payment and Login Buttons */
.payment-btn,
.login-btn {
    background-color: #00A1A1;
    color: white;
    padding: 12px 20px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: bold;
    text-decoration: none;
    border: none;
    transition: background 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
}

.payment-btn:hover,
.login-btn:hover {
    background-color: #008080;
}

/* Adjust text and icon spacing */
.payment-btn::after,
.login-btn::after {

    font-weight: normal;
    font-size: 14px;
    margin-left: 5px;
}

.logo img {
    height: 40px;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 25px;
}

.nav-links li {
    position: relative;
}

.nav-links a {
    text-decoration: none;
    color: black;
    font-weight: bold;
}

.nav-links a.active {
    color: #00d1d1;
}

.nav-links a:hover {
    color: #00a1a1;
}

/* Dropdown */
.dropdown-menu {
    display: none;
    position: absolute;
    background: white;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    list-style: none;
    padding: 10px;
    top: 30px;
    left: 0;
}

.dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-menu li {
    padding: 8px 12px;
}

.dropdown-menu li a {
    color: black;
    display: block;
}

.dropdown-menu li a:hover {
    color: #00a1a1;
}

/* Button */
.btn {
    background-color: #00d1d1;
    color: white;
    padding: 10px 15px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
}

.btn:hover {
    background-color: #00a1a1;
}

/* Hero Section */
#hero {
    position: relative;
    background: url("images/home.png") no-repeat center center/cover;
    height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 20px;
}

/* Dark overlay for readability */
#hero .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

/* Hero Content */
.hero-content {
    position: relative;
    max-width: 800px;
    z-index: 2;
}

.hero-content h1 {
    font-size: 2.8em;
    font-weight: bold;
    line-height: 1.3;
    margin-bottom: 15px;
}

.hero-content p {
    font-size: 1.2em;
    line-height: 1.5;
    margin-bottom: 20px;
}

/* Call-to-Action Button */
.hero-content .btn {
    display: inline-flex;
    align-items: center;
    background-color: #00d1d1;
    color: white;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 1.1em;
    font-weight: bold;
}

.hero-content .btn i {
    margin-right: 10px;
    font-size: 1.2em;
}

.hero-content .btn:hover {
    background-color: #00a1a1;
}

/* Footer */
footer {
    background: #f1f1f1;
    padding: 10px;
    text-align: center;
}
/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 50px;
    background-color: white;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* Logo and Text */
.logo-container {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo {
    height: 50px; /* Adjust for bigger size */
}

.logo-text {
    font-size: 1.8em; /* Increase text size */
    font-weight: bold;
    color: #1a1a1a; /* Adjust color if needed */
    font-family: Arial, sans-serif;
}
/* About Us Section */
#about {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 80px 20px;
    background: white;
}

.about-container {
    display: flex;
    max-width: 1168px;
    width: 100%;
    background: white;
    border: 2px solid #ddd;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    gap: 50px;
}
/* About Us Section */
#about {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 80px 20px;
    background: white;
}

.about-container {
    display: flex;
    max-width: 1168px;
    width: 100%;
    background: white;
    border: 2px solid #ddd;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    gap: 50px;
}

/* About Us Images */
.about-images {
    position: relative;
    width: 45%;
}

.about-images .main-image {
    width: 100%;
    border-radius: 20px;
}

/* Secondary Image (Man in Suit) */
.about-images .secondary-image {
    position: absolute;
    right: -40px; /* Adjust to align properly */
    bottom: -30px; /* Prevent overflow */
    width: 40%;
    border-radius: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    z-index: 2; /* Ensure it stays above the section */
    max-height: 100%; /* Prevents overflow */
}


/* Badge Positioning */
.about-images .experience-badge {
    position: absolute;
    bottom: 30px;
    left: -20px;
    width: 50%;
    max-width: 190px;
}

/* About Us Content */
.about-content {
    width: 55%;
}

.section-title {
    color: #00d1d1;
    font-size: 1.2em;
    font-weight: bold;
    margin-bottom: 10px;
    position: relative;
}

/* Underline for "ABOUT US" */
.section-title .underline {
    display: block;
    width: 50px;
    height: 3px;
    background: #00d1d1;
    margin-top: 5px;
}

/* Title Styling */
.about-content h2 {
    font-size: 2.3em;
    font-weight: 700;
    margin-bottom: 15px;
}

.about-content p {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: #555;
}

/* About Us List */
.about-list {
    list-style: none;
    padding: 0;
}

.about-list li {
    display: flex;
    align-items: center;
    gap: 12px; /* Adjust spacing between check icon and text */
    font-size: 1.1em;
    margin: 12px 0;
    font-weight: 500;
}

/* Check Icon */
.about-list img {
    width: 24px; /* Match the 24x24 size from your reference */
    height: 24px;
}

.about-list i {
    color: #00d1d1;
    font-size: 1.4em;
}

/* Call-to-Action Button */
.about-content .btn {
    display: inline-flex;
    align-items: center;
    background-color: #00d1d1;
    color: white;
    padding: 14px 22px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 1.1em;
    font-weight: bold;
    margin-top: 20px;
    transition: background 0.3s;
}

.about-content .btn i {
    margin-left: 10px;
}

.about-content .btn:hover {
    background-color: #00a1a1;
}

/* Services Section */
#services {
    padding: 80px 20px;
    text-align: center;
    background: white;
}

.services-container {
    max-width: 1168px;
    margin: 0 auto;
}
/* Services Section Header */
.services-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

/* "OUR SERVICES" Styling */
.section-title {
    display: flex;
    align-items: center;
    font-size: 1em; /* Reduce size for accuracy */
    font-weight: 500; /* Make it thinner */
    color: #00A1A1;
    letter-spacing: 1px; /* Increase spacing */
}

/* Underline Styling */
.section-title .underline {
    display: block;
    width: 50px; /* Adjust to match reference */
    height: 2px; /* Make thinner */
    background: #00A1A1;
    margin-left: 10px;
}

/* Main Heading ("Our financial aid & bookkeeping services") */
.services-header h2 {
    font-size: 1.8em;
    font-weight: 400; /* Remove bold effect */
    color: #333; /* Lighter text */
    margin-top: 10px;
}

/* View All Services Button */
.view-all {
    background-color: #00A1A1;
    color: white;
    padding: 12px 18px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 1.1em;
    font-weight: bold;
    transition: background 0.3s;
}

.view-all:hover {
    background-color: #008080;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

/* Service Cards */
.service-card {
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
}

.service-card:hover {
    transform: translateY(-5px);
}

/* Service Card Background Colors */
.light-green { background: #E8F5E9; }
.light-pink { background: #FCE4EC; }
.light-blue { background: #E3F2FD; }

/* Service Icons */
.service-icon {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

.service-icon .elipse {
    width: 60px;
    height: 60px;
    position: absolute;
}

.service-icon .icon {
    width: 30px;
    height: 30px;
    position: relative;
}

/* Service Card Titles */
.service-card h3 {
    font-size: 1.2em;
    margin-bottom: 10px;
}

/* "Learn More" Links */
.service-card a {
    text-decoration: none;
    font-size: 1.1em;
    color: #00A1A1;
    font-weight: bold;
}

.service-card a:hover {
    text-decoration: underline;
}

/* How We Work Section */
#how-we-work {
    padding: 80px 20px;
    background: white;
    text-align: center;
}

/* Main Work Container */
.work-container {
    display: flex;
    max-width: 1168px;
    margin: 0 auto;
    align-items: center;
    gap: 50px;
}

/* Left Content */
.work-content {
    width: 50%;
    text-align: left;
}

.work-content h2 {
    font-size: 2em;
    font-weight: 600;
    margin-bottom: 20px;
}

/* Button */
.work-content .btn {
    display: inline-block;
    background-color: #00A1A1;
    color: white;
    padding: 12px 18px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 1.1em;
    font-weight: bold;
    transition: background 0.3s;
}

.work-content .btn:hover {
    background-color: #008080;
}

/* Right Image */
.work-image {
    width: 50%;
}

.work-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Steps Section */
.work-steps {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 50px;
}

/* Step Boxes */
.step {
    text-align: center;
    width: 30%;
}

/* Step Number */
.step-number {
    background: #E8F5E9;
    color: #00A1A1;
    font-size: 1.4em;
    font-weight: bold;
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 50%;
    margin: 0 auto 10px;
}

/* Step Title */
.step h3 {
    font-size: 1.2em;
    margin-bottom: 5px;
}

/* Step Description */
.step p {
    font-size: 1em;
    color: #555;
}

/* Why Choose Us Section */
#why-choose-us {
    width: 100%;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Make sure the image covers the full width */
.why-container img {
    width: 100%;
    max-width: 1440px; /* Ensures it doesn’t stretch on larger screens */
    height: auto;
    display: block;
}

/* Let's Get Started Section */
#get-started {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 60px 20px;
    background: #F3F7F5; /* Light background for contrast */
}

/* Form Container */
.form-container {
    width: 500px; /* Adjust size */
    background: #F1F7F4;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    text-align: left;
}

/* Section Title */
.section-title {
    font-size: 1.6em;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
}

/* Form Inputs */
form input,
form select {
    width: 100%;
    padding: 12px;
    margin: 8px 0;
    border-radius: 6px;
    border: 1px solid #ccc;
    font-size: 1em;
}

/* Revenue Range */
input[type="range"] {
    width: 100%;
    margin-top: 5px;
}

#revenueValue {
    display: block;
    margin-top: 5px;
    font-weight: bold;
}

/* Submit Button */
.btn-now {
    display: block;
    width: 100%;
    background-color: #00A1A1;
    color: white;
    padding: 12px 18px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 1.1em;
    font-weight: bold;
    text-align: center;
    transition: background 0.3s;
    border: none;
    cursor: pointer;
}

.btn:hover {
    background-color: #008080;
}

/* Client Feedback Section */
#client-feedback {
    width: 100%;
    padding: 80px 20px;
    background: #F8F9FA; /* Light Gray Background */
    text-align: center;
}

/* Feedback Container */
.feedback-container {
    max-width: 800px;
    margin: 0 auto;
}

/* Section Title */
.section-title {
    font-size: 1em;
    font-weight: 500;
    color: #00A1A1;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

/* Underline */
.section-title .underline {
    display: inline-block;
    width: 50px;
    height: 2px;
    background: #00A1A1;
    margin-left: 10px;
}

/* Heading */
.feedback-container h2 {
    font-size: 2.2em;
    font-weight: bold;
    margin-bottom: 20px;
}

/* Testimonial Text */
blockquote {
    font-size: 1.4em;
    font-weight: 400;
    color: #333;
    margin-bottom: 20px;
    line-height: 1.6;
}

/* Client Name & Role */
.client-name {
    font-size: 1.2em;
    font-weight: bold;
    margin-bottom: 5px;
}

.client-role {
    font-size: 1em;
    color: #777;
}

/* Navigation Buttons */
.nav-buttons {
    display: flex;
    justify-content: center;
    margin-top: 30px;
    gap: 20px;
}

/* Button Styling */
.nav-buttons button {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid #333;
    background: white;
    font-size: 1.6em;
    cursor: pointer;
    transition: background 0.3s;
}

.nav-buttons .next {
    background: #00A1A1;
    color: white;
    border: none;
}

.nav-buttons button:hover {
    background: #ddd;
}

/* Footer Styling */
#footer {
    background-color: #1a3455;
    color: white;
    padding: 40px 0;
    font-family: Arial, sans-serif;
    width: 100%; /* Ensure it spans full width */
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Footer Main Container */
.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: auto;
    padding: 20px;
    width: 100%;
}

/* Left Section: Logo & Contact Info */
.footer-info {
    width: 30%;
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-info img {
    width: 140px; /* Adjust logo size */
    margin-bottom: 10px;
}

.footer-info p {
    font-size: 14px;
    margin-bottom: 15px;
}

/* Social Media Links */
.footer-socials {
    display: flex;
    justify-content: flex-start;
    gap: 15px;
    margin-top: 10px;
}

.footer-socials a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    transition: 0.3s ease-in-out;
}

.footer-socials a img {
    width: 20px;
}

.footer-socials a:hover {
    background-color: #00A1A1;
}

/* Middle Section: Footer Links */
.footer-links {
    display: flex;
    justify-content: space-between;
    width: 40%;
}

.footer-column h4 {
    font-size: 16px;
    margin-bottom: 10px;
}

.footer-column a {
    display: block;
    color: white;
    font-size: 14px;
    text-decoration: none;
    margin-bottom: 5px;
    transition: 0.3s;
}

.footer-column a:hover {
    color: #00A1A1;
}

/* Right Section: Newsletter */
.footer-newsletter {
    width: 30%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.newsletter-wrapper {
    position: relative;
    width: 100%;
    max-width: 280px;
}

.footer-newsletter input {
    width: 100%;
    padding: 12px 20px;
    border-radius: 25px;
    border: none;
    font-size: 14px;
    outline: none;
}

.footer-newsletter button {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    background: #00A1A1;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.3s ease-in-out;
}

.footer-newsletter button img {
    width: 20px;
}

.footer-newsletter button:hover {
    background: #008080;
}

/* Copyright Section */
.footer-bottom {
    text-align: center;
    font-size: 13px;
    margin-top: 20px;
    padding: 15px;
    background-color: #14426e; /* Keep Green Section */
    width: 100%;
}

/* =======================================
   Responsive Design for Tablets & Mobiles
======================================= */

/* Tablets (768px - 1024px) */
@media screen and (max-width: 1024px) {
    .top-bar {
        flex-direction: column;
        text-align: center;
        padding: 10px 20px;
    }

    .navbar {
        padding: 15px 30px;
    }

    .nav-links {
        gap: 15px;
    }

    .about-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .about-content, .about-images {
        width: 90%;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-container {
        flex-direction: column;
        text-align: center;
    }

    .footer-info, .footer-links, .footer-newsletter {
        width: 100%;
    }
}

/* Mobile Devices (Below 768px) */
@media screen and (max-width: 768px) {
    .top-bar {
        flex-direction: column;
        padding: 8px 15px;
    }

    .top-social-icons {
        margin-top: 10px;
    }

    .navbar {
        flex-direction: column;
        align-items: center;
        padding: 10px 20px;
    }

    .nav-links {
        flex-direction: column;
        width: 100%;
        text-align: center;
    }

    .nav-links li {
        padding: 8px 0;
    }

    .nav-buttons {
        flex-direction: column;
        gap: 10px;
    }

    .hero-content {
        width: 90%;
    }

    .services-grid {
        grid-template-columns: repeat(1, 1fr);
    }

    .work-container {
        flex-direction: column;
        text-align: center;
    }

    .work-content, .work-image {
        width: 90%;
    }

    .footer-container {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .footer-socials {
        justify-content: center;
    }
}

/* Small Phones (Below 480px) */
@media screen and (max-width: 480px) {
    .top-bar {
        padding: 5px 10px;
    }

    .top-social-icons a {
        width: 30px;
        height: 30px;
    }

    .navbar {
        padding: 10px 15px;
    }

    .nav-links {
        gap: 10px;
    }

    .hero-content h1 {
        font-size: 2em;
    }

    .hero-content p {
        font-size: 1em;
    }

    .btn {
        padding: 10px 15px;
        font-size: 0.9em;
    }

    .footer-info img {
        width: 100px;
    }

    .footer-newsletter input {
        padding: 10px;
    }
}
