*{
    font-family: "Outfit", serif;
}
.hero {
    height: 80vh;
}
.home-page{
    background-image: url(images/wave.svg);
    background-repeat: no-repeat;
    background-position: top;
}
.logo{
    color: white;
}
.name{
    color: rgb(0, 145, 64);
}
.navbar{
    background-color:rgba(0, 147, 218, 1) ;
}
.dr{
    color: rgba(0, 147, 218, 1);
}
.profile-img{
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background-image: url(avatar.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}
.about-us{
    background-color: rgb(0, 145, 64);
}
#investmentcompany{
    background-color: lightblue;
}
/* Custom styling for Contact Section */
.contact-section {
    padding: 60px 0;
}

.contact-info i {
    font-size: 2rem;
    color: #007bff;
    margin-right: 15px;
}

.contact-info p {
    font-size: 1rem;
    margin: 5px 0;
}

.contact-form input,
.contact-form textarea {
    border-radius: 10px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}

.contact-form button {
    background-color: #007bff;
    border: none;
    padding: 10px 20px;
    font-size: 1.1rem;
    color: #fff;
    border-radius: 5px;
}

.contact-form button:hover {
    background-color: #0056b3;
}

/* Map Section */
.map-section iframe {
    width: 100%;
    height: 400px;
    border: 0;
    border-radius: 30px;
}
/*  */
        /* Card Hover Effect */
        .card:hover {
            transform: translateY(-10px);
            box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease-in-out;
        }

        /* Customize Card Content */
        .card-body {
            padding: 2rem;
        }

        .card-icon {
            font-size: 3rem;
            color: #007bff;
        }

        .card-title {
            font-size: 1.25rem;
            font-weight: 600;
            color: #333;
        }

        .card-text {
            font-size: 1rem;
            color: #555;
        }

        .card-footer {
            text-align: center;
            background-color: transparent;
        }



        /* Change background color on hover */
        .card:hover .card-body {
            background-color: #f8f9fa;
        }

@media only screen and (max-width: 600px) {
    .home-page{
        background-image: none;
    }
  }


  /* Style the scrollbar track */
::-webkit-scrollbar {
    width: 12px;  /* Horizontal scrollbar width */
    height: 12px; /* Vertical scrollbar height */
}

/* Style the scrollbar handle (the part you drag) */
::-webkit-scrollbar-thumb {
    background-color: rgb(0, 145, 64);  /* Color of the draggable part */
    border-radius: 10px;      /* Round corners */
    border: 3px solid rgb(0, 145, 64);  /* Border around the thumb */
}

/* Style the scrollbar when hovering */
::-webkit-scrollbar-thumb:hover {
    background-color: #555;  /* Darker color when hovering */
}

/* Style the scrollbar track (the area the thumb moves along) */
::-webkit-scrollbar-track {
    background: #f1f1f1; /* Light gray track */
    border-radius: 10px;  /* Round corners */
}
