﻿      body {
      margin: 0;
     font-family: 'Poppins', sans-serif !important;
      background: #fff;
      color: #222;
    }
    header {
      background: #fff;
     
      position: sticky;
      top: 0;
      z-index: 100;
    }
    
    /* ================================================================================= */
    
                        /* ====== Slider Container ====== */

.hero-slider {
  width: 100%;
  overflow: hidden;
  position: relative;
  height: 75vh;
  max-height: 700px;
  max-width:1370px;
  margin-top:72px;
}

.slider-wrapper {
  display: flex;
  transition: transform 1s ease-in-out;
  width: 100%; /* 100% per slide × number of slides */
  height: 100%;
}

.slide {
  flex: 0 0 100%;
  position: relative;
  height: 100%;
  overflow: hidden;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: fit;
  transition: transform 1.5s ease;
}

/* Slider Buttons */
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.4);
  color: #fff;
  border: none;
  padding: 12px 18px;
  cursor: pointer;
  z-index: 10;
  font-size: 24px;
  border-radius: 50%;
  transition: background-color 0.3s ease;
}

.slider-btn:hover {
  background-color: rgba(0, 0, 0, 0.7);
}

.slider-btn.prev {
  left: 20px;
}

.slider-btn.next {
  right: 20px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .slider-btn {
    padding: 10px 16px;
    font-size: 20px;
  }

  .slider-btn.prev {
    left: 10px;
  }

  .slider-btn.next {
    right: 10px;
  }
}

@media (max-width: 480px) {
  .slider-btn {
    padding: 8px 14px;
    font-size: 18px;
  }

  .slider-btn.prev {
    left: 6px;
  }

  .slider-btn.next {
    right: 6px;
  }
}

/* Zoom animation on active image */
.slide.active img {
  transform: scale(1.1);
}

/* Responsive Fixes */
@media (max-width: 768px) {
  .hero-slider {
    height: 50vh;
  }
}

@media (max-width: 480px) {
  .hero-slider {
    height: 40vh;
  }
}

 /* ================================================================================= */


.hero-section {
  background-image: url('banner.jpg'); /* 🔁 Replace with your image path */
  background-size: cover;
  background-position: center;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-left: 5%;
  position: relative;
  color: white;
}

.hero-content {
  max-width: 800px;
  animation: fadeInLeft 1.5s ease-out;
  
  
/* Optional: dark overlay for readability */
  padding: 20px;
  border-radius: 10px;
}

.hero-content h1 {
  font-size: 3.8rem;
  margin-bottom: 20px;
}

.tagline {
  font-size: 1.6rem;
  margin-bottom: 10px;
}

/* Animation */
@keyframes fadeInLeft {
  0% {
    opacity: 0;
    transform: translateX(-50px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2rem;
  }

  .tagline {
    font-size: 1rem;
  }
}


/* ========== Back To Top ========== */


#backToTop {
  position: fixed;
  bottom: 70px;
  right: 40px;
  z-index: 999;
  font-size: 25px;
  background-color: #45a29e;
  color: white;
  border: none;
  outline: none;
  padding: 10px 18px;
  border-radius: 70%;
  cursor: pointer;
  display: none;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  transition: background 0.3s, transform 0.3s;
}

#backToTop:hover {
  background-color: #368179;
  transform: scale(1.3);
}

@media (max-width: 600px) {
  #backToTop {
    bottom: 20px;
    right: 20px;
    padding: 8px 12px;
    font-size: 18px;
  }
}
/* ================================================================================= */

.querencia-commitment {
  background-image: url('bc1.jpg'); /* Replace with your image */
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
  height: 85vh;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.commitment-overlay {
  background: rgba(0, 0, 0, 0.8); /* dark tint */
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem;
  text-align: center;
}

.commitment-content {
  max-width: 900px;
  color: #fff;
  animation: slideFadeUp 1.2s ease-out both;
}

.commitment-content h2 {
  font-size: 2.6rem;
  margin-bottom: 1rem;
  color: #45a29e;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.commitment-content p {
  font-size: 1.2rem;
  line-height: 1.7;
  color: #e0e0e0;
}

/* Animation */
@keyframes slideFadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Design */
@media (max-width: 1024px) {
  .querencia-commitment {
    height: auto;
    padding: 3rem 1rem;
    background-attachment: scroll;
  }

  .commitment-content h2 {
    font-size: 2.2rem;
  }

  .commitment-content p {
    font-size: 1.1rem;
  }
}

@media (max-width: 600px) {
  .commitment-content h2 {
    font-size: 1.8rem;
  }

  .commitment-content p {
    font-size: 1rem;
  }
}




 /* ================================================================================= */

/* Section Styling */
.who-we-are {
  background-image: url('mainbg.png'); /* Update path if needed */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  padding: 60px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Overlay */
.who-overlay {
  background: rgba(10, 20, 30, 0.2); /* Dark overlay for readability */
  width: 100%;
  padding: 2rem;

height: 100%;
display: flex;
}

/* Content */
.who-content {
  color: #fff;
  text-align: center;
  max-width: 840px;
  float:left;
  animation: fadeUp 1.2s ease-out both;
}

.who-content h2 {
  font-size: 2.8rem;
  margin-bottom: 20px;
  color:#035d5a;;
}

.who-content p {
  font-size: 1.15rem;
  line-height: 1.6;
  color: #000000;
}

/* Button */
.about-btn {
  display: inline-block;
  margin-top: 25px;
  padding: 12px 24px;
  background-color: #035d5a;
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  border-radius: 25px;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease; box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.about-btn:hover { background-color: #368179; transform: translateY(-2px); box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3); } 
.about-btn:active { transform: scale(0.97); box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2); }


/* Animation */ @keyframes fadeUp { 0% { opacity: 0; transform: translateY(40px); } 100% { opacity: 1; transform: translateY(0); } }

/* Responsive */
@media (max-width: 768px) {
  .who-content h2 {
    font-size: 1.8rem;
  }

  .who-content p {
    font-size: 1rem;
  }

  .about-btn {
    padding: 10px 20px;
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .who-overlay {
    padding: 30px 20px;
  }

  .who-content h2 {
    font-size: 1.6rem;
  }

  .who-content p {
    font-size: 0.95rem;
  }

  .about-btn {
    padding: 10px 18px;
    font-size: 0.9rem;
  }
}




    /* ================================================================================= */
    
 .video-container {
      width: 100%;
      max-width: 700px;
      margin: 20px auto;
      border: 2px solid #ccc;
      padding: 10px;
      border-radius: 8px;
      box-shadow: 0 0 10px rgba(0,0,0,0.1);
    }
    iframe {
      width: 100%;
      height: 400px;
      border: none;
    }

    /* ================================================================================= */
    
       .employee-corner {
      max-width: 1200px;
      margin: auto;
      text-align: center;
    }

    .employee-corner h2 {
      font-size: 2.5rem;
      margin-bottom: 10px;
      color: #333;
    }

    .employee-corner p {
      font-size: 1rem;
      color: #666;
      margin-bottom: 40px;
    }

    .employee-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 25px;
      margin-bottom: 55px;
    }

    .employee-card {
      background: #ffffffdd;
      border-radius: 15px;
      padding: 20px;
      box-shadow: 0 8px 20px rgba(0,0,0,0.4);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .employee-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 12px 30px rgba(0,0,0,0.8);
    }

    .employee-image {
      width: 100px;
      height: 100px;
      border-radius: 50%;
      object-fit: cover;
      margin-bottom: 15px;
      border: 3px solid #0077cc;
    }

    .employee-name {
      font-weight: bold;
      font-size: 1.2rem;
      margin-bottom: 5px;
      color: #222;
    }

    .employee-role {
      font-size: 0.95rem;
      color: #0077cc;
      margin-bottom: 15px;
    }

    .employee-testimonial {
      font-size: 0.9rem;
      color: #444;
      font-style: italic;
      line-height: 1.5;
    }

    @media (max-width: 600px) {
      .employee-corner h2 {
        font-size: 2rem;
      }
    }
    
    /* ================================================================================= */
    
    .life-section {
      max-width: 1200px;
      margin: 0 auto;
      padding: 60px 20px;
      text-align: center;
      linear-gradient(135deg, #f4f7fa, #e9ebf0);
    }

    .life-section h2 {
      font-size: 2.8rem;
      color: #004466;
      margin-bottom: 10px;
    }

    .life-section p {
      font-size: 1rem;
      color: #666;
      margin-bottom: 40px;
    }

    .carousel-container {
      position: relative;
      overflow: hidden;
      border-radius: 15px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    }

    .carousel-slides {
      display: flex;
      transition: transform 0.6s ease-in-out;
    }

    .carousel-slide {
      min-width: 100%;
      transition: opacity 0.5s ease;
      position: relative;
    }

    .carousel-slide img {
      width: 100%;
      height: 450px;
      object-fit: cover;
    }

    .carousel-btn {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      background-color: rgba(0, 0, 0, 0.5);
      color: white;
      border: none;
      padding: 12px 18px;
      cursor: pointer;
      font-size: 1.5rem;
      border-radius: 50%;
      transition: background 0.3s ease;
      z-index: 10;
    }

    .carousel-btn:hover {
      background-color: rgba(0, 0, 0, 0.8);
    }

    .prev-btn {
      left: 15px;
    }

    .next-btn {
      right: 15px;
    }

    @media (max-width: 768px) {
      .life-section h2 {
        font-size: 2rem;
      }

      .carousel-slide img {
        height: 280px;
      }
    }
    /* ================================================================================= */
    
   /* Section styling */
.achievements-section {
  padding: 30px 20px 60px 20px;
  background: linear-gradient(135deg, #f4f7fa, #e9ebf0);
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 80vh;
}

/* Heading */
.heading {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: 2.8rem;
  color: #3a3a3a;
  margin-bottom: 60px;
  font-weight: 700;
  letter-spacing: 1.5px;
  user-select: none;
  text-align: center;
}

/* Cards container */
.cards-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  max-width: 1200px;
  width: 100%;
}

/* Card styling */
.card {
  background: #ffffff;
  border-radius: 16px;
  padding: 30px 25px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.38);
  cursor: default;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  user-select: none;
  border: 1.5px solid transparent;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.card:hover, .card:focus {
  transform: translateY(-10px);
  box-shadow: 0 20px 30px rgba(118, 75, 162, 0.3);
  border-color: #764ba2;
  outline: none;
}

/* Icon */
.card-icon {
  font-size: 3.5rem;
  margin-bottom: 20px;
  color: #764ba2;
  animation: iconBounce 2s infinite ease-in-out;
}

/* Card heading */
.card h3 {
  font-size: 1.4rem;
  color: #2a2a2a;
  margin-bottom: 12px;
  font-weight: 600;
}

/* Card paragraph */
.card p {
  color: #555555;
  font-size: 1rem;
  line-height: 1.5;
}

/* Animations */
@keyframes iconBounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

/* Responsive */
@media (max-width: 480px) {
  .achievements-section {
    padding: 40px 15px;
  }
  .heading {
    font-size: 2.2rem;
  }
  .card {
    padding: 20px 15px;
  }
  .card-icon {
    font-size: 3rem;
  }
}

    /* ================================================================================= */
    
    .fotter-content {
  max-width: 800px;
  animation: fadeInLeft 1.5s ease-out;
  background: rgba(255, 255, 255, 0.9);
/* Optional: dark overlay for readability */
  padding: 20px;
  border-radius: 10px;
}
    /* ================================================================================= */