/* styles.css */

/* Navbar */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@100&family=Ubuntu:wght@400;500&display=swap');

* {
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}


.navbar {
    background-color: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    position: sticky;
    top: 0;
    cursor: pointer;
}

.nav-list {

    display: flex;
    align-items: center;

}

.nav-list li {
    list-style: none;
    padding: 10px 10px;
    padding-top: 30px;

}

.nav-list li a {
    text-decoration: none;
    color: rgb(0, 0, 0);
    font-size: 18px;
    font-family: 'Ubuntu', sans-serif;


}

.nav-list li a:hover {
    text-decoration: none;
    color: rgb(128, 128, 128);

}

.navbar-brand {
    font-size: 35px;
    font-weight: bold;
    padding: 0 20px;
}

.navbar-nav .nav-link {
    color: #000;
    padding: 0 1px;
}

/* Hero Section */
.jumbotron {
    color: white;
    font-family: 'Ubuntu', sans-serif;
    margin: auto;
    justify-content: center;
    align-items: center;
    background: rgba(0, 0, 0, 0.7) url('../img/Company\ Image.jpg');
    background-size: cover;
    background-blend-mode: darken;

    height: 70vh;
}


.jumbotron h1 {
    font-size: 36px;
    padding-top: 100px;
    padding-bottom: 10px;
    color: yellow;
}

.jumbotron p {
    font-size: 18px;
    margin-bottom: 30px;
}

.jumbotron .btn-primary {
    font-size: 16px;
    padding: 10px 20px;
}

/* Search Section
.search-form {
    margin: 30px;
} */

.search-form .form-control {
    border-radius: 50px;
}

.search-form .btn-primary {
    border-radius: 50px;
    padding: 5px 10px;
}

/* Company Details*/
.section {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    max-width: 80%;
    margin: auto;
    font-family: 'Ubuntu', sans-serif;
    padding: 10px;
}

.section-left {
    flex-direction: row-reverse;
}

.paras {
    padding: 0 10px;
}

.sectionTag {
    padding: 16px 0;
}
.text-big {
    font-size: 40px;
    padding-bottom: 10px;
}

.text-small {
    font-size: 18px;
    padding-bottom: 10px;
}
.sectionSubTag {
    font-family: 'Ubuntu', sans-serif;
}

.imgFluid {
    width: 400px;
    margin: 0 20px;
    border: 2px solid black;
    border-radius: 20px;
}

/* Featured Companies Section */
.container h2 {
    font-size: 35px;
    font-weight: bold;
    margin: 30px;
    text-align: center;
}

.card {
    margin-bottom: 30px;
}

.card-img-top {
    height: 200px;
    object-fit: cover;
}

.card-title {
    font-size: 20px;
    font-weight: bold;
}

.card-text {
    margin-bottom: 15px;
}

.card .btn-primary {
    padding: 10px 20px;
}

/* Investor Testimonials Section */
.testimonial {
    margin-bottom: 30px;
}

.testimonial-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
}

.testimonial-name {
    font-size: 18px;
    font-weight: bold;
}

.testimonial-text {
    font-size: 16px;
    margin-bottom: 15px;
}

/* Footer Section */
.footer {
    background-color: #f8f9fa;
    padding: 30px 0;
    margin-top: 30px;
}

.footer h3 {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 15px;
}

.footer p {
    margin-bottom: 10px;
}




