*{
    margin: 0;
    padding: 0;
    list-style: none;
    text-decoration: none;
}
body{
    margin-top: 3.5rem;
    width: 100%;
    overflow-x: hidden; 
}
header{
    position: fixed;
    top: 0;
    left: 0;
    width:100%;
    background-color: white;
    z-index: 100;
}

.logo {
    display: inline-flex;
    align-items: center;
    column-gap: .25rem;
    padding-left: 25px;
}
.logo img{
    font-weight: initial;
    width: 170px;
    margin-top: 15px;
}
.logoText{
    margin-left: .5rem;
    font-size: 1.25rem;
    font-weight: bold;
    color: #1f3350;
}

.nav{
    height: 3.5rem;
}
.nav__data{
    height:100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.nav__toggle{
    position: relative;
    width: 50px;
    height: 64px;
}
.nav__menu_logo,
.nav__close_logo{
    position: absolute;
    width: max-content;
    height: max-content;
    inset: 0;
    margin: auto;
    font-size: 1.25rem;
    cursor: pointer;
    transition: opacity .1s, transform .4s;
     padding-top: 15px;
}
.nav__close_logo{
    opacity: 0;
}
@media screen and (max-width: 1037px){
    .nav__menu{
        position: absolute;
        left: 0;
        top: 2.5rem;
        width: 100%;
        background-color: gray;
        height: calc(100vh - 3.5rem);
        overflow: auto;
        pointer-events: none;
        opacity:0;
        transition: top .4s, opacity .3s;
    } 
    .nav__menu::-webkit-scrollbar{
        width: 0;
    }
    .nav__list{
        background-color: white;
        padding-top: 1rem;
    }
}
@media screen and (min-width: 1037px){
    .container{
        margin-inline: auto;
    }
    .nav{
        height: 5.5rem;
        display: flex;
        justify-content: space-between;
        padding-left: 7%;
        padding-right: 7%;
    }
    .nav__toggle{
        display: none;
    }
    .nav__list{
        height: 75%;
        display: flex;
        
    }
    .nav__link,.nav__link_{
        height: 85%;
        padding:0;
        justify-content: initial;
        column-gap: 1rem;
    }
    .dropdown__menu{
       box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    }
    .dropdown__link:hover{
        background-color: #d1e3ff;
    }
    .nav__link_{
        margin-left: 10px;
    }
}
.nav__link{
    color: #1f3350;
    background-color: white;
    font-weight: bold;
    padding: 1rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color .3s;
    cursor: pointer;
}
.nav__link_{
    color: #1f3350;
    background-color: white;
    font-weight: bold;
    padding: 1rem 1.5rem;
    display: flex;
    gap: 5px;
    align-items: center;
    transition: background-color .3s;
    cursor: pointer;
}
.nav__link:hover{
    color: #2c5a9e;
}

.show-menu{
    opacity: 1;
    top: 3.5rem;
    pointer-events: initial;
}
.show-icon .nav__menu_logo{
    opacity: 0;
    transform: rotate(90deg);
}
.show-icon .nav__close_logo{
    opacity: 1;
    transform: rotate(90deg);
}
.dropdown__link{
    padding:.25rem 1.25rem 1.25rem 2.5rem ;
    color: #1f3350;
    font-weight: bold;
    display: flex;
    align-items: center;
    
}
.dropdown__menu{
    max-height: 0;
    overflow: hidden;
    background-color: #ffffff;
    transition: max-height .4s ease-out;
}
.dropdown__item:hover .dropdown__menu{
    max-height: 1000px;
    transition: max-height .4s ease-in;
}
/*end menu*/

/*start-div1*/
.div1{
padding-bottom: 80px;
padding-top: 120px;
background-color: #1a365d;
width: 100%;
}
.div1 h1{ 
    width: 100%;
    height: 48px;
    padding-bottom: 24px;
    font-size: 48px;
    color: white;
}
.div1 p{ 
    font-size: 23px;
    color: white;
    text-align: center;
    margin: 0 auto;
    max-width: 674px; 
    line-height: 1.5;
    padding-bottom: 24px;
    @media (max-width:937px) {
        margin-top: 100px;
    }
}

.div1 div{
    text-align: center;
}
/*end-div1*/
/*start-div2*/
        .container2 {
            max-width: 990px;
            margin: 96px auto;
            background: white;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            overflow: hidden;
        }

        .form-container {
            padding: 40px;
        }

        .form-row {
            display: flex;
            gap: 20px;
            margin-bottom: 20px;
        }

        .form-group {
            flex: 1;
            margin-bottom: 20px;
        }

        .form-group label {
            display: block;
            margin-bottom: 5px;
            color: #2d3748;
            font-weight: 500;
            font-size: 14px;
        }

        .form-group input,
        .form-group select,
        .form-group textarea {
            width: 420px;
            padding: 10px 12px;
            border: 1px solid #e2e8f0;
            border-radius: 4px;
            font-size: 14px;
            background: white;
            gap: 30px;
        }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: #3182ce;
        }

        .form-group textarea {
            resize: vertical;
            min-height: 120px;
            font-family: inherit;
            width: 96%;
        }

        .form-group textarea::placeholder {
            color: #a0aec0;
        }

        .file-group {
            margin-bottom: 20px;
        }

        .file-group label {
            display: block;
            margin-bottom: 5px;
            color: #2d3748;
            font-weight: 500;
            font-size: 14px;
        }

        .file-upload {
            position: relative;
            margin-bottom: 5px;
        }

        .file-upload input[type="file"] {
            width: 100%;
            padding: 10px 12px;
            border: 1px solid #e2e8f0;
            border-radius: 4px;
            font-size: 14px;
            background: white;
        }

        .file-info {
            font-size: 12px;
            color: #718096;
        }

        .checkbox-group {
            margin: 25px 0;
            display: flex;
            align-items: flex-start;
            gap: 10px;
        }

        .checkbox-group input[type="checkbox"] {
            margin-top: 2px;
            width: auto;
        }

        .checkbox-group label {
            font-size: 13px;
            color: #4a5568;
            margin-bottom: 0;
            font-weight: normal;
            line-height: 1.4;
        }

        .submit-btn {
            background: #172554;
            color: white;
            padding: 12px 15px;
            border: none;
            border-radius: 4px;
            font-size: 19px;
            font-weight: 500;
            cursor: pointer;
            margin-left: 35%;
        }

        .submit-btn:hover {
            background: #2a4f7a;
        }

        select {
            appearance: none;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23718096' d='M6 8L2 4h8z'/%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-position: right 12px center;
            background-size: 12px;
            padding-right: 35px;
        }

        input[type="date"] {
            padding: 10px 12px;
        }
        @media (max-width: 768px) {
            .container2 {
                margin: 20px 10px;
                border-radius: 8px;
                box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            }
            
            .form-row {
                flex-direction: column;
                gap: 0;
            }
            
            .form-container {
                padding: 20px;
            }
                        .faq-section {
                padding: 40px 20px;
            }
            
            .faq-grid {
                grid-template-columns: 1fr;
                gap: 30px;
            }
            
            .faq-item {
                padding: 20px;
            }
            
            .faq-title {
                font-size: 24px;
            }
        }
        
        @media (max-width: 480px) {
            .container2 {
                margin: 10px 5px;
            }
            
            .form-container {
                padding: 15px;
            }
            .faq-section {
                padding: 30px 15px;
            }
            
            .faq-item {
                padding: 15px;
            }
            
            .faq-question {
                font-size: 16px;
            }
            
            
            .form-group input,
            .form-group select,
            .form-group textarea {
                padding: 12px;
                font-size: 16px;
            }
            
            .submit-btn {
                width: 100%;
                padding: 15px;
                font-size: 16px;
            }
        }

/*end-div2*/

/*start-div3*/

        .faq-section {
            background-color: #f7f9fc;
            padding: 96px 40px;
            padding-top: 150px;
            margin-top: 0;
        }

        .faq-title {
            text-align: center;
            font-size: 34px;
            font-weight: 600;
            color: #172554;
            margin-bottom: 10px;
        }

        .faq-underline {
            width: 60px;
            height: 3px;
            background-color: #f6ad55;
            margin: 0 auto 50px auto;
        }

        .faq-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            max-width: 900px;
            margin: 0 auto;
        }

        .faq-item {
            background: white;
            padding: 30px;
            border-radius: 8px;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
        }

        .faq-question {
            font-size: 21px;
            font-weight: 600;
            color: #172554;
            margin-bottom: 15px;
            line-height: 1.3;
        }

        .faq-answer {
            font-size: 16px;
            color: #4a5568;
            line-height: 1.6;
        }

/*end-div3*/



/*footer*/
    .footer {
            background-color: #172554;
            color: white;
            padding: 0 10%;
            padding-top: 48px;
            padding-bottom: 15px;
        }
        
        .footer-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
        }
        
        .footer-brand {
            margin-bottom: 2rem;
            display: flex;
            flex-direction: column;
            gap: 5px;
        }
        
        .footer-brand h1 {
            color: white;
            font-size: 1.3rem;
            margin-bottom: 1rem;
        }
        
        .footer-brand p {
            color: #c7d2ec;
            font-size: 1.25rem;
        }
        .bott_logo{
            display: flex;
            gap: 10px;
        }
        .bott_logo img{
            width: 40px;
            height: 40px;
        }
        .bott_logo h1{
            padding-top: 10px;
        }
        .sm-links{
            margin-top: 16px;
            display: flex;
            gap: 10px;
        }
        .footer-section{
            margin-top: 32px;
        }
        .footer-section h2 {
            color: #ffffff;
            font-size: 1.3rem;
            padding-bottom: 1rem;
        }
        
        .footer-links {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 0.8rem;
        }
        
        .footer-links a {
            color: #c7d2ec;
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .footer-links a:hover {
            color: white;
        }
        
        .contact-info {
            list-style: none;
            font-size: 1.15rem;
        }
        
        .contact-info li {
            display: flex;
            align-items: flex-start;
            margin-bottom: 16px;
                        color: #c7d2ec;
        }
        
        
        .footer-bottom {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-top: 24px;
            margin-top: 48px;
            padding-bottom: 18px;
            
        }
        
        .footer-links-horizontal {
            display: flex;
            justify-content: center;
            align-items: center;
            flex-wrap: wrap;
            gap: 1.5rem;
        }
        
        .footer-links-horizontal a {
            color: #a6abc09e;
            text-decoration: none;
            font-size: 1.1rem;
        }
        
        .footer-links-horizontal a:hover {
            color: white;
        }
        
        .copyright {
            color: #a6abc09e;
            font-size: 1.1rem;
        }
        
        @media (max-width: 768px) {
            .footer-container {
                grid-template-columns: 1fr;
            }
             .footer-bottom {
                flex-direction: column;
                gap: 15px;
        }
                .footer-links-horizontal {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 1.5rem;
        }
                .footer-links-horizontal a {
            max-width: 130px;
        }
                .footer-links-horizontal {
            gap: 1rem;
        }
            .footer-section {
                margin-bottom: 2rem;
            }
        }
