body {
    font-family: "Inter";
    color: #444444;
}

a {
    text-decoration: none;
    color: #51A346;
}

a:hover {
    color: #51A346;
    text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Inter";
}

p {
    font-family: "Inter";
}


/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/

#header {
    background: white;
    transition: all 0.5s;
    z-index: 997;
    padding: 20px 0;
}

#header.header-scrolled {
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
    padding: 12px 0;
}

#header.header-inner-pages {
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

#header .logo {
    font-size: 28px;
    margin: 0;
    padding: 0;
    line-height: 1;
    font-weight: 700;
    text-transform: uppercase;
}

#header .logo a {
    color: #556270;
}

#header .logo img {
    max-height: 130px;
}

.h-content {
    overflow: hidden;
    max-height: 52px;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/


/**
* Desktop Navigation 
*/

.navbar {
    padding: 0;
}

.navbar ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
}

.navbar li {
    position: relative;
}

.navbar a,
.navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0 10px 30px;
    font-family: "PingFang SC";
    font-size: 18px;
    font-weight: 700;
    color: #005785;
    white-space: nowrap;
    transition: 0.3s;
}

.navbar a i,
.navbar a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
    color: #51A346;
}

.navbar .getstarted,
.navbar .getstarted:focus {
    background: #51A346;
    padding: 8px 25px;
    margin-left: 30px;
    border-radius: 4px;
    font-weight: 400;
    color: #fff;
}

.navbar .getstarted:hover,
.navbar .getstarted:focus:hover {
    color: #fff;
    background: #51A346;
}

.navbar .dropdown ul {
    display: block;
    position: absolute;
    left: 14px;
    top: calc(100% + 30px);
    margin: 0;
    padding: 10px 0;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    transition: 0.3s;
}

.navbar .dropdown ul li {
    min-width: 200px;
}

.navbar .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    font-weight: 400;
}

.navbar .dropdown ul a i {
    font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
    color: #51A346;
}

.navbar .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
}

.navbar .dropdown .dropdown ul {
    top: 0;
    left: calc(100% - 30px);
    visibility: hidden;
}

.navbar .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: 100%;
    visibility: visible;
}

@media (max-width: 1366px) {
    .navbar .dropdown .dropdown ul {
        left: -90%;
    }
    .navbar .dropdown .dropdown:hover>ul {
        left: -100%;
    }
}


/**
* Mobile Navigation 
*/

.mobile-nav-toggle {
    color: #556270;
    font-size: 28px;
    cursor: pointer;
    display: none;
    line-height: 0;
    transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
    color: #fff;
}

@media (max-width: 991px) {
    .mobile-nav-toggle {
        display: block;
    }
    .navbar ul {
        display: none;
    }
}

.navbar-mobile {
    position: fixed;
    overflow: hidden;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: rgba(63, 73, 83, 0.9);
    transition: 0.3s;
    z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
    position: absolute;
    top: 15px;
    right: 15px;
}

.navbar-mobile ul {
    display: block;
    position: absolute;
    top: 55px;
    right: 15px;
    bottom: 15px;
    left: 15px;
    padding: 10px 0;
    background-color: #fff;
    overflow-y: auto;
    transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
    padding: 10px 20px;
    font-size: 15px;
    color: #556270;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
    color: #51A346;
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
    margin: 15px;
}

.navbar-mobile .dropdown ul {
    position: static;
    display: none;
    margin: 10px 20px;
    padding: 10px 0;
    z-index: 99;
    opacity: 1;
    visibility: visible;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
    min-width: 200px;
}

.navbar-mobile .dropdown ul a {
    padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
    font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a {
    color: #d9232d;
}

.navbar-mobile .dropdown>.dropdown-active {
    display: block;
}


/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/

#footer {
    background: #036295;
    padding: 40px 0 30px 0;
    color: #fff;
    font-size: 14px;
}

#footer .footer-top {
    background: #005785;
    padding: 60px 0 30px 0;
}

#footer .footer-top .footer-info {
    margin-bottom: 30px;
}

#footer .footer-top .footer-info h3 {
    font-size: 24px;
    margin: 0 0 20px 0;
    padding: 2px 0 2px 0;
    line-height: 1;
    font-weight: 700;
}

#footer .footer-top .footer-info p {
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 0;
    font-family: "Raleway", sans-serif;
    color: #fff;
}

#footer .footer-top .social-links a {
    font-size: 18px;
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    line-height: 1;
    padding: 8px 0;
    margin-right: 4px;
    border-radius: 4px;
    text-align: center;
    width: 36px;
    height: 36px;
    transition: 0.3s;
}

#footer .footer-top .social-links a:hover {
    background: #51A346;
    color: #fff;
    text-decoration: none;
}

#footer .footer-top h4 {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    position: relative;
    padding-bottom: 12px;
}

#footer .footer-top .footer-links {
    margin-bottom: 30px;
}

#footer .footer-top .footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

#footer .footer-top .footer-links ul i {
    padding-right: 2px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 18px;
    line-height: 1;
}

#footer .footer-top .footer-links ul li {
    padding: 10px 0;
    display: flex;
    align-items: center;
}

#footer .footer-top .footer-links ul li:first-child {
    padding-top: 0;
}

#footer .footer-top .footer-links ul a {
    color: #fff;
    transition: 0.3s;
    display: inline-block;
    line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
    color: white;
}

#footer .footer-top .footer-newsletter form {
    margin-top: 30px;
    background: #fff;
    padding: 6px 10px;
    position: relative;
    border-radius: 4px;
}

#footer .copyright {
    text-align: center;
    padding-top: 30px;
}

#footer .credits {
    padding-top: 10px;
    text-align: center;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
}

#footer .credits a {
    color: rgba(255, 255, 255, 0.6);
    transition: 0.3s;
    font-weight: 600;
}

#footer .credits a:hover {
    color: white;
}

#footer .footer-top .footer-links-data ul i {
    padding-right: 2px;
    font-size: 15px;
    line-height: 1;
    background: #fff;
    border-radius: 50%;
    padding: 6px;
    color: #005785;
    margin-right: 9px;
}


/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/

.section-padding {
    padding: 60px 0px;
}

.section-header h2 {
    font-size: 38px;
    font-weight: 500;
}

.section-header p {
    font-size: 18px;
}

@media (max-width: 991px) {
    .section-header h2 {
        font-size: 28px;
    }
    .section-header p {
        font-size: 13px;
    }
}


/*========================Home-hero ===================================*/

.home-hero {
    background-color: #fff;
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    padding-top: 100px;
}

.contdown-file {
    width: 100%;
    margin: auto;
}

.content {
    position: relative;
    background: white;
    padding: 24px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.1);
}

.title {
    font-size: 32px;
    font-weight: bold;
    background: linear-gradient(to right, #01B0DD, #0169CC);
    -webkit-background-clip: text;
    color: transparent;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 16px;
}

.countdown div {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.days-time {
    font-size: 32px;
    font-weight: bold;
    background: linear-gradient(to right, #01B0DD, #0169CC);
    -webkit-background-clip: text;
    color: transparent;
}

.label {
    font-size: 12px;
    color: #000;
}

.icon {
    width: 24px;
    height: 24px;
    fill: none;
    stroke: #00AACE;
    stroke-width: 1.5;
}

.main-heading {
    font-size: 56px;
    font-weight: bold;
    color: #1C1051;
    margin-top: 40px;
    margin-bottom: 20px;
}

.highlight {
    background: linear-gradient(to right, #01B0DD, #0169CC);
    -webkit-background-clip: text;
    color: transparent;
}

.sub-text {
    margin-bottom: 20px;
    color: #000;
}

.sub-heading {
    font-size: 24px;
    font-weight: bold;
    color: #1C1051;
    margin-top: 20px;
    margin-bottom: 20px;
}

.form-container {
    position: relative;
    padding: 16px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.form-container-file {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.input-box {
    display: flex;
    align-items: center;
    background: white;
    padding: 12px;
    border-radius: 10px;
    width: 100%;
    border: 1px solid #ccc;
}

.input-box input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 16px;
    color: #333;
    background: transparent;
}

.notify-btn {
    background: linear-gradient(to right, #00B3DD, #0075CF);
    color: white;
    padding: 14px 24px;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    font-size: 16px;
    width: 100%;
}

.features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
}

.feature-box {
    gap: 8px;
    width: 100%;
    margin-top: 20px;
}

.card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: 2px solid #0075CF;
    padding: 24px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    width: 100%;
    text-align: center;
    cursor: pointer;
    transition: transform 0.3s ease-out;
}

.card:hover {
    transform: scale(1.05);
}

.icon-container {
    background: linear-gradient(to right, #00B3DD, #0075CF);
    padding: 8px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.icon-container svg {
    width: 24px;
    height: 24px;
    color: white;
}

.card-title {
    font-size: 20px;
    font-weight: bold;
    color: #1F1645;
    margin-bottom: 12px;
}

.card-text {
    color: #003C74;
}


/* Box styling */

.info-box {
    display: flex;
    align-items: center;
    background-color: #ebf8ff;
    padding: 12px 24px;
    border-radius: 50px;
    gap: 8px;
}


/* Icon styling */

.icon {
    width: 24px;
    height: 24px;
    stroke: #00AACE;
}


/* Text styling */

.info-text {
    color: #4a5568;
    font-weight: 500;
}


/* Contact text */

.contact-text {
    text-align: center;
    color: #1F1645;
    margin-top: 20px;
}


/* Contact email */

.contact-email {
    color: #00AACE;
    font-weight: bold;
}

@media (min-width: 768px) {
    .feature-box {
        flex-direction: row;
        text-align: left;
    }
}

.feature-box svg {
    width: 24px;
    height: 24px;
    color: #00AACE;
}

@media (min-width: 768px) {
    .form-container {
        gap: 16px;
    }
}

@media (max-width: 786px) {
    .content {
        position: relative;
        background: white;
        padding: 18px;
        border-radius: 16px;
        text-align: center;
        box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.1);
    }
    .days-time {
        font-size: 32px;
        font-weight: bold;
        background: linear-gradient(to right, #01B0DD, #0169CC);
        -webkit-background-clip: text;
        color: transparent;
    }
    .form-container-file {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: space-between;
        gap: 20px;
    }
    .main-heading {
        font-size: 32px;
        font-weight: bold;
        color: #1C1051;
        margin-top: 40px;
        margin-bottom: 20px;
    }
    .social-gap {
        gap: 20px;
    }
    .title {
        font-size: 24px;
        font-weight: bold;
        background: linear-gradient(to right, #01B0DD, #0169CC);
        -webkit-background-clip: text;
        color: transparent;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 8px;
    }
    .home-hero {
        background-color: #fff;
        width: 100%;
        height: auto;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #fff;
        padding-top: 100px;
    }
}

.thankyou{
    background-color: #fff;
        width: 100%;
        height: 100vh;
        display: flex;
        align-items: center;
        justify-content: center;
}

.sub-text-para{
    font-size: 22px;
}

/*--------------------------------------------------------------
# Footer Disclaimer
--------------------------------------------------------------*/

.footer {
    background: #ffffff;
    border-top: 1px solid #e9ecef;
    padding: 30px 0;
    margin-top: 60px;
}

.disclaimer {
    padding: 20px;
    background: #f8f9fa;
    border-radius: 4px;
    max-width: 600px;
    margin: 0 auto;
}

.disclaimer-text {
    margin: 0;
    color: #6c757d;
    font-size: 14px;
    font-weight: 400;
    text-align: center;
    line-height: 1.5;
}

.disclaimer-text i {
    font-size: 14px;
    color: #6c757d;
    margin-right: 6px;
}

/* Large screens (1200px and up) */
@media (min-width: 1200px) {
    .disclaimer {
        max-width: 700px;
        padding: 25px;
    }
    
    .disclaimer-text {
        font-size: 15px;
    }
}

/* Medium screens (992px to 1199px) */
@media (max-width: 1199px) and (min-width: 992px) {
    .footer {
        padding: 25px 0;
        margin-top: 50px;
    }
    
    .disclaimer {
        max-width: 650px;
        padding: 18px;
    }
}

/* Small screens (768px to 991px) */
@media (max-width: 991px) and (min-width: 768px) {
    .footer {
        padding: 20px 0;
        margin-top: 40px;
    }
    
    .disclaimer {
        padding: 16px;
        margin: 0 20px;
    }
    
    .disclaimer-text {
        font-size: 13px;
        line-height: 1.4;
    }
}

/* Extra small screens (576px to 767px) */
@media (max-width: 767px) and (min-width: 576px) {
    .footer {
        padding: 18px 0;
        margin-top: 35px;
    }
    
    .disclaimer {
        padding: 14px;
        margin: 0 15px;
    }
    
    .disclaimer-text {
        font-size: 12px;
        line-height: 1.4;
    }
    
    .disclaimer-text i {
        font-size: 13px;
        margin-right: 4px;
    }
}

/* Very small screens (480px to 575px) */
@media (max-width: 575px) and (min-width: 480px) {
    .footer {
        padding: 15px 0;
        margin-top: 30px;
    }
    
    .disclaimer {
        padding: 12px;
        margin: 0 12px;
    }
    
    .disclaimer-text {
        font-size: 11px;
        line-height: 1.3;
    }
    
    .disclaimer-text i {
        font-size: 12px;
        margin-right: 3px;
    }
}

/* Extra small screens (below 480px) */
@media (max-width: 479px) {
    .footer {
        padding: 12px 0;
        margin-top: 25px;
    }
    
    .disclaimer {
        padding: 10px;
        margin: 0 8px;
    }
    
    .disclaimer-text {
        font-size: 10px;
        line-height: 1.2;
    }
    
    .disclaimer-text i {
        font-size: 11px;
        margin-right: 2px;
    }
}

/* Landscape orientation for mobile devices */
@media (max-height: 500px) and (orientation: landscape) {
    .footer {
        padding: 10px 0;
        margin-top: 20px;
    }
    
    .disclaimer {
        padding: 8px;
    }
    
    .disclaimer-text {
        font-size: 11px;
    }
}

/*--------------------------------------------------------------
# Modal Styles
--------------------------------------------------------------*/

#modal-success .modal-content {
    border: none;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

#modal-success .modal-body {
    padding: 2rem;
}

#modal-success .btn-primary {
    background-color: #0075CF;
    border-color: #0075CF;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.2s ease;
}

#modal-success .btn-primary:hover {
    background-color: #0056b3;
    border-color: #0056b3;
    transform: translateY(-1px);
}

#modal-success .btn-primary:focus {
    box-shadow: 0 0 0 0.2rem rgba(0, 117, 207, 0.25);
}