* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: Arial, sans-serif;
    color: #000;
}

header {
    background-color: #b01f35;
    padding: 10px 0;
}
.h3{
    margin: 20px;
}
.container {
    /*display: flex;*/
    justify-content: space-between;
    align-items: center;
    width: 80%;
    margin: 0 auto;
}

.logo {
    font-size: 24px;
    color: #fff;
    font-weight: bold;
    background: url("../images/top_logo.png") no-repeat;
    display: inline-block;;
    margin: auto;
    width: 155px; 
    height: 60px;
}

.links-container {
  display: flex;
  align-items: flex-end; /* Aligns the links to the bottom of the container */
  color:#fff;
}
.login-btn {
    /*background-color: #fff;
    color: #b3000b;
    border: none;
    padding: 10px 40px;
    border-radius: 30px;
    cursor: pointer;
    font-weight: bold;
    font-size: 26px;
    text-decoration: none;*/
    color:#fff;
    font-size: 14px;
    font-family: Tahoma, Geneva, sans-serif;
    float: right;
    display:block;
    font-weight:bold;
}

.login-btn:hover{
    text-decoration: underline;
}

/* Intro Section */
.intro {
    text-align: center;
    padding: 50px 0px;
    position: relative;
    min-height: 550px; /* Set height to 65% of the viewport */
     height: calc(100vh - 90px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-image: url('../images/banner1.jpg');
    background-size: cover;
    background-position: bottom;
    background-repeat: no-repeat;
}

.intro-text {
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.intro-text h1 {
    font-size: 62px;
    line-height: 70px;
    font-weight: bold;
    margin-bottom: 80px;
}

.intro-text p {
    font-size: 20px;
    margin-bottom: 20px;
}

.intro-text h2 {
    font-size: 30px;
    line-height:40px;
    font-weight: bold;
    margin-bottom: 30px;
}
.intro h1, .intro p, .intro h2 {
    font-weight: bold;
}
.highlight {
    color: #b01f35;
}

.limitless {
    font-size: 32px;
    font-style: italic;
}

.intro-btn {
    background-color: #b01f35;
    color: #fff;
    border: none;
    padding: 10px 40px;
    border-radius: 30px;
    font-size: 26px;
    cursor: pointer;
    border-radius: 30px;
    text-decoration: none;
}

/* Section: Intro Message */
.intro-message {
    text-align: center;
    padding: 30px 20px;
}
.intro-message .message p{
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 10px;
    font-style: italic;
    font-size: 24px;
    line-height: 1.6;
    color: #333;
    font-weight: bold;
}


/* New Section: Grow Together */
.grow-together {
    text-align: center;
    padding: 80px 20px;
}

.grow-together h2 {
    font-size: 28px;
    color: #b01f35;
    font-weight: bold;
    margin-bottom: 50px;
}

.step {
    margin-bottom: 50px;
}

.step-number {
    background-color: #b01f35;
    color: #fff;
    width: 50px;
    height: 50px;
    line-height: 50px;
    border-radius: 50%;
    margin: 0 auto;
    font-size: 24px;
    font-weight: bold;
}

.step h3 {
    font-size: 24px;
    margin: 15px 0;
    font-weight: bold;
}

.step p {
    font-size: 16px;
    color: #666;
    /*font-style: italic;*/
}

/* Footer */
footer {
    text-align: center;
    padding: 0px;;
    background-color: #0D283D;
}

.footer-logo {
    color: #fff;
    font-weight: bold;
    background: url("../images/logo.png") no-repeat;
    display: block;
    margin: auto;
    width: 120px; 
    height: 120px;
}


/*common styles*/
a{
    text-decoration: none;
}
.margin-top-20{
    margin-top: 20px;
}
.btn-white{
    background-color: #fff;
    color: #b3000b;
}
.btn-red{
    background-color: #b3000b;
    color: #fff;
}


footer {
  position: relative;
  width: 100%;
}

.footer-top {
  background-color: #0D283D; /* Blue band background color */
  color: #fff; /* Text color */
  padding: 20px 0;
}

.footer-top-content {
  text-align: left; /* Align text to the left */
  font-family: Arial, sans-serif; /* Set font family */
}

.footer-link {
  color: #fff; /* Blue color for links */
  text-decoration: none; /* Remove underline from links */
  margin-right: 10px; /* Space between links */
  font-size: 14px;
}

.footer-link:hover {
  text-decoration: underline; /* Underline on hover */
}

.page-footer {
  background-color: #ab1e24; /* Red background color */
  padding: 10px 0;
}

.page-footer-content {
  color: #fff; /* White text color */
  font-size: 10px;
  font-family: Open Sans, Tahoma, Geneva, sans-serif; /* Font family */
  text-align: right; /* Align text to the right */
 /* margin: 0 15px;*/ /* Margin for spacing */
}

.afooter a {
  color: #fff; /* White color for footer links */
  text-decoration: none; /* Remove underline from links */
}

.afooter a:hover {
  text-decoration: underline; /* Underline on hover */
}


  /* Responsive Media Queries */
  @media (max-width: 768px) {
    .container {
        flex-direction: column;
        align-items: flex-start; /* Align items to the start on smaller screens */
    }

    .logo {
        font-size: 24px;
        margin-bottom: 10px; /* Add spacing between logo and other elements */
    }

    .logo-container{
        margin: 0px auto;
    }

    .login-btn {
        font-size: 16px;
        padding: 10px 20px;
        margin-top: 10px; /* Add some space between login button and logo */
    }
    
    .intro-text h1 {
        font-size: 52px;
        line-height:60px;
    }
    
    .intro-btn {
        font-size: 18px;
    }
    
     .container.footer-top-content{
        display:block;
        justify-content: center;
    }
    a.footer-link{
        display:block;
        text-align: center;
    }
    span.seperator{
        display: none;
    }
    .container.page-footer-content{
        display:block;
        justify-content: center;
        text-align: center;
    }
}

/* Small Screens (Mobile) */
@media (max-width: 576px) {
    .logo {
        font-size: 20px; /* Further reduce logo size for mobile */
    }

    .login-btn {
        font-size: 14px;
        padding: 8px 16px;
    }
    
    .intro-text h1 {
        font-size: 42px;
        line-height:50px;
        margin-bottom: 40px;
    }
    
    .intro-text h2 {
        font-size: 25px;
        line-height: 30px;
        font-weight: bold;
        margin-bottom: 30px;
    }
}