/* General styles */


body {
    margin-left: 5%;
    margin-right: 5%;
    font-family: Arial, sans-serif;
    background-color: #0B173B;
    color: white;
}

/* For mobile devices with a width less than or equal to 768px */
@media (max-width: 768px) {
    body {
        margin-left: 2%;
        margin-right: 2%;
    }
}

header {
    background-color: #0B173B;
    padding: 10px 20px;
    text-align: center;
}

header img {
    height: 200px;
}

nav {
    background-color: #1A1F35;
    padding: 10px 0;
    text-align: center;
}

nav a {
    color: #FFD700;
    text-decoration: none;
    padding: 10px 20px;
}

nav a:hover {
    background-color: #FFD700;
    color: #0B173B;
}

.hero {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
}

.hero img {
    width: 97%;
    height: 600px;
    margin: auto;
    object-fit: cover;
}

.slider-text {
    position: absolute;
    bottom: 30px;
    left: 50px;
    color: #FFD700;
    font-size: 3em;
}

.button {
    background-color: #FFD700;
    color: #0B173B;
    padding: 15px 30px;
    border: none;
    font-size: 1.2em;
    cursor: pointer;
    text-transform: uppercase;
    margin-top: 20px;
    display: inline-block;
}

.button:hover {
    background-color: #E6B800;
}

footer {
    background-color: #0B173B;
    padding: 20px;
    text-align: center;
    color: white;
    font-size: 0.8em;
}

/* Responsive */
@media (max-width: 768px) {
    .slider-text {
        font-size: 1.5em;
        left: 20px;
    }

    .hero img {
        height: 400px;
    }
}


/* Styling for the About Us Section */
#about-us {
    margin: 5% auto;
    text-align: center;
}

#about-us h1 {
    font-size: 2.5em;
    margin-bottom: 1em;
}

#about-us p {
    font-size: 1.2em;
    line-height: 1.6em;
    color: white;
    margin: 0 0 2em 0;
    text-align: justify;
}

/* Styling for the Team Section */
.team-section {
    margin-top: 3em;
}

.team-section h2 {
    font-size: 2em;
    margin-bottom: 1.5em;
}

/* Team Gallery Styles */
.team-gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.team-member {
    margin: 10px;
    text-align: center;
    flex-basis: calc(33.333% - 20px); /* Ensures three members per row */
}

.team-member img {
    width: 200px;
    height: 200px;
    border-radius: 50%; /* To make the image round */
    border: 2px solid #ccc;
}

.team-member .caption {
    font-size: 1.1em;
    font-weight: bold;
    margin-top: 0.5em;
}

.team-member .title {
    font-size: 1em;
    color: white;
    margin-top: 0.2em;
}

/* For Mobile devices (width less than or equal to 768px) */
@media (max-width: 768px) {
    .team-member {
        flex-basis: calc(50% - 20px); /* Ensures two members per row */
    }
}

/* For very small mobile devices (width less than or equal to 480px) */
@media (max-width: 480px) {
    .team-member {
        flex-basis: calc(100% - 20px); /* Ensures one member per row */
    }
}

/* Fix contact form layout for vertical stacking */
.contact-form {
  display: flex;
  flex-direction: column;
  max-width: 500px; /* Adjust width as needed */
  margin: 0 auto; /* Center the form */
}

.contact-form label {
  margin-bottom: 8px;
  font-weight: bold;
}

.contact-form input,
.contact-form textarea {
  padding: 10px;
  margin-bottom: 15px;
  width: 100%;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
}

.contact-form button {
  padding: 10px 15px;
  background-color: #004085;
  color: #fff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

.contact-form button:hover {
  background-color: #00306f;
}

.current-deals {
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
  line-height: 1.6;
  font-family: 'Arial', sans-serif;
}

.current-deals h2, .current-deals h3, .current-deals h4 {
  color: #004085;
}

.current-deals p, .current-deals ul {
  margin-bottom: 20px;
}

.current-deals ul {
  list-style-type: disc;
  padding-left: 20px;
}

.cta-button {
  display: inline-block;
  padding: 12px 24px;
  background-color: #004085;
  color: #fff;
  text-align: center;
  border-radius: 5px;
  text-decoration: none;
  margin-top: 15px;
  transition: background-color 0.3s ease;
}

.cta-button:hover {
  background-color: #00306f;
}

.cta-top, .cta-middle, .cta-bottom {
  text-align: center;
  margin-bottom: 40px;
}

.cta-top h2, .cta-middle h3, .cta-bottom h3 {
  margin-bottom: 15px;
}

.cta-top p, .cta-middle p, .cta-bottom p {
  font-size: 1.1em;
  margin-bottom: 20px;
}

/* Call to Action button styling */
.cta-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #004085;
    color: #fff;
    text-align: center;
    font-size: 18px;
    font-weight: bold;
    border-radius: 5px;
    text-decoration: none;
    margin-bottom: 20px;
}

.cta-button:hover {
    background-color: #00306b;
}

/* Table styling */
.investment-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    color: black;
}

.investment-table th, .investment-table td {
    padding: 12px;
    border: 1px solid #ddd;
    text-align: left;
}

.investment-table th {
    background-color: #f4f4f4;
    font-weight: bold;
}

.investment-table td {
    background-color: #fff;
}

/* Styling for sections */
h2 {
    color: white;
    margin-top: 30px;
    margin-bottom: 15px;
}

ul {
    list-style-type: disc;
    margin-left: 20px;
}

p, ul, table {
    margin-bottom: 20px;
}

.responsive {
  width: 100%;
  height: auto;
  height: auto;
  margin-left:auto;
  margin-right:auto;
}

.responsive_vip {
  width: 100%;
  max-width: 400px;
  height: auto;
  margin-left: auto;
  margin-right: auto;
  padding: 5px;
  display: block;
}

/* Base navigation styles */
nav {
    background-color: #1A1F35;
    padding: 10px 0;
    text-align: center;
}

nav a {
    color: #FFD700;
    text-decoration: none;
    padding: 10px 20px;
    display: inline-block;
}

nav a:hover {
    background-color: #FFD700;
    color: #0B173B;
}

/* Hide the hamburger menu by default */
.hamburger {
    display: none;
    cursor: pointer;
    flex-direction: column;
    justify-content: space-around;
    height: 24px;
    width: 30px;
}

.hamburger .bar {
    width: 100%;
    height: 3px;
    background-color: white;
}

/* Media Query for Mobile and Tablet devices (screen width <= 768px) */
@media (max-width: 768px) {
    nav {
        display: none;
        flex-direction: column;
        text-align: left;
    }

    nav.active {
        display: flex;
    }

    /* Display hamburger menu on smaller screens */
    .hamburger {
        display: flex;
        position: absolute;
        right: 20px;
        top: 15px;
    }

    nav a {
        padding: 15px;
        border-bottom: 1px solid #FFD700;
    }

    nav a:hover {
        background-color: #FFD700;
        color: #0B173B;
    }
}

/* For very small mobile devices (width <= 480px) */
@media (max-width: 480px) {
    .hamburger {
        width: 25px;
        height: 20px;
    }

    .hamburger .bar {
        height: 2px;
    }
}
