: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 */

.banner {
    position: relative;
    width: 100vw !important;
    height: 80vh;
    background-image: url(../coverr.jpg);
    background-size: cover;
    /* background-color: var(--darkBlue); */
   
  }
  
   /* 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;
  }

    /* 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 */
      }


@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;
}
    
}



.container{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 100px;
    padding: 50px 5px;
}

.container .form-container {
    padding: 20px 20px;
    background-color: var(--lightGrey);
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    width: 35%;
}

.container .form-container form{
    display: flex;
    width: 100%;
    margin: 0 auto;
    padding: 20px;
  
    border-radius: 5px;
    flex-direction: column;
}

.container .info{
    width: 35%;
    height: 100%;
    display: flex;
    justify-content: space-between;
    text-align: start;
    flex-direction: column;
}

.container .info p{
    padding: 2.5px 0;
}

.map iframe{
    width: 100%;
    height: 325px;
    padding: 10px 0;
}

label {
    font-weight: bold;
    margin-bottom: 5px;
}

input, textarea {
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 3px;
}

textarea {
    resize: vertical;
}

button {
    padding: 10px;
    background-color: var(--yellow);
    color: #ffffff;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    font-size: 18px;
    transition: all 0.5s;
    border: 2px solid transparent;
}



button:hover {
    border: 2px solid var(--yellow);
    border-radius: 30px;
    color: var(--black);

    background-color: transparent;
}

@media screen and (max-width: 768px) {
    .container {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 35px;
    }

    .map {
        margin-top: 0;
    }

    .container .form-container,.container .info {
        margin-top: 0;
        width: 90%;
    }
}

@media screen and (max-width: 400px) {
    input, textarea {
        padding: 6.5px;
    }

    button {
        padding: 5px;
        font-size: 14px;
    }
}

/* Footer Start */



/* 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;
    }

  }
  @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;
    }
  
    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;
    }
  }
