*{
    user-select:none;
}

body{
    margin:0;
    overflow-x: hidden;
    background-color: #ffffff;
}

#preloader{
    background:black url('load-35.gif') no-repeat center;
    background-size:30%;
    height:100vh;
    width:100%;
    top:0;
    position:fixed;
    z-index:5000000000;
}

.first-nav{
  align-items: center;
  display:flex;
  justify-content:space-around;
  position:absolute;
  align-content:center;
    z-index:20000000;
  width:100%;

  background:rgba(4, 41, 68, 0.9);

}

.disap-nav{
  align-items: center;
  display:flex;
  justify-content:space-around;
  align-content:center;
  position:static;
  width:100%;
  opacity:0;
  background:rgba(4, 41, 68, 0.365);

}

.firstnavtext{
  background-color:rgba(0, 0, 0, 0.0);
  outline:none;
  border:1px solid white;
  font-size:13px;
   padding:9px 80px 8px 20px;
  border-radius:20px;
  color:white;
}

.secondnavtext{
  background-color:rgba(0, 0, 0, 0.0);
  outline:none;
  border:1px solid white;
  font-size:13px;
  padding:9px 20px 8px 80px;
  border-radius:20px;
  color:white;
}

.firstnavtext::placeholder, .secondnavtext::placeholder{
  color:white;
  opacity:0.6;
}


.first-nav > div > span > i{
  color:rgb(231, 231, 231);
  background-color:gray;
  padding:8px;
  font-size:15px;
  margin:0 5px;
  border-radius:100px;
}

.nav{
    width:100%;
    position:sticky;
    top:0;
    font-family:serif;
    display:flex;
    font-weight:200;
    justify-content: space-around;
    background:#042944;
    align-items: center;
    z-index:20000000;
      color:white;
     box-shadow:0 2px 10px 0 rgba(0, 0, 0, 0.8), 0 6px 20px 0 rgba(0, 0, 0, 0.25);
}

.nav a{
    transition:0.5s;
    color:white;
}



.brand{
    width:80px;
    padding-top:5px;
    padding-bottom:5px;
    
}

.branda{
    width:80px;
    padding-top:5px;
    padding-bottom:5px;
    display:none;
}


.men{
    list-style:none;
    display: flex;
    justify-content: space-around;
    width:70%;
    margin-right:10%;
}

li{
    float:left;
    letter-spacing:2px;
    font-size:13px;
}

li a{
    text-decoration:none;
    color:white;
    transition:0.5s;
}



.button{
    display:none;
}


.line1, .line2, .line3{
    width:20px;
    height:2px;
    background-color:white;
    margin:5px;
    transition:0.5s;
}

.bgx{
     transition:0.5s;
    background-color:black;
}


.button:hover .line1{
    animation-name:line1;
    animation-duration:2s;
}

.button:hover .line2{
    animation-name:line2;
    animation-duration:2s;
}

.button:hover .line3{
    animation-name:line3;
    animation-duration:8s;
}

@keyframes line1{
    0%{margin-right:0px;}
    50%{margin-right:25px;}
    100%{margin-right:0px;}
}

@keyframes line2{
    0%{margin-left:0px;
    background-color:#650167;
}
    50%{margin-left:25px;}
    100%{margin-left:0px;
        background-color:#21710b;
    }
}

@keyframes line3{
    0%{margin-right:0px;}
    50%{margin-right:1px;}
    100%{margin-right:0px;}
}

@media screen and (max-width:1000px){
    .men{
        width:60%;
    }

    li{
        padding:5px;
    }

    

    .landing{
        width:1100px;
    }
}

@media screen and (max-width:768px){
    .first-nav, .disap-nav{
        display:none;
    }

    .nav{
        position:fixed;
    }
    .brand{
        width:100px;
    }

     .branda{
        display: block;
        width:200px;
    }

    .men{
        position:absolute;
        display:flex;
        width:100%;
        height:80vh;
        padding-bottom:150px;
        flex-direction: column;
        right:0;
        color: black;
        top:65px;
        transform: translateX(100%);
        transition:0.5s;
        margin-right:0%;
        background-color:#042944;
        
    }

    li a:hover{
    border-bottom:none;
}

li{
    transition:1s;
    color:white;
}

    li:hover{
    border-bottom:2px solid #b6010f;
    transition-duration:1s;
}

    .menactive{
        transform: translateX(0%);
        transition:0.5s;
    }
    .x1{
        margin:-2px;
        transform: rotate(45deg);
        transition:0.5s;
    }

    .x2{
        margin:-2px;
        transform: rotate(-45deg);
        transition:0.5s;
    }

    .x3{
opacity:0;
        transition:0.5s;
    }

    .button{
        display:block;
        background-color:rgba(158, 158, 158, 0.288);
    }

    .bgx{
     transition:0.5s;
    background-color:white;
}

.bgnav a{
    color:white;
}

    li{
        text-align:center;
        padding-top: 20px;
        width:100%;
        color:white;
    }

    li a{
        color:white;
    }
}

.back-to-top {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 50px;
    height: 50px;
    background: rgba(11, 74, 125, 0.7);
    border: none;
    border-radius: 10px;
    color: white;
    font-size: 24px;
    cursor: pointer;
    display: none; /* Hidden at top */
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.3s ease;
}

.back-to-top.show {
    display: flex;
    opacity: 1;
}

.back-to-top:hover {
    background: rgba(8, 55, 93, 0.7);
}


.contact-section {
    text-align: center;
    padding: 60px 20px;
    font-family:sans-serif;
}

.contact-top {
    color: #a2a420;
    font-weight: 600;
    margin-bottom: 10px;
}

.contact-title {
    font-size: 50px;
    font-weight: 700;
    margin: 0;
}

.contact-subtitle {
    color: #6b7280;
    margin-top: 10px;
    font-size: 17px;
}

.map-container {
    position: relative;
    margin-top: 50px;
    width: 100%;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.world-map {
    width: 100%;
    opacity: 0.95;
}





/* Responsive tweaks */
@media(max-width: 768px) {
    .contact-title {
        font-size: 25px;
        font-weight:900;
    }


    .contact-section {
    margin-top:30%;
    padding: 0px 20px;
}

.contact-subtitle {
    font-size: 13px;
    margin: 0% 10%;
}
}



.contact-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    padding: 60px 20px;
    font-family:sans-serif;
    max-width: 1200px;
    margin: auto;
}

.card {
    background: #fff;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    text-align: left;
    border: 1px solid #e5e7eb;
}

.card .icon {
    font-size: 20px;
    margin-bottom: 12px;
}

.card h3 {
    margin: 0;
    font-size: 20px;
    font-weight: 600;
}

.card p {
    color: #6b7280;
    margin: 8px 0 18px;
    font-size: 15px;
}

/* Buttons */
.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 10px 15px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 12px;
    font-weight: 500;
}

.btn-primary {
    background: #a2a420;
    color: white;
}

.btn-secondary {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    color: #1e293b;
}

/* ---------------- FAQ SECTION ---------------- */
.faq-section-container{
    width:100%;
    background-color: #eeeeee;
}

.faq-section {
    padding: 60px 20px;
    max-width: 1100px;
    margin: auto;
    background-color: #f7f7f7;
}

.faq-section h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 40px;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 35px;
}

.faq-item {
    
}

.faq-item div{
    float:left;
}

.faq-icon {
    margin-right:2%;
    font-size:18px;
    background: #f1f5f9;
    padding: 12px;
    border-radius: 10px;
}

.faq-words{
    width:90%;
}

.faq-item h4 {
    margin: 0;
    font-size: 20px;
    font-family:serif;
}

.faq-item p {
    margin-top: 6px;
    color: #64748b;
    font-size: 12px;
    line-height: 1.5;
    font-family:sans-serif;
}

/* ---------------- RESPONSIVE ---------------- */

@media(max-width: 900px) {
    .contact-cards {
        grid-template-columns: repeat(2, 1fr);
    }
    .faq-grid {
        grid-template-columns: 1fr;
    }
}

@media(max-width: 600px) {
    .contact-cards {
        grid-template-columns: 1fr;
    }
}


iframe{
    width:100%;
    height:400px;
}

.contact-section-footer {
    padding: 60px 5%;
    background: white;
}

.contact-container {
    display: flex;
    justify-content: space-between;
    gap: 60px;
    flex-wrap: wrap;
}

.contact-form, .contact-info {
    flex: 1 1 45%;
    min-width: 320px;
}

.hachtwo {
    font-size: 26px;
    font-weight:100;
    letter-spacing: 2px;
    color: #1d2d44;
}

.underline {
    width: 50px;
    height: 3px;
    background: #718096;
    margin: 10px 0 25px 0;
}

.formation input,
.formation textarea {
    width: 50%;
    padding: 15px 15px;
    margin-bottom: 12px;
    border: 0.5px solid #000;
    border-radius: 25px;
    background-color:#ffffff;
    font-size: 15px;
}

.formation input::placeholder,
.formation textarea::placeholder{
    color:black;
}

.formation input:focus,
.formation textarea:focus{
    border:none;
}

.formation textarea {
    height: 150px;
    resize: none;
    font-family:sans-serif;
}

.checkbox {
    display: flex;
    align-items: center;
    font-family: sans-serif;
    font-weight: 100;
    font-size: 15px;
    margin-bottom: 10px;
}

.checkbox input {
    margin-right: 8px;
    width:2%;
    margin-right:2%;
}

.submit-btn {
    background: #0f2b46;
    color: white;
    padding: 15px 60px;
    border: none;
    border-radius: 30px;
    font-size: 12px;
    cursor: pointer;
    margin-top: 15px;
    font-family: 'Courier New', Courier, monospace;
}

.submit-btn:hover {
    background: #153a5b;
}

.social-icons #img {
    font-size: 25px;
    margin-right: 15px;
    cursor: pointer;
    color: #d2b318;
}

.social-icons #imgs {
    font-size: 25px;
    margin-right: 15px;
    cursor: pointer;
    color: #d2b318;
}

.support-img {
    width:300px;
    margin-top: 15px;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .contact-container {
        flex-direction: column;
    }

    .contact-info {
        margin-top: 0px;
    }

    .formation input,
.formation textarea {
    width: 95%;
    padding:15px 0px 15px 15px;
}

.checkbox input {
    margin-right: 8px;
    width:10%;
    margin-right:2%;
}
}


.footer {
    background: #052845;
    color: #ffffff;
    padding-top: 50px;
    font-family: sans-serif;
}

/* SEARCH BAR */
.footer-search {
    position: relative;
    margin-bottom: 40px;
     margin-left:5%;
    width:40%;
}

.footer-search input {
    width: 100%;
    padding: 16px 50px 16px 20px;
    border-radius: 40px;
    border: 2px solid #ededed;
    background: transparent;
    color: white;
    font-size: 12px;
}

.footer-search input::placeholder{
    color:white;
}

.footer-search #search-icon {
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 22px;
    cursor: pointer;
}

/* GRID LAYOUT */
.footer-grid {
    display: flex;
    margin-left:5%;
    justify-content: space-between;
    gap: 50px;
    flex-wrap: wrap;
}

.footer-column {
    flex: 1 1 250px;
    min-width: 230px;
}

.footer-column h3 {
    font-size: 16px;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    color: #ded2a3;
    text-decoration: none;
    font-size: 13px;
}

/* CONTACT ITEMS */
.contact-item {
    margin-bottom: 20px;
    font-size: 13px;
    line-height: 1.6;
}

#iconate, #iconater, #iconates {
    margin-right: 8px;
}

/* FOOTER BOTTOM */
.footer-bottom {
    background-color:black;
    display: flex;
    justify-content: space-between;
    margin-top: 50px;
    border-top: 1px solid #335066;
    padding:15px 0px;
}

.footer-bottom p {
    color: #c4c4c4;
     margin:0 5%;
    font-size: 16px;
}

.highlight {
    color: #e2c374;
}

/* RESPONSIVE DESIGN */
@media (max-width: 900px) {
    .footer-grid {
        flex-direction: column;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .footer-search input {
        font-size: 16px;
    }
}

@media (max-width: 600px) {
    .footer {
        padding: 40px 5% 0px 0%;
    }

    .footer-column h3 {
        font-size: 18px;
    }

    .footer-column ul li a {
        font-size: 16px;
    }

    .footer-search{
         width:60%;
    }

    .footer-bottom{
        margin-top:0px;
    }

    .footer-search #search-icon {
    right: -20px;
    }

    .footer-search input {
        padding: 12px 40px 12px 15px;
    }

    #search-icon {
        font-size: 18px;
    }
}
