@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.0/css/all.min.css');

*{
    margin: 0;
    padding: 0;
    font-family: "Spectral", serif;
}

.header{
    min-height: 100vh;
    width: 100%;
    background-image: linear-gradient(rgba(0,0,0,0.4),rgba(0,0,0,0.4)),url('web pics/flower.jpg');
    background-position: center;
    background-size: cover;
    position: relative;
}

/* ✅ Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #fff;
  padding: 15px 40px;
  position: sticky;
  top: 0;
  z-index: 999;
}

/* Logo */
.logo {
  height: 100px;
  width: 100px;
  margin-bottom: -20%;
  margin-top: -8%;
}

/* Nav Links (Desktop) */
.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
}

.nav-links li a {
  color: #d84315;
  text-decoration: none;
  font-weight: bold;
  font-size: 15px;
  transition: color 0.3s ease;
}

.nav-links li::after{
     content: '';
     width: 0%;
     height: 2px;
     background: #ffd700;
     display: block;
     margin: auto;
     transition: 0.5s;     
}

.nav-links li:hover::after{
     width: 100%;
}

/* Bars and Close Icon - Hidden on Desktop */
#openMenu,
#closeMenu {
  color: black;
  font-size: 24px;
  cursor: pointer;
  position: absolute;
  top: 20px;
  display: none; /* start hidden */
  z-index: 1001;
}

#openMenu {
  right: 20px;
}

#closeMenu {
  right: 20px;
}

/* Show hamburger on mobile only */
@media (max-width: 768px) {
  #openMenu {
    display: block; /* show bars by default */
  }

  #closeMenu {
    display: none;
  }


  .nav-links {
    /* Mobile menu styles */
    flex-direction: column;
    position: fixed;
    background: #ff7400;
    height: 100vh;
    width: 170px;
    top: -5%;
    gap: 0;
    right: -220px;
    padding-top: 60px;
    transition: 0.4s ease;
    z-index: 1000;
    align-items: center;
  }
}

/* ✅ Responsive for Mobile */
@media (max-width: 768px) {
  .nav-links li a {
    font-size: 18px;
    color: white;
  }
}

.text-box{
     width: 85%;
     color: #fff;
     position: absolute;
     top: 60%;
     left:50%;
     transform: translate(-50%,-50%);
     text-align: center;
}

.text-box h1{
     font-size: 55px;
     color: #fff;
}

.text-box p{
     margin: 10px 0 40px;
     font-size: 22px; 
     color: #;        
}

.hero-btn{
     display: inline-block;
     text-decoration: none;
     color: #fff;
     border: 1px solid #fff;
     padding: 12px 34px;
     font-size: 13px;
     background: transparent;
     position: relative;
     cursor: pointer;
}

.hero-btn:hover{
     border: 1px solid #f44336;
     background: #f44336;
     transition: 1s;
}

@media(max-width: 700px) {
     .text-box h1{
         font-size: 30px; 
    }
    
     .text-box p{
     font-size: 15px;         
    }     

     .hero-btn{
         color: #fff;
         background: transparent;
         cursor: pointer;
     }
}





/*-- home --*/

/* WhatsApp Floating Chat Button */
.whatsapp-chat {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
}

.whatsapp-chat a {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 60px;
  height: 60px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50%;
  font-size: 30px;
  text-decoration: none;
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
  animation: pulse 2s infinite;
  transition: transform 0.3s ease;
}

.whatsapp-chat a:hover {
  transform: scale(1.1);
}

/* Tooltip */
.whatsapp-chat .tooltip {
  position: absolute;
  top: -35px;
  background-color: #222;
  color: #fff;
  padding: 6px 10px;
  border-radius: 5px;
  font-size: 13px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transform: translateY(5px);
  transition: 0.3s;
}

.whatsapp-chat a:hover .tooltip {
  opacity: 1;
  transform: translateY(0);
}

/* Pulse Animation */
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* Font Awesome must be included in your <head> */

.social-sidebar {
  position: fixed;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 999;
}

.social-icon {
  width: 30px;
  height: 30px;
  background-color: #333;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
  border-radius: 0 5px 5px 0;
  font-size: 18px;
}

.social-icon:hover {
  transform: scale(1.1);
}

/* Platform-specific colors (optional) */
.social-icon.facebook { background-color: #3b5998; }
.social-icon.instagram { background-color: #E1306C; }
.social-icon.youtube { background-color: #FF0000; }
.social-icon.whatsapp { background-color: #25d366; }
.social-icon.linkedin { background-color: #0077b5; }
.social-icon.twitter { background-color: #1da1f2; }

@media(max-width: 700px) {
     .social-sidebar {
         top: 60%;
      }
  
     .social-icon {
         width: 25px;
         height: 25px;
     }
}

body {
    background-color: #fff;
}

.vision{
   width: 80;
   margin: auto;
   text-align: center;
   padding-top: 100px;
}

h1{
   font-size: 50px;
   font-weight: 600;
}

p{
   font-size: 18px;
   font-weight: 300;
   line-height: 22px;
   padding: 10px;
}

.vision h1 {
   color: #223e92;
}

.vision h2 {
   color: #d84315;
   font-size: 22px;
}

.vision p {
   font-size: 19px;
}

.vision {
  padding: 40px 20px;
}

.vision-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.motto {
  flex: 1 1 40%;
  max-width: 400px;
}

.motto img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

.vision-col {
  flex: 1 1 50%;
  max-width: 600px;
}

.vision-col h1 {
  font-size: 50px;
  color: #003366;
}

.vision-col h2 {
  font-size: 26px;
  color: #d84315;
  font-style: italic;
}

.vision-col p {
  font-size: 19px;
  color: #333;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .vision-row {
    flex-direction: column;
    text-align: center;
  }

  .motto,
  .vision-col {
    max-width: 100%;
  }
}

.footprint-container {
  display: flex;
  justify-content: center; /* Centers both items horizontally */
  align-items: center;     /* Aligns them vertically */
  gap: 70px;               /* Space between the images */
  flex-wrap: wrap;         /* Ensures responsiveness on smaller screens */
  margin-top: 40px;
}

.map-img {
  width: 40%; /* Adjust as per your preference */
  max-width: 400px;
}

.timeline-img {
  width: 50%;
  max-width: 500px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .map-img {
     width: 80%;
   }

  .timeline-img {
     width: 80%;
   }
}

.unit {
  padding: 60px 20px;
}

.unit h1{
  text-align: center;
  color: #223e92;
  font-size: 50px;
}

.unit-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 1100px;
  margin: 0 auto;
  gap: 40px;
  background-color: #fff;
}

.unit-text {
  flex: 1 1 500px;
}

.unit-text h2 {
  font-size: 28px;
  color: #d84315;
  margin-bottom: 20px;
}

.unit-text p {
  font-size: 18px;
  color: #555;
  margin-bottom: 20px;
}

.unit-btn {
  padding: 10px 20px;
  background-color: #e74c3c;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: 0.3s;
}

.unit-btn:hover {
  background-color: #c0392b;
}

.unit-image {
  flex: 1 1 250px;
  text-align: center;
}

.unit-image img {
  max-width: 100%;
  width: 250px;
  height: auto;
  border-radius: 10px;
}

.partners-section {
  padding: 60px 20px;
  text-align: center;
}

.partners-section h1 {
  font-size: 50px;
  color: #223e92;
  margin-bottom: 40px;
}

@media (max-width: 768px) {
   .partners-section h1 {
       margin-top: -20%;
   }
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* 4 logos per row */
  gap: 40px;
  align-items: center;
  justify-items: center;
}

.partners-grid img {
  max-width: 120px;
  height: auto;
  transition: transform 0.3s ease;
  filter: grayscale(100%);
}

.partners-grid img:hover {
  transform: scale(1.1);
  filter: grayscale(0%);
}

/* Responsive for smaller screens */
@media (max-width: 768px) {
  .partners-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .partners-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .partners-grid img {
   filter: grayscale(0%);
  }
}

.main-heading {
  text-align: center;
  margin-top: 40px;
  font-size: 50px;
  color: #223e92;
}

.areas-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  padding: 40px 20px;
  max-width: 1000px;
  margin: auto;
}

/* Fixed width ensures 3 items in one row, next row adjusts */
.area-item {
  width: 300px;
  text-align: center;
  box-shadow: none;
  border-radius: 0;
  background: none;
  padding: 0;
  margin: 0;
  transition: none;
}

.area-item:hover {
  transform: translateY(-5px);
}

.area-item h2 {
  margin: 15px 0 10px;
  font-size: 28px;
  color: #d84315;
}

.area-item img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
}

/* Responsive adjustments */
@media (max-width: 900px) {
  .area-item {
    width: 45%;
  }
}

@media (max-width: 600px) {
  .area-item {
    width: 90%;
  }
}

.testimonials {
  background-color: #f2fcfe;
}

.testimonials h1{
  color: #223e92;
  text-align: center;
}

@media (max-width: 768px) {
   .testimonials h1 {
       margin-top: -20%;
   }
}


.testimonial-container {
  margin: auto;
  max-width: 800px;
}

.testimonial {
  background-color: #fff;
  padding: 25px;
  margin-bottom: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  text-align: center;
}

.testimonial h4 {
  margin-top: 15px;
  color: #555;
  font-weight: normal;
}

.testimonial img{
     height: 40px;
     margin-left: 5px;
     margin-right: 30px;
     border-radius: 50%;
}

.testimonial .fa{
    color: #f44336;
}

/* Style slick dots to appear horizontally as small circles */
.slick-dots {
  display: flex !important;
  justify-content: center;
  list-style: none;
  padding: 0;
  margin-top: 20px;
}

.slick-dots li {
  margin: 0 5px;
}

.slick-dots button {
  border: none;
  background: #ccc;
  border-radius: 50%;
  width: 12px;
  height: 12px;
  text-indent: -9999px; /* hides 1, 2, 3 */
  cursor: pointer;
}

.slick-dots .slick-active button {
  background: #333;
}

.gallery-section {
  padding: 40px 20px;
  background: #fff;
  text-align: center;
}

@media (max-width: 768px) {
   .gallery-section {
       margin-top: -10%;
   }
}


.gallery-heading {
  font-size: 50px;
  margin-bottom: 30px;
  color: #223e92;
}

.gallery-slider img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 10px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.gallery-slider img:hover {
  transform: scale(1.05);
}

/* Lightbox Styling */
#lightbox {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0,0,0,0.85);
  justify-content: center;
  align-items: center;
  z-index: 999;
}

#lightbox-img {
  max-width: 90%;
  max-height: 80vh;
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
}

.close-btn {
  position: absolute;
  top: 20px;
  right: 30px;
  color: #fff;
  font-size: 40px;
  cursor: pointer;
}

.cta1{
    margin: 100px auto;
    width: 80%;
    background-image: linear-gradient(rgba(0,0,0,0.5),rgba(0,0,0,0.5)),url('web pics/j.webp');
    background-position: center;
    background-size: cover;
    border-radius: 10px;
    text-align: center;
    padding: 100px 0;
}

.cta1 h1{
    color: #fff;
    margin-bottom: 40px;
    padding: 0;
}

@media (max-width: 600px) {
  .cta1{
      margin-top: 35px;  
  }
 
  .cta1 h1 {
      font-size: 39px;
  }
}











/* about us page */

.sub-header{
    height: 80vh;
    width: 100%;
    background-image: url('web pics/about.jpg');
    background-position: 50% 70%;
    text-align: center;
    background-size: cover;
    color: #fff;
    cursor: pointer;
}

@media (max-width: 600px) {
    .sub-header{
       height: 80vh;
       background-position: center;
       background-size: contain;
       background-repeat: no-repeat;
    }
} 

.about-us{
  background-color: #f5e6ca;
}

.row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap; /* allows stacking on small screens */
  padding: 40px;
}

@media (max-width: 600px) {
    .row {
        margin-top: -27%;
    }
}

.row h1{
  color: #223e92;
  font-size: 50px;
  text-align: center;
}

@media (max-width: 600px) {
    .row h1 {
        margin-top: -15%;
    }
}

.row h2{
  color: #223e92;
  text-align: center;
  font-size: 33px;
}

.row h3{
  color: #d84315;
  font-size: 25px;
  text-align: center;
  font-style: italic;
}

@media (max-width: 600px) {
    .row h2 {
        margin-top: -15%;
    }
}

.row p{
  text-align: center;
}

.vision1{
   width: 80;
   margin: auto;
   text-align: center;
   padding-top: 100px;
}

.vision1 h1{
   color: #223e92;
}

.vision1 img{
   width: 100%;
   max-width: 360px;
   height: auto;

}

.vision1{
  background-color: #f5e6ca;
}

.timeline-section {
  background: #f5e6ca;
  padding: 60px 20px;
  color: #333;
}

@media (max-width: 600px) {
    .timeline-section {
        margin-top: -15%;
    }
}

.timeline-container {
  max-width: 1000px;
  margin: auto;
}

.timeline-section h2 {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 50px;
  color: #b30000;
}

.timeline {
  position: relative;
  margin-left: 30px;
  padding-left: 20px;
  border-left: 4px solid #FFD700;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 12px;
  height: 12px;
  background: #FFD700;
  border-radius: 50%;
}

.timeline-item {
  margin-bottom: 50px;
  position: relative;
}

.timeline-date {
  font-weight: bold;
  color: #b30000;
  font-size: 1.2rem;
  margin-bottom: 5px;
}

.timeline-content {
  background: #fdf6d9;
  padding: 20px;
  border-left: 5px solid #FFD700;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
}

.timeline-content h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: #333;
}

.timeline-content p {
  font-size: 1rem;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .timeline {
    margin-left: 0;
    padding-left: 10px;
  }

  .timeline-section h2 {
    font-size: 2rem;
  }

  .timeline-content {
    font-size: 0.95rem;
  }
}

/* Top Heading */
.mv-heading-section {
  text-align: center;
  padding: 60px 20px 30px;
  background-color: #f5e6ca;
}

.mv-heading-section h1 {
  font-size: 36px;
  color: #223e92;
  margin-bottom: 15px;
}

@media (max-width: 600px) {
    .mv-heading-section {
        margin-top: -22%;
    }
}

.mv-heading-section p {
  font-size: 18px;
  max-width: 700px;
  margin: 0 auto;
  color: #555;
}

/* Cards Section */
.mv-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  padding: 40px 20px 60px;
  background-color: #f5e6ca;
}

@media (max-width: 600px) {
    .mv-section {
        margin-top: -12%;
    }
}

.mv-card {
  max-width: 400px;
  text-align: center;
}

.mv-title {
  font-size: 24px;
  color: #d84315;
  margin-bottom: 15px;
}

.mv-card img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
  transition: transform 0.4s ease;
}

.mv-card img:hover {
  transform: scale(1.05);
}

.mv-desc {
  margin-top: 15px;
  font-size: 18px;
  line-height: 1.6;
  color: #000;
}

/* Responsive Design */
@media (max-width: 768px) {
  .mv-heading-section h1 {
    font-size: 28px;
  }

  .mv-heading-section p {
    font-size: 18px;
  }

  .mv-title {
    font-size: 23px;
  }

  .mv-desc {
    font-size: 16px;
  }

  .mv-card {
    max-width: 100%;
  }
}

.philosophy-section {
  padding: 30px 20px;
  background-color: #f5e6ca;
}

.philosophy-heading {
  text-align: center;
  font-size: 50px;
  color: #223e92;
  margin-bottom: 30px;
  font-weight: 700;
  letter-spacing: 1px;
}

.philosophy-section p {
  text-align: center;
  font-size: 20px;   
  margin-bottom: 30px;
}

@media(max-width: 768px){
   .philosophy-section p {
      font-size: 18px;
   }
}

.philosophy-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.philosophy-card {
  background: #ffffff;
  padding: 25px 20px;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  text-align: left;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.philosophy-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.philosophy-card .icon {
  font-size: 40px;
  margin-bottom: 15px;
  color: #ff6b6b;
}

.philosophy-card h3 {
  margin-bottom: 10px;
  color: #1a1a1a;
  font-size: 20px;
  font-weight: 600;
}

.philosophy-card p {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
}

@media(max-width: 768px){
   .philosophy-card p {
      font-size: 16px;
   }
}

.vision1 h3{
  color: #d84315;
}

.vision1 h4{
  color: #1575d8;
}

.values{
  background-color: #f5e6ca;
}

.values h1{
  color: #223e92;
  text-align: center;
  font-size: 50px;
}

.section-container1 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  padding: 50px;
  flex-wrap: wrap; /* mobile responsive */
  color: #ffdab4;
  background-color: #f5e6ca;
}

.image-container img {
  width: 300px;
  height: auto;
  object-fit: cover;
  animation: morph 8s infinite alternate ease-in-out;
  transition: all 0.5s ease;
  display: block;
}

@keyframes morph {
  0% {
    border-radius: 50% 50% 50% 50%;
  }
  25% {
    border-radius: 60% 40% 30% 70%;
  }
  50% {
    border-radius: 50% 60% 70% 40%;
  }
  75% {
    border-radius: 40% 70% 60% 30%;
  }
  100% {
    border-radius: 50% 50% 50% 50%;
  }
}

.text-container {
  max-width: 500px;
  color: #222;
  background-color: #f5e6ca;
}

.text-container h3 {
  font-size: 25px;  
  color: #d84315;
}

.text-container h4 {
  color: #0b2891;
  font-size: 19px;
  margin-bottom: 10px;
}

.text-container p {
  font-size: 16px;
  line-height: 1.6;
}

.about-col {
  flex: 1 1 300px;
  min-width: 300px;
}

.about-col h1{
  padding-top: 0;
}

.about-col p{
  padding: 15px 0 25px;
}

.oval-image img {
  width: auto;
  height: 550px;
  margin-top: 20px;
  object-fit: contain;
  border-radius: 50%; /* makes it an oval/circle */
  animation: float 2s ease-in-out infinite;
}

/* Optional: floating animation */
@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@media(max-width: 768px){
   .row{
       flex-direction: column;
       text-align: center;
   }
   .oval-image img {
       max-width: 80%;
       padding-top: 0;
       padding-bottom: 0;
       margin-top: 0;
       margin-bottom: 0;
       height: auto;
   }   
}

/* team */

.sub-header2{
    height: 90vh;
    width: 100%;
    background-image: url('web pics/teampic.png'); 
    background-position: center;
    text-align: center;
    background-size: cover;
    color: #fff;
    cursor: pointer;
}

@media (max-width: 600px) {
    .sub-header2 {
       height: 80vh;
       background-position: center;
       background-size: contain;
       background-repeat: no-repeat;
    }
} 

.teamquote {
  font-size: 40px;
  color: #d84315;
  font-style: italic;
  text-align: center;
  margin-bottom: 2px; 
  margin-top: 40px;
}

@media (max-width: 768px) {
   .teamquote{
      font-size: 30px;
      margin-top: -15%;
    }
}

.team-section {
  margin-bottom: 50px;
}

.team-section h1 {
  color: #223e92;;
  margin-bottom: 20px;
  margin-left: 570px;
  margin-right: 400px;
  text-align: center; 
  font-size: 50px;
  font-weight: 600;
  border-bottom: 2px solid #223e92;;
  display: inline-block;
  padding-bottom: 6px;
}

.team-section h2 {
  color: #223e92;;
  margin-bottom: 20px;
  margin-left: 460px;
  margin-right: 250px;
  text-align: center; 
  font-size: 50px;
  font-weight: 600;
  border-bottom: 2px solid #223e92;;
  display: inline-block;
  padding-bottom: 6px;
}

.team-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.member-card {
  background: #f5e1c7;
  padding: 15px;
  border-radius: 10px;
  text-align: center;
  width: 220px;
  height:300px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  transition: 0.3s;
  margin: 1px;
}

.member-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(0,0,0,0.15);
}

.member-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 8px;
}

.member-card h3 {
  font-size: 1.1rem;
  margin-top: 1px;
  color: #d84315;;
}
.member-card h4 {
  font-size: 1.4rem;
  margin-top: 1px;
  color: #d84315;;
}

.member-card p {
  font-size: 1rem;
  color: #555;
  margin-top: -5%;
}

@media(max-width: 768px) {
  .team-section h1, .team-section h2 {
     font-size: 40px;
     margin-left: 60px;
  }  
}

.msg{
      width: 80;
      margin: auto;
      text-align: center;
      padding-top: 30px;
      color: #223e92;
}

.slider {
  width: 100%;
  max-width: 600px;
  overflow: hidden;
  margin: auto;
  border-radius: 10px;
}

.slides {
  display: flex;
  width: 300%; /* 4 slides: 3 real + 1 clone */
  animation: loopSlider 100s linear infinite;
}

.slide {
  width: 20%;
  flex-shrink: 0;
  text-align: center;
  box-sizing: border-box;
  padding: 20px;
}

.slide img {
  width: 20%;
  max-width: 300px;
  display: block;
  margin: auto;
  border-radius: 10px;
}

.caption {
  margin-top: 10px;
  font-size: 16px;
  color: #333;
}

/* 🔁 Smooth looping animation */
@keyframes loopSlider {
  0%   { transform: translateX(0); }
  25%  { transform: translateX(-100%); }
  50%  { transform: translateX(-200%); }
  75%  { transform: translateX(-300%); }
  100% { transform: translateX(0); }  /* 🔄 Loop back smoothly */
}

/* Project */

.sub-header1{
    height: 80vh;
    width: 100%;
    background-image: url('web pics/project.jpeg');
    background-position: center;
    text-align: center;
    background-size: cover;
    color: #fff;
    cursor: pointer;
}

@media (max-width: 600px) {
    .sub-header1 {
       height: 80vh;
       background-position: center;
       background-size: contain;
       background-repeat: no-repeat;
    }
} 

.projects-section {
  padding: 50px 10%;
  background: #fdfdfd;
}

@media (max-width: 600px) {
    .projects-section {
        margin-top: -27%;
    }
}

.section-title {
  text-align: center;
  font-size: 50px;
  margin-bottom: 30px;
  color: #223e92;
}

@media (max-width: 600px) {
    .section-title {
        margin-top: -10%;
    }
}


.category {
  margin-bottom: 40px;
}

.category h3 {
  color: #d84315;
  font-size: 28px;
  border-bottom: 2px solid #d84315;
  margin-bottom: 15px;
  padding-bottom: 5px;
}

.project-card {
  display: flex;
  flex-wrap: wrap;
  background: #fff;
  border-radius: 10px;
  margin-bottom: 20px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.project-card:hover {
  transform: scale(1.03);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.project-card img {
  width: 300px;
  height: 200px;
  object-fit: cover;
}

.project-info {
  padding: 20px;
  flex: 1;
}

.project-info h4 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #223e92;
}

.project-info p {
  font-size: 16px;
  color: #444;
}


/* rkf diary page */

.sub-header3{
    height: 80vh;
    width: 100%;
    background-image: url('web pics/diary.jpg');
    background-position: center;
    text-align: center;
    background-size: cover;
    color: #fff;
    cursor: pointer;
}

@media (max-width: 600px) {
    .sub-header3 {
       height: 80vh;
       background-position: center;
       background-size: contain;
       background-repeat: no-repeat;
    }
} 

body {
  background: #f7f9fb;
}

header {
  background-color: #004466;
  color: white;
  padding: 20px;
  text-align: center;
}

#searchInput {
  width: 80%;
  padding: 10px;
  margin: 20px auto;
  display: block;
  max-width: 500px;
  border: none;
  border-radius: 5px;
  box-shadow: 0 0 4px rgba(0,0,0,0.2);
}

@media (max-width: 600px) {
    #searchInput {
        margin-top: -10%;
    }
}

body {
  background: #f2fcfe;
  color: #003366;
}

.category-section {
  text-align: center;
  padding: 60px 20px;
}

.category-section h1 {
  margin-bottom: 40px;
  font-size: 36px;
  color: #006d77;
}

.blog-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  padding: 40px;
  max-width: 1200px;
  margin: auto;
}

.blog-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  padding: 20px;
  transition: transform 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-5px);
}

.category-card i {
  font-size: 40px;
  margin-bottom: 15px;
  color: #d84315;
}

.category-card h3 {
  font-size: 30px;
  margin-bottom: 10px;
}

.category-card p {
  font-size: 14px;
  color: #555;
  margin-bottom: 15px;
}

.category-card a {
  text-decoration: none;
  color: #0077B5;
  font-weight: bold;
  font-size: 14px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .category-card {
    width: 90%;
  }
}

.blog-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  padding: 40px;
}

.blog-card {
  background: white;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  overflow: hidden;
  transition: transform 0.2s;
}

.blog-card:hover {
  transform: scale(1.02);
}

.blog-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.blog-card .content {
  padding: 20px;
}

.blog-card h3 {
  margin: 0 0 10px;
  color: #223e92;
}

.blog-card p {
  color: #555;
  font-size: 14px;
}

.blog-card a {
  display: inline-block;
  margin-top: 10px;
  color: #007BFF;
  text-decoration: none;
  font-weight: bold;
}

.blog-card a:hover {
  text-decoration: underline;
}

.interactions {
  margin-top: 10px;
}

.interactions button {
  background: none;
  border: none;
  cursor: pointer;
  color: #e0245e;
  font-size: 18px;
}

.comments {
  margin-top: 15px;
}

.comments input {
  width: 100%;
  padding: 8px;
  border: 1px solid #ddd;
  margin-bottom: 10px;
  border-radius: 5px;
}

.comment-list {
  list-style: none;
  padding-left: 0;
}

.comment-list li {
  background: #f1f1f1;
  margin-bottom: 6px;
  padding: 6px 10px;
  border-radius: 4px;
  font-size: 13px;
}

.suggestion-box {
  width: 90%;
  max-width: 600px;
  margin: 60px auto;
  padding: 20px;
}

.suggestion-container {
  background-color: #f9f9f9;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(0,0,0,0.1);
  text-align: center;
}

.suggestion-container h2 {
  margin-bottom: 10px;
  color: #d84315;
}

.suggestion-container p {
  margin-bottom: 20px;
  color: #666;
}

.suggestion-container input,
.suggestion-container textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 15px;
}

.suggestion-container button {
  width: 100%;
  padding: 12px;
  background-color: #d84315;
  border: none;
  color: white;
  font-size: 16px;
  border-radius: 5px;
  cursor: pointer;
}

.suggestion-container button:hover {
  background-color: #218838;
}





/* why join us page */

.sub-header4{
    height: 80vh;
    width: 100%;
    background-image: url('web pics/join.jpeg');
    background-position: 50% 40%;
    text-align: center;
    background-size: cover;
    color: #fff;
    cursor: pointer;
}

@media (max-width: 600px) {
    .sub-header4 {
       height: 80vh;
       background-position: center;
       background-size: contain;
       background-repeat: no-repeat;
    }
} 

.why-join-section {
  padding: 60px 20px;
  background-color: #f2fcfe;
  text-align: center;
}

@media (max-width: 600px) {
    .why-join-section {
        margin-top: -21%;
    }
}

.why-join-section h1 {
  font-size: 50px;
  margin-bottom: 10px;
  color: #223e92;
}

@media (max-width: 600px) {
    .why-join-section h1 {
        margin-top: -10%;
    }
}


.why-join-section .intro {
  font-size: 21px;
  color: #555;
  margin: 10px 0 30px;
  margin-left: 14%;
}

.why-join-section .sub-intro {
  font-size: 21px;
  color: #555;
  margin: 10px 0 30px;
}

.value-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  max-width: 1200px;
  margin: 0 auto 40px;
}

.card {
  background-color: #ffffff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
  text-align: center;
}

.card i {
  font-size: 36px;
  color: #e74c3c;
  margin-bottom: 15px;
}

.card h3 {
  font-size: 20px;
  color: #2c3e50;
  margin-bottom: 10px;
}

.card p {
  font-size: 15px;
  color: #444;
  line-height: 1.5;
}

.card:hover {
  transform: translateY(-8px);
}

.join-message p {
  font-size: 21px;
  color: #444;
  max-width: 800px;
  margin: 0 auto 10px;
}

.cta{
    margin: 100px auto;
    width: 50%;
    background-image: linear-gradient(rgba(0,0,0,0.5),rgba(0,0,0,0.5)),url('web pics/j.webp');
    background-position: center;
    background-size: cover;
    border-radius: 10px;
    text-align: center;
    padding: 100px 0;
}

.cta h1{
  color: #fff;
  margin-bottom: 40px;
  font-size: 38px;
  padding: 0;
}

.align-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
  margin: 50px auto;
  text-align: center;
}

.qr-section img {
  padding-left: 100px;
  width: 200px;
  height: auto;
}

.or-text {
  padding-left: 70px;
  font-size: 30px;
  font-weight: bold;
  color: #555;
}


@media(max-width: 700px){
    .why-join-section .intro{
        margin-left: -3%;
        font-size: 18px;
    }

    .why-join-section .sub-intro{
        font-size: 18px;
    }

    .cta{
        width: 90%;
    }

    .align-container{
        flex-direction: column;
    }

    .qr-section img {
        padding-left: 10px;
    }

    .or-text {
        padding-left: 20px;
        padding-top: 20px;
        margin-bottom: -15%;
        font-size: 30px;
    }

    .cta h1{
        font-size: 24px;
     }

    .join-message p {
        font-size: 18px;
    }
}








/* get in touch us page */

.sub-header5{
    height: 80vh;
    width: 100%;
    background-image: url('web pics/getin.jpg');
    background-position: 50% 20%;
    text-align: center;
    background-size: cover;
    color: #fff;
    cursor: pointer;
}


@media (max-width: 600px) {
    .sub-header5 {
       height: 80vh;
       background-position: center;
       background-size: contain;
       background-repeat: no-repeat;
    }
} 

.location{
    width: 80%;
    margin: auto;
    padding: 80px 0;
}

.location iframe{
    width: 100%;
}
.contact {
  width: 80%;
  margin: auto;
}

.row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
}

.contact-col {
  flex-basis: 48%;
  margin-bottom: 30px;
}

/* Only apply flex to icon-text rows */
.fa-row {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
}

.contact-col div .fa {
  font-size: 23px;
  color: #f44336;
  margin: 10px;
  margin-right: 30px;
}

.contact-col div p {
  padding: 0;
  color: #555;
}

.contact-col div h4 {
  font-size: 20px;
  margin-bottom: 5px;
  font-weight: 400;
}

/* Feedback Form Styling */
.feedback-container {
  display: block;
  background-color: #fff;
  padding: 30px 40px;
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
  width: 100%;
  max-width: 500px;
  margin: auto;
}

.feedback-container h2 {
  margin-bottom: 20px;
  text-align: center;
  display: block;
  color: #0056b3;
}

.feedback-container input,
.feedback-container textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.feedback-container button {
  width: 100%;
  padding: 12px;
  background-color: #007bff;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
}

.feedback-container button:hover {
  background-color: #0056b3;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .row {
    flex-direction: column;
    align-items: center;
  }

  .contact-col {
    flex-basis: 100%;
  }
}

@media(max-width: 480px){
  .feedback-container{
     padding: 30px;
     margin: 20px auto;
   }
  
  .feedback-container h2{
     font-size: 20px;
   }

  .feedback-container input, .feedback-container textarea, .feedback-container button,{
     font-size: 15px;
   }
}






/* sarthi */

.sub-header6{
    height: 80vh;
    width: 100%;
    background-image: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url(C:\Users\Jai Ramadhani\OneDrive\web pics\sarthilogo.jpeg);
    background-position: center;
    background-size: cover;
    text-align: center;
    color: #fff;
}

@media (max-width: 600px) {
    .sub-header6 {
       height: 390px;
       background-position: top center;
       background-size: cover;
       background-repeat: no-repeat;
    }
} 

.sub-header6 h1 {
   margin-top: 130px;
}

@media (max-width: 600px) {
    .sub-header6 h1 {
        margin-top: 80px;
    }
}

body {
  color: #333;
  line-height: 1.7;
  background-color: #fff;
}

h2 {
  color: #223e92;
  font-size: 40px;
  margin-bottom: 20px;
  text-align: center;
}

/* Hero Section */
.hero {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  background: #fff;
  padding: 40px 20px;
  border-bottom: 2px solid #eee;
}

.hero-text {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

.hero-text h1 {
  font-size: 2.8em;
  color: #1a1a1a;
  margin-left: 20px;
}

.hero-text h1 span {
  color: #d12e2e;
}

.hero-text h2 {
  font-size: 1.5em;
  color: #555;
  margin-top: 10px;
}

.hero-image {
  flex: 1;
  min-width: 300px;
  text-align: center;
  margin-top: 20px;
}

.hero-image img {
  width: 90%;
  max-width: 300px;
  border-radius: 10px;
  margin-left: 10px;
}

.about, .gallery, .testimonials {
  max-width: 1000px;
  margin: 60px auto;
  padding: 0 20px;
}

.about p {
  font-size: 30px;
  color: #003366;
  text-align: center;
  line-height: 1.2;
}
.about img{
   width: 250px;
   height: 250px;
   margin-left: 370px;
   margin-right: 30px;
}

@media (max-width: 768px) {
  .about img{
     margin-left: 59px;
     margin-right: 0;
  }
}

.info-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  padding: 60px 20px;
  background-color: #f9f9f9;
}

.info-card {
  background: #f5e1c7;
  border-radius: 12px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
  padding: 30px 25px;
  width: 380px;
  transition: transform 0.3s ease;
}

.info-card i {
  font-size: 40px;
  color: #d84315;
  margin-bottom: 15px;
  display: block;
  text-align: center;
}

.info-card h3 {
  margin-bottom: 15px;
  font-size: 22px;
  color: #003366;
  text-align: center;
}

.info-card ul {
  list-style-type: disc;
  padding-left: 20px;
  color: #610101;
  font-size: 15px;
  line-height: 1.6;
  margin-left: 25px;
}

.info-card:hover {
  transform: translateY(-8px);
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .info-card {
    width: 90%;
  }
}

.gallery-grid {
  display: grid;
  gap: 15px;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.gallery-grid img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  transition: transform 0.3s;
}

.gallery-grid img:hover {
  transform: scale(1.05);
}

.testimonials1 {
  background-color: #f2fcfe;
}

.testimonial-container {
  margin: auto;
  max-width: 800px;
}

.testimonial {
  background: #fff;
  padding: 25px;
  margin-bottom: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  text-align: center;
}

.testimonial h4 {
  margin-top: 15px;
  color: #555;
  font-weight: normal;
}

.testimonial img{
   height: 40px;
   margin-left: 5px;
   margin-right: 30px;
   border-radius: 50%;
}

.testimonial .fa{
    color: #f44336;
}

/* Style slick dots to appear horizontally as small circles */
.slick-dots {
  display: flex !important;
  justify-content: center;
  list-style: none;
  padding: 0;
  margin-top: 20px;
}

.slick-dots li {
  margin: 0 5px;
}

.slick-dots button {
  border: none;
  background: #ccc;
  border-radius: 50%;
  width: 12px;
  height: 12px;
  text-indent: -9999px; /* hides 1, 2, 3 */
  cursor: pointer;
}

.slick-dots .slick-active button {
  background: #333;
}

@media (max-width: 768px) {
  .facilities ul, .gallery-grid {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  }
}










/* Live Way */

.sub-header7 {
    height: 80vh;
    width: 100%;
    background-image: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url(../Downloads/train.jpg);
    background-position: center;
    background-size: cover;
    text-align: center;
    color: #fff;
}

@media (max-width: 600px) {
    .sub-header7 {
       height: 380px;
       background-position: top center;
       background-size: cover;
       background-repeat: no-repeat;
    }
} 

.sub-header7 h1 {
   font-size: 100px;
   margin-top: 110px;
}

@media (max-width: 600px) {
    .sub-header7 h1 {
        margin-top: 80px;
    }
}

body {
  line-height: 2.1;
  color: #333;
}

/* Hero Section */
.hero {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  background: #fff;
  padding: 40px 20px;
  border-bottom: 2px solid #eee;
}

.hero-text {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

.hero-text h1 {
  font-size: 2.8em;
  color: #1a1a1a;
}

.hero-text h1 span {
  color: #d12e2e;
}

.hero-text h2 {
  font-size: 1.5em;
  color: #555;
  margin-top: 10px;
}

.hero-image {
  flex: 1;
  min-width: 300px;
  text-align: center;
  margin-top: 20px;
}

.hero-image img {
  width: 90%;
  max-width: 300px;
  border-radius: 10px;
}

/* Intro Section */
.intro {
  max-width: 1000px;
  margin: 40px auto;
  padding: 0 20px;
  font-size: 5em;
  color: #444;
  text-align: center;
}

/* Activities Section */
.activities {
  background: #fff;
  padding: 40px 20px;
  text-align: center;
}

.activities h2 {
  font-size: 50px;
  margin-bottom: 30px;
  color: #223e92;
}

.activity-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.activity {
  background: #ffe4c5;
  padding: 20px;
  border-radius: 18px;
  max-width: 300px;
  text-align: centre;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}

.activity:hover {
  transform: translateY(-5px);
}

.activity h3 {
  margin-bottom: 10px;
  font-size: 1.4em;
  color: #d12e2e;
}
.activity p {
  margin-bottom: 10px;
  font-size: 1.2em;
  color: #444;
}


/* LiveWay Footer */
.footer1 p{
  color: #610101;
  text-align: center;
  padding: 30px 20px;
  font-size: 45px;
  line-height: 1.1;
}








/* Footer */

.site-footer {
  background: #333;
  color: #fff;
  padding: 40px 20px 20px;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.footer-column {
  flex: 1 1 200px;
  margin: 10px;
  text-align: left;
}

.footer-column h4 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #f4a950;
}

.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column ul li {
  margin-bottom: 8px;
}

.footer-column ul li a,
.footer-column p,
.footer-column a {
  color: #ccc;
  text-decoration: none;
  font-size: 18px;
}

.footer-column a:hover {
  color: #fff;
  text-decoration: underline;
}

.feedback-form input,
.feedback-form textarea {
  width: 100%;
  margin-bottom: 10px;
  padding: 8px;
  border: none;
  border-radius: 4px;
}

.feedback-form button {
  background: #f4a950;
  color: #000;
  border: none;
  padding: 8px 15px;
  border-radius: 4px;
  cursor: pointer;
}

.feedback-form button:hover {
  background: #fff;
  color: #333;
}

.footer-bottom {
  text-align: center;
  margin-top: 30px;
  border-top: 1px solid #555;
  padding-top: 15px;
  font-size: 14px;
  color: #aaa;
}

.icons i {
      font-size: 24px;
      margin: 0 10px;
      color: #f44336;
      cursor: pointer;
}

.icons a{
  color: #333;
  font-size: 24px;
  margin: 0 10px;
  text-decoration: none;
  transition: color 4s ease;
}

.icons a:hover i{
  color: #860606; 
}

@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
  }

  .footer-column {
    flex: 1 1 100%;
    max-width: 100%;
    margin: 20px 0;
    text-align: center;
  }

  .feedback-form input,
  .feedback-form textarea,
  .feedback-form button {
    font-size: 16px;
    width: 100%;
  }
}

/* blog1.css */

.blog-container1 {
  background: white;
  max-width: 850px;
  margin: 0 auto;
  padding: 30px;
  margin-top: 27%;
  margin-bottom: 5%;
  border-radius: 8px;
  box-shadow: 0 0 12px rgba(0,0,0,0.1);
}

.blog-title {
  font-size: 2.4em;
  padding-top: 0;
  margin-bottom: 10px;
  color: #2e2e2e;
  text-align: center;
}

.blog-meta {
  font-size: 0.95em;
  color: #777;
  text-align: center;
  margin-bottom: 30px;
}

.blog-quote{
  font-size: 1.5em;
  color: #d84315;
  font-style: italic;
  text-align: center;
  margin-bottom: 30px;
}

.blog-image1 img {
  width: 50%;
  height: auto;
  border-radius: 6px;
  margin: 20px 0;
}

.blog-image1.secondary {
  margin-top: 30px;
}

.blog-content1 {
  font-size: 1.1em;
  line-height: 1.8;
  color: #333;
}

.blog-content1 ul {
  padding-left: 20px;
  margin-top: 20px;
}

.blog-content1 ul li {
  margin-bottom: 10px;
  list-style: disc;
}

.blog-footer {
  text-align: center;
  margin-top: 50px;
  font-style: italic;
  color: #aaa;
}

/* Like & Comment Section */
.interactions {
  margin-top: 30px;
  text-align: center;
}

.interactions button {
  background: none;
  border: 2px solid #e0245e;
  padding: 10px 20px;
  color: #e0245e;
  border-radius: 6px;
  font-size: 16px;
  cursor: pointer;
  transition: 0.3s ease;
}

.interactions button:hover {
  background-color: #e0245e;
  color: white;
}

.comment-section {
  margin-top: 40px;
}

.comment-section h3 {
  margin-bottom: 10px;
  font-size: 1.2em;
  color: #004466;
}

.comment-section input {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 6px;
  margin-bottom: 15px;
  font-size: 14px;
}

.comment-list {
  list-style: none;
  padding-left: 0;
}

.comment-list li {
  background: #f1f1f1;
  margin-bottom: 10px;
  padding: 8px 12px;
  border-radius: 5px;
  font-size: 14px;
  color: #000;
}

