 @import url('https://fonts.googleapis.com/css2?family=Miniver&family=Poppins:ital,wght@0,400;0,500;0,600;0,700;1,400&display=swap');
 @import url('https://fonts.googleapis.com/css2?family=Miniver&family=Pacifico&display=swap');
 @import url('https://fonts.googleapis.com/css2?family=Alfa+Slab+One&family=Miniver&family=Pacifico&display=swap');
 @import url('https://fonts.googleapis.com/css2?family=Alfa+Slab+One&family=Anton&family=Miniver&family=Pacifico&display=swap');
 @import url('https://fonts.googleapis.com/css2?family=Alfa+Slab+One&family=Anton&family=Gravitas+One&family=Miniver&family=Pacifico&display=swap');
 :root {
   /* Color Variables */
   --primary-blue: #004D99;
   --secondary-blue: #7EC8EB;
   --dark-blue: #0a1f38;
   --light-blue: #a8d8ff;
   --white: #ffffff;
   --gradient-white: linear-gradient(90deg, #fff, #ddd);
   --gradient-blue: linear-gradient(90deg, var(--white), var(--light-blue));
   --nav-hover: rgba(126, 200, 235, 0.8);
 }
 * {
   margin: 0;
   padding: 0;
   box-sizing: border-box;
   text-decoration: none;
 }
 
 /* styling for all site */
 ul {
    list-style: none;
 }
 a {
    text-decoration: none;
 }
 button {
    cursor: pointer;
    border: none;
    background: none;
 }

 img {
    width: 100%;
 }

 .section-content {
    margin: 0 auto;
    padding: 0 20px;
    max-width: 1200px;
 }

 .section-title {
    text-align: center;
    padding: 60px 0px 100px;
    text-transform: uppercase;
    font-size: x large;
 }

 .section-title::after {
    content: "";
    width: 80px;
    height: 5px;
    display: block;
    margin: 10px auto 0;
    border-radius: 200px;
    background: rgb(119, 119, 156);


 }
/* Navbar Styling */
header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  background-color: var(--primary-blue);
  font-family: 'Poppins', sans-serif;
  overflow-x: hidden;
  color: var(--white);
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 50px;
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
}

/* Logo Styling */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 15px;
  color: white;
  text-decoration: none;
  z-index: 10;
}

.logo-img {
  width: 70px;
  height: 70px;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.logo h3 {
  font-size: 1.75rem;
  font-weight: 800;
  margin: 0;
  background: var(--gradient-white);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-family: 'Exo', sans-serif;
}

.logo span {
  font-size: 0.95rem;
  color: var(--white);
  background: var(--gradient-white);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 900;
  text-align: center;
  margin-left: 30px;
}

.nav-logo:hover .logo-img {
  transform: rotate(10deg) scale(1.05);
}

.nav-logo:hover .log-text {
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

/* Navigation Menu */
.nav-menu {
  display: flex;
  gap: 2px;
  margin-right: 40px;
  list-style: none;
}

.nav-items {
  position: relative;
}

.nav-link {
  padding: 10px 20px;
  border-radius: 8px;
  color: white;
  text-decoration: none;
  font-weight: 600;
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  display: inline-block;
}

.nav-link:hover {
  background-color: var(--nav-hover);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.nav-link.active {
  background-color: var(--secondary-blue);
  font-weight: 700;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.nav-link[href="#home1"] {
  background-color: var(--nav-hover);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  color: white;
}

.nav-link[href="#home1"]:hover {
  background-color: var(--secondary-blue);
}

/* Hamburger Menu */
.hamburger {
  display: none;
  cursor: pointer;
  z-index: 10;
  padding: 10px;
}

.bar {
  display: block;
  width: 25px;
  height: 3px;
  margin: 5px auto;
  transition: all 0.3s ease-in-out;
  background-color: white;
}

/* Hero Section */
.hero-section {
  width: 100%;
  background-color: var(--primary-blue);
  padding: 180px 40px 0;
  position: relative;
  overflow: hidden;
  font-family: 'Poppins', sans-serif;
  overflow-x: hidden;
  color: var(--white);
}

.section-cont {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

.hero-details {
  flex: 1;
  min-width: 300px;
  max-width: 600px;
  padding-bottom: 90px;
}

.hero-image-wrapper {
  margin-top: -100px;
  min-width: 400px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image {
  width: 325px;
  height: 325px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 40px;
  transition: 0.3s ease;
  filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.3));
}

.hero-image:hover {
  transform: translateY(-7px);
}

.title {
  font-family: 'Exo', sans-serif;
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
  background: var(--gradient-blue);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-transform: uppercase;
}

.subtitle {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--secondary-blue);
}

.description {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 20px;
  opacity: 0.9;
  font-family: 'Poppins', sans-serif;
}

.buttons {
  display: flex;
  gap: 20px;
  margin-top: 40px;
}

.button {
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  font-family: 'Rajdhani', sans-serif;
  font-size: 1rem;
}

.contact {
  background-color: var(--secondary-blue);
  color: var(--dark-blue);
  border: 2px solid var(--secondary-blue);
}

.services {
  background-color: transparent;
  color: var(--secondary-blue);
  border: 2px solid var(--secondary-blue);
}

.button:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.contact:hover {
  background-color: #6ab7e0;
  border-color: #6ab7e0;
}

.services:hover {
  background-color: rgba(126, 200, 235, 0.1);
}

/* Wave Effect */
.wave-container {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 8vw;
  min-height: 100px;
  max-height: 150px;
  overflow: hidden;
  z-index: 1;
}

.hero-waves {
  position: absolute;
  width: 100%;
  height: 100%;
  bottom: 0;
  left: 0;
}

.wave1 use {
  animation: wave-animation 25s cubic-bezier(0.55, 0.5, 0.45, 0.5) infinite;
}

.wave2 use {
  animation: wave-animation 20s cubic-bezier(0.55, 0.5, 0.45, 0.5) infinite;
  animation-delay: -2s;
}

.wave3 use {
  animation: wave-animation 15s cubic-bezier(0.55, 0.5, 0.45, 0.5) infinite;
  animation-delay: -5s;
}

@keyframes wave-animation {
  0% { transform: translate3d(-90px, 0, 0); }
  100% { transform: translate3d(85px, 0, 0); }
}

/* Responsive Design */
@media (max-width: 1200px) {
  .navbar {
    padding: 10px 30px;
  }
  
  .hero-section {
    padding: 150px 50px 0;
  }
  
  .title {
    font-size: 2.5rem;
  }
}

@media (max-width: 992px) {
  .title {
    font-size: 2.2rem;
  }
  
  .subtitle {
    font-size: 1.5rem;
  }
  
  .hero-image {
    width: 280px;
    height: 280px;
  }
}

@media (max-width: 768px) {
  .navbar {
    padding: 10px 20px;
  }
  
  .hamburger {
    display: block;
  }
  
  .hamburger.active .bar:nth-child(2) {
    opacity: 0;
  }
  
  .hamburger.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  
  .hamburger.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
  
  .nav-menu {
    position: fixed;
    left: -100%;
    top: 90px;
    gap: 0;
    flex-direction: column;
    background-color: var(--primary-blue);
    width: 100%;
    text-align: center;
    transition: 0.3s;
    padding: 20px 0;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    margin-right: 0;
  }
  
  .nav-menu.active {
    left: 0;
  }
  
  .nav-items {
    margin: 10px 0;
  }
  
  .nav-link {
    padding: 15px 0;
    width: 80%;
    margin: 0 auto;
    font-size: 1.2rem;
  }

  /* Hero Section Adjustments */
  .hero-section {
    padding: 85px 25px 60px;
    text-align: center;
  }
  
  .section-cont {
    flex-direction: column-reverse;
    gap: 5px;
  }
  
  .hero-details {
    padding-bottom: 2px;
    max-width: 100%;
  }
  
  .hero-image-wrapper {
    margin-top: 0;
    min-width: auto;
  }
  
  .hero-image {
    width: 250px;
    height: 250px;
    margin-right: 0;
  }
  
  .title {
    font-size: 1.8rem;
    margin-bottom: 4px;
  }
  
  .subtitle {
    font-size: 1.5rem;
    margin-bottom: 5px;
  }
  
  .description {
    font-size: 1.05rem;
    margin: 0 auto 2px;
    max-width: 95%;
  }
  
  .buttons {
    justify-content: center;
    margin-top: 30px;
  }
  
  .logo-img {
    width: 50px;
    height: 50px;
  }
  
  .logo h3 {
    font-size: 1.5rem;
  }
  
  .logo span {
    font-size: 0.8rem;
    margin-left: 15px;
  }
  .wave-container {
    height: 2px;
  }
}

@media (max-width: 576px) {

  .navbar {
    padding: 8px 15px;
  }
/*   
  .hero-section {
    padding: 80px 20px 15px;

  } */
  .hero-section {
    padding: 70px 20px 20px;
  }
  .wave-container{
    min-height: 60px;
  }
  
  .hero-image {
    width: 200px;
    height: 200px;
  }
  
  .title {
    font-size: 1.5rem;
  }
  
  .subtitle {
    font-size: 1.5rem;
  
  }
  
  .description {
    font-size: 0.95rem;
    max-width: 95%;
  }
  
  /* .buttons {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }
  
  .button {
    width: 200px;
    padding: 12px 0;
  } */
  
  .logo-img {
    width: 40px;
    height: 40px;
  }
  
  .logo h3 {
    font-size: 1.3rem;
  }
  
  .logo span {
    font-size: 0.7rem;
    margin-left: 10px;
  }
  
  .nav-link {
    font-size: 1rem;
  }
}

@media (max-width: 412px) {
  .title {
    font-size: 1.7rem;
  }
  
  .subtitle {
    font-size: 1.1rem;
  }
  
  .hero-image {
    width: 180px;
    height: 180px;
  }
  
  .button {
    width: 180px;
    font-size: 0.9rem;
  }
 
}
/* Extra Small Devices (324px and below) */
@media (max-width: 376px) {
  /* Navbar Adjustments */
  .navbar {
    padding: 8px 12px;
  }
  
  .logo-img {
    width: 40px;
    height: 40px;
  }
  
  .logo h3 {
    font-size: 1.1rem;
  }
  
  .hamburger {
    padding: 8px;
  }
  
  .nav-menu {
    top: 65px; /* Lower the mobile menu slightly */
    padding: 15px 0 25px;
  }
  
  .nav-link {
    padding: 12px 0;
    font-size: 0.95rem;
  }

  /* Hero Section Adjustments */
  .hero-section {
    padding: 70px 20px 40px;
    /* margin-left: 2px; */
  }
  
  .title {
    font-size: 1.5rem;
    line-height: 1.8rem;
    margin-bottom: 5px;
  }
  
  .subtitle {
    font-size: 1.2rem;
    margin-bottom: 5px;
  }
  
  .description {
    font-size: 0.95rem;
    line-height: 1.5;
    justify-content: center;
  }
  
  .hero-image {
    width: 160px;
    height: 160px;
    border-width: 2px;
  }
  
  /* .buttons {
    margin-top: 15px;
    gap: 12px;
  }
  
  .button {
    width: 160px;
    padding: 10px 0;
    font-size: 0.8rem;
  } */

  /* Wave Adjustments */
  .wave-container {
    min-height: 60px;
  }
}
@media (max-width: 352px) {
  

  /* Hero Section Adjustments */
  .hero-section {
    padding: 70px 20px 20px;
    /* margin-left: 2px; */
  }
  
  .title {
    font-size: 1.3rem;
    line-height: 1.5rem;
    margin-bottom: 5px;
  }
  
  .subtitle {
    font-size: 1.2rem;
    margin-bottom: 5px;
  }
  
  .description {
    font-size: 0.95rem;
    line-height: 1.3;
    justify-content: center;
  }
  
  .hero-image {
    width: 160px;
    height: 160px;
    border-width: 2px;
  }
  
  /* .buttons {
    margin-top: 15px;
    gap: 12px;
  }
  
  .button {
    width: 160px;
    padding: 10px 0;
    font-size: 0.8rem;
  } */

  /* Wave Adjustments */
  .wave-container {
    min-height: 50px;
  }
}




 /* about styling */
 

 .about-section {
   padding: 70px 0px;
   /* background-color: white; */
   background: #F5F7FA;

}
.about-title {
   text-align: center;
   text-transform: uppercase;
   font-size: x large;
}
.about-title::after {
   content: "";
   width: 80px;
   height: 5px;
   display: block;
   margin: 10px auto 0;
   border-radius: 200px;
   background: rgb(119, 119, 156);
}

.about-section .section-centent {
   display: flex;
   gap: 30px;
   align-items: center;
   justify-content: space-between;
}

.about-section .about-detail .section-title {
   padding: 0px;
}

.about-section .about-detail .section-title:hover {
   transform: scale(1.08);
}

.about-section .about-detail {
   max-width: 100%;
}

.about-section .about-detail .text {

   line-height: 30px;
   margin: 50px 0px 30px;
   text-align: center;
   font-size: medium;
   padding-right: 30px;

}

.about-more {
   /* position: absolute;
   top: 940px; */

   padding: 12px 24px;
   background-color: #ff0000; /* Vibrant red */
   color: white !important;
   text-decoration: none;
   font-weight: 600;
   border-radius: 30px;
   border: 2px solid transparent;
   transition: all 0.3s ease;
   box-shadow: 0 4px 6px rgba(255, 68, 68, 0.2);
   text-transform: uppercase;
   letter-spacing: 1px;
   font-size: 14px;
   text-align: center;
 }
 
 .about-more:hover {
   background-color: #6b0000; /* Darker red on hover */
   transform: translateY(-2px);
   box-shadow: 0 6px 8px rgba(255, 0, 0, 0.3);
 }
 .about-more {
   display: none;
}
.about-section .socail-link-list {
   display: flex;
   gap: 30px;
   justify-content: center;
}

.about-section .socail-link-list .socail-link {
   font-size: x-large;
   transition: 0.2s ease;
   color:#0066CC;
}

.about-section .socail-link-list .socail-link:hover {
   /* color: aqua; */
   color: rgb(126, 200, 235); 

  
}
.about-image-wrapper {
   max-width: 500px;
   margin-right: 10px;
}

.about-image-wrapper img {
   margin-top: -50px;
   object-fit: cover;
   width: 400px;
   height: 400px;
   border-radius: 200px;
   margin-left: 10px;
   border: 2px solid transparent;
}

.about-image-wrapper img:hover {
   transform: scale(1.05);
}

.about-detail .regrd {
   font-size: 21px;
   padding-top: 20px;
   padding-bottom: 40px;
   text-align: right;
   padding-right: 50px;
   line-height: 30px;
}


/* About responisveness */


@media (max-width: 992px) {
   .about-image-wrapper img {
     width: 350px;
     height: 350px;
   }
 }
 
 @media (max-width: 768px) {
   .about-section .section-centent {
     flex-direction: column;
     gap: 20px;
   }
   .about-title {
      text-align: left;
      padding-left: 15px; /* Add some padding to match your other left-aligned elements */
    }
    
    .about-title::after {
      margin: 10px 0 0; /* Remove auto margins and let it align left */
      width: 60px; /* Optional: make slightly smaller for mobile */
    }
   
   .about-image-wrapper {
     order: -1;
     margin-right: 0;
     margin-bottom: 30px;
   }
   
   .about-image-wrapper img {
     margin-top: 0;
     margin-left: 0;
   }
   
   .about-section .about-detail .text {
     padding-right: 0;
   }
  
 
 }
 
 @media (max-width: 576px) {
   .about-section {
     padding: 50px 0px;
   }
   
   .about-image-wrapper {
     display: none;
   }
   
   
   .about-title
    {
      font-size: large; /* Slightly smaller font for very small screens */
    }
    
    .about-title::after {
      width: 80px;
      height: 4px;
    }
   
   .about-section .about-detail .text {
     text-align: left;
     padding: 0 15px;
     margin: 30px 0px 20px;
   }
   
   .about-detail .regrd {
     text-align: right;
     padding-right: 15px;
     font-size: 18px;
   }
   
   .about-section .socail-link-list {
     gap: 20px;
   }
   .regrd{
      padding-bottom: 20px;
   }
   .about-section .about-detail .text {
      max-height: 150px; /* Show about 5 lines of text */
      overflow: hidden;
      position: relative;
    }
    
    .about-section .about-detail .text::after {
      content: "";
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      height: 30px;
      background: linear-gradient(to bottom, rgba(245,247,250,0), rgba(245,247,250,1));
    }
    
    .about-more {
      
      display: block !important;
      margin: 15px auto 0;
      width: fit-content;
    }
    
    .text.expanded {
      max-height: none;
    }
    
    .text.expanded::after {
      display: none;
    }
  
}
 
 @media (max-width: 400px) {
   .about-section .socail-link-list {
     gap: 15px;
   }
   
   .about-section .socail-link-list .socail-link {
     font-size: large;
   }
   
   .about-section .about-detail .text {
     font-size: small;
     line-height: 26px;
   }
   
   .about-detail .regrd {
     font-size: 16px;
     line-height: 26px;
   }
  
 }



 /* Servvices Styling */


 .services-section {
    background-color: #1A1A1A;
   color: white;
    padding: 50px 0 100px;
    padding: 15px 9%;
    text-align: center;
    padding-bottom: 50px;
 }

 .services-section .section-title {
    padding-bottom: 70px;
 }

 .services-section .box-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 15px;
 }

 .services-section .box-container .box {
    box-shadow: 0 5px 10px rgba(0, 0, o, 2);
    border-radius: 5px;
    /* background: rgb(7, 189, 189); */
    Background: #FFFFFF;
    border: 1px solid #E0E0E0;
    text-align: center;
    padding: 20px 15px;
    display: none;
 }
 .services-section .box-container .box:hover{
   border: 1px solid rgb(126, 200, 235);

   box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
 }

 .services-section .box-container .box:nth-child(1),
 .services-section .box-container .box:nth-child(2),
 .services-section .box-container .box:nth-child(3) {
    display: inline-block;
 }

 .services-section .box-container .box h3 {
    text-align: justify;
    margin-top: 10px;
    text-transform: uppercase;
    color: #000000;
    font-size: 25px;
    font-family: "Popins", sans-serif;
    font-weight: 190px;
    padding: 10px 0;
    padding-bottom: 10px;
    padding: 10px 10px 10px 10px;

 }

 .services-section .box-container .box h3:hover {
    box-shadow: 0 10px 15px rgba(0, 0, 0, .3);
    letter-spacing: 0.9px;
 }

 .services-section .box-container .box p {
    margin-top: 20px;
    text-align: justify;
    color: black;
    font-size: 15px;
    line-height: 1.6;
 }


 .services-section .box-container .box:hover {
    box-shadow: 0 5px 10px #1f1919f6;
    transform: scale(1.02);
 }

 .services-section .box-container .box .services-img {
    max-width: 80%;
    aspect-ratio: 1;
 }

 .services-section .box-container .box .services-img {

    max-width: 400px;
    height: 202px;
    max-width: 300px;
    object-fit: cover;
    border-radius: 5px;

 }

 .services-section .box-container .box .services-img:hover {
    box-shadow: 0 10px 15px rgba(0, 0, 0, .3);
    transform: scale(1.02);
 }

 .services-section #load-more {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 30px;
    color: #333;
    border: 2px solid white;
    color: white;
    font-size: large;
    background-color: transparent;
    border-radius: 5px;
    margin-top: 35px;
    cursor: pointer;
 }

 .services-section #load-more:hover {
    background-color: crimson;
    border-color: crimson;
    transform: scale(1.05);
 }



 /* Ourr project styling */

 .project-section {
    background-color: aliceblue;
    color: rgb(0, 0, 0);
    padding: 10px 10px;
    padding-bottom: 50px;
 }

 .project-section .project-box .box-title {
   cursor: pointer;
    display: flex;
    justify-content: space-between;
 }

 .project-section .project-box .box-title i {
    font-size: 25px;
 }

 .project-section .project-container .box-title {
    background-color: rgb(252, 252, 252);
    width: 100%;
    padding: 20px 20px;
    padding-left: 60px;
    border-radius: 5px;
    /* box-shadow: #333; */
    font-size: 20px;
    border: 0.1px solid black;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    margin-bottom: 20px;
    margin-top: 15px;
 }

 .project-section .project-container .box-title:hover {
    box-shadow: #333;
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.3);
    transform: scale(1.01);
    letter-spacing: 0.3px;
 }

 .project-section .project-container .project-box .win-detail {
   
    background: white;
    color: black;
    padding: 30px 60px 30px 150px;
    /* padding: 30px 60px; */
    /* padding-left: 150px; */
    position: relative;
 }

 .project-section .project-container .project-box .win-detail .PAK{

    font-family: "Poppins", sans-serif;
    font-size: 20px;
    color: black;
    position: relative; /* Ensures text appears above the logo */
    z-index: 2; /* Brings text above the logo */
    padding-left: 0px; /* Creates space for logo */
    margin-bottom: 20px;
    background-color: white; /* Solid background to cover logo */
    display: inline-block; /* Contains the background */
    padding-right: 15px;
   
 }
 /* pak commom styling*/

 .project-section .project-container .project-box .win-detail .pak-logo,
.project-section .project-container .project-box .win-detail .air-logo,
.project-section .project-container .project-box .win-detail .navy-logo {
    position: absolute;
    width: 70px;
    height: 70px;
    left: 4%;
    opacity: 0.7;
    z-index: 1;
}

/* Individual Logo Positioning */

.project-section .project-container .project-box .win-detail .pak-logo {
   top: 15px;
}

.project-section .project-container .project-box .win-detail .air-logo {
   top: 340px;
}

.project-section .project-container .project-box .win-detail .navy-logo {
   /* top: 770px; */
   margin-top: -180px;

}

 .project-section .project-container .project-box .win-detail p{
   padding: 15px 0 15px 100px;
    color: black;

    
 }

 /* none for hide the detail inside the bar */
 .project-section .project-container .project-box .win-detail {
    display: none;
 }



 /* responsiveness for win detail with logo */



@media (min-width: 1354px) {
   /* Large Desktop Optimization */
   .project-section .project-container .project-box .win-detail {
     padding-left: 180px;
   }
   .project-section .project-container .project-box .win-detail .pak-logo,
   .project-section .project-container .project-box .win-detail .air-logo,
   .project-section .project-container .project-box .win-detail .navy-logo {
     width: 80px;
     height: 80px;
     left: 6%;
   }
   /* .project-section .project-container .project-box .win-detail .navy-logo {
      top: -760px;
    } */
   
 }

    @media (min-width: 1317px){
       .project-section .project-container .project-box .win-detail .PAK{
         margin-bottom: 20px;
       }

    }
    @media (max-width: 786px) {
      .project-section .project-container .project-box .win-detail .air-logo{
         margin-top: 125px;
      }
      .project-section .project-container .project-box .win-detail .navy-logo{
         margin-top: -200px;
      }
    }
    @media (max-width: 578px){
      .project-section .project-container .project-box .win-detail .air-logo,
      .project-section .project-container .project-box .win-detail .navy-logo,
      .project-section .project-container .project-box .win-detail .pak-logo{
         display: none;
      }
      .project-section .project-container .project-box .win-detail .PAK{ 
         padding-right: 0px;
      }
      .project-section .project-container .project-box .win-detail {
         padding: 10px 10px 10px 10px;
      }

    }





 /* Footer Section Styling */
 footer {

    background: hsl(0, 0%, 0%);
    padding-top: 50px;
    color: white;

 }

 .row {
    display: flex;
    justify-content: space-between;
    padding: 40px 100px;
 }

 .footer-colm h4 {
    color: white;
    margin-bottom: 25px;
    font-size: 22px;
    position: relative;
 }

 .footer-colm h4::before {
    content: "";
    width: 70px;
    height: 2px;
    position: absolute;
    background-color: #e91e64;
    bottom: -10px;
 }

 .footer-colm p {
    padding-top: 25px;
    color: white;
    font-size: 16px;
    opacity: 0.7;
    transition: 0.2s;

 }

 .footer-colm a {
    color: white;

 }

 .footer-colm a:hover {

    font-weight: 40px;
    letter-spacing: 1px;
 }

 .footer-colm i {
    color: white;
    padding-top: 2px;
    padding-right: 10px;
 }

 .footer-colm ul li {
    padding: 8px;
 }

 .footer-colm ul li a {
    color: white;
    font-size: 16px;
    opacity: 0.7;
    transition: 0.2s;
 }

 .footer-colm ul li a:hover {
    opacity: 2;
    font-weight: 40px;
    letter-spacing: 1px;
 }

 form {
    padding-right: 20px;
 }

 .footer-colm input,
 textarea {
    display: block;
    padding: 12px;
    background-color: #f8f9fa;
    color: #000000;
    margin: 14px 0;
    height: 45px;
    width: 250px;
    padding-left: 30px;
    border: none;

 }

 .footer-colm textarea {
    height: 65px;
    width: 250px;
 }

 .footer-colm .inputsubmit {
    height: 50px;
    padding: 0 25px;
    background-color: #e91e64;
    border: none;
    font-size: 20px;
    font-weight: bold;
    text-transform: uppercase;
    cursor: pointer;

 }

 .footer-colm .inputsubmit:hover {
    background-color: #333;

 }

 .foot-container .fottxt {
    padding: 20px 20px;
    text-align: center;
 }














 /* footer responivenes for footer all */

 @media screen and (max-width:1047px) {


    .row {
       flex-direction: column;
       padding: 40px 50px;
    }


    .footer-colm {
       margin-bottom: 40px;
       width: 100%;
    }


    .footer-colm h4 {
       text-align: center;
    }

    .footer-colm h4::before {
       left: 50%;
       transform: translateX(-50%);
    }


    .footer-colm ul {
       display: flex;
       flex-wrap: wrap;
       justify-content: center;
       gap: 15px;
    }


    form {
       padding-right: 0;
       max-width: 100%;
       display: flex;
       flex-direction: column;
       align-items: center;
    }

    .footer-colm input,
    .footer-colm textarea {
       width: 100%;
       max-width: 350px;
       margin: 10px 0;
    }

    .footer-colm textarea {
       height: 100px;
    }


    .footer-colm .inputsubmit {
       width: auto;
       padding: 0 30px;
       margin-top: 10px;
    }


    .footer-colm p {
       text-align: center;
    }


    .foot-container .fottxt {
       padding: 20px 10px;
    }
 }