/* Reset and Global Styles */
body, h1, h2, h3, p, a, button {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
}

/* Global Styling */
body {
    background-color: #1F1F1F; /* Dark Grey Background */
    color: #EDEDED; /* Soft Light Grey Text */
    line-height: 1.6;
}

/* Header */
header {
    background-color: #111111;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

header .logo img {
    height: 50px;  /* Adjust height of logo */
    width: auto;   /* Maintain aspect ratio */
}

header nav a {
    color: #EDEDED;
    margin: 0 20px;
    text-decoration: none;
    font-weight: bold;
    font-size: 18px;
}
@media (max-width: 768px) {
    header .logo img {
        height: 40px;  /* Smaller logo size on mobile */
    }
}


/* Hero Section */
.hero {
    background: linear-gradient(145deg, #39FF14, #2f2f2f);
    color: #111111;
    text-align: center;
    padding: 150px 20px;
    border-bottom: 3px solid #39FF14;
}

.hero h1 {
    font-size: 50px;
    margin-bottom: 10px;
    animation: fadeIn 2s ease-in-out;
}

.hero p {
    font-size: 22px;
    margin-bottom: 30px;
    animation: fadeIn 3s ease-in-out;
}

.hero .cta-button {
    background-color: #111111;
    color: #39FF14;
    padding: 20px 40px;
    font-size: 18px;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.hero .cta-button:hover {
    background-color: #39FF14;
    color: #111111;
}
.hero {
    background: linear-gradient(145deg, #39FF14, #2f2f2f), url('fintech image.jpeg');
    color: #111111;
    text-align: center;
    padding: 150px 20px;
    border-bottom: 3px solid #39FF14;
    background-size: cover; /* Ensures the image covers the entire section */
    background-position: center; /* Centers the image */
}


/* About Us Section */
.about-us {
    background: linear-gradient(145deg, #2f2f2f, #111111);
    color: #EDEDED;
    padding: 80px 20px;
    text-align: center;
}

.about-us h2 {
    font-size: 36px;
    color: #39FF14;  /* Neon Green */
}

.about-us .cta-button {
    background-color: #39FF14; /* Neon Green Button */
    color: #111111; /* Dark Text on Neon Button */
    padding: 5px 22px; /* Reduced padding for smaller button */
    font-size: 16px; /* Smaller font size */
    border-radius: 10px;
    text-decoration: none;
    margin-top: 20px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.about-us .cta-button:hover {
    background-color: #2f2f2f; /* Dark background on hover */
    color: #39FF14; /* Neon green text */
}
/* Services Section */
.services {
    padding: 50px 20px;
    background-color: #111111;
    text-align: center;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.service-item img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.service-item h3 {
    margin-top: 15px;
    font-size: 1.5rem;
}

/* Contact Us Section */
.contact-us {
    background-color: #0d0e0d;
    color: #EDEDED;
    padding: 80px 20px;
    text-align: center;
}

.contact-us h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #39FF14;
}

.contact-us form {
    max-width: 600px;
    margin: auto;
    background-color: #333333;
    padding: 40px;
    border-radius: 8px;
}

.contact-us input, .contact-us textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    background-color: #444444;
    border: 1px solid #39FF14;
    color: #EDEDED;
    border-radius: 5px;
}

.contact-us button {
    background-color: #39FF14;
    color: #111111;
    padding: 20px;
    font-size: 18px;
    border-radius: 5px;
    width: 100%;
    cursor: pointer;
    border: none;
    transition: background-color 0.3s ease;
}

.contact-us button:hover {
    background-color: #2f2f2f;
}

/* Footer Section */
footer {
    background-color: #111111;
    color: #EDEDED;
    padding: 30px;
    text-align: center;
}

footer a {
    color: #39FF14;
    text-decoration: none;
    margin: 0 10px;
}

footer a:hover {
    color: #EDEDED;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 36px;
    }
    .service-item {
        width: 100%;
    }
    .contact-us form {
        padding: 20px;
    }
}
