/* ---------- Reset & Basics ---------- */

html {
  scroll-behavior: smooth;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  }
  
  body {
    line-height: 1.6;
    color: #0e1f41;
    background-color: #f5f5f5;
    scroll-behavior: smooth;
  }
  
  a {
    text-decoration: none;
    color: inherit;
  }
  
  img {
    max-width: 100%;
    display: block;
  }
  

/* Section */
.ach {
  padding: 5rem 1rem;
  background-color: #ffffff;
  text-align: center;
  font-family: Arial, sans-serif;
}

/* Heading */
.ach .heading {
  max-width: 900px;
  margin: 0 auto 3rem auto;
}

.ach h2 {
  font-size: 2rem;
  font-weight: 800;
  color: #0e1f41;
  margin-bottom: 1rem;
}

.ach p {
  color: #0e1f41;
  font-size: 1rem;
  line-height: 1.6;
}

/* Stats Grid */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
  max-width: 1100px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Individual Stat */
/* Achivements section */

  .ach {
    padding: 60px 5%;
    background-color: #f9f9f9;
    text-align: center;
  }
  

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stat i {
  font-size: 36px;
  color: #FF0000;
  margin-bottom: 0.75rem;
}

.stat h4 {
  font-weight: 600;
  font-size: 1.125rem;
  color: #0e1f41;
}

.stat p {
  margin-top: 0.25rem;
  font-size: 0.875rem;
  color: #0e1f41;
}
  
  /* ---------- Navbar ---------- */
  .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    background-color: #0e1f41;
    position: fixed ;
    top: 0;
    z-index: 999;
    width: 100%;
 
  }
  

  
.navbar .logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.navbar .logo img {
    height: 50px;
    border-radius: 10px;
    box-shadow: 0px 2px 4px rgb(255, 255, 255);
}

.navbar .logo h3 {
    color: #ffffff;
    margin: 0;
    font-size: 19px;
}

  .nav-links {
    display: flex;
    gap: 2rem;
    
  }
  
  .nav-links li {
    list-style: none;
  }

  .nav-links a {
    color: #fff;
    font-weight: 600;
    transition: color 0.3s, transform 0.3s;
    text-decoration: none;
  }
  
  .nav-links a:hover {
    color: #c2d388;
    transform: scale(1.1);
  }
  
  /* ---------- Hero Section ---------- */
  .hero {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    padding: 100px 5% 50px;
    background: url('images/New images/main.jpg') center/cover no-repeat;
    color: #fff;
    text-align: center;
    position: relative;
    height: 35rem;
  }
  
  .hero::after {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-color: rgba(14,31,65,0.6);
  }
  
  .hero-text {
    z-index: 1;
    max-width: 700px;
    padding-left: -100PX;
  }
  
  .hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
  }
  
  .hero p {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
  }
  
  .hero .btn {
    background-color: #c2d388;
    color: #0e1f41;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: bold;
    transition: all 0.3s;
  }
  
  .hero .btn:hover {
    background-color: #b6ca6f;
    transform: scale(1.05);
  }
  
  /* ---------- Offer Section ---------- */
  
  .offer {
    padding: 80px 5%;
    text-align: left;
    background-color: #ffffff;
  }
  
  .offer h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #0e1f41;
  }

  .card-container{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 50px;

  }  
  .card{
    width: 325px;
    background-color: #f0f0f0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0px 2px 4px rgba(0,0,0,0.2);
    margin: 20px;
    transition: 0.5s;
  }
  .card img{
    width: 100%;
    height: 250px;
  }
  .card-content{
    padding: 16px;
    justify-content: right;
  }
  .card-content h3{
    font-size:28px;
    margin-bottom: 8px;
  }
  .card-content p{
    color: #666;
    font-size: 15px;
    line-height: 1.3;
  }
   .card-content .btn{
    display: inline-block;
    padding: 8px 16px;
    background-color: #333;
    text-decoration: none;
    border-radius: 4px;
    margin-top: 16px;
    color: #fff;
   }

  
  .offer .card:hover {
    
    transform: translateY(-5px);
    
  } 

  /* .offer-cards img{
    height: 500px;
    width: 350px;
    border-radius: 3px;
  }
  .offer {
    display: flex;
    justify-content: center;
    height: 100vh;
    align-items: center;
  }
  .container{
    display: flex;
  }
  .offer-cards {
    height: 500px;
    margin: 50px;
    box-shadow: 5px 5px 20px black;
    overflow: hidden;
  }
  .intro {
    height: 200px;
    width: 350px;
    padding: 6px;
    box-sizing: border-box;
    position: absolute;
    background: rgb(27, 27, 27);
    color: white;
  }
  .offer-cards h1 {
     margin: 10px;
     font-size: 40px ;
  } */
  /* ---------- Trusted By ---------- */
  .trusted {
    padding: 60px 5%;
    background-color: #f9f9f9;
    text-align: center;
  }
  
  .trusted h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
  }
  
  .trusted-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 3rem;
  }
  
  .trusted-logos img {
    height: 60px;
    
    transition: all 0.3s;
  }
  
  .trusted-logos img:hover {
    filter: grayscale(0%);
    transform: scale(1.1);
  }
  



  /* ---------- Services Section ---------- */
  .ser {
    padding: 80px 5%;
    text-align: left;
    background-color: #ffffff;
  }
  
  .ser h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #0e1f41;
  }
  .ser-p{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    color: #0e1f41;
    text-align: center;
  }  

  .card-container-ser{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 50px;

  }  
  .card-ser{
    width: 325px;
    height: 510px;
    background-color: #f0f0f0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0px 2px 4px rgba(0,0,0,0.2);
    margin: 20px;
    transition: 0.5s;
  }
  .card-ser img{
    width: 100%;
    height: 230px;
  }
  .card-content-ser{
    padding: 16px;
    justify-content: right;
  }
  .card-content-ser h3{
    font-size:28px;
    margin-bottom: 8px;
  }
  .card-content-ser p{
    color: #666;
    font-size: 15px;
    line-height: 1.3;
  }
   .card-content-ser .btn{
    display: inline-block;
    padding: 8px 16px;
    background-color: #333;
    text-decoration: none;
    border-radius: 4px;
    margin-top: 16px;
    color: #fff;
   }

  
  .card-ser:hover {
    
    transform: translateY(-5px);
    
  } 


  /* 
  .services-cards {

    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
  }
  
  .service-card {
    background-color: #fff;
    border-radius: 20px;
    padding: 1rem;
    width: 250px;
    transition: all 0.3s;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  }
  
  .service-card img {
    border-radius: 15px;
    margin-bottom: 1rem;
  }
  
  .service-card h3 {
    color: #0e1f41;
    font-weight: 700;
  }
  
  .service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.15);
  } */
  
  /* ---------- About Section ---------- */
  .about {
    padding: 80px 5%;
    background-color: #ffffff;
  }
  
  .about h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #0e1f41;
  }
  
  .about-content {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    align-items: center;
    justify-content: center;
  }
  
  .about-text {
    flex: 1;
    min-width: 300px;
  }
  
  .about-text p {
    margin-bottom: 1rem;
    color: #666666;
  }
  
  .about-image {
    flex: 1;
    min-width: 300px;
  }
  
  .about-image img {
    border-radius: 20px;
  }
  
  /* ---------- Contact Section ---------- */
  .contact {
    padding: 80px 5%;
    background-color: #e8f0f2;
  }
  
  .contact h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #0e1f41;
  }
  
  .contact-content {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    justify-content: center;
  }
  
  .contact form {
    flex: 1;
    min-width: 300px;
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  
  .contact input, 
  .contact textarea {
    padding: 0.8rem;
    border-radius: 10px;
    border: 1px solid #ccc;
    outline: none;
  }
  
  .contact button {
    background-color: #0e1f41;
    color: #fff;
    border: none;
    padding: 0.8rem;
    border-radius: 50px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s;
  }
  
  .contact button:hover {
    background-color: #c2d388;
    color: #0e1f41;
  }
  
  .contact-info {
    flex: 1;
    min-width: 250px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
  }
  
  .contact-info p i {
    margin-right: 0.5rem;
    color: #c2d388;
  }
   /* ---------- Login Section ---------- */
  .login {
    padding: 80px 5%;
    background-color: #e8f0f2;
    background: url('images/New images/shipp.jpg') center/cover no-repeat;
  }
  
  .login h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #0e1f41;
  }
  
  .login-content {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    justify-content: center;
  }
  
  .login form {
    flex: 1;
    min-width: 300px;
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  
  .login input, 
  .login textarea {
    padding: 0.8rem;
    border-radius: 10px;
    border: 1px solid #ccc;
    outline: none;
  }
  
  .login button {
    background-color: #0e1f41;
    color: #fff;
    border: none;
    padding: 0.8rem;
    border-radius: 50px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s;
  }
  .have-account{
    align-items: center;
    display: flex;
    
  }
  
  .login button:hover {
    background-color: #c2d388;
    color: #0e1f41;
  }
  
  .login-info {
    flex: 1;
    min-width: 250px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
  }
  .login-info{
    color: white;
  }
  .login-info p i {
    margin-right: 0.5rem;
    color: #c2d388;
  }
  
  /* ---------- Footer ---------- */
  footer {
    background-color: #0e1f41;
    color: #ffffff;
    padding: 2rem 5%;
    text-align: left;
  }
  .footer ul{
    padding-right: -10px ;
  }
  
  

  
  footer button {
    background-color: #c2d388;
    border: none;
    padding: 0.8rem 1rem;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s;
  }
  
  footer button:hover {
    background-color: #b6ca6f;
  }
  
  /* ---------- Responsive ---------- */
  @media (max-width: 768px) {
    .hero {
      flex-direction: column;
      padding: 80px 5% 40px;
    }
  
    .hero h1 {
      font-size: 2.2rem;
    }
  
    .offer-cards, .services-cards, .trusted-logos, .about-content, .contact-content {
      flex-direction: column;
      align-items: center;
    }
  
    .nav-links {
      display: none;
    
    }
    
  }
  .header {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

/* Prevent content hiding under navbar */
body {
    padding-top: 0px; /* adjust depending on navbar height */
}