/* General Styles */
body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #0a0a0a;
    color: #fff;
    text-align: center;
}

/* Header Styles */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background-color: #111;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 6px #f1c40f;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    color: #f1c40f;
}

nav {
    display: flex;
    align-items: center;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 15px;

}

.nav-links li {
    display: inline;
    padding-right: 20px;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s ease;

}

.nav-links a:hover {
    color: #f1c40f;
}

.menu-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
}

/* Responsive Navigation */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        background-color: #111;
        padding: 10px 0;
    }

    .nav-links.active {
        display: flex;
    }

    .menu-toggle {
        display: block;
    }
}

/* Hero Section */


.hero {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 90vh;
    text-align: center;
    background: url('heroimage.jpg') no-repeat center center/cover fixed;
    padding: 20px;
    position: relative;
}


.hero p{
    color: #f1c40f;
}

.hero h1{
    text-decoration: underline #f1c40f;
}


.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2); /* Reduces brightness by 80% */
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    background: rgb(0, 0, 0);
    padding: 20px;
    border-radius: 10px;
    max-width: 90%;
}


.hero-content {
    background: rgba(0, 0, 0, 0.7);
    padding: 20px;
    border-radius: 10px;
    max-width: 90%;
}

.cta {
    display: inline-block;
    background-color: #f1c40f;
    color: #121212;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s;
}

.cta:hover {
    background-color: #b8950b;
}

/* About Us Section */
.about-us {
    background-color: #111;
    color: #fff;
    padding: 50px 20px;
    text-align: center;
}

.about-us .container {
    max-width: 800px;
    margin: 0 auto;
}

.about-us span{
    color: white;
}

.about-us h2 {
    font-size: 32px;
    margin-bottom: 15px;
    color: #f1c40f;
    text-decoration: underline white;
}

.about-us p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.about-us h3 {
    font-size: 24px;
    margin-top: 30px;
    color: #f1c40f;
}

.about-us ul, 
.about-us ol {
    text-align: left;
    list-style-position: inside;
    padding: 0;
}

.about-us ul li, 
.about-us ol li {
    font-size: 18px;
    margin: 10px 0;
}

.cta-button {
    display: inline-block;
    background-color: #c7a20d;
    color: #121212;
    padding: 12px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s;
    margin-top: 20px;
}

.cta-button:hover {
    background-color: #be9b0f;
}

/* Responsive Design */
@media (max-width: 768px) {
    .about-us h2 {
        font-size: 28px;
    }
    
    .about-us h3 {
        font-size: 22px;
    }

    .about-us p, .about-us ul li, .about-us ol li {
        font-size: 16px;
        list-style-type: none;
    }
}



/* Services */
.services {
    padding: 50px 20px;
    background: url('heroimage.jpg') no-repeat center center/cover fixed;
}

.service-cards {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.services h2{
    background-color: #f1c40f;
    color: black;
    display: inline-block;
    border-radius: 5px;
    padding: 5px;
    text-decoration: underline #f1c40f;
}

.service {
    background-color: #222;
    padding: 20px;
    border-radius: 10px;
    width: 300px;
    transition: transform 0.3s;
}

.service:hover {
    transform: scale(1.05);
}

/* Investment Plan */
.investment-plan {
    padding: 50px 20px;
    display: inline-block;
}

.investment-plan ul {
    list-style: none;
    padding: 0;
}

.investment-plan li {
    background: #f1c40f;
    margin: 10px 0;
    padding: 15px;
    border-radius: 5px;
    font-weight: bold;
    color: black;
}

.investment-plan h2{
    text-decoration: underline #f1c40f;
}

/* Testimonials Section */
.testimonials {
    padding: 50px 20px;
    text-align: center;
    background-color: #111;
}

.testimonials h2 {
    font-size: 24px;
    color: #f1c40f;
    margin-bottom: 20px;
}

/* Testimonial Slider */
.testimonial-slider {
    display: flex;
    justify-content: center;
    overflow: hidden;
    width: 100%;
    max-width: 600px;
    margin: auto;
    position: relative;
}

/* Individual Testimonial */
.testimonial {
    display: none;
    flex-direction: column;
    align-items: center;
    width: 100%;
    animation: fadeIn 1s ease-in-out;
}

/* Active Testimonial */
.testimonial.active {
    display: flex;
}

/* Avatar Style */
.testimonial-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: #f1c40f;
    color: #121212;
    font-size: 24px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}

/* Testimonial Text */
.testimonial p {
    font-style: italic;
    color: #ddd;
    max-width: 80%;
}

/* Name */
.testimonial h4 {
    margin-top: 10px;
    color: #f1c40f;
}

/* Fade-In Animation */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Responsive */
@media (max-width: 768px) {
    .testimonials h2 {
        font-size: 20px;
    }
    
    .testimonial-avatar {
        width: 60px;
        height: 60px;
        font-size: 20px;
    }

    .testimonial p {
        max-width: 90%;
    }
}


/* Footer */
footer {
    text-align: center;
    padding: 20px;
    background: #111;
    font-size: 14px;
}
