*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:Arial, sans-serif;
}

html, body{
  overflow-x:hidden;
}

body{
  width:100%;
  margin:0;
  padding-top:160px; 
}

.container{
  width:100%;
  overflow-x:hidden;
}

.site-header{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  z-index:9999;
  background:white;
  box-shadow:0 2px 10px rgba(0,0,0,0.08);
}

/* TOP NAV */
.topnav{
  font-size:12px;
  background:#0a4a7a;
  color:#fff;
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:8px 20px;
}

.icons a{
  font-size:14px;
  margin-left:12px;
  color:white;
}

.topnav p{
  font-size:10px;
}

/* MIDDLE NAV */
.middlenav{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:15px 20px;
}

.logo{width:180px;}

.info{
  display:flex;
  gap:15px;
  font-size:12px;
}

.info i{
  font-size:16px;
  color: #0a4a7a;
}
.info p{
  font-size: 13px;
  color: #0a4a7a;
}

/* NAVBAR */
.navbar{
  background:#0a4a7a;
  position:relative;
  z-index:1000;
}

.menu{
  display:flex;
  justify-content:center;
  gap:40px;
  list-style:none;
  padding:15px 0;
}

.menu li{position:relative;}

.menu a{
  color:#fff;
  text-decoration:none;
  font-size:10px;
}

.menu li:hover>a{color:#ff9800;}

/* MEGA MENU */
.services{position:static;}

.mega-menu{
  display:none;                  
  position:fixed;
  left:0;
  right:0;
  top: 190px;
  width:1000px;             
  margin:auto;             
  background:#fff;
  padding:15px 20px;       
  box-shadow:0 4px 10px rgba(0,0,0,0.2);
  border-radius: 10px;
  min-height:220px;        
}

.services:hover .mega-menu{display:block;}

.mega-inner{
  max-width:1200px;
  margin:auto;
  display:flex;
  gap:40px;
}

.section { 
    flex:1;                                            
    opacity:0.8; 
    line-height: 1.5;
}

.section h3{
  margin-bottom:15px;
  color:#0a4a7a;                    
  font-size:12px;
}

.section p{
  font-size:10px;              
  text-align:justify;
}

.section ul{list-style:none;}

.section li{
  padding:7px 0;
  cursor:pointer;
  font-size:11px;                              
}

.section li:hover{color:#ff9800;}

.section img{
  width:100%;
  max-width:200px;
  border-radius:10px;
  object-fit:cover;
}

/* READ MORE BUTTON */
.read-more{
  display:inline-block;
  margin-top:15px;
  padding:8px 18px;
  background:#e53935;     
  color:#fff;
  text-decoration:none;
  font-size:12px;
  font-weight:600;
  border-radius:4px;
  transition:0.3s ease;
}

.read-more:hover{
  background:#b71c1c;      
}
/*==================================navbar code end=============================================*/
/* ====================================== main  SLIDER ============================== */
.hero-slider{
  width:100%;
  height:100vh;
  position:relative;
  overflow:hidden;  
}

.hero-slide{
  position:absolute;
  inset:0;
  opacity:0;
  transition:opacity 1s ease, transform 1s ease;
  transform:scale(1.05);
}

.hero-slide.is-active{
  opacity:1;
  transform:scale(1);
}

.hero-slide img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.slide-text{
  position:absolute;
  left:50%;
  transform:translate(-50%, -50%);
  color:#fff;
  font-weight:bold;
  opacity:0;
  text-shadow:0 4px 20px rgba(0,0,0,0.6);
  text-align:center;
  width:80%;
}

.slide-heading{
  top:45%;
  font-size:48px;
}

.slide-subtext{
  top:55%;
  font-size:32px;
}

.from-left{animation:slideFromLeft 1.5s forwards;}
.from-right{animation:slideFromRight 1.5s forwards;}

@keyframes slideFromLeft{
  from{transform:translate(-150%, -50%); opacity:0;}
  to{transform:translate(-50%, -50%); opacity:1;}
}

@keyframes slideFromRight{
  from{transform:translate(150%, -50%); opacity:0;}
  to{transform:translate(-50%, -50%); opacity:1;}
}

@media(max-width:768px){
  .slide-heading{font-size:26px;}
  .slide-subtext{font-size:18px;}
}

/*----------------------------------our services----------------------------------*/

.feature-section{
  width:90%;
  margin:auto;
  padding:60px 0;
}

.feature-heading{
  text-align:center;
  font-size:32px;
  color:#261f61;
  margin-bottom:40px;
}

.feature-grid{
  display:grid;
  grid-template-columns: repeat(4, 260px);
  gap:25px;
  justify-content:center;
  text-align:center;
}

.feature-card{
  background:#fff;
  padding:30px 20px;
  border-radius:15px;
  box-shadow:0 8px 20px rgba(0,0,0,0.08);
  transition:all 0.4s ease;
  cursor:pointer;
  position:relative;
  overflow:hidden;
}
.feature-card::before{
  content:"";
  position:absolute;
  top:0;
  left:-100%;
  width:100%;
  height:100%;
  background:linear-gradient(120deg,#261f61,#6c63ff);
  transition:0.4s;
  z-index:0;
}

.feature-card:hover::before{
  left:0;
}

.feature-card i,
.feature-card h3,
.feature-card p,
.feature-card a{
  position:relative;
  z-index:1;
  transition:0.3s;
}


.feature-card i{
  font-size:40px;
  padding-bottom:10px;
  color:#005a9e;
}
@keyframes iconBounce{
  0%,100%{ transform:translateY(0); }
  30%{ transform:translateY(-8px); }
  60%{ transform:translateY(-4px); }
}

.feature-card:hover i{
  color:#fff;
  animation:iconBounce 0.6s ease;
}
.feature-card h3{
  font-size:18px;
  margin-bottom:15px;
  color:#261f61;
}

.feature-card p{
  font-size:12px;
  color:#555;
  text-align:justify;
  line-height:1.6;
}

.feature-card:hover h3,
.feature-card:hover p{
  color:#fff;
}

.feature-card a{
  display:block;         
  margin-top:20px;
  font-size:14px;
  text-decoration:none;
  color:#005a9e;
  font-weight:600;
  text-align:right;       
}
.feature-card:hover a{
  color:#fff;
  transform:scale(1.05);
}
.feature-card:hover{
  transform:translateY(-12px) scale(1.03);
  box-shadow:0 20px 40px rgba(0,0,0,0.2);
}

@media(max-width:1100px){
  .feature-grid{
    grid-template-columns: repeat(2, 260px);
  }
}

@media(max-width:600px){
  .feature-grid{
    grid-template-columns: 1fr;
  }
}


/*===================== our services=================*/
.section-title{
  text-align:center;
  margin:40px 0 25px;
  color:#192c65;
}

/* SCROLL */
.scroll-wrapper{
  overflow:hidden;
  width:100%;
}

.card-track{
  display:flex;
  gap:20px;
  width:max-content;
  padding:0 30px;
  animation: scrollLeft 25s linear infinite;
}

.scroll-wrapper:hover .card-track{
  animation-play-state: paused;
}


.service-card{
  width:240px;
  height:200px;
  position:relative;
  border-radius:14px;
  overflow:hidden;
  flex-shrink:0;
  box-shadow:0 8px 20px rgba(0,0,0,0.08);
}

.service-card img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:0.4s;
}


.card-overlay{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,0.15);
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  text-align:center;
  padding:14px;
  transition:0.4s;
}


.card-overlay h3{
  color:#fff;
  font-size:16px;
  margin:0;
  transition:0.4s;
}


.card-overlay p{
  color:#fff;
  font-size:12px;
  line-height:1.4;
  margin-top:4px;
  text-align: justify;
  opacity:0;
  transform:translateY(15px);
  transition:0.4s;
}


.service-card:hover img{
  opacity:0.3;
}

.service-card:hover .card-overlay{
  background:rgba(0,0,0,0.55);
}

.service-card:hover h3{
  transform:translateY(-18px);
}

.service-card:hover p{
  opacity:1;
  transform:translateY(0);
}

@keyframes scrollLeft{
  0%{ transform:translateX(0); }
  100%{ transform:translateX(-50%); }
}








/* ================= OUR COMPANY ================= */

.our-company{
  width:100%;
  display:flex;
  justify-content:space-between;
}

.our_company_main h2{
  text-align:center;
  color:rgb(43,43,81);
  font-size:40px;
  padding:30px;
}

.our-company-content{
  width:60%;
  text-align:justify;
  padding:10px 20px;
  margin: 10px 10px 10px 60px;
}

.our-company-content h3{
  font-size:20px;
  color:rgb(19,19,91);
}

.our-company-content p {
  font-size:12px;
  padding-bottom: 5px;
  opacity: 0.7;
}
.our-company-content li{
   font-size:12px;
  padding-bottom: 5px;
  margin-bottom: 10px;
  margin-left: 10px;
   opacity: 0.7;

}

.our-company-content span{
  color:rgb(95,10,192);
  font-size:16px;
}

.our-company-image{
  width:40%;
  margin:10px 20px 40px;
}

.our-company-image img{
  max-width:100%;    
  height:auto;       
}

.award{
  display:flex;
}

.award img{
  width:60px;
  height:60px;
}
.award p{
  padding-top: 10px;
}
.our-company-content,
.our-company-image{
  opacity: 0;
  transition: all 5s ease;
}

.our-company-content{
  transform: translateX(-120px);
}

.our-company-image{
  transform: translateX(120px);
}


.our-company-content.show,
.our-company-image.show{
  opacity: 1;
  transform: translateX(0);
}
/*---------------------------------------why choose ------------------------------*/

.choose-about-section{
  width:100%;
  padding:100px 10%;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:80px;
  overflow:hidden;
}

.choose-image-box{
  position:relative;
  width:450px;
  height:320px;
}

.choose-img1{
  width:350px;
  height:240px;
  object-fit:cover;
  border-radius:12px;
  position:absolute;
  left:0;
  top:0;

  transform:translateX(-120px);
  opacity:0;
  transition:1s ease;
}

.choose-img2{
  width:300px;
  height:250px;
  object-fit:cover;
  border-radius:12px;
  position:absolute;
  left:170px;
  top:90px;
  box-shadow:0 10px 25px rgba(0,0,0,0.2);

  transform:translateX(-120px);
  opacity:0;
  transition:1.2s ease;
}

.choose-image-box img:hover{
  transform:scale(1.05) !important;
}

.choose-content{
  max-width:500px;
}
.choose-content p{
 font-size: 14px;
}
.choose-line{
  opacity:0;
  transform:translateX(80px);
  transition:0.7s ease;
}

.choose-line:nth-child(1){transition-delay:0.2s;}
.choose-line:nth-child(2){transition-delay:0.4s;}
.choose-line:nth-child(3){transition-delay:0.6s;}
.choose-line:nth-child(4){transition-delay:0.8s;}

.choose-line:hover{
  color:#112b6d;
  letter-spacing:0.2px;
}

.choose-title{
  font-size:34px;
  margin-bottom:15px;
  color:#0a4a7a;
}

.choose-desc{
  font-size:15px;
  line-height:1.7;
  color:#555;
  margin-bottom:15px;
}
.choose-show .choose-img1,
.choose-show .choose-img2{
  transform:translateX(0);
  opacity:1;
}

.choose-show .choose-line{
  transform:translateX(0);
  opacity:1;
}


    /* -------------------------- team-cards ------------------------------- */


 .our_advisors{
      font-size: 20px;
      text-align: center;
      color: #192c65;
       margin-top: 10px;
    }
 .team-container{
    display:flex;
    justify-content:center;
    gap:30px;
    padding:40px;
}

.team-card{
    width:260px;
    background:#fff;
    text-align:center;
    padding:20px;
     /* padding-left: 50px; */
    border-radius:12px;
    box-shadow:0 3px 10px rgba(0,0,0,0.1);
    transition:0.4s ease;
    overflow:hidden;
}

.team-card:hover{
    transform:translateY(-10px);
    box-shadow:0 12px 25px rgba(0,0,0,0.15);
}


.img-box{
    width:150px;
    height:150px;
    object-fit: cover;
    position:relative;
    overflow:hidden;
    border-radius:50%;
    padding-left: 10px;
      margin:0 auto 15px; 
}

.img-box img{
    /* width:100%;
    height:100%; */
    width: 150px;
    height: 150px;
    /* margin-top: 10px; */
   
    transition:0.5s ease;
}





.team-card:hover .img-box img{
    transform:scale(1.15);
}


.social-icons{
    position:absolute;
    bottom:-50px;
    left:50%;
    transform:translateX(-50%);
    display:flex;
    gap:10px;
    opacity:0;
    transition:0.4s ease;
}


.social-icons a{
    width:35px;
    height:35px;
    border-radius:50%;
    background:#00aaff;
    display:flex;
    justify-content:center;
    align-items:center;
    color:#fff;
    font-size:16px;
}


.team-card:hover .social-icons{
    bottom:10px;
    opacity:1;
}

.role{
    color:#00aaff;
    margin-top:5px;
    font-size:14px;
}

.desc{
    font-size:14px;
    color:#555;
}

/*--------------------------- logo container code------------------------------*/


 .logo-container{
    display:flex;
    justify-content:center;
    gap:40px; 
    padding:40px 0;
     background-color:rgb(206, 206, 208);
}

.logo-card{
    width:160px;
    height:120px;
    background:rgba(35, 44, 30, 0.1);
    border:2px solid transparent;
    backdrop-filter: blur(5px);
    border-radius:8px;
    display:flex;
    justify-content:center;
    align-items:center;
    transition:0.3s ease;
}

.logo-card img{
    width:100px;
    transition:0.3s;
}


.logo-card:hover{
    transform:scale(1.08);
    box-shadow:0 0px 18px 0px grey;
}

.logo-card:hover img{
    transform:scale(1.15);
}


  /*----------------------------- growth chart  --------------------*/

.growth {
    width: 100%;
    height: 500px;
    display: flex;
    margin-top: 60px;
    overflow: hidden;
    background: #fff;
}


.growth-content {
    width: 50%;
    font-size: 12px;          
    text-align: left;
    padding-left: 110px;
    padding-top: 40px;
    margin-right: 30px;

    opacity: 0;
    transform: translateX(-100px);
    transition: 2s cubic-bezier(0.25, 1, 0.5, 1);
}

.growth-content h1{
    color: rgb(14, 14, 81);
    font-size: 30px;
    margin-bottom: 20px;
}

.growth-author {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.growth-author img{
    width: 60px;
    height: 60px;
    border-radius: 10px;
}

.growth-author h3{
    padding-left: 10px;
    font-size: 14px;
    margin: 0;
}

.growth-content p{
    line-height: 1.7;
    color: #444;
}

.growth-logo{
    width: 50%;
    height: 300px;
    padding-top: 40px;
    text-align: center;

    opacity: 0;
    transform: translateX(100px);
    transition: 2s cubic-bezier(0.25, 1, 0.5, 1);
}

.growth-logo h1{
    font-size: 30px;
    color: rgb(14, 14, 81);
    margin-bottom: 20px;
}

.growth-logo img{
    width: 70%;
}

.growth.show .growth-content{
    opacity: 1;
    transform: translateX(0);
}

.growth.show .growth-logo{
    opacity: 1;
    transform: translateX(0);
}


@media(max-width:900px){
    .growth{
        flex-direction: column;
        height: auto;
        padding-bottom: 40px;
    }

    .growth-content,
    .growth-logo{
        width: 100%;
        padding-left: 40px;
        padding-right: 40px;
        transform: translateX(0);
    }
}


 /*========================================  footer  code ====================================*/

    .footer {
     width: 100%;
    height: 250px;
    display: flex;
    border: 1px solid rgb(198, 195, 195);
     background-color: #fdfdfe;
      color:#122736;
      opacity: 0.9;
    text-align: center;
    justify-content: space-around;
    margin-top: 5px;
    padding: 20px;
    box-sizing: border-box;
}
.footer1 {
    width: 300px;
    display: block;
    text-align: justify;
    padding-left: 20px;
    font-size: 12px;
     opacity: 0.9;
}
.footer1 img{
  width: 230px;
  height: 120px;
}
.footer1 a{
    color:#122736;
    font-size: 25px;
    padding-left: 15px;
      opacity: 0.9;
}
.footer2 {
    width: 300px;
    flex-direction: column;
     color:#122736;
      opacity: 0.9;
    
}
.footer2 h3{
    font-size: 16px;
}
.footer2 a{
    display: flex;
    padding-left: 100px;
      color:#122736;
      opacity: 0.9;
     font-size: 12px;
	text-decoration: none;
}
.footer3 {
      width: 300px;
     flex-direction: column;
    margin-left: 10px;
     font-size: 20px;
}
.footer3 h3{
    font-size: 16px;
}
.footer3 a{
    display: flex;
    padding-left: 80px;
	padding-bottom:5px;
  color:#122736;
      opacity: 0.9;
    font-size: 12px;
	text-decoration: none;
}
.footer4 {
    width: 300px;
   flex-direction: column;
  text-align: justify;
    font-size: 12px;
     opacity: 0.9;
  
   
}
.footer4 i{
	  font-size: 12px;
	padding-bottom: 10px;
	
}
