*{
    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*/

.process-section {
  padding: 0 20px;
  padding-top: 120px ;
  background-color: #ffffff;
}

.process-container {
  max-width: 1000px;
  margin: 0 auto;
}

.section-title {
  text-align: center;
  font-size: 38px;
  color: #1a365d;
  margin-bottom: 60px;
  margin-right: 20px;
}
.section-title::after {
    margin-left: calc(50% - 40px);;
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: #e9b94a;
    margin-top: 1rem;
    }

.steps-container {
  display: flex;
  flex-direction: row;
  gap: 20px;
  margin-bottom: 60px;
  margin-left: 40px ;
}

.step {
  max-width: 277px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px;
}

.step-number {
  width: 60px;
  height: 60px;
  background-color: #172554;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: bold;
  flex-shrink: 0;
}

.step-content h3 {
  font-size: 1.5rem;
  color: #172554;
  margin-bottom: 10px;
  text-align: center;
}

.step-content p {
  color: #1a365d;
  line-height: 1.6;
  font-size: 1.1rem;
  text-align: center;
}

    .mv-icon{
        width: 60px;
        height: 60px;
        background-color: #172554;
        color: white;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 2rem;
        font-weight: bold;
        flex-shrink: 0;
    }
    
    .mv-icon svg {
        width: 24px;
        height: 24px;
    }

@media (max-width: 768px) {
  .section-title {
    font-size: 2rem;
    margin-bottom: 40px;
  }
  
  .step {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
  }
}


/*end-div2*/

/*start-div3*/

.job-offers-section {
  padding: 60px 20px;
  font-family: Arial, sans-serif;
  max-width: 900px;
  margin: 0 auto;
}

.job-offers-section h1 {
  font-size: 32px;
  margin-bottom: 40px;
}

.job-card {
  margin-bottom: 40px;
    background: white;
    border-radius: 8px;
    padding: 2.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.job-title-container {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.job-card h2 {
  font-size: 19px;
  color: #333;
  margin: 0;
  margin-right: 15px;
}

.job-type {
  background-color: #c7d2ec7f;
  color: #555;
  padding: 3px 10px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: bold;
}

.job-card p {
  color: #555;
  line-height: 1.6;
  margin-bottom: 20px;
}

.apply-link {
  padding: 7px;
  color: #172554;
  text-decoration: none;
  border: solid 1.2px;
  border-radius: 10px;
}

.apply-link:hover {
  background-color: #d1e3ff72;
}

.mission::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;  
    width: 4px;  
    background-color: #2c5a9e;
    border-radius: 8px 0 0 8px; 
}


/*end-div3*/
/*start-div4*/

 .container2 {
            max-width: 950px;
            margin: 0 auto;
            background: white;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            overflow: hidden;
            margin-bottom: 96px;
        }

        .header2 {
            text-align: center;
            padding: 40px 30px;
            background: white;
        }

        .header2 h1 {
            font-size: 2.25rem;
            color: #172554;
            margin-bottom: 35px;
            margin-right: 20px;
            text-align: center;
        }

        .header2 h1::after {
            margin-left: calc(50% - 40px);
            content: '';
            display: block;
            width: 80px;
            height: 4px;
            background-color: #e9b94a;
            margin-top: 1rem;
        }

        .subtitle {
            color: #454d58;
            font-size: 1rem;
        }

        .form-container {
            padding: 30px;
        }

        .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 textarea {
            width: 404px;
            height: 24px;
            padding: 10px 12px;
            border: 1px solid #e2e8f0;
            border-radius: 4px;
            font-size: 14px;
        }
        .form-group select{
            width: 404px;
            height: 24px;
            border: 1px solid #e2e8f0;
            border-radius: 4px;
            font-size: 14px;
        }

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

        .form-group textarea {
            resize: vertical;
            min-height: 100px;
            padding-right: 54%;
            font-family: inherit;
        }

        .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: 15px 15px;
            border: none;
            border-radius: 4px;
            font-size: 16px;
            font-weight: 500;
            cursor: pointer;
            margin-left: 36%;
        }

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

        @media (max-width: 600px) {
            .form-row {
                flex-direction: column;
                gap: 0;
            }
            
            .form-container {
                padding: 20px;
            }
            
            .header2 {
                padding: 30px 20px;
            }
        }
          @media (max-width: 930px) {
            .steps-container {
                display: flex;
                flex-direction: column;
                gap: 20px;
                margin-bottom: 60px;
                margin-left: 40px ;
                justify-content: center;
                align-items: center;
            }
            .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;
            }
            
            .header2 {
                padding: 30px 20px;
            }
            
            .header2 h1 {
                font-size: 1.5rem;
            }
            
            .subtitle {
                font-size: 0.9rem;
            }
 
        }
        
        @media (max-width: 480px) {
            .container2 {
                margin: 10px 5px;
            }
            
            .form-container {
                padding: 15px;
            }
            
            .header2 {
                padding: 25px 15px;
            }
            
            .header2 h1 {
                font-size: 1.3rem;
            }
            
            .form-group input,
            .form-group select,
            .form-group textarea {
                padding: 12px;
                font-size: 16px;
            }
            
            .submit-btn {
                width: 100%;
                padding: 15px;
                font-size: 16px;
            }
        }

/*end-div4*/



/*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;
            }
        }
