body {
    background-color: #fff; /* White background */
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}
.navbar {
    background: #293246; /* Dark Blue gradient */
    color: #fff;
}
.content {
    padding: 20px;
    flex: 1;
}
.footer {
    background: #293246; /* Dark Blue gradient */
    color: #fff;
    text-align: center;
    padding: 10px 20px;
    margin-top: auto;
    z-index: 10000;
    font-size: 10px;
}
.hero {
    background: linear-gradient(135deg, #003366, #006699);
    color: #fff;
    padding: 50px 20px;
    text-align: center;
}
.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}
.hero p {
    font-size: 1.25rem;
    margin-bottom: 30px;
}
.btn-custom {
    background-color: #ffd700;
    color: #003366;
    border-radius: 25px;
    padding: 10px 20px;
}
.btn-custom:hover {
    background-color: #ffca00;
    color: #fff;
}
.btn-custom2 {
    background-color: #75b0d5;
    color: #fff;
    border-radius: 25px;
    padding: 10px 20px;
}
.btn-custom2:hover {
    background-color: #2E383A;
    color: #fff;
}
.features {
    padding: 50px 20px;
    background-color: #f5f5dc;
}
.feature-card {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    margin-bottom: 20px;
}
.banner {
    background: #eae0c8;
    padding: 50px 20px;
    text-align: center;
}

.image-crop {
    width: 1000px;  /* Set the width of the cropped area */
    height: 600px; /* Set the height of the cropped area */
    overflow: hidden;  /* Hide the parts of the image outside the container */
    margin: auto;
    border-radius: 15px;
}

.image-crop img {
    width: 100%;
    height: 100%;
    object-fit: cover;  /* Make the image cover the container */
    object-position: 0% 25%;
}

/* Subscribe Section */
.subscribe {
    background-color: #f5f5dc; /* Same color as normal background */
    padding: 50px 20px;
    text-align: center;
}

.subscribe h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.subscribe p {
    font-size: 1.25rem;
    margin-bottom: 30px;
}

.subscribe .form-control {
    border-radius: 25px;
    padding: 10px;
    font-size: 1rem;
}

.subscribe .btn-custom {
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 1rem;
    margin-left: 10px;
}

.subscribe .btn-custom:hover {
    background-color: #ffca00;
    color: #fff;
}
.header-label {
    position: relative;
    top: 2px;
}