.top-bar {
    background-color: #f8f9fa;
    /* Light gray */
    padding: 10px 0;
}

.top-bar img {
    height: 40px;
    /* Logo size */
}

.top-bar a {
    color: #001a57;
    /* Dark blue for links */
    font-weight: bold;
    text-decoration: none;
    margin: 0 10px;
}

.top-bar .profile-pic {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    /* Circle */
    overflow: hidden;
}

.navbar {
    background-color: #001a57;
    /* Dark blue */
}

.navbar a {
    color: #ffffff !important;
    /* White text */
    font-weight: bold;
}

.hero {
    background: url('../img/hero.png') no-repeat center center / cover;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
    position: relative;
}

.hero-overlay {
    background-color: rgba(0, 0, 0, 0.6);
    /* Dark overlay */
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-content {
    z-index: 2;
}

.btn-custom {
    background-color: #e41f1f;
    /* Red button */
    color: white;
    font-weight: bold;
    border: none;
}

.btn-custom:hover {
    background-color: #c51a1a;
}

/* My Malaysia Section Styles */
#e-my-malaysia h1 {
    font-size: 2.5rem;
    color: #001a57;
}

/* Style the "Learn more" link */
#e-my-malaysia .e-learn-more {
    color: #001a57;
    text-decoration: underline;
    font-size: 1.2rem;
    font-weight: bold;
}

#e-my-malaysia .e-learn-more:hover {
    color: #e41f1f;
}

/* Card customization */
#e-my-malaysia .e-card {
    border: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

#e-my-malaysia .e-card:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* Button alignment */
#e-my-malaysia .e-btn-custom {
    margin-top: 10px;
    background-color: #e41f1f;
    color: white;
    font-weight: bold;
    border: none;
}

#e-my-malaysia .e-btn-custom:hover {
    background-color: #c51a1a;
}

/* Icon inside the button */
#e-my-malaysia .e-btn-custom i {
    font-size: 1.2rem;
    vertical-align: middle;
}


/* About Us Section Styles */
#e-about-us h2 {
    color: #001a57;
    font-weight: bold;
}

#e-about-us hr {
    width: 50px;
    border: 2px solid #001a57;
    margin-top: 10px;
}

#e-about-us p {
    color: #333333;
    font-size: 1rem;
}

/* Image Styling */
#e-about-us .e-about-image {
    border-radius: 20px;
}

.e-about-image {
    /* height: 100%; */
    /* width: 100%; */
    height: 350px;
    /* center */
    display: block;
    margin-left: auto;
    margin-right: auto;
}

/* Goal Card Styling */
#e-about-us .e-goal-card {
    border: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#e-about-us .e-goal-card:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

#e-about-us .e-goal-card .card-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: #001a57;
}

#e-about-us .e-goal-card .card-text {
    font-size: 0.95rem;
    color: #555555;
    margin-top: 10px;
}

/* Contact Us Page Styles */
#e-contact-us h2,
#e-contact-us h3 {
    color: #001a57;
    font-weight: bold;
}

#e-contact-us hr {
    width: 50px;
    border: 2px solid #001a57;
    margin-top: 10px;
}

#e-contact-us p {
    font-size: 1rem;
    color: #333333;
}

/* Contact Form Styles */
#e-contact-us .e-contact-form {
    background-color: #e41f1f;
    border-radius: 10px;
    color: white;
}

#e-contact-us .e-contact-form .form-control {
    border: none;
    margin-bottom: 10px;
}

#e-contact-us .e-contact-form button {
    background-color: #001a57;
    border: none;
}

#e-contact-us .e-contact-form button:hover {
    background-color: #000a2a;
}

/* Contact Information Section */
#e-contact-us address {
    font-size: 1rem;
    line-height: 1.6;
}

/* Importing the fonts */
@import url('https://fonts.googleapis.com/css2?family=Helvetica:wght@400;700&family=Helvetica+Neue:wght@400;700&family=Gill+Sans:wght@400;700&display=swap');

/* Title and headings in Helvetica */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Helvetica';
}

/* Subtitles (apply to existing p, or other elements as needed) in Helvetica Neue */
p,
.translate {
    font-family: 'Helvetica Neue'
}

/* Navigation bar and subheadings in Gill Sans */
.navbar,
.navbar-nav .nav-link,
.dropdown-menu,
.dropdown-item {
    font-family: 'Gill Sans';
}