* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

header {
  background-color: white;
  padding: 15px 0;
}

.container {
  width: 90%;
  max-width: 1140px;
  margin: auto;
}

.row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

.logo img {
  height: 59px;
}

.navbar ul {
  display: flex;
  gap: 35px;
  list-style: none;
}

.navbar ul li a {
  text-decoration: none;
  color: #001F4D;
  font-weight: 500;
  transition: color 0.3s ease;
}

.navbar ul li a.active {
  color: #B10000; 
}

.navbar ul li a:hover {
  color: #B10000;
}

.contact-button a {
  text-decoration: none;
  background-color: #001F4D;
  color: white;
  padding: 10px 25px;
  border-radius: 6px;
  font-weight: 500;
  transition:  0.3s ease;
}

.contact-button a:hover {
  background-color: #003080;
}
/* Banner Section */
.banner{
  background: url("../assest/assests/Mask\ group\ \(4\).png")no-repeat center center/cover;
  min-height: 590px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.left {
  flex: 1;
  min-width: 300px;
  margin-right: 40px;
}

.left h1 {
  font-size: 48px;
  margin-bottom: 20px;
  color: #001F51;

}

.left h1 span {
  color: red;
  font-style: italic;
}

.left p {
  font-size: 16px;
  color: #2e3c5d;
  margin-bottom: 30px;
  max-width: 500px;
}

.apply-btn {
  background: red;
  color: #fff;
  border: none;
  padding: 12px 24px;
  font-size: 16px;
  cursor: pointer;
  border-radius: 6px;
}

.right {
  flex: 1;
  min-width: 300px;
}

.form-card {
  background: #fff;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.form-card h3 {
  font-size: 18px;
  margin-bottom: 20px;
  text-align: center;
  color: #0a214d;
}

form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.input-group {
  display: flex;
  gap: 10px;
}

input, textarea {
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  width: 100%;
  font-size: 14px;
}

textarea {
  resize: none;
  height: 100px;
}

.submit-btn {
  background: red;
  color: #fff;
  border: none;
  padding: 12px;
  font-size: 16px;
  border-radius: 6px;
  cursor: pointer;
}
/* banner 2 */
    
    .about-team {
        display: flex;
        align-items: center;
        gap: 30px;
        margin: 40px 0;
    }
    
    .team-image {
        flex: 1;
        max-width: 50%;
    }
    
    .team-image img {
      margin-top: 100px;
        width: 100%;
        height: auto;
        border-radius: 10px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    }
    
    .team-content {
        flex: 1;
        padding: 10px;
    }
    
    .team-title {
        font-size: 28px;
        font-weight: bold;
        color: #0b2d5c;
        margin-bottom: 15px;
    }
    
    .team-title span {
        color: #e63946;
    }
    
    .team-description {
        font-size: 16px;
        line-height: 1.6;
        color: #333;
        margin-bottom: 20px;
    }
    
    .read-more1 {
        display: inline-block;
        /* background-color: #0b2d5c; */
        color: white;
        padding: 10px 20px;
        text-decoration: none;
        border-radius: 5px;
        font-size: 14px;
        font-weight: bold;
        transition: background-color 0.3s;
    }
    
    .read-more:hover {
        background-color: #0a2346;
    }
    
    @media (max-width: 768px) {
        .about-team {
            flex-direction: column;
        }
        
        .team-image {
            max-width: 100%;
        }
        
        .team-content {
            padding: 0;
        }
    }
    /* last banner */
    .section-3{
      background: #F3F3F3;
    }
     .title-section {
            text-align: center;
            margin-bottom: 20px;
        }

        .title-section h1 {
            font-size: 32px;
            color: #1a3b6e;
            margin-bottom: 15px;
        }

        .title-section h1 span {
            color: #d21f1f;
            font-weight: bold;
        }

        .description {
            color: #666;
            margin-bottom: 30px;
            text-align: center;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
            line-height: 1.6;
        }

        .products {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 20px;
            height: 412px;
        }

        .product-card {
            background-color: #F3F3F3;
            border-radius: 15px;
            overflow: hidden;
            width: calc(33.33% - 14px);
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease;
        }

        .product-card:hover {
            transform: translateY(-5px);
        }

        .product-img {
            height: 285px;
            overflow: hidden;
        }

        .product-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .product-info {
            padding: 15px;
        }

        .product-info p {
            color: #1a3b6e;
            font-weight: bold;
            font-size: 16px;
        }

        .read-more {
          display: flex;
          justify-content: center;
          margin-top: 20px;
          /* font-size: 18px; */
          /* align-items: center;
            text-align: center;
            margin-top: 30px; */
        }

        .btn {
            background-color: #1a3b6e;
            color: white;
            padding: 10px 25px;
            border: none;
            border-radius: 5px;
            font-weight: bold;
            margin-bottom: 100px;
        }

        .btn:hover {
            
        }

        @media (max-width: 768px) {
            .product-card {
                width: calc(50% - 10px);
            }
        }

        @media (max-width: 576px) {
            .product-card {
                width: 100%;
            }
        }
         .footer {
            background-color: #0a2750;
            color: white;
            padding: 30px 20px;
            text-align: center;
            /* margin-top: 100px; */
        }

        .footer-logo {
            margin-bottom: 20px;
        }

        .footer-logo img {
            max-width: 264px;
            height: auto;
        }

        .footer-info {
            font-size: 14px;
            margin-top: 10px;
            color: #fff;
        }

        .footer-info a {
            color: #fff;
            text-decoration: none;
            margin: 0 10px;
        }

        .footer-info a:hover {
            text-decoration: underline;
        }

        .footer-separator {
            display: inline-block;
            margin: 0 10px;
            opacity: 0.7;
        }