/* Base Styling */
body {
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    background-color: #f9f9f9;
    color: #333;
  }
  
  /* Hero Section */
  .hero {
    background: url('hero.jpg') no-repeat center center/cover;
    height: 50vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .hero-overlay {
    background-color: rgba(224, 217, 217, 0.6);
    color: #343232;
    padding: 80px;
    text-align: center;
    border-radius: 15px;
    max-width: 10000px;
  }
  
  .hero-overlay h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
  }
  
  .hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 20px;
  }
  
  /* Buttons */
  .btn {
    padding: 12px 24px;
    font-weight: bold;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s ease-in-out;
  }
  
  .btn-primary {
    background-color: #008080;
    color: rgb(227, 233, 229);
    border: none;
  }
  
  .btn-primary:hover {
    background-color: #13c2c2;
  }
  
  .btn-outline {
    border: 2px solid rgb(236, 223, 223);
    color: white;
  }
  
  .btn-outline:hover {
    background-color: white;
    color: #008080;
  }
  
  /* Intro Section */
  .intro {
    padding: 60px 20px;
    background-color: #9892926e;
    text-align: center;
  }
  
  .intro h2 {
    font-size: 2rem;
    margin-bottom: 15px;
  }
  
  .intro p {
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.1rem;
    color: #666;
  }
    
  /* Custom Style for the Story Text */
  .about-us-text {
    font-size: 1.3rem;
    line-height: 1.8;
    background: linear-gradient(to bottom right, rgba(255, 255, 255, 0.8), rgba(220, 220, 220, 0.6));
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    animation: fadeIn 1.5s ease-out;
}



/* Fade-in animation for the text */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Uniform image sizes for team members without cropping and with rounded borders */
.card-img-top {
    width: 100%;
    height: 150px;
    border-radius: 15px;
    object-fit: contain;
    border-radius: 15px;
}

/* Custom styling for Mission and Vision */
.mission-vision {
  padding: 60px 20px;
  background-color: #f9fbfc;
}

.mission-vision .row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.mission-vision-box {
  background-color: #ffffff;
  padding: 30px 25px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
  width: 100%;
  max-width: 500px;
  margin: auto;
  transition: transform 0.3s ease;
}

.mission-vision-box:hover {
  transform: translateY(-5px);
}
.mission-vision-box {
  text-align: center;
}


.mission-vision h3 {
  color: #0b3d91;
  font-size: 1.8rem;
  margin-bottom: 15px;
}

.mission-vision p {
  font-size: 1.05rem;
  color: #555;
}

/* Optional: Add media query for responsiveness */
@media (min-width: 768px) {
  .mission-vision .col-md-6 {
    flex: 0 0 48%;
  }
}

/* Add spacing between mission and vision */
.mission-section, .vision-section {
    margin-bottom: 30px;
}

/* Hero Section */
section#hero {
    padding: 80px 0;
    background-color: #f0f4f7;
    text-align: center;
}

/* Core Values Section */
.core-values .card {
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
}

.core-values .card:hover {
    transform: translateY(-5px);
}

/* Text box style for "Our Story" */
.about-us-text {
    font-size: 2.3rem;
    line-height: 1.8;
    background: linear-gradient(to bottom right, rgba(255, 25, 255, 0.8), rgba(182, 20, 20, 0.6));
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 10px rgba(110, 7, 7, 0.1);
    animation: fadeIn 1.5s ease-out;
    text-align:center;
    font-weight: bold;
}

/* Our Story Section */
.story {
  padding: 60px 20px;
  background-color: #f9f9f9;
}
.story h3 {
  text-align: center;
  width: 100%;
}

.story .row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.story .col-md-6 {
  flex: 1;
  min-width: 300px;
}

.story .col-md-6 h3 {
  font-size: 2rem;
  color: #0b3d91;
  margin-bottom: 20px;
  text-align: center;
}

.story .col-md-6 p {
  font-size: 1.1rem;
  line-height: 1.6;
  text-align: center;
  color: #555;
}

.story .col-md-5 {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.story .col-md-5 img {
  width: 100%;
  max-width: 400px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Responsive for smaller screens */
@media (max-width: 768px) {
  .story .row {
    flex-direction: column;
    text-align: center;
  }

  .story .col-md-6, .story .col-md-5 {
    text-align: center;
  }

  .story .col-md-6 h3, 
  .story .col-md-6 p {
    text-align: center;
  }
}

  /* Products Section */
  .products {
    padding: 60px 20px;
    text-align: center;
  }
  
  .products h2 {
    font-size: 2rem;
    margin-bottom: 40px;
  }
  
  .product-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
  }
  
  .product-card {
    background-color: rgba(249, 240, 240, 0.752);
    border-radius: 8px;
    padding: 20px;
    width: 300px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
  }
  
  .product-card:hover {
    transform: translateY(-5px);
  }
  
  .product-card img {
    width: 100%;
    height: 160px;
    object-fit: contain;
    margin-bottom: 15px;
  }
  
  .product-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
  }
  .btn-coming-soon {
    padding: 10px 20px;
    background-color: #0b3d91;
    color: white;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    cursor: not-allowed;
    opacity: 0.7;
  }
  
  
  .learn-more {
    display: inline-block;
    margin-top: 10px;
    color: #008080;
    font-weight: 600;
    text-decoration: none;
  }
  
  .learn-more:hover {
    text-decoration: underline;
  }


 /* Team Section */
.team {
    padding: 60px 20px;
    background-color: #8c8e8f;
    text-align: center;
  }
  
  .team h2 {
    font-size: 2rem;
    margin-bottom: 40px;
    color: #222;
  }
  
  .team-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
  }
  
  .team-card {
    background-color: white;
    padding: 20px;
    width: 250px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
  }
  
  .team-card:hover {
    transform: translateY(-5px);
  }
  
  .team-card img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 15px;
    border: 3px solid #008080;
  }
  
  .team-card h3 {
    font-size: 1.1rem;
    margin-bottom: 5px;
  }
  
  .team-card p {
    font-size: 0.95rem;
    color: #666;
  }
  .contact-us {
    background-color: #f4f8fb;
    padding: 60px 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }
  
  .contact-us h3 {
    font-size: 2rem;
    color: #0b3d91;
    text-align: center;
  }
  
  .contact-us p {
    font-size: 1.1rem;
    color: #292828;
    text-align: center;
    max-width: 700px;
  }
  
  .contact-us form {
    max-width: 7000px;
    width: 300%;
  }
  
  .contact-us .form-control {
    border-radius: 8px;
    padding: 12px 15px;
    font-size: 1rem;
    border: 1px solid #920b0b;
    transition: all 0.3s ease;
  }
  
  .contact-us .form-control:focus {
    border-color: #0b3d91;
    box-shadow: 0 0 8px rgba(11, 61, 145, 0.1);
  }
  
  .contact-us .btn {
    font-size: 1rem;
    border-radius: 8px;
    background-color: #0b3d91;
    border: none;
    padding: 10px 30px;
    margin-top: 10px;
  }
  
  .contact-us .btn:hover {
    background-color: #093373;
  }
  
  
  
  /* Footer */
  .footer {
    background-color: #222;
    color: #ccc;
    text-align: center;
    padding: 20px 0;
    font-size: 0.9rem;
  }
  


 

 