body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: black;
}

/* Header Styling */
header {
    background-color: white;
    padding: 1rem 0; /* Increased from 0 to add vertical padding */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    position: sticky;
    top: 0;
    z-index: 1000;
    min-height: 80px; /* Added to ensure a taller header */
}

.header-container {
    display: flex;
    align-items: center;
    max-width: none;
    margin: 0;
    padding: 0 2rem; /* Balanced padding on both sides */
}

.logo {
    display: flex;
    align-items: center;
    gap: 1.5rem; /* Increased from 1rem for better spacing */
    padding-left: 0;
    margin-left: 0;
}

.logo img {
    width:100px; /* Increased from 50px */
    height: 90px; /* Increased from 50px */
    object-fit: cover;
    margin-left: 0;
}		

.logo-text {
    color: #ecf0f1;
    font-size: 2rem; /* Increased from 1.5rem */
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
}

nav {
    margin-left: 2rem;
}

nav ul {
    list-style: none;
    padding: 0;
    display: flex;
    gap: 0.5rem; /* Increased from 2rem */
    margin: 0;
}

nav ul li a {
    color: black;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.3rem; /* Increased from 1.1rem */
    padding: 0.75rem 1.25rem; /* Increased from 0.5rem 1rem */
    border-radius: 5px;
    transition: background-color 0.3s, color 0.3s;
}

nav ul li a:hover {
    color: green;
    background-color: white;
}

main {
    padding: 2rem;
    text-align: center;
}

.page {
    display: none;
}

.page.active {
    display: block;
}

h1 {
    color: #2c3e50;
    margin-bottom: 1rem;
}

h2 {
    color: #34495e;
    margin: 2rem 0 1rem;
}

h3 {
    color: #2c3e50;
    margin: 0.5rem 0;
}

p {
    color: #7f8c8d;
    line-height: 1.6;
}

/* Animations */
.animate-fade-in {
    animation: fadeIn 1.5s ease-in-out;
}

.animate-slide-up {
    animation: slideUp 1s ease-out;
}

.animate-scale {
    transition: transform 0.3s ease;
}

.animate-scale:hover {
    transform: scale(1.05);
}

@keyframes fadeIn {
    0% { opacity: 0; }
    100% { opacity: 1; }
}

@keyframes slideUp {
    0% { transform: translateY(20px); opacity: 0; }
    100% { transform: translateY(0); opacity: 1; }
}

/* Hero Section */
.hero {
    position: relative;
    color: white;
    text-align: center;
}

.hero img {
    width: 100%;
    height: 710px;
    object-fit: cover;
    filter: brightness(60%);
}

.hero-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.hero-text h1 {
    font-size: 3rem;
    color: #ecf0f1;
}

.hero-text p {
    font-size: 1.3rem;
    color: #bdc3c7;
}

.hero-text button {
    background-color: white;
    color: black;
    border: none;
    padding: 1rem 2rem;
    font-size: 1.2rem;
    cursor: pointer;
    border-radius: 5px;
    margin-top: 1.5rem;
	text-decoration:none;
}

.hero-text button:hover {
    background-color: green;
	
}

/* Intro Section */
.intro {
    background-color: #ecf0f1;
    padding: 2.5rem;
    border-radius: 15px;
    margin-bottom: 2rem;
}
.intro p {
    color: black; /* Slightly lighter than heading */
    font-size: 1.1rem; /* Optional: Increases readability */
}

.section-img {
    width: 100%;
    max-width: 900px;
    height: 350px;
    object-fit: cover;
    margin-top: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

/* Features Section */
.features {
    background-color:pink;
    padding: 2.5rem;
    border-radius: 15px;
    margin-bottom: 2rem;
}

.feature-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.feature-item {
    background-color: #f9f9f9;
    padding: 15px;
    width: 280px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.feature-item img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: 8px;
}

.feature-item.tax { background-color: #e8f6f3; }
.feature-item.book { background-color: #fef5e7; }
.feature-item.consult { background-color: #f5eef8; }
.feature-item.payroll { background-color: #e8ecef; }

/* Vision Section */
.vision {
    background-color: #d6eaf8;
    padding: 2.5rem;
    border-radius: 15px;
    margin-bottom: 2rem;
}
.vision p {
	color : black;
}

/* Innovation Section */
.innovation {
    background-color: #faded7;
    padding: 2.5rem;
    border-radius: 15px;
    margin-bottom: 2rem;
}
.innovation p {
	color:black;
}

/* Process Section */
.process {
    background-color: #f9e79f;
    padding: 2.5rem;
    border-radius: 15px;
    margin-bottom: 2rem;
}

.process-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.process-item {
    background-color: #ffffff;
    padding: 15px;
    width: 280px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.process-item img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: 8px;
}

/* Startup Benefits Section (New) */
.benefits {
    background-color: #fef5e7;
    padding: 2.5rem;
    border-radius: 15px;
    margin-bottom: 2rem;
}
.benefits p{
	color:black;
}

/* Blog Preview Section */
.blog-preview {
    background-color: #d5f5e3;
    padding: 2.5rem;
    border-radius: 15px;
    margin-bottom: 2rem;
}

.blog-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2.5rem;
    margin-top: 1.5rem;
}

.blog-item {
    background-color: #ffffff;
    padding: 1.5rem;
    width: 280px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.blog-item img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: 8px;
}

/* FAQ Section */
.faq {
    background-color: #f4e1d2;
    padding: 2.5rem;
    border-radius: 15px;
    margin-bottom: 2rem;
}

.faq-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 1.5rem;
}

.faq-item {
    background-color: #ffffff;
    padding: 1.5rem;
    width: 300px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

/* Team Section */
.team {
    background-color: #ffffff;
    padding: 2.5rem;
    border-radius: 15px;
    margin-bottom: 2rem;
}

.team-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2.5rem;
    margin-top: 1.5rem;
}

.team-item {
    background-color: #f9f9f9;
    padding: 1.5rem;
    width: 280px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.team-item img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 8px;
}

/* Partners Section */
.partners {
    background-color: #e8daef;
    padding: 2.5rem;
    border-radius: 15px;
    margin-bottom: 2rem;
}

.partners-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 1.5rem;
}

.partner-img {
    width: 250px;
    height: 150px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

/* Growth Section */
.growth {
    background-color: #e8f6e8;
    padding: 2.5rem;
    border-radius: 15px;
    margin-bottom: 2rem;
}
.growth p {
	color:black;
}
.growth img
{
	height:650px;
    width: 100%;
	max-width:1000px;
}

/* Future Goals Section (New) */
.future-goals {
    background-color: #e6e6fa;
    padding: 2.5rem;
    border-radius: 15px;
    margin-bottom: 2rem;
}
.future-goals p {
	color: Black;
}
/* Community Section (New) */
.community {
    background-color: #fffacd;
    padding: 2.5rem;
    border-radius: 15px;
    margin-bottom: 2rem;
}
.community p {
		color: Black
}

/* Call to Action Section */
.call-to-action {
    background-color: #2ecc71;
    color: white;
    padding: 2.5rem;
    border-radius: 15px;
    margin-bottom: 2rem;
}

.call-to-action button {
    background-color: #27ae60;
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    cursor: pointer;
    border-radius: 5px;
    margin: 0.5rem;
}

/*.call-to-action button:hover {
    background-color: #219653;
} */

/* Footer Section */
footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 3rem 2rem;
    text-align: center;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(44, 62, 80, 0.9), rgba(52, 73, 94, 0.9));
    z-index: -1;
}

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

.footer-column {
    text-align: left;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.footer-column:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.footer-column h3 {
    color: #ecf0f1;
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
    font-weight: 700;
    border-bottom: 2px solid #2e7eba;
    padding-bottom: 0.5rem;
    text-transform: uppercase;
}

.footer-column p {
    color: #bdc3c7;
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column ul li {
    margin-bottom: 1rem;
    position: relative;
    padding-left: 1.5rem;
}

.footer-column ul li::before {
    content: '•';
    color: #2e7eba;
    position: absolute;
    left: 0;
    font-size: 1.2rem;
}

.footer-column ul li a {
    color: #2e7eba;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease, transform 0.3s ease;
}

.footer-column ul li a:hover {
    color: #1a3c5e;
    transform: scale(1.05);
    text-decoration: underline;
}

.social-links {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 1rem;
}

.social-icon {
    color: #ecf0f1;
    text-decoration: none;
    font-size: 1.2rem;
    padding: 0.75rem;
    background-color: #34495e;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.social-icon:hover {
    background-color: #2e7eba;
    transform: rotate(15deg) scale(1.1);
}

.footer-bottom {
    text-align: center;
    margin-top: 3rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 1rem;
    color: #bdc3c7;
    transition: color 0.3s ease;
}

.footer-bottom:hover {
    color: #ecf0f1;
}

/* Responsive design */
@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 0 1rem;
    }

    .footer-column {
        padding: 1rem 0;
        margin-bottom: 2rem;
    }

    .footer-column ul li {
        padding-left: 0;
        text-align: center;
    }

    .footer-column ul li::before {
        display: none;
    }

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

    .footer-bottom {
        margin-top: 2rem;
    }
}