
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: Arial, sans-serif;
        }
        
        .content-wrapper {
            background-color: #000;
            color: #fff;
        }
        
        .mission-vision-container {
            max-width: 1250px;
            margin: 0 auto;
            padding: 0.75rem;
        }
        
        /* Mission Section */
        .mission-section {
            display: flex;
            flex-direction: row;
            align-items: center;
            margin-bottom: 3rem;
            gap: 2rem;
        }
        
        .mission-content {
            flex: 1;
        }
        
        .mission-content h2 {
            font-size: 2rem;
            margin-bottom: 1rem;
            color: #fff;
        }
        
        .mission-content p {
            font-size: 1.1rem;
            line-height: 1.5;
            color: rgba(255, 255, 255, 0.9);
        }
        
        .mission-image {
            flex: 1;
            display: flex;
            justify-content: center;
        }
        
        .circle-image {
            width: 250px;
            height: 250px;
            border-radius: 50%;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
            border: 3px solid #ff3a3a;
        }
        
        .circle-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        /* Vision Section */
        .vision-section {
            display: flex;
            flex-direction: row-reverse;
            align-items: center;
            margin-bottom: 3rem;
            gap: 2rem;
        }
        
        .vision-content {
            flex: 1;
        }
        
        .vision-content h2 {
            font-size: 2rem;
            margin-bottom: 1rem;
            color: #fff;
        }
        
        .vision-content p {
            font-size: 1.1rem;
            line-height: 1.5;
            color: rgba(255, 255, 255, 0.9);
        }
        
        .vision-image {
            flex: 1;
            display: flex;
            justify-content: center;
        }
        
        
        
        /* Responsive Adjustments */
        @media (max-width: 992px) {
            .circle-image {
                width: 220px;
                height: 220px;
            }
        }
        
        @media (max-width: 768px) {
            .mission-section,
            .vision-section {
                flex-direction: column;
                text-align: center;
            }
            
            .circle-image {
                width: 220px;
                height: 220px;
                margin: 1rem auto;
            }
            
            .mission-content,
            .vision-content {
                order: 1;
            }
            
            .mission-image,
            .vision-image {
                order: 2;
            }
        }
        
        @media (max-width: 480px) {
            .container {
                padding: 1rem;
            }
            
            .mission-content h2,
            .vision-content h2 {
                font-size: 1.8rem;
            }
            
            .mission-content p,
            .vision-content p {
                font-size: 1rem;
            }
            
           
            
            .circle-image {
                width: 180px;
                height: 180px;
            }
        }


        .section-wrapper {
    width: 100%;
    height: 35vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 40px 20px;
    background-image: url('/images/minimal\ background.webp');
}

.intro-text {
    max-width: 1200px;
    margin: 0 auto;
    line-height: 1.6;
    color: #333;
    font-size: 16px;
    text-align: center;
}

h2 {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 40px;
    color: #000;
   
}

.commitment-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
    width: 100%;
    max-width: 1200px;
}

.commitment-card {
    flex: 1;
    min-width: 300px;
    max-width: 350px;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.6s ease-out, box-shadow 0.3s ease-out; /* Smooth animation */
    aspect-ratio: 1 / 1;
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1000px; /* Add perspective for 3D effect */
}

.commitment-inner {
    width: 100%;
    height: 100%;
    transform-style: preserve-3d; /* Enable 3D transforms */
    transition: transform 0.7s cubic-bezier(0.68, -0.55, 0.27, 1.55); /* Smooth and bouncy transition */
}

.commitment-card:hover .commitment-inner {
    transform: rotateY(180deg); /* Flip the card */
}

.commitment-front, .commitment-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden; /* Hide the back when flipped */
}

.commitment-front {
    display: flex;
    justify-content: center;
    align-items: center;
}

.commitment-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.commitment-title {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    padding: 15px;
    background: rgba(255, 255, 255, 0.85);
    color: #000;
    font-size: 18px;
    font-weight: 600;
    text-align: center;
    z-index: 2;
}

.commitment-back {
    background-color: #fff; /* Optional: background color for the back */
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    transform: rotateY(180deg); /* Initially rotate back side */
}

.commitment-back-title {
    font-size: 20px;
    font-weight: bold;
    text-align: center;
    color: #333;
    max-width: 90%;
    margin: 0 auto;
}

.commitment-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

@media (max-width: 992px) {
    .commitment-grid {
        justify-content: space-around;
    }

    .commitment-card {
        min-width: 250px;
    }
}

@media (max-width: 768px) {
    .section-wrapper {
        height: auto;
    }

    .commitment-card {
        min-width: 100%;
        aspect-ratio: 16 / 9;
    }
}

.hero-container {
    min-height: 89vh; /* Better on mobile than 100vh */
          width: 100%;
          display: flex;
          flex-direction: column;
          justify-content: center;
          align-items: center;
          text-align: center;
          position: relative;
          overflow: hidden;
      }


      /* For tablets and medium devices */
@media (max-width: 1024px) {
  .hero-container {
      min-height: 80vh;
  }
}

/* For small tablets and large phones */
@media (max-width: 768px) {
  .hero-container {
      min-height: 70vh;
  }
}

/* For smaller phones */
@media (max-width: 480px) {
  .hero-container {
      min-height: 60vh;
  }
}


      .background-image {
          position: absolute;
          top: 0;
          left: 0;
          width: 100%;
          height: 100%;
          z-index: 1;
          background-image: url("/images/aboutus.png"); /* Replace with your actual image path */
          background-size: cover;
          background-position: center;
      }
      
      .overlay {
          position: absolute;
          top: 0;
          left: 0;
          width: 100%;
          height: 100%;
         
          z-index: 2;
      }
      
      .hero-text {
          z-index: 3;
          position: relative;
          padding: 0 2rem;
          color: #f8f8f8;
      }
      
      .hero-text h1 {
          font-size: 3rem;
          color: #f8f8f8;
          font-weight: 400;
          margin-bottom: 1rem;
          text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
      }
      
      .hero-text h2 {
          font-size: 2.5rem;
          font-weight: 400;
          text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
      }
      
      .red-text {
          color: #ff0000;
      }
      
      @media (max-width: 768px) {
          .hero-text h1 {
              font-size: 2rem;
          }
          
          .hero-text h2 {
              font-size: 1.6rem;
          }
      }


      
 .contact-pill {
  display: flex;
  align-items: center;
  text-decoration: none;
  border: 1px solid #ccc;
  border-radius: 999px;
  overflow: hidden;
  font-family: 'Poppins', sans-serif;
  width: fit-content;
  background-color: #fff;
  margin: 0 auto;
  flex-wrap: wrap; /* Allows wrapping on very small screens */
}

.pill-left,
.pill-right {
  padding: clamp(10px, 2vw, 14px) clamp(20px, 5vw, 35px);
  font-size: clamp(13px, 1.2vw, 15px);
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap; /* Prevent text wrapping by default */
}

.pill-left {
  background-color: #f0f0f0;
  color: #333;
}

.pill-right {
  background-color: #fff;
  color: #000;
}

.phone-icon {
  color: #ff0000;
  margin-right: 10px;
  font-size: clamp(13px, 1.2vw, 15px);
}

/* Optional tweak for very narrow screens */
@media (max-width: 400px) {
  .contact-pill {
    flex-direction: column;
    align-items: stretch;
  }

  .pill-left,
  .pill-right {
    width: 100%;
    justify-content: center;
    border-radius: 0; /* Reset radius for stacked look */
  }

  .pill-left:first-child {
    border-top-left-radius: 999px;
    border-top-right-radius: 999px;
  }

  .pill-right:last-child {
    border-bottom-left-radius: 999px;
    border-bottom-right-radius: 999px;
  }
}


   .our-story-container {
            background-image: url(../images/minimal\ background.webp);
            margin: 0 auto;
            padding: 40px 40px;
        }
        
        .our-story-section {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 20px;
        }
        
        .aboutus-content-wrapper {
            flex: 1;
            min-width: 300px;
        }
        
        .image-wrapper {
            flex: 1;
            min-width: 300px;
            display: flex;
            justify-content: center;
        }
        
        .circular-image {
            width: 400px;
            height: 400px;
            border-radius: 50%;
            object-fit: cover;
            border: 5px solid #ff0000;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        }
        
        .our-story-container h1 {
            font-size: 3.5rem;
            margin-bottom: 20px;
            font-weight: 700;
        }
        
        .highlight {
            color: red;
        }
        
        .our-story-container h2 {
            font-size: 1.5rem;
            color:black;
            margin-bottom: 20px;
            font-weight: 500;
        }
        
       .our-story-container p {
            font-size: 1rem;
            color: black;
            line-height: 1.6;
            margin-bottom: 20px;
        }
        
        @media (max-width: 768px) {
            .our-story-section {
                flex-direction: column;
            }
            
            .circular-image {
                width: 300px;
                height: 300px;
            }
            
           .our-story-container h1 {
                font-size: 2.5rem;
            }
        }

