:root{

    --blue:rgba(1,72,134,255);
    --darkBlue:#001D38;
    --black:#1a1a1b;
    --darkGrey: #333333;
    --lightGrey:#ebebeb;
    --offWhite:#FFF;
    --lightBlue:#a9e5fa; 
    --yellow:#ffc002;
    --red: #d9534f;
    --green: rgba(63, 130, 105, 1);
}

*{
    font-family: 'Poppins', sans-serif;
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    text-decoration: none;
    list-style: none;
}

::selection{
    background-color: var(--lightBlue);
    color: var(--darkBlue);
}

 .header .linkedin,.header .facebook{
  color: var(--darkBlue);
  transition: all 0.3s !important;

 }

  .linkedin:hover{
    color: #0e76a8;
    cursor: pointer;
  
  }

/* header start */

.top{
    position: fixed;
    left: 0;
    top: 0;
    right: 0; 
    z-index: 100; 
}

.header{
    background-color: var(--offWhite);
    color: var(--darkBlue);
    height: 40px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    font-size: 15px;
}

.header i:not(.header .left i),.header .left > p{
    color: var(--blue);
}

.header .left,.header .right{
    width: 60%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header .right{
    width: 100%;
}

.header .left .media{
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 15px;
}

.header .left .media a{
    margin-left: 10px;
}

.header .left .media a:hover{
    color: var(--yellow);
    transition: all 0.5s ease-in-out;
}

.header .right p{
    margin-left: 20px;
}

.header .right .icon{
    margin-right: 5px;

}

/* header end */


/* navbar start */

.navbar{
    background-color: var(--blue);
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding: 0 50px;
    position: absolute;
    top: 40px;
    left: 0;
    right: 0;
    transition: all 0.5s;
    padding: 40px 10px;
}

.navbar a{
    color: var(--offWhite);
}



.navbar #logo img{
    width: 100px;
    font-weight: 700;
}

.navbar .links{
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    transition: all 0.3s ease-in-out;
    width: 55%;
    font-size: 18px;
    font-weight: 500;
}

.navbar .links a:hover, .hamburger {
    transition: all 0.5s ease-in-out;
    cursor: pointer;
}
  
.navbar a::after{
    content: "";
    display: block;
    background-color: var(--yellow);
    width: 0%;
    height: 2px;
    margin: auto;
    transition: all 0.4s ease-in-out;
}
  
  
.navbar a:hover::after,  .navbar a.active::after {
  width: 100%;
}


  .hamburger .bar{
    width: 25px;
    height: 3px;
    background-color: var(--offWhite) !important;
    border-radius: 30px;
    display: block;
    transition: all 0.5s ease-in-out;
    margin: 5px auto;
  }

  .hamburger{
    display: none;
  }

  @media (min-width:1200px) {
    .navbar .links{
        width: 40%;
    }
  }

  @media (max-width:768px) {

    .header{
        display: none;
    }

    .navbar{
        justify-content: space-between;
        top: 0;
        padding: 40px 30px;
    }

    .hamburger{
        display: block;
        transition: all 1s linear;
    }

    .hamburger.active .bar:nth-child(2){
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1){
        transform: translateY(8px) rotateZ(45deg);
    }

    .hamburger.active .bar:nth-child(3){
        transform: translateY(-8px) rotateZ(-45deg) !important;
    }

    .navbar .links{
        position: fixed;
        flex-direction: column;
        background-color: var(--blue);
        width: 100%;
        transition: all 0.3s linear;
        top: 70px;
        left: -100%;       
    }

    .navbar .links a{
        margin-top: 2.5px;

        padding: 15px;
    }

  
    .navbar .links.active {
        left: 0;
      }
}

/* navbar end */

/* header end */

.banner {
    position: relative;
    width: 100vw !important;
    height: 80vh;
    background-image: url(../cover.jpg);
    background-size: cover;
   
  }
  
   /* Create a gradient overlay using pseudo-element */
   .gradient-overlay::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, var(--blue), rgba(0, 0, 0, 0.8)); 
}

  /* Style the "About Us" text */
  .about-us-text {
    position: absolute;
    top: 35%; /* Adjust the vertical position */
    left: 50%; /* Adjust the horizontal position */
    transform: translate(-50%, -50%);
    text-align: center;
  font-size: 20px;
  width: 35%;
    color: var(--yellow); /* Adjust the text color */
    z-index: 1;
    opacity: 0; /* Initially set to transparent */
    animation: slide-up-fade 2s ease forwards; /* Apply slide-up-fade animation */
  }

  @keyframes slide-up-fade {
    0% {
      opacity: 0;
      transform: translateX(-50%) translateY(100%);
    }
    100% {
      opacity: 1;
      transform: translateX(-50%) translateY(0%);
    }
  }
  .about-us-text h2 {
    font-size: 2.5em;
    margin-bottom: 10px;
  }
  .about-us-text h1 {
    font-size: 3em;
    margin-bottom: 10px;
  }
  
  .about-us-text p {
    font-size: 1.2em;
  }

.info {
    flex-basis: 400px;
}
@media screen and (max-width: 1200px) 
{  .about-us-text {
    width: 45%;
    font-size: 18px;
    
}
    
}


@media screen and (max-width: 992px) 
{  .about-us-text {
    width: 60%;
    font-size: 16px;
}
    
}

@media screen and (max-width: 768px) 
{  .about-us-text {
    width: 70%;
    font-size: 15px;
}
    
}


@media screen and (max-width: 600px) 
{  .about-us-text {
    width: 70%;
    font-size: 14px;
}
    
}

@media screen and (max-width: 500px) 
{  .about-us-text {
    width: 85%;
    font-size: 10px;
}
    
}

@media screen and (max-width: 300px) 
{  .about-us-text {
    width: 85%;
    font-size: 10px;
}
    
}
/*  */


.main{
    display: flex;
    flex-direction: column;
    align-items: center;
}

.general-info{
    display: flex;
    justify-content: space-around;
    align-items: center;
    width: 85%;
    padding: 100px 0 50px 0 ;
}

.general-info .right{
    width: 50%;
    height: 100%;

}

.general-info .left{
    width: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-position-x: center;
    background-image: url(../we.png);
    background-size: cover;
    height: 600px;
}

.main.visonMisson .left{
    background-image: url(../about.jpg);
}

.general-info .left::before{
    content: "";
    display: inline-block;
    border: 4px solid var(--blue);
    width: 100%;
    height: 100%;
    position: relative;
    left: -20px;
    top: -20px;
}



.general-info .right{
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
    gap: 10px;
    justify-content: space-around;
}

.general-info .right h1{
    color: var(--blue);
    font-size: 37.5px;
}

.general-info .right p{
    font-size: 16px;
        text-align: justify;
}



@media screen and (max-width: 1200px) {

    .general-info{
        width: 90%;
    }
    .general-info .right h1{
        color: var(--blue);
        font-size: 27.5px;
    }
    
    .general-info .right p{
        font-size: 15px;
    }

    .general-info .left{
        width: 390px;
        height: 550;
    }

}

@media screen and (max-width: 992px) {

    .general-info{
        width: 95%;
    }
    .general-info .right h1{
        color: var(--blue);
        font-size: 25px;
    }
    
    .general-info .right p{
        font-size: 14px;
    }

    .general-info .left{
        width: 330px;
        height: 500;
        background-position-x: center;
    }

    .general-info .left::before{
        left: -15px;
        top: -15px;
    }

}


@media screen and (max-width: 768px) {

    .general-info,.vison-misson{
        width: 95%;
        flex-direction: column;
        gap: 35px;
    }
    .general-info .right,.vison-misson{
        width: 80%;
        text-align: center;
    }
    .general-info .right h1, .vison-misson h1{
        color: var(--blue);
        font-size: 25px;
    }
    
    .general-info .right p,.vison-misson p{
        font-size: 14px;
    }

    .general-info .left{
        width: 360px;
        height: 470;
        background-position-x: center;
    }

    .general-info .left::before{
        left: -20px;
        top: -20px;
    }

    .main.visonMisson  .general-info .left{
        display: none;
    }

}

@media screen and (max-width: 500px) {

    .general-info .left{
        width: 300px;
        height: 436px;
        background-size: contain;
        background-position-x: center;
    }

    .general-info .left::before{
        left: -17.5px;
        top: -17.5px;
    }

    .general-info .right,.vison-misson{
        width: 90%;
    }
    .general-info .right h1,.vison-misson h1{
        color: var(--blue);
        font-size: 23.5px;
    }
    
    .general-info .right p,.vison-misson p{
        font-size: 13px;
    }

}


@media screen and (max-width: 400px) {

    .general-info .left{
        width: 274px;
        height: 398px;
        background-size: contain;
        background-position-x: center;
    }

    .general-info .left::before{
        left: -12.5px;
        border-width: 3px;
        top: -12.5px;
    }

    .general-info .right h1,.vison-misson h1{
        color: var(--blue);
        font-size: 20px;
    }
    
    .general-info .right p,.vison-misson p{
        font-size: 11px;
    }
}


@media screen and (max-width: 300px) {

    .general-info .left{
        width: 210px;
        height: 300px;
        background-repeat: no-repeat;
        background-size: contain;
        background-position-x: center;
    }

    .general-info .left::before{
        left: -7.5px;
        border-width: 3px;
        top: -7.5px;
    }

    .general-info .right,.vison-misson{
        width: 95%;
    }

    .general-info .right h1,.vison-misson h1{
        color: var(--blue);
        font-size: 18px;
    }
    
    .general-info .right p,.vison-misson p{
        font-size: 10px;
    }
}


/* vison and misson */

.vison-misson{
    width: 80%;
    display: flex;
    flex-direction: column;
    padding: 0 0 50px 0;

}

.vison-misson h1{
    color: var(--blue);
}

/* why choose us */

.why-choose-us{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    flex-direction: column;
    background-color: var(--darkBlue);
    color: var(--offWhite);
    padding: 50px 10px;
}

.why-choose-us .elements{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
   text-align: center;
    gap: 30px;
}

.why-choose-us .elements .box{
    width: calc(85% / 3);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.why-choose-us .elements .box img{
    width: 100px;
}

.why-choose-us .elements  .icon-title{
    color: var(--yellow);
    font-size: 18px;
}
.why-choose-us .elements .box .text{
    width: 75%;
   
     text-align: justify;

}

.why-choose-us  h1{
  text-align: justify;
}


@media screen and (max-width: 992px) {
    .why-choose-us .elements .box img{
        width: 80px;
    }

    .why-choose-us .elements .box .text{
        width: 75%;
        font-size: 14px;
         text-align: justify;
    
    }


}

@media screen and (max-width: 768px) {
    .why-choose-us .elements .box img{
        width: 70px;
    }

    .why-choose-us .elements .box .text{
        width: 90%;
        font-size: 13px;
       text-align: justify;
    
    }

    .why-choose-us .elements  .icon-title{
        font-size: 16px;
    }

    
}

@media screen and (max-width: 600px) {

    .why-choose-us h1{
        font-size: 25px;
    }
    .why-choose-us .elements .box img{
        width: 65px;
    }

    .why-choose-us .elements .box .text{
        width: 95%;
        font-size: 12px;
        text-align: justify;
    
    }

    .why-choose-us .elements  .icon-title{
        font-size: 15px;
    }
}

@media screen and (max-width: 500px) {
    .why-choose-us .elements .box{
        width: calc(85% / 2);
    }
    .why-choose-us .elements .box img{
        width: 65px;
    }

    .why-choose-us .elements .box .text{
        width: 100%;
        font-size: 11px;
       text-align: justify;
    
    }

    .why-choose-us .elements  .icon-title{
        font-size: 14px;
        width: 100%;
    }
}


@media screen and (max-width: 400px) {
    .why-choose-us .elements .box{
        width: calc(85% / 2);
    }
    .why-choose-us .elements .box img{
        width: 55px;
    }

    .why-choose-us .elements .box .text{
        width: 100%;
        font-size: 10px;
       text-align: justify;
    
    }

    .why-choose-us .elements  .icon-title{
        font-size: 12px;
        width: 100%;
    }
}

@media screen and (max-width: 400px) {
    .why-choose-us .elements .box{
        width: calc(85%);
    }
    .why-choose-us .elements .box img{
        width: 55px;
    }

    .why-choose-us .elements .box .text{
        width: 90%;
        font-size: 10px;
     text-align: justify;
    
    }

    .why-choose-us .elements  .icon-title{
        font-size: 12px;
        width: 100%;
    }
}







/* Footer Start */

footer {
    position: relative;
    padding-top: 20px;
}
  
  footer #top {
    display: flex;
    align-items: start;
    justify-content: space-around;
    flex-wrap: wrap;
    background-color: var(--darkBlue);
    padding: 20px;
  }
  
  footer #top,
  footer #top a {
    color: var(--offWhite);
  }
  
  footer #top .title {
    color: var(--darkGreen);
    pointer-events: none;
    font-weight: 700;
  }
  
  footer #top .logo-footer {
    align-self: center;
  }
  
  footer .bottom,
  footer #top .logo-footer img {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  footer #top .contact-footer ul {
    display: flex;
    align-items: start;
    justify-content: space-around;
    flex-direction: column;
    height: 100%;
  }
  
  footer #top .contact-footer ul li {
    padding: 5px 0;
  }
  
  footer #top .contact-footer ul li span:first-of-type {
    padding-right: 5px;
  }
  
  footer .bottom {
    
    background-color: var(--darkGreen);
    padding: 20px;
    color: var(--white);
  }
  
  footer #top .logo-footer img {
    width: 135px;
  }
  
  .about-footer {
    width: 30%;
  }
  
  footer #top .about-footer .social {
    font-size: 1.4em;
    display: flex;
    align-items: center;
    justify-content: start;/*changed*/
    gap: 25px;
    padding: 20px 0px;
  }

    
  footer #top li a
  {
    transition: all 0.75s;
  }
  
  footer #top li a span {
    opacity: 0;
    transition: all 0.75s;
  }
  
  footer #top li a:hover,
  footer #top li:hover {
    transition: all 0.3s;
    color: var(--darkGreen);
    transform: translateX(-5px);
  }
  
  footer #top .contact-footer li:nth-child(1):hover span:first-child {
    color: var(--red);
  }
  
  footer #top .contact-footer li:nth-child(2):hover span:first-child {
    color: var(--green);
  }
  
  footer #top .contact-footer li:nth-child(3):hover span:first-child {
    color: var(--lightBlue);
  }
  
  footer #top .links li a:hover span {
    opacity: 1;
  }
  




  .social i:hover {
    transform: translateY(-3px);
    transition: all 0.6s;
    cursor: pointer;
  }
  
  .facebook:hover {
    background: #3a5795;
    color: #1c3977;
    background: linear-gradient(to bottom, #3a5795 0%, #2b4886 100%);
    background: -webkit-linear-gradient(top, #3a5795 0%, #2b4886 100%);
    background: -moz-linear-gradient(top, #3a5795 0%, #2b4886 100%);
    background: -o-linear-gradient(top, #3a5795 0%, #2b4886 100%);
    background: -ms-linear-gradient(top, #3a5795 0%, #2b4886 100%);
    -ms-background-clip: text;
    -webkit-background-clip: text;
    -o-background-clip: text;
    -moz-background-clip: text;
    -webkit-text-fill-color: transparent;
    -o-text-fill-color: transparent;
    -ms-text-fill-color: transparent;
    -moz-text-fill-color: transparent;
  }
  
  .whatsapp:hover {
    color: #00cf4d;
  }
  
  .instagram:hover {
    background: #f09433;
    background: -moz-linear-gradient(
      45deg,
      #f09433 0%,
      #e6683c 25%,
      #dc2743 50%,
      #cc2366 75%,
      #bc1888 100%
    );
    background: -webkit-linear-gradient(
      45deg,
      #f09433 0%,
      #e6683c 25%,
      #dc2743 50%,
      #cc2366 75%,
      #bc1888 100%
    );
    background: linear-gradient(
      45deg,
      #f09433 0%,
      #e6683c 25%,
      #dc2743 50%,
      #cc2366 75%,
      #bc1888 100%
    );
    -ms-background-clip: text;
    -webkit-background-clip: text;
    -o-background-clip: text;
    -moz-background-clip: text;
    -webkit-text-fill-color: transparent;
    -o-text-fill-color: transparent;
    -ms-text-fill-color: transparent;
    -moz-text-fill-color: transparent;
  }

  
  footer #top .title, footer #top .social{
    align-self: self-start;
  }

  footer #top > div{
    width: 25%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: justify;
  }

  footer #top .contact-footer .location {
    width: 85%;
  }

  footer #top .links {
    width: fit-content;
  }

  footer #top .links .title{
    align-self: self-start;
  }

  @media only screen and (max-width: 992px) {

    footer #top .title {
      font-size: 18px;
      font-weight: 500;
    }
    footer #top .txt {
      font-size: 14px;
      font-weight: 500; text-align: justify;
    }

  }
  @media only screen and (max-width: 768px) {
    footer #top .title {
      font-size: 16px;
      font-weight: 500;
    }
    footer #top .links {
      justify-content: start !important;
      align-items: self-start !important;
    }
  
    footer #top .txt {
        font-size: 14px;
        font-weight: 500;
      }
  
    footer #top {
      justify-content: center;
      align-items: start;
    }
  
    footer #top .about-footer {
      width: 100%;
      padding: 15px 0px;
    }
  
    footer #top .contact-footer,footer #top .links {
      width: 50%;
    }
  
    footer #top .logo-footer {
      display: flex;
      align-items: center;
      justify-content: center;
    }
  
    footer #top div {
      width: 100%;
    }
  }

  @media only screen and (max-width: 400px) {
    footer #top .title {
      font-size: 16px;
      font-weight: 500;
    }
    footer #top .txt {
        font-size: 12px;
        font-weight: 500;
      }
  
    footer #top {
      justify-content: center;
      align-items: start;text-align: justify;
    }
  
    footer #top .about-footer {
      width: 100%;
      padding: 15px 0px;
      text-align: center ;
      word-break:keep-all;
    }
    footer #top .links{
        display: none;
    }
    footer #top .contact-footer,footer #top .links {
      width: 100%;
      margin-top: 10px;
      display: none;
      font-size: 12px;
    }
  
    footer #top .logo-footer {
      display: flex;
      align-items: center;
      justify-content: center;
    }
    footer #top .logo-footer  img{
        width: 120px;
    }
  
    footer #top div {
      width: 100%;
    }

    footer #top .about-footer .social{
        display: flex;
        align-items: center ;
        justify-content: center ;
    }

    footer .bottom{
        font-size: 12px;
    }
  }
  
  /* Footer End */
  .intro-content{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 500px;

  }

  .intro-content iframe{
    width: 80%;
    height: 100%;
  }


  @media only screen and (max-width: 992px) {
    .intro-content{
        height: 450px;
    }

  }

  
  @media only screen and (max-width: 768px) {
    .intro-content{
        height: 300px;
    }
  }

  @media only screen and (max-width: 600px) {
    .intro-content{
        height: 255px;
    }
  }

  
  @media only screen and (max-width: 500px) {
    .intro-content{
        height: 205px;
    }
  }

  @media only screen and (max-width: 400px) {
    .intro-content{
        height: 170px;
    }
  }
