@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.7.2/css/all.min.css');
    html,
body {
  margin: 0;
  padding: 0;
  width: 100%;
  overflow-x: hidden;
}


body {
  font-family: 'Montserrat', sans-serif;
}


/* Prevent images from overflowing */
img,
svg {
  max-width: 100%;
  height: auto;
}

/* Make the header sticky at the top */
.header {
  position: fixed;
  top: -100px;
  /* Start off-screen */
  left: 0;
  width: 100%;
  z-index: 999;
  background-color: #fff;
  border-bottom: 1px solid #ddd;
  padding: 2px;
  box-sizing: border-box;
  opacity: 0;
  transition: top 0.5s ease, padding 0.3s ease, opacity 0.5s ease;
  box-shadow: 0 2px 70px #44aaea;
}

/* After page loads */
.header.show {
  top: 0;
  opacity: 1;
}


.navigation {
  display: flex;
  /* justify-content: space-between; */
  padding: 15px 25px;
  flex-direction: row;
}


/* right column */

.logo-left {
  width: 100%;
  display: flex;
  justify-content: flex-start;
}

/* Adjust the logos on the left side to 64px max-height */
.header-logo {
  max-height: 70px;
  width: auto;
  height: auto;
  margin: auto 10px;
  transition: max-height 0.4s ease, margin 0.4s ease;
}

.contact-right {
  display: flex;
  width: 45% !important;
  justify-content: end;
  align-items: center;
  gap: 15px;
  transition: gap 0.3s ease, width 0.3s ease;
}

.contact-number {
  display: inline-flex;
  align-items: center;
  background-color: #0270b4;
  color: white !important;
  font-size: 14px;
  font-weight: 600;
  padding: 6px 15px;
  margin-top: 5px;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
  transition: font-size 0.3s ease, padding 0.3s ease;
  letter-spacing: 1px;
}




/* On Scroll: Smaller styles */
.scrolled .navigation {
  padding: 8px 8px 3px 8px;
}

.scrolled .header-logo {
  max-height: 50px;
}

.scrolled .contact-right {
  gap: 10px;
}

@media(max-width:850px) {
  .scrolled .contact-right {
    display: none;
  }
  
}





/* .scrolled .contact-number {
  font-size: 13px;
  padding: 4px 12px;
} */


/* Hover effect */
.contact-number:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}

.WhatsApp {
  background-color: #5ead35;
}




/* banner */

.banner,
.footer-banner {
  position: relative;
  width: 100vw;
  height:100%;
  background-image: url('https://static.npfs.co/accounts/658/documents/2025/5/22/3e1473d9b3414b25a46c482fe4a45565_GGI-banner-resized.webp');
  background-size: cover;
  background-position: center center;
  overflow: hidden;
  padding-top: 70px;
  margin-top: 75px;
}


.banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 1;
}

.banner-inner {
  display: flex;
  align-items: stretch;
  justify-content:space-between;
  padding: 100px;
}


.banner-text{
  z-index: 3;
  width:45%;
  /* background-color: #050d1395; */
  padding: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
}


.banner-text h1{
  font-size: 3rem;
  font-weight: 500;
  color: #F9C10D;
  text-align: center;
}

.form-div {
  padding: -10px!important;
  width: 500px;
  /* height: 492px; */
  /* overflow-y: scroll; */
  overflow-x: hidden;
  border: 0px solid #fff;
  border-radius: 5px;
  background-color: transparent;
  z-index: 3;
  /* margin: 1%; */
}



/* --------------------------------------------------------------------------------------- */

/* Global text styles */

h2 {
  font-size: 3rem;
  color: #0270b4;
  font-weight: 300;
  text-align: center;
  margin: 0 !important;
}

h3 {
  font-size: 1.3rem;
  color: #0270b4;
  font-weight: 600;
}


.subheading {
  font-size: 1.5rem;
  color: #F9C10D;
  font-weight: bold;
  margin: 0 auto !important;
  padding: 20px 0;


}

p {
  font-size: 1rem;
  color: #333;
  text-align: center;
  width: 60%;
  margin: 0 auto;
  padding-bottom: 50px;
}



/* Flex utility */
.flex,
.flex-direction-row {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  flex-direction: column;
  padding: 50px;
  gap: 20px;
}


.flex-direction-row {
  flex-direction: row;
  width: 100%;
  padding: 0px !important;
}

/* wings your career section */
.give-wings-career {
  max-width: 100%;
  margin: 0 auto;
  background-color: #2125290F;
}

.give-wings-career-inner {
  width: 80%;

}

/* carrer mission section */

.career-highlight {
  background-color: #2125290F;
}


/* Card style */
.info-card,
.achievment-card {
  background: #fff;
  padding: 20px;
  height: 130px;
  box-shadow: 0px 2px 15px 0px rgba(30, 30, 30, 0.496);
  border-radius: 25px;
  border: none;
  /* text-align: center; */
  width: 300px !important;
  width: 27%;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row-reverse;
}


.info-card img {
  width: 30%;
  height: auto;
  margin: 0 auto;
}

.courses-offerd img {
  border-radius: 15px;
}

@media(min-width:950px) {
  .info-card p {
    width: 60%;
    height: auto;
    text-align: left;
    padding-bottom: 0;
  }
}

.info-card span {
  font-size: 2.3rem;
  color: #0270b4;
  font-weight: 900 !important;
}


/* career & mission section */
.career-section {
  background-color: #2125290f;
}

.career-section h2 {
  font-size: 2.5rem;
  color: #0270b4;
  margin-bottom: 10px;
}



.card {
  flex: 1 1 250px;
  max-width: 300px;
  border: none !important;
  background-color: transparent !important;
  padding: 20px;
  text-align: center;
  align-items: center;
}

.card img {
  width: 80px;
  height: auto;
  margin-bottom: 15px;
}

.card h3 {
  font-size: 2rem;
  color: #0270b4;
  margin: 10px 0;
}

.card p {
  font-size: 1rem;
  color: #333;
}



/* Programs-Offered*/


.Programs-Offered-inner {
  width: 90%;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 35px;
}

.courses-offerd {
  text-align: center;
  display: flex;
  flex: 1 1 1 30%;
  flex-direction: column;
  padding: 10px;
  background-color: #fff;
  box-shadow: 0px 2px 15px 0px rgba(30, 30, 30, 0.26);
  border-radius: 25px;
  height: 430px;
  width: 27%;
  align-items: stretch;
}



.cources-list {
  text-align: left;
  font-size: 14px;
  font-weight: 400;
}

/* achievement */
.achievment-section {
  width: 80%;
  margin: 0 auto;
}


.achievment-card img {
  width: 80%;

}



.achievment-card {
  width: 250px;
  height: 200px;
  padding: 10px;
  text-align: center;
  margin: 0 auto;
}


.achievment-card p {
  padding-bottom: 0;
  margin: 0;
  width: 100%;
  margin-top: -35px;
}

@media(min-width:1000px) {
  .width-30 {
    margin-top: 25px;
    width: 30%;
  }

  .width-30 img {
    width: 60%;
    padding: 10px 20px;
  }


}



.left-img,
.right-img {
  margin-top: 15px;
  text-align: center;
}

.left-img p,
.right-img p {
  margin-top: 15px;

}

/* logo slider */

.Recruiters-logos {
  display: none;
}

.logo-slider {
  overflow: hidden;
  background-color: #fff;
  /* padding: 4em 0; */
}

.logo-slider-track {
  display: flex;
  width: calc(200%);
  animation: scroll 40s linear infinite;
}

.slide {
  flex: 0 0 auto;
  transform: scale(.6);
  padding: 15px;
  box-shadow: 0px 2px 15px rgba(30, 30, 30, 0.1);
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}


.slide-right {
  display: flex;
  width: calc(200%);
  animation: scroll2 40s linear infinite reverse;
  /* note the reverse */
}


@keyframes scroll2 {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}




/* footer------------------------- */

.footer-banner {
  height: auto;
  background-image: url('https://static.npfs.co/accounts/658/documents/2025/5/22/efb43808cf004d4bbcea4a92fbffc47d_footer.png');
  margin-top: 0 !important;
  padding: 0;
}


.footer-inner h1 {
  font-size: 50px;
  color: #fff;
  font-weight: 900;
  z-index: 4;
  text-align: center;
  line-height: 55px;

}



.footer-inner span {
  color: #F9C10D;
}


.footer-copyright {
  width: 100%;
  padding: 35px 15px;
  background: linear-gradient(135deg, #000000, #000000);
  text-align: center;
  border-top: 1px solid #2b72bd6c;

}


.footer-copyright a{
  color:#0270b4 !important;
  text-decoration: none;
}

.footer__para {
  color: #fff;
  font-size: 1rem;
  padding-bottom: 0;

}


.wings {
    height: 185px;
    width: 320px;
}