#navbarNavDropdown a:hover{
    color: yellow;
    background-color: lightgrey;
    border-radius: 20px;
    transition: all 0.3s ease;
}

header{
    width: 100%;
    height: 110vh;
    background-image: url(images/home-banner.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
   
}

header h3{
    font-size: 1.3rem;
    color: #002347;
    font-weight: 700;
    text-transform: uppercase;
    text-align: center;

}

header h1{
    font-size: 2.6rem;
    color: #002347;
    font-weight: 800;
    text-transform: uppercase;
    text-align: center;
    

}

#button1{
    padding: 13px 30px;
    background-color: #002347;
    color: #fdc632;
    font-size: 0.9rem;
    font-weight: 900;
    border: 1px solid #002347;
    border-radius: 3px;
    transition: all 0.4s ease;
}

#button1:hover{
    background: transparent;
    color: #002347;
}

#button2{
    padding: 13px 30px;
    background-color: #fdc632;
    color: #002347;
    font-size: 0.9rem;
    font-weight: 900;
    border: 1px solid #fdc632;
    border-radius: 3px;
    transition: all 0.4s ease;
}

#button2:hover{
  background-color: #002347;
    color: #fdc632;
      border: 1px solid #002347;
}

@media (max-width:393px){
   .mainbutton{
   flex-direction: column;    
}

  #button1{
     width: 70%;
     margin-left: 15%;
  }

  #button2{
     width: 70%;
     margin-left: 15%;
  }
}

.feature-section {
    text-align: center;
    padding: 60px 20px;
}

.heading {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 10px;
}

.sub-heading {
    font-size: 15px;
    color: #555;
    margin-bottom: 40px;
}

.feature-wrapper {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 25px;
    flex-wrap: wrap;   
}

.feature-box {
    background: #fff;
    width: 300px;
    padding: 35px 25px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    text-align: left;
    transition: 0.3s;
}

.feature-box:hover {
    transform: translateY(-5px);
}

.feature-box i {
    width: 50px;
    margin-bottom: 20px;
    font-size: 50px;
}

.feature-box h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.feature-box p {
    font-size: 14px;
    color: #555;
}

@media (max-width: 600px) {
    .feature-box {
        width: 100%;
    }

    .heading {
        font-size: 26px;
    }
}

.register-section {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 80px 40px;
    gap: 40px;
    flex-wrap: wrap;
    background-color: #002347;
}

.left-content {
    flex: 1;
    min-width: 300px;
}

.left-content h2 {
    font-size: 40px;
    margin-bottom: 20px;
    color: white;
}

.left-content p {
    font-size: 15px;
    max-width: 500px;
    line-height: 1.5;
    margin-bottom: 40px;
    color: white;
}

.countdown {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.count-box {
    width: 120px;
    padding: 20px;
    background: white;
    border-radius: 6px;
    text-align: center;
    backdrop-filter: blur(3px);
}

.count-box h3 {
    font-size: 28px;
}

.count-box span {
    font-size: 14px;
    opacity: 0.8;
}

.form-box {
    width: 300px;
    background: #ffffff;
    color: #000;
    padding: 30px 25px;
    border-radius: 8px;
}

.form-box h3 {
    font-size: 24px;
}

.form-box p {
    font-size: 14px;
    margin-bottom: 20px;
}

.form-box input {
    width: 100%;
    padding: 10px 5px;
    margin-bottom: 15px;
    border: none;
    border-bottom: 1px solid #aaa;
    outline: none;
    font-size: 14px;
}

.form-box button {
    width: 100%;
    padding: 12px;
    border: none;
    background: #f4b223;
    font-weight: 600;
    cursor: pointer;
    border-radius: 4px;
}

.form-box button:hover {
    opacity: 0.9;
}

@media (max-width: 600px) {
    .left-content h2 {
        font-size: 32px;
    }

    .count-box {
        width: 45%;
    }
}

.footer {
    background: #0d1224;
    padding: 50px 20px;
}

.footer-container {
    display: flex;
    flex-wrap: wrap; 
    gap: 40px;
    justify-content: space-between;
}

.footer-column h3 {
    margin-bottom: 15px;
    font-size: 18px;
    font-weight: 600;
    color: white;
    padding-left: 30px;
}

.footer-column ul li {
    list-style: none;
    margin-bottom: 10px;
    color: #cfd3df;
    cursor: pointer;
}

.footer-column ul li:hover {
    color: #fff;
}

.newsletter p {
    margin-bottom: 15px;
    color: #cfd3df;
    font-size: 14px;
}

.newsletter-box {
    display: flex;
    margin-bottom: 20px;
}

.newsletter-box input {
    padding: 10px;
    flex: 1;
    border: none;
    outline: none;
    border-radius: 4px 0 0 4px;
}

.newsletter-box button {
    padding: 10px 15px;
    background: #f5b342;
    color: #000;
    border: none;
    font-weight: 600;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
}

.social-icons span {
    display: inline-block;
    margin-right: 10px;
    font-size: 22px;
    cursor: pointer;
    color: #ffffff;
    transition: color 0.3s ease;
}

.social-icons span:hover {
    color: #f4b223;
}

.footer .copyright {
    text-align: center;
    margin-top: 40px;
    font-size: 14px;
    color: #cfd3df;
}

.footer .copyright a{
    text-decoration: none;
    color: black;
    border: none;
    padding: 10px;
    border-radius: 20px;
    background-color: #f4b223;
    transition: all 0.3s ease;
}

.footer .copyright a:hover{
    border-bottom: 5px solid white;
    background-color:  darkgreen;
    color: white;
}

@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
    }

    .footer-column {
        width: 100%;
    }

    .newsletter-box {
        flex-direction: column;
    }

    .newsletter-box input,
    .newsletter-box button {
        width: 100%;
        border-radius: 4px;
        margin-bottom: 10px;
    }

    .social-icons {
        margin-top: 20px;
    }
}