@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Sora:wght@100..800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
body ul {
    padding-left: 0;
    list-style: none;  
}

body ul li {
    list-style: none;   
}
body a{
    text-decoration:none;
}
.head h1 {
    text-align: center;
    font-size: 60px;
    font-family: "DM Sans", sans-serif;
    font-weight: bold;
    color: #1A3A7C;
    margin-bottom: 50px;
}
.nav-cont {
    padding: 0px 80px;
    background: #fff;
    position: fixed; /* changed from relative */
    top: 0;          /* stick to the top */
    width: 100%;     /* full width */
    z-index: 999;    /* stay above other content */
    border-bottom: 2px solid #1A3A7C;
}

.navbar .container-fluid {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Remove mx-auto effect */
.navbar-nav {
    align-items: center;
    gap: 20px;
}

/* Keep your existing styles */
.navbar-brand img {
    width: 150px;
}

.navbar-nav .nav-link {
    font-size: 15px;
    font-weight: bold;
    color: #1A3A7C;
    transition: 0.3s ease;
    font-family: "DM Sans", sans-serif;
    text-transform: uppercase;
}

.navbar-nav .nav-link:hover {
    color: #4D91D6;
}
.navbar .container-fluid {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Push menu to right */
.navbar-collapse {
    flex-grow: 0;   /* Important */
}

.navbar-nav {
    gap: 20px;
    align-items: center;
}
/*.hero {*/
/*        background-image: url(../images/hero-bg-2.png);*/
/*    background-size: cover;*/
/*    background-position: center;*/
/*    background-repeat: no-repeat;*/
/*    min-height: 105vh;*/
/*    color: #fff;*/
/*    margin-top: 75px;*/
/*    display: flex;*/
/*    align-items: center;*/
/*    z-index: -1;*/
/*}*/
.hero {
    position: relative;
    min-height: 105vh;
    margin-top: 75px;
    display: flex;
    align-items: center;
    color: #fff;
    overflow: hidden;
}

/* Video */
.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: -2;
}

/* Overlay */
.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: -1;
}

/* Content */
.hero-container {
    position: relative;
    z-index: 1;
}
.hero .hero-container{
    display: flex;
    gap: 50px;
    align-items: center;
    flex-direction:column;
    margin-top:-140px;
}
.hero .hero-txt{
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 20px;
        margin-top: 150px;
}
.hero .hero-txt h1{
    font-size: 65px;
    font-weight: bold;
     font-family: "Sora", sans-serif;
     color: #fff;
     text-align:center;
     margin-top: 172px;
}
.hero .hero-txt h1 span{
    color: #93C9FF;
}

.hero .hero-txt p{
    font-size: 19px;
    font-family: "DM Sans", sans-serif;
    font-weight: 600;
    text-align:center;
}
.hero .hero-txt .btns{
    display: flex;
    gap: 30px;
    margin:0 auto;
}
.hero .hero-txt .btn-1{
    padding: 15px 30px;
    border-radius: 10px;
    font-weight: bold;
    color: #000;
    cursor: pointer;
    font-size: 18px;
    transition: 0.3s ease;
    background: #fff;
    font-family: "Poppins", sans-serif;
     display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    text-decoration: none;
}
.hero .hero-txt .btn-1:hover {
    transform: translateY(-5px); 
}
.hero .hero-txt .btn-2{
    padding: 15px 30px;
    border-radius: 10px;
    font-weight: bold;
    color: #fff;
    cursor: pointer;
    font-size: 18px;
    transition: 0.3s ease;
    background: transparent;
    border:1px solid #fff;
    font-family: "Poppins", sans-serif;
    text-decoration: none;
}
.hero .hero-txt .btn-2:hover {
    transform: translateY(-5px); 
}
.hero .hero-con{
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 50px;
}
.hero .hero-con .hero-bx{
    display: flex;
    gap: 20px;
    align-items: flex-end;
    margin-top: 150px;
}
.hero .hero-con .hero-bx .bx-1{
   background: rgba(0, 68, 137, 51);
    padding: 38px 35px 50px 35px;
    border-radius: 15px;
    height: 280px;
    border: 1px solid #fff;
    display: flex;
    justify-content: center;
    flex-direction: column;
}
.bx-1 img{
    width: 111px;
    height: 78px;
    margin-bottom: 20px;
}
.bx-2 img{
     width:111px;
    height: 78px;
    margin-bottom: 20px;
}
.bx-1 h3{
font-size: 30px;
font-family: "Sora", sans-serif;
font-weight: bold;
}
.bx-1 p{
   font-size: 16px;
font-family: "DM Sans", sans-serif;
font-weight: 400; 
 color: rgba(255, 255, 255, 0.8);
}
.hero .hero-con .hero-bx .bx-2{
    background: rgba(0, 68, 137, 51);
    padding: 34px 45px 30px 45px;
    border-radius: 15px;
    height: 240px;
    border: 1px solid #fff;
    display: flex;
    justify-content: center;
    flex-direction: column;
}
.bx-1 h3{
font-size: 30px;
font-family: "Sora", sans-serif;
font-weight: bold;
}
.bx-2 p{
   font-size: 16px;
font-family: "DM Sans", sans-serif;
font-weight: 400; 
 color: rgba(255, 255, 255, 0.8);
}
.about{
    padding: 80px 0px;
}
.about .about-content{
    display: flex;
    gap: 50px;
    
}
.about-con{
    display: flex;
    flex-direction: column;
    width: 50%;
}
.about-con h4{
    font-size: 14px;
    font-weight: 400;
    font-family: "DM Sans", sans-serif;
    color: #4A90D9;
    margin-bottom: 20px;
}
.about-con h1{
    font-size: 48px;
    font-family: "DM Sans", sans-serif;
    font-weight: bold;
    color: #1A3A7C;
    margin-bottom: 50px;
}
.about-con h1 span{
    color: #4A90D9;
}
.about-con p{
    font-size: 18px;
    font-weight: 400;
    font-family: "DM Sans", sans-serif;
    color: #4B5563;
    margin-bottom: 50px;
}
.about-con ul{
margin-bottom: 50px;
}
.about-con ul li{
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    font-weight: 400;
    font-family: "DM Sans", sans-serif;
    color: #374151;
    margin-bottom: 10px;
}
.about-con .btn-bot{
    display: flex;
    gap: 50px;
    align-items:center;
}
.about-con .btn-bot .btn{
    padding: 15px 30px;
    border-radius: 10px;
    font-weight: bold;
    color: #fff;
    cursor: pointer;
    font-size: 18px;
    transition: 0.3s ease;
    background: #4D91D6;
    font-family: "Poppins", sans-serif;
}
.about-con .btn-bot .btn:hover {
    transform: translateY(-5px); 
}
.about-con .btn-bot img{
    width: 100px;
    height: 100px;
}
.about .about-con-2{
display: flex;
flex-direction: column;
gap: 20px;
}
.ab-bx{
display: flex;
gap: 20px;
}
.ab-bx .ab-bx-1{
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
  background: white;
  padding: 20px;
  border-radius: 20px;
  width: 288px;
  height: 140px;
  align-items: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}
.ab-bx .ab-bx-1 h5{
    font-size: 40px;
    font-weight: bold;
    font-family: "DM Sans", sans-serif;
    color: #1A3A7C;
    margin-bottom: 0px;
}
.ab-bx .ab-bx-1 p{
    font-size: 18px;
    font-weight: 400;
    font-family: "DM Sans", sans-serif;
    color: #4B5563;
    margin-bottom: 0px;
}
.ab-bx .ab-bx-2{
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
  background: #4D91D6;
  padding: 20px;
  border-radius: 20px;
  width: 288px;
  height: 140px;
  align-items: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}
.ab-bx .ab-bx-2 h5{
    font-size: 54px;
    font-weight: bold;
    font-family: "DM Sans", sans-serif;
    color: #fff;
    margin-bottom: 0px;
}
.ab-bx .ab-bx-2 p{
    font-size: 18px;
    font-weight: 400;
    font-family: "DM Sans", sans-serif;
    color: #fff;
    margin-bottom: 0px;
}
.ab-txt-bx{
    display: flex;
    gap: 20px;
    background: white;
     box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
     padding: 20px ;
    align-items: center;
}
.ab-txt-bx .ab-txt{
    display: flex;
    flex-direction: column;
    
}
.ab-txt h2{
    font-size: 18px;
    font-weight: 600;
    font-family: "DM Sans", sans-serif;
    color: #1A3A7C;
}
.ab-txt p{
    font-size: 16px;
    font-weight: 400;
    font-family: "DM Sans", sans-serif;
    color: #4B5563;
    margin-bottom: 0px;
}

.offer{
    padding-top: 80px;
}
.offer h4{
    font-size: 14px;
    font-weight: 400;
    font-family: "DM Sans", sans-serif;
    color: #4A90D9;
    margin-bottom: 20px;
}
.offer .con{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.offer .con h1{
    font-size: 48px;
    color: #1A3A7C;
     font-family: "DM Sans", sans-serif;
     font-weight: bold;
}
.offer .con h1 span{
    color: #4A90D9;
}
.offer .con p{
    color: #4B5563;
    font-size: 16px;
     font-family: "DM Sans", sans-serif;
     font-weight: 400;
         width: 350px;
}
.offer .offer-card{
    display: flex;
    flex-direction: column;
    margin-top: 60px;
}
.offer-con{
    margin-top: 40px;
    background: #fff;
    padding: 30px 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border-radius: 20px;
    
}
.offer-con .icon{
    margin-top: 10px;
}
.offer-con h3{
    font-size: 26px;
     font-family: "DM Sans", sans-serif;
     font-weight: bold;
    color: #1A3A7C;
    margin: 30px 0px;
}
.offer-con P{
    font-size: 18px;
     font-family: "DM Sans", sans-serif;
     font-weight: 400;
    color: #4B5563;
    margin: 30px 0px;
}
.offer-con .btn{
     padding: 15px 30px;
    border-radius: 10px;
    font-weight: bold;
    color: #fff;
    cursor: pointer;
    font-size: 18px;
    transition: 0.3s ease;
    background: #0C2555;
     font-family: "DM Sans", sans-serif;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}
.offer-con .btn:hover {
    transform: translateY(-5px); 
}

.jobs{
    padding: 80px 0px;
    background:#F9FAFB;
}
.jobs h4{
    font-size: 14px;
    font-weight: 400;
    font-family: "DM Sans", sans-serif;
    color: #4A90D9;
    margin-bottom: 20px;
}
.jobs h2{
    font-size: 18px;
    font-weight: 400;
    font-family: "DM Sans", sans-serif;
    color: #000;
    margin-bottom: 20px;
    text-align:center;
}
.jobs .con{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
}
.jobs .con h1{
    font-size: 48px;
    color: #4A90D9;
     font-family: "DM Sans", sans-serif;
     font-weight: bold;
}
.jobs .con h1 span{
    color: #1A3A7C;
}
.jobs .con .btn{
     padding: 15px 30px;
    border-radius: 10px;
    font-weight: bold;
    color: #fff;
    cursor: pointer;
    font-size: 18px;
    transition: 0.3s ease;
    background: #4A90D9;
     font-family: "DM Sans", sans-serif;
}
.jobs .job-card{
    height: 650px;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    justify-content: end;
    padding:30px ;
    margin-bottom: 30px;
    background: #1A3A7C;
    border-radius: 20px;
}
.job-image{
    width:100%;
    height:250px;
    object-fit:cover;
    border-radius:20px;
    margin-bottom:30px;
}
.job-card h3{
    font-size: 28px;
    color: #fff;
     font-family: "DM Sans", sans-serif;
     font-weight: bold;
     margin-bottom:20px;
}
.job-card ul{
    height: 400px;
    overflow-y: auto;
    width:100%;
}
/* Scrollbar width */
.job-card ul::-webkit-scrollbar{
    width: 8px;
}

/* Scrollbar track */
.job-card ul::-webkit-scrollbar-track{
    background: #f1f1f1;
    border-radius: 10px;
}

/* Scrollbar handle */
.job-card ul::-webkit-scrollbar-thumb{
    background: #2196F3;
    border-radius: 10px;
}

/* Scrollbar handle on hover */
.job-card ul::-webkit-scrollbar-thumb:hover{
    background: #2196F3;
}

.job-card ul li{
     font-size: 18px;
    color: #fff;
     font-family: "DM Sans", sans-serif;
     font-weight: 400;
}
.job-card p{
     font-size: 18px;
    color: #fff;
     font-family: "DM Sans", sans-serif;
     font-weight: 400;
}
.job-card .btn{
    padding: 15px 30px;
    border-radius: 10px;
    font-weight: bold;
    color: #10284D;
    cursor: pointer;
    font-size: 18px;
    transition: 0.3s ease;
    background: #fff;
     font-family: "DM Sans", sans-serif;
     width: 100%;
     display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top:30px;
}
.job-card .btn:hover{
    border: 1px solid white;
    color: white;
    background: transparent;
}
.job-card .btn img:first-child{
    display: inline-block;
}

.job-card .btn img.hover{
    display: none;
}

.job-card .btn:hover img:first-child{
    display: none;
}

.job-card .btn:hover img.hover{
    display: inline-block;
}
.contact{
    padding: 80px 0px;
}
.contact h4{
    font-size: 14px;
    font-weight: 400;
    font-family: "DM Sans", sans-serif;
    color: #4A90D9;
    margin-bottom: 20px;
}
.contact .con{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
}
.contact .con h1{
    font-size: 48px;
    color: #4A90D9;
     font-family: "DM Sans", sans-serif;
     font-weight: bold;
}
.contact .con h1 span{
    color: #1A3A7C;
}
.contact .con p{
    color: #4B5563;
    font-size: 16px;
    font-family: "DM Sans", sans-serif;
    font-weight: 400;
    width: 350px;
}
.contact-container {
  margin: auto;
  display: flex;
  gap: 30px;
}

/* LEFT PANEL */
.contact-info {
  flex: 1;
  background: linear-gradient(135deg, #1A3A7C, #001F5C);
  color: #fff;
  padding: 40px 40px 40px 40px;
  border-radius: 12px;
}

.contact-info h2 {
  margin-bottom: 30px;
  font-size: 27px;
  color: White;
  font-family: "DM Sans", sans-serif;
}

.info-item {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
  align-items: flex-start;
}

.info-item .label {
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 0px;
  font-family: "DM Sans", sans-serif;
  color: rgba(255, 255, 255, 0.7);
}
.info-item p{
    font-size: 18px;
  font-weight: 500;
  margin-bottom: 0px;
  font-family: "DM Sans", sans-serif;
  color: #fff;
}

.promise {
  margin-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.2);
  padding-top: 20px;
  width: 80%;
}

.promise h4 {
 font-size: 18px;
  font-weight: 500;
  margin: 20px 0px;
  font-family: "DM Sans", sans-serif;
  color: #fff;
}
.promise p{
    font-size: 16px;
  font-weight: 400;
  margin-bottom:0px;
  font-family: "DM Sans", sans-serif;
  color: rgba(255, 255, 255, 0.8);
}

/* RIGHT PANEL */
.contact-form {
  flex: 2;
  background: #fff;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}


.input-group {
  flex: 1;
  display: flex;
  flex-direction: column;
   margin-bottom: 20px;
}



.input-group label {
  font-size: 16px;
  margin-bottom: 12px;
  font-family: "DM Sans", sans-serif;
  font-weight: 500;
  color: #374151;
}

input,
select,
textarea {
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 8px 8px 8px 8px !important;
  font-size: 18px;
  font-family: "DM Sans", sans-serif;
  font-weight: 400;
  outline: none;
  transition: 0.3s;
  color: #9CA3AF;
}

textarea {
  min-height: 120px;
  resize: none;
}

input:focus,
select:focus,
textarea:focus {
  border-color: #1A3A7C;
}

.submit-btn {
  padding: 15px 30px;
    border-radius: 10px;
    font-weight: bold;
    color: #fff;
    cursor: pointer;
    font-size: 18px;
    transition: 0.3s ease;
    background: #1A3A7C;
     font-family: "DM Sans", sans-serif;
     width: 100%;
     display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.submit-btn:hover {
  background: #1A3A7C;
}

.form-note {
  margin-top: 15px;
  font-size: 14px;
  font-family: "DM Sans", sans-serif;
  text-align: center;
  font-weight: 400;
  color: #6B7280;
}
.map{
    padding: 80px 0px;
    margin: 0px 145px ;
}
.map img{
    width: 100%;
    height: 891px;
    border-radius:20px;
}
.trusted{
    padding-top: 80px;
    text-align: center;
}
.trusted h1{
    font-size: 60px;
    font-family: "Sora", sans-serif;
    font-weight: bold;
    color: #1E1E1E;
}
.logo-slider {
  padding: 40px 0;
  margin: 50px 0px;
}

.logoSwiper {
  padding-bottom: 40px;
}

.logoSwiper .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
}

.logoSwiper img {
  max-height: 50px;
  width: auto;
  opacity: 0.8;
  transition: 0.3s ease;
}

.logoSwiper img:hover {
  opacity: 1;
}
/* Pagination Container */
.logoSwiper .swiper-pagination {
  position: relative;
  margin-top: 80px;
}

/* Default Bullet (Small Line) */
.logoSwiper .swiper-pagination-bullet {
  width: 30px;
  height: 6px;
  border-radius: 20px;
  background: #000;
  opacity: 0.3;
  transition: all 0.3s ease;
  margin: 0 6px !important;
}

/* Active Bullet (Wide Pill) */
.logoSwiper .swiper-pagination-bullet-active {
  width: 60px;
  opacity: 1;
  background: #000;
}

.newsletter-row {
    padding-bottom: 80px ;
}
.newsletter-sec {
    text-align: center;
}
.newsletter-sec h2:before {
    content: url(../images/star.png);
    position: absolute;
    left: -150px;
    bottom: -40px;
}
.newsletter-sec h2 {
    color: #272727;
    text-align: center;
    font-size: 42px;
     font-family: "DM Sans", sans-serif;
    font-weight: bold;
    text-transform: capitalize;
    width: 50%;
    margin: 0 auto 20px;
    position: relative;
}
.newsletter-sec p {
    color: #090909;
    text-align: center;
    font-size: 18px;
     font-family: "DM Sans", sans-serif;
    font-style: normal;
    font-weight: 400;
    line-height: 33px;
    letter-spacing: -0.72px;
    text-transform: capitalize;
}
.newsletter-sec form {
    position: relative;
    max-width: 900px;
    margin: auto;
}
.newsletter-sec input[type="email"] {
    width: 80%;
    height: 70px;
    padding: 0 80px 0 25px;
    font-size: 18px;
    border-radius: 10px;
    border: 1px solid #000;
    background: transparent;
    font-family: "DM Sans", sans-serif;
    outline: none;
    box-shadow: 0 6px 0 #000;
    margin: 0 auto;
    color: #000;
}
.newsletter-sec button {
    position: absolute;
    top: 50%;
    right: 110px;
    transform: translateY(-50%);
    height: 50px;
    width: 60px;
    border: none;
    border-radius: 4px;
    background: #FF8A05;
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    transition: 0.3s ease;
    padding: 0 50px 0 30px;
}

footer#footer-row {
    background: #002856;
    margin: 0px 20px;
    border-radius: 30px;
    padding: 50px 100px 50px;
}
footer#footer-row .footer-sec img {
   width: 219px;
}
footer#footer-row .footer-sec ul.link-flex {
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: end;
}
footer#footer-row .footer-sec ul.link-flex li {
    list-style: none;
    margin-left: 50px;
}
footer#footer-row .footer-sec ul.link-flex li a {
    color: #FFF;
    font-size: 20px;
     font-family: "DM Sans", sans-serif;
    font-style: normal;
    font-weight: 400;
    line-height: 155%;
    letter-spacing: -0.19px;
    text-transform: capitalize;
    text-decoration: none;
}
.footer-bot{
    display: flex;
    align-items: center;
justify-content: space-between;
margin: 50px 0px;
}
.footer-bot .contact-2 ul{
    display: flex;
    gap: 50px;
    margin-bottom: 0px;
}
.footer-bot .contact-2 ul li{
    font-size: 16px;
    color: white;
    display: flex;
    gap: 10px;
    align-items: center;
    font-weight: 400;
     font-family: "DM Sans", sans-serif;
}
.footer-bot .contact-2 ul li a{
    font-size: 16px;
    color: white;
    display: flex;
    gap: 10px;
    align-items: center;
    font-weight: 400;
     font-family: "DM Sans", sans-serif;
}
footer#footer-row .social-icons ul {
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: flex-end;
}
footer#footer-row .social-icons ul li {
    list-style: none;
    margin-left: 20px;
}
footer#footer-row .social-icons ul li i {
    color: #FF8A05;
    font-size: 24px;
}
.copyright{
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid #ffffffb7;
    padding-top:50px ;
}
.copyright h2{
    font-size: 18px;
    font-weight: 500;
    font-family: "Poppins", sans-serif;
    line-height: 22px;
    color: #fff;
    letter-spacing: 35%;
    text-transform: capitalize;
}
.copyright h3{
    font-size: 18px;
    font-weight: 500;
    font-family: "Poppins", sans-serif;
    line-height: 22px;
    color: #fff;
    letter-spacing: 35%;
    text-transform: capitalize;
}
.footer-sec{
    display: flex;
    gap: 50px;
    align-items: center;
}
.footer-img-2{
    width: 180px !important;
    height: 168px;
}
.footer-top{
display: flex;
justify-content: space-between;
align-items: center;
}

.banner {
    background-image: url('../images/hero-bg-4.png');
    min-height: 800px;               
    display: flex;                    
    justify-content: center;          
    align-items: center;              
    text-align: center;               
    background-size: cover;           
    background-position: center;      
    background-repeat: no-repeat;     
    margin-top: 60px;
    position: relative;
    z-index: -1;
}
.banner h1{
    font-size: 80px;
     font-weight: bold;
     font-family: "Sora", sans-serif;
     color: #fff;
}

.testimonial-section {
  padding: 80px 100px;
  background: #f8f9fa;
  text-align: center;
  font-family: "DM Sans", sans-serif;
  position: relative;
  overflow: hidden;
}

/* Bottom Left Glow */
.testimonial-section::before {
  content: "";
  position: absolute;
  bottom: 120px;
  left: -120px;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, #4A90D9 0%, #1A3A7C 60%, transparent 70%);
  filter: blur(80px);
  opacity: 0.6;
}

/* Bottom Right Glow */
.testimonial-section::after {
  content: "";
  position: absolute;
  top: 120px;
  right: -120px;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, #4A90D9 0%, #1A3A7C 60%, transparent 70%);
  filter: blur(80px);
  opacity: 0.6;
}
/*.testimonial-section h1{*/
/*    border: 2px solid #1A3A7C;*/
/*    color: #1A3A7C;*/
/*    text-transform: uppercase;*/
/*    font-size: 15px;*/
/*    width: 130px;*/
/*    font-weight: 600;*/
/*    padding: 5px;*/
/*    display: flex;*/
/*    align-items: center;*/
/*    justify-content: center;*/
/*    margin: 0 auto;*/
/*    margin-bottom: 20px;*/
/*    border-radius: 20px;*/
/*}*/

.section-title {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 50px;
  color:#1A3A7C;
}

.testimonial-card{
  position: relative;
  background: #f7f7f7;
  padding: 35px;
  border-radius: 14px;
  max-width: 600px;
  margin: auto;
  transition: all 0.4s ease;
  box-shadow: 0 8px 25px rgba(0,0,0,0.06);
  cursor:pointer;
  border:2px solid #1A3A7C;
}

/* Hover Effect */
.testimonial-card:hover{
  background: #1A3A7C;
  box-shadow: 0 18px 40px rgba(0,0,0,0.15);
}

/* Change text color on hover */
.testimonial-card:hover h4,
.testimonial-card:hover span,
.testimonial-card:hover p{
  color:#fff;
}

/* Quote Icon */
.quote-icon{
  position: absolute;
    left: 37px;
    top: 10px;
    font-size: 75px;
    color: #1A3A7C;
    transition: 0.4s;
}

.testimonial-card:hover .quote-icon{
  color:#fff;
}

/* Top section */
.test-top{
  display:flex;
  align-items:center;
  gap:15px;
  margin-top:20px;
}

.testimonial-card img{
  width:60px;
  height:60px;
  border-radius:50%;
  object-fit:cover;
}
.user-info{
    display:flex;
    flex-direction:column;
    gap:5px
}
/* Text styles */
.user-info h4{
  margin:0;
  font-size:16px;
  font-weight:600;
  transition:0.3s;
  text-align:left;
}

.user-info span{
  font-size:13px;
  color:#888;
  transition:0.3s;
  text-align:left;
}

.testimonial-card p{
  font-size:15px;
  color:#555;
  line-height:1.6;
  transition:0.3s;
  text-align:left;
  margin-top:35px;
   height: 60px;          /* fixed height */
  overflow-y: auto;
}
.testimonial-card p::-webkit-scrollbar{
    width: 8px;
}

/* Scrollbar track */
.testimonial-card p::-webkit-scrollbar-track{
    background: #f1f1f1;
    border-radius: 10px;
}

/* Scrollbar handle */
.testimonial-card p::-webkit-scrollbar-thumb{
    background: #2196F3;
    border-radius: 10px;
}

/* Scrollbar handle on hover */
.testimonial-card p::-webkit-scrollbar-thumb:hover{
    background: #2196F3;
}
.testimonialSwiper {
  position: relative;
}
.testimonial-prev,
.testimonial-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 999;
}

.testimonial-prev {
  left: 20px;   /* move outside card */
}

.testimonial-next {
  right: 20px;  /* move outside card */
}

.testimonial-prev img,
.testimonial-next img {
  width: 50px;
}
.ser-img{
    object-fit:cover;
    border-radius:20px;
}
.custom-translate {
    position: relative;
    width: 170px;
    font-family: sans-serif;
}

.translate-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #4D91D6;
    color: white;
    padding: 12px 15px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 16px;
}

.translate-btn .icon {
    margin-right: 8px;
}

.arrow {
    margin-left: 8px;
}

.lang-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: white;
    list-style: none;
    padding: 0;
    margin: 5px 0 0 0;
    border-radius: 6px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    overflow: hidden;
    z-index: 999;
}

.lang-menu li {
    padding: 10px 15px;
    cursor: pointer;
    font-size: 14px;
}

.lang-menu li:hover {
    background: #f1f1f1;
}
/* Team Section Styles */
.team-section {
  padding: 80px 20px;
  text-align: center;
}

.team-section h2 {
  font-size: 48px;
    font-family: "DM Sans", sans-serif;
    font-weight: bold;
  color: #1A3A7C;
      margin-bottom: 50px;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
  justify-items: center;
}

.team-member {
  background: #fff;
  border-radius: 15px;
  padding: 20px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
  transition: transform 0.3s, box-shadow 0.3s;
  width:100%;
  border:3px solid #1A3A7C;
}

.team-member img {
  width: 150px;
  height: 150px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 15px;
}

.team-member h3 {
  font-size: 20px;
  margin-bottom: 5px;
  font-family: "DM Sans", sans-serif;
  color: #4A90D9;
}

.team-member p {
  font-size: 16px;
  color: #666;
}

.team-member:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}
.terms{
    padding: 80px 0px;
    font-family: "DM Sans", sans-serif;
}
.head-logo{
    display:flex;
    align-items:center;
    justify-content:center;
}
.head-logo img{
    width:150px;
}
.terms h1{
     font-size: 35px;
  margin-bottom: 5px;
    font-weight:600;
  font-family: "DM Sans", sans-serif;
  color: #1A3A7C;
  margin-bottom:40px;
}
.terms .effective{
    font-size:18px;
    color:#4a4a4a;
    font-weight:400;
    margin-bottom:20px;
}
.terms .effective span{
    font-weight:600;
    color:#000
}
.terms p{
    font-size:18px;
    margin-bottom:15px;
    font-weight:500;
}
.terms h3{
    font-size:20px;
     color: #1A3A7C;
    font-weight:600;
    margin-bottom: 25px;
}
.terms ul{
    margin-left:20px;
}
.terms ul li{
     font-size:18px;
     font-weight:500;
}
.core{
    padding:80px 0px;
}
.core h1{
        font-size: 48px;
    font-family: "DM Sans", sans-serif;
    font-weight: bold;
    color: #1A3A7C;
    margin-bottom: 50px;
    text-align:center;
}
.core-item{
    display: flex;
    align-items: center;
    gap: 20px;
    border: 2px solid #1A3A7C;
    border-radius: 15px;
    padding: 20px;
    transition: 0.3s;
    cursor:pointer;
}

.core-item img{
    width: 80px;
}

/* hide hover image initially */
.core-item .img-hover{
    display: none;
}

/* hover background */
.core-item:hover{
    background:#1A3A7C;
}

/* change text color */
.core-item:hover h3,
.core-item:hover p{
    color:#fff;
}

/* image swap */
.core-item:hover .img-default{
    display:none;
}

.core-item:hover .img-hover{
    display:block;
}

.core-item h3{
    font-size:30px;
    font-family:"DM Sans", sans-serif;
    font-weight:bold;
    color:#1A3A7C;
}

.core-item p{
    font-size:18px;
    font-family:"DM Sans", sans-serif;
    font-weight:500;
    margin-bottom:0;
    color:#000;
}
.what-we-do{
    padding:80px 0;
    background:#f7f9fc;
    font-family:"DM Sans", sans-serif;
}

.section-title{
    text-align:center;
    max-width:800px;
    margin:auto;
}

.section-title h2{
    font-size: 48px;
    font-family: "DM Sans", sans-serif;
    font-weight: bold;
    color: #1A3A7C;
    margin-bottom: 50px;
    text-align:center;
}

.section-title p{
    font-size:18px;
    color: #000;
}

/* GRID */

.services-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
    margin-top:50px;
}

.service-item{
    background:#fff;
    padding:30px;
    border-radius:12px;
    text-align:center;
    border:1px solid #eee;
    transition:0.3s;
}

.service-item .icon{
    font-size:40px;
    margin-bottom:15px;
}

.service-item h3{
    font-size:20px;
    color:#1A3A7C;
    font-weight: 600;
}

.service-item:hover{
    background:#1A3A7C;
    transform:translateY(-5px);
}

.service-item:hover h3{
    color:#fff;
}

.bottom-text{
    text-align:center;
    max-width:900px;
    margin:40px auto 0;
    font-size:18px;
    font-weight: 500;
}
.staffing-process{
    padding:80px 0;
    background:#fff;
     font-family: "DM Sans", sans-serif;
}

.section-title{
    text-align:center;
    margin-bottom:50px;
}

.section-title h2{
    font-size: 48px;
    font-family: "DM Sans", sans-serif;
    font-weight: bold;
    color: #1A3A7C;
    margin-bottom: 50px;
    text-align:center;
}

/* GRID */

.process-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
}

/* STEP CARD */

.process-item{
    text-align:center;
    padding:30px;
    border:1px solid #eee;
    border-radius:12px;
    transition:.3s;
    background:#f9f9f9;
}

.step{
    display:inline-block;
    font-size:32px;
    font-weight:700;
    color:#1A3A7C;
    margin-bottom:10px;
}

.process-item h3{
    font-size:22px;
    color:#1A3A7C;
    margin-bottom:10px;
}

.process-item p{
    font-size:16px;
    color:#555;
}

/* hover */

.process-item:hover{
    background:#1A3A7C;
    transform:translateY(-5px);
}

.process-item:hover h3,
.process-item:hover p,
.process-item:hover .step{
    color:#fff;
}
.industries{
    padding:80px 0;
    background:#f7f9fc;
    font-family: "DM Sans", sans-serif;
}

.section-title{
    text-align:center;
    max-width:750px;
    margin:auto;
    margin-bottom:50px;
}

.section-title h2{
   font-size: 48px;
    font-family: "DM Sans", sans-serif;
    font-weight: bold;
    color: #1A3A7C;
    margin-bottom: 50px;
    text-align:center;
}

.section-title p{
    font-size:18px;
    color:#555;
}

/* GRID */

.industries-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

/* CARD */

.industry-card{
    background:#fff;
    padding:30px;
    border-radius:12px;
    border:1px solid #eee;
    text-align:center;
    transition:.3s;
}

.industry-card .icon{
    font-size:40px;
    margin-bottom:15px;
}

.industry-card h3{
    font-size:22px;
    color:#1A3A7C;
    margin-bottom:10px;
}

.industry-card p{
    font-size:16px;
    color:#555;
}

/* hover */

.industry-card:hover{
    background:#1A3A7C;
    transform:translateY(-5px);
}

.industry-card:hover h3,
.industry-card:hover p{
    color:#fff;
}
.why-trust{
    padding:80px 0;
    background:#fff;
     font-family: "DM Sans", sans-serif;
}

.section-title{
    text-align:center;
    margin-bottom:50px;
}

.section-title h2{
    font-size: 48px;
    font-family: "DM Sans", sans-serif;
    font-weight: bold;
    color: #1A3A7C;
    margin-bottom: 50px;
    text-align:center;
}

/* GRID */

.trust-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

/* ITEM */

.trust-item{
    display:flex;
    align-items:center;
    gap:15px;
    padding:20px;
    border:1px solid #eee;
    border-radius:10px;
    transition:.3s;
    background:#f9f9f9;
}

.trust-item .icon{
    font-size:22px;
    color:#1A3A7C;
}

.trust-item h3{
    font-size:18px;
    margin:0;
    color:#1A3A7C;
}

/* hover */

.trust-item:hover{
    background:#1A3A7C;
}

.trust-item:hover h3,
.trust-item:hover .icon{
    color:#fff;
}

/* bottom text */

.trust-text{
    text-align:center;
    max-width:850px;
    margin:40px auto 0;
    font-size:18px;
    color:#555;
}
.labor-fast{
    padding:80px 0;
  
     font-family: "DM Sans", sans-serif;
}

.labor-content{
    max-width:800px;
}

.labor-fast h2{
    font-size: 48px;
    font-family: "DM Sans", sans-serif;
    font-weight: bold;
    color: #1A3A7C;
    margin-bottom: 50px;
}

.labor-fast p{
    font-size:18px;
    margin-bottom:25px;
}

.labor-fast h4{
    font-size:20px;
    margin-bottom:15px;
}

.labor-list{
    list-style:none;
    padding:0;
    margin-bottom:30px;
}

.labor-list li{
    position:relative;
    padding-left:28px;
    margin-bottom:10px;
    font-size:18px;
}

.labor-list li:before{
    content:"✔";
    position:absolute;
    left:0;
    color:#1A3A7C;
}

/* CTA BUTTON */

.cta-btn{
    display:inline-block;
    background:#1A3A7C;
    color:#fff;
    padding:14px 28px;
    border-radius:8px;
    font-weight:600;
    text-decoration:none;
    transition:.3s;
    border:2px solid #1A3A7C;
}

.cta-btn:hover{
    background:#fff;
    color:#1A3A7C;
    border:2px solid #1A3A7C;
}
.staff-ser{
    padding: 80px 0px;
    position:relative;
}
.staff-ser h1{
    font-size: 50px;
    color: #000;
    font-family: "DM Sans", sans-serif;
    font-weight: bold;
    margin-bottom:30px
}
.st-ser-bx{
    display: flex;
    justify-content: space-between;
}
.main-line{
    position: absolute;
    width: 165px;
    top: 63%;
}
.net-line-1{
    width: 210px;
    height: 2px;
    position: absolute;
    left: 35%;
    top: 75%;
}
.net-line-2{
        width: 210px;
    height: 2px;
    position: absolute;
    left: 61%;
    top: 75%;
}
.staff-ser .st-ser{
    display:flex;
    flex-direction:column;
    align-items:center;
    gap:20px
}
.staff-ser .st-ser img{
    width:100px
}
.staff-ser .st-ser h3{
    font-size: 25px;
    color: #000;
    font-family: "DM Sans", sans-serif;
    font-weight: bold;
}
.staff-ser .st-ser p{
    font-size: 18px;
    color: #000;
    font-family: "DM Sans", sans-serif;
    font-weight: 400;
    width:350px;
    text-align:center
}
.staff-con{
    display:flex;
    gap:50px;
    align-items:center;
    margin-bottom:60px;
}
.staff-con p{
    font-size: 18px;
    font-family: "DM Sans", sans-serif;
    font-weight: 400;
    color: #4B5563;
    margin: 30px 0px;
}
/*=======================================================*/
.contac {
    background-image: url(../images/cona-imag.png);
    min-height: 700px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-position: top;
    background-repeat: no-repeat;
    margin-top: 160px;
    position: relative;
    z-index: -1;
    background-size: cover;
}
.service-banner {
    position: relative;
    width: 100%;
    margin-top:160px;
    height: 700px; 
    overflow: hidden;
}

.service-banner-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}