body {
    /* background-color: #B3E5FC; privious color was non */
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
} 


/* for nav bar */
/* Reset & Box Sizing */
/* * {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
} */
/* Only apply box-sizing reset to the navbar */
.navbar-header,
.navbar-header * {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

/* Navbar Styles */
/* .navbar-header {
  position: fixed;
  width: 100%;
  background-color: #2c8eec;
  padding: 2.5rem 5rem;
  z-index: 1000;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
} */

.navbar-header {
  position: fixed;
  width: 100%;
  background-color: #2c8eec;
  padding: 1rem 5rem; /* Reduced height */
  height: 60px; /* Fixed navbar height */
  display: flex;
  align-items: center; /* Align items vertically */
  z-index: 1000;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

/* Logo */
.navbar-logo {
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
}
.navbar-logo .logo{
  position: absolute;
  /* top: 10px; Adjust as needed */
  left: 10px; /* Adjust as needed */
  height: 54px; /* Adjust logo size */
}

.navbar-menu {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  margin-left: auto; /* Moves menu to the right */
}

.navbar-menu a {
  font-size: 1.4rem;
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
}

.navbar-menu a:hover {
  border-bottom: 2px solid #ffffff;
}

/* Hamburger Menu Icon */
.navbar-ham-menu {
  display: none;
  font-size: 2.5rem;
  color: #fff;
  cursor: pointer;
  margin-left: auto; /* Moves menu to the right */
}

/* Mobile Styles */
@media (max-width: 767px) {
  .navbar-ham-menu {
    display: block;
  }

  .navbar-menu {
    position: fixed;
    left: -100vw;
    top: 60px;
    width: 100vw;
    height: calc(100vh - 60px);
    background-color: rgba(15, 14, 14, 0.958);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: left 0.5s ease-in-out;
  }

  .navbar-menu.active {
    left: 0;
  }
}
 
/* Responsive Styles */





/* Sticky styles for the .top section */
.sticky {
  position: sticky; /* Makes the element sticky */
  top: 0; /* Sticks to the top of the viewport */
  z-index: 1000;
  background-color: #005d8f; /*  PRIVIOUS COLOR  #033b17;*/
  color: rgb(255, 255, 255);
  display: flex;
  align-items: center; /* Vertically aligns icon and text */
  justify-content: center; /* Centers the content horizontally */
  /* border-radius: 10px; */
  height: 50px;
  margin-top: 5px;
  margin-bottom: 6px;
}

/* Non-sticky header section */
.head {
  background-color: #4CAF50;
  color: white;
  padding: 20px;
  text-align: center;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  margin-top: -10px; /* for reduse disstent bettween logos and header  */
}

.head h1 {
  margin: 0;
  font-size: 2rem;
}

.head p {
  margin: 10px 0;
}

.head-btn {
  margin-top: 10px;
  padding: 10px 20px;
  background-color: white;
  color: #4CAF50;
  border: 2px solid white;
  border-radius: 5px;
  cursor: pointer;
}

.head-btn:hover {
  background-color: #45a049;
  color: white;
  border-color: white;
}



/* Style for the SVG icon */
.topicon {
    width: 50px; /* Adjust size as needed */
    height: 50px;
    position: absolute; /* Positions the icon relative to the container */
    left: 20px; /* Adjust the left distance */
}

.content {
    padding: 20px;
    text-align: center;
}

.content p {
    font-size: 1.2rem;
    margin-bottom: 10px;
  
}


.content-online h2{
  background-color: #00aced;
}

.content ul {
    list-style-type: none;
    padding: 0;
}

.content ul li {
    margin: 5px 0;
}

.whatsapp-btn {
    margin-top: 20px;
    padding: 10px 20px;
    background-color: #25D366;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
}

.whatsapp-btn:hover {
    background-color: #1da851;
}

 /* for points */
.bullets-container {
  /* margin: 20px auto; */
  /* max-width: 1000px; */
  background: #4FC3F7;
  /* #d4b6b6; */
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  margin-left: 5%;
  margin-right: 5%; 
}


.bullets-container h3 {
  margin-bottom: 10px;
  /* color: #333; */
  color: #fff;
  text-align: center;
  font-size: 1.5em;
}
.bullets-container ul {
  list-style-type: disc;
  margin-left: 20px;
  color: #ffffff;
  line-height: 1.8;
}
.bullets-container ul li {
  margin: 10px 0;
  font-size: 1.1em;
}
.bullets-container  p {
  /* margin: 10px 0; */
  color: #fff;
  font-size: 0.5em;
}


.language-toggle-btn {
  /* position: absolute; */
  top: 10px;
  right: 10px;
  background: #007bff;
  color: white;
  border: none;
  padding: 8px 12px;
  border-radius: 5px;
  cursor: pointer;
}
.language-toggle-btn:hover {
  background: #0056b3;
}

/* for poster */
.poster {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.poster img {
  width: 800px;
  height: auto;
  border-radius: 10px;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
}

@media (max-width: 768px) {
  .poster img {
    width: 300px;
    height: auto;
    border-radius: 10px;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
  }
}


#blinking-text {

    animation: blink 2s linear infinite;
}
.top {
  display: flex; /* Makes elements inside align in a row */
  align-items: center; /* Vertically centers items */
  /* padding: 10px; */
}


/* logo for nav bar */
.logo {
  position: absolute;
  /* top: 10px; Adjust as needed */
  left: 10px; /* Adjust as needed */
  height: 54px; /* Adjust logo size */
}




@keyframes blink {
  
    0% { opacity: 1; }
  
    50% { opacity: 0; }
  
    100% { opacity: 1; }
}


  


/*--------------------------------------------------------------
# Features Section
--------------------------------------------------------------*/
.features .features-image {
    position: relative;
    min-height: 400px;
  }
  
  .features .features-image img {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
  }
  
  .features h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 20px;
    position: relative;
  }
  
  .features h3:after {
    content: "";
    background: var(--accent-color);
    position: absolute;
    display: block;
    width: 50px;
    height: 3px;
    left: 0;
    bottom: 0;
  }
  
  .features .icon-box {
    margin-top: 50px;
  }
  
  .features .icon-box i {
    color: var(--accent-color);
    background-color: var(--surface-color);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 25px;
    font-size: 28px;
    width: 56px;
    height: 56px;
    border-radius: 4px;
    line-height: 0;
    box-shadow: 0px 2px 30px rgba(0, 0, 0, 0.1);
    transition: 0.3s;
  }
  
  .features .icon-box:hover i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }
  
  .features .icon-box h4 {
    font-weight: 700;
    margin-bottom: 10px;
    font-size: 18px;
  }
  
  .features .icon-box h4 a {
    color: var(--heading-color);
    transition: 0.3s;
  }
  
  .features .icon-box h4 a:hover {
    color: var(--accent-color);
  }
  
  .features .icon-box p {
    line-height: 24px;
    font-size: 14px;
    margin-bottom: 0;
  }


  /*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 60px 0;
  scroll-margin-top: 120px;
  overflow: clip;
}

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 100px;
  }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  padding-bottom: 60px;
  position: relative;
}

.section-title h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.section-title h2:after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: var(--accent-color);
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

.section-title p {
  margin-bottom: 0;
}


/* Style for the SVG icon */
.icon {
   width: 50px; /* Adjust size as needed */
   height: 50px;
   margin-right: 10px; /* Space between icon and text */
       }



/*--------------------------------------------------------------
# Call To Action Section
--------------------------------------------------------------*/


.emergency-section {
  background-color: #4fc3f7;
  /* #29B6F6; #4dc5c5; Adjust to match the teal color */
  color: #fff;
  padding: 50px 20px;
  text-align: center;
}

.emergency-content h2 {
  font-size: 2em;
  font-weight: bold;
  margin-bottom: 15px;
}

.emergency-content p {
  font-size: 1em;
  line-height: 1.6;
  margin-bottom: 25px;
}

.contact-button {
  display: inline-block;
  padding: 10px 20px;
  font-size: 1em;
  color: #4dc5c5;
  background-color: #fff;
  border: 2px solid #fff;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
}

.contact-button:hover {
  color: #fff;
  background-color: transparent;
  border-color: #fff;
}

 /* / bottom Gallery Section */
 .gallery {
  padding: 20px;
  text-align: center;
}

.gallery {
  margin: 50px auto;
}

.gallery h2 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.gallery p {
  color: #666;
  margin-bottom: 20px;
}

.swiper-slide img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 8px;
}

.swiper-pagination {
  margin-top: 15px;
}
/* Navigation Arrows */
.swiper-button-next,
.swiper-button-prev {
  color: #000; /* Black color for arrows */
  font-size: 1.5rem;
  font-weight: bold;
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  background-color: rgba(0, 0, 0, 0.7);
  color: #fff; /* White color on hover */
}


 /* /main Gallery Section */
 .main-gallery {
  padding: 10px;
  margin-top: -2px;
  margin-bottom: -15px;
  text-align: center;
}

.main-gallery h2 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.main-gallery p {
  color: #666;
  margin-bottom: 20px;
}

.main-gallery .swiper-slide img {
  width: 100%;
  height: 370px;
  object-fit: cover;
  border-radius: 8px;
}

.main-gallery .swiper-pagination {
  margin-top: 15px;
}
/* Navigation Arrows */
.main-gallery .swiper-button-next,
.main-gallery .swiper-button-prev {
  color: #000; /* Black color for arrows */
  font-size: 1.5rem;
  font-weight: bold;
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.main-gallery .swiper-button-next:hover,
.main-gallery .swiper-button-prev:hover {
  background-color: rgba(0, 0, 0, 0.7);
  color: #fff; /* White color on hover */
}

@media (max-width: 768px) {
  .main-gallery .swiper-slide img {
    width: 100%;
    height: 170px;
    object-fit: cover;
    border-radius: 8px;
  }
}




/* For map */
.map-container {
  width: 100%;
  max-width: 1200px;
  margin: 50px auto;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.map-container iframe {
  width: 100%;
  height: 500px;
  border: none;
}

/* Optional styling for responsiveness */
@media (max-width: 768px) {
  .map-container iframe {
      height: 400px; /* Adjust map size for smaller screens */
  }
}

.map-container h3 {
  font-size: 1.5rem;
  text-align: center;
  background-color: #4FC3F7;
  /* #88756ec6;  Green background */
  color: white;
  padding: 20px 30px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  margin: 0;
}

/* Optional Styles for Responsive Design */
@media (max-width: 768px) {
  .map-container h3 {
      font-size: 2em;  /* Adjust font size on smaller screens */
      padding: 15px 20px;
  }
}

       
/* CSS for footer starts */

        
footer {
  background-color: #0288d1;
  /* #333; */
  color: #000;
  padding: 40px 20px;
  text-align: center;
}


.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.company-details h3 {
  margin: 0;
  font-size: 1.5em;
}

.company-details p {
  margin: 5px 0;
  font-size: 0.9em;
}

.social-media h4 {
  margin-bottom: 10px;
  font-size: 1.2em;
}

.social-media .follow-us {
  background-color: #00aced;
  color: #fff;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  margin-bottom: 10px;
}

.social-media .icons a {
  color: #000;
  margin: 0 8px;
  font-size: 1.3em;
  text-decoration: none;
  transition: color 0.3s;
}

.social-media .icons a:hover {
  color: #ffffff;
}

.contact-us .contact-button {
  display: inline-block;
  background-color: #00aced;
  color: #fff;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
}

.contact-us .contact-button:hover {
  background-color: #0078a4;
}

.opening-hours h4 {
  margin-bottom: 10px;
  font-size: 1.2em;
}

.footer-paragraph p {
  margin: 5px 0;
  font-size: 0.9em;
}

@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr;
  }
}


/* <!-- Logo Carousel --> */
.brands-title{
  text-align: center;
  


}

.logo-carousel-container {
  width: 100%;
  height: 50px;
  overflow: hidden;
  background-color: #29B6F6; /* PRIVIOUS COLOR #cccdbce1; */
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  padding: 20px 0;
}

.logo-carousel {
  display: flex;
  align-items: center;
  gap: 50px;
  animation: scroll linear infinite;
}

.logo-carousel img {
  /* max-height: 50px; */
  margin-top: -10px;
  width: 80px;
  height: 70px;
  border-radius: 10px;

  transition: transform 0.3s ease;
}

.logo-carousel img:hover {
  transform: scale(1.1);
}

@keyframes scroll {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-100%);
  }
}

/* Pause animation on hover */
.logo-carousel-container:hover .logo-carousel {
  animation-play-state: paused;
}

@media (max-width: 768px) {
  .logo-carousel img {
    /* max-height: 50px; */
    margin-top: -25px;
    width: 80px;
    height: 70px;
  
    transition: transform 0.3s ease;
  }
}





/* Pop-up Styles ------------------ */
.popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  justify-content: center;
  align-items: center;
  z-index: 1000;
  animation: fadeIn 0.3s ease;
}

.popup-content {
  background: #fff;
  padding: 20px 15px;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  text-align: center;
  width: 90%; /* Adjust width for responsiveness */
  max-width: 400px; /* Limit max width on larger screens */
  position: absolute; /* Ensures proper centering */
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.95);
  animation: scale 0.3s ease;
  /* animation: scale 1.5s cubic-bezier(0,.46,.26,.99) alternate-reverse infinite, fade 1.5s linear alternate-reverse infinite; */
}

.popup-content img {
  height: 90%;
  width: 90%;
  /* max-width: 100%; */
  border-radius: 8px;
  margin-bottom: 15px;
  border-radius: 10px;
}


.popup-content h2 {
  font-size: 24px;
  margin: 10px 0;
  color: #333;
  background-color: #bb86865c; /* Light background */
  padding: 10px 15px; /* Padding for spacing */
  border-radius: 8px; /* Rounded corners */
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Subtle shadow */
  display: inline-block; /* Ensure proper width */
}

.popup-content p {
  font-size: 16px;
  color: #000000;
  background-color: #fff; /* White background */
  padding: 10px 15px;
  border-radius: 8px; /* Rounded corners */
  box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px, rgba(10, 37, 64, 0.35) 0px -2px 6px 0px inset;
  margin: 10px 0;
  line-height: 1.6; /* Better readability */
  text-align: justify; /* Align text for a cleaner look */
}



.popup-content .close {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 40px;
  color: #004cff;
  cursor: pointer;
  transition: color 0.3s ease;
}

.popup-content .close:hover {
  color: #333;
}

.popup-button {
  background-color: #4caf50;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 6px;
  font-size: 14px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.popup-button:hover {
  background-color: #45a049;
}


.price-section {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin: 10px 0;
}

.mrp, .offer-price {
  font-size: 16px;
}

.mrp span {
  text-decoration: line-through;
  color: #888;
}

.offer-price span {
  color: #d32f2f;
  font-weight: bold;
}

.partition {
  font-size: 18px;
  color: #888;
  margin: 0 10px;
}


/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes scaleUp {
  from {
    transform: scale(0.95);
  }
  to {
    transform: scale(1);
  }
}

/* Responsive Design: Mobile View */
@media (max-width: 768px) {
  .items-container {
    gap: 10px; /* Reduce spacing between items */
  }

  .item {
    width: 100px; /* Smaller width for items on mobile */
    padding: 15px;
  }

  .popup-content {
    padding: 15px; /* Adjust padding */
    animation: scale 0.3s ease;
  }

  .popup-content h2 {
    font-size: 18px; /* Smaller heading font size */
  }

  .popup-content p {
    font-size: 13px; /* Smaller description font size */
  }

  .popup-button {
    font-size: 13px; /* Smaller button font size */
  }
}


/* for top items */
.carousel-container {
  width: 98%;
  height: 150px; /*for redusing length of this section 150 is good */ 
  margin: 5px auto;
  overflow: hidden;
  position: relative;
  background: #29B6F6;  /*  #d6b7b7;*/
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.carousel-track p{
  /* background-color: #b05181; */
  font-size: 12px;

}

.carousel-item {
  flex: 0 0 25%; /* 3 items per view */
  padding: 15px;
  text-align: center;
}

.carousel-item img {
  max-width: 100%;
  height: 78px; /* for items image length  81 is ideal size*/
  object-fit: contain;
  border: 1px solid #ddd;
  border-radius: 5px;
}

.carousel-item h5 {
  margin-top: 10px;
  font-size: 16px;
}




.carousel-controls button {
  background: none; /* Remove background */
  color: #000; /* Set text color */
  border: none; /* Remove border */
  font-size: 24px; /* Smaller icon size */
  padding: 10px; /* Adjust padding */
  cursor: pointer;
  transition: color 0.3s ease; /* Smooth transition for color */
}

.carousel-controls button:hover {
  color: #007bff; /* Change color on hover */
}

.carousel-controls {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
  z-index: 1;
}

/* Carousel controls for larger screens (e.g., laptops) */
@media (min-width: 992px) {
  .carousel-controls {
    display: flex; /* Show controls */
  }
}

/* Hide carousel controls on smaller screens (e.g., mobile devices) */
@media (max-width: 991px) {
  .carousel-controls {
    display: none; /* Hide controls */
  }
}




/* General Style for .carousel-item */
.carousel-item {
  flex: 0 0 25%; /* 4 items per view on larger screens */
  padding: 5px;
  text-align: center;
}

/* Adjust for mobile view (show 4 items per view) */
@media (max-width: 600px) {
  .carousel-item {
    flex: 0 0 25%; /* Show 4 items per view on small screens */
  }
}


/* for first carousel remove after top builded*/ 
.first-carousel {
  position: relative;
  width: 100%;
  max-width: 600px;
  margin: auto;
  overflow: hidden;
  border: 2px solid #ddd;
  border-radius: 10px;
}

.first-carousel-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.first-carousel-item {
  min-width: 100%;
  box-sizing: border-box;
  position: relative;
  text-align: center;
}

.first-carousel-item img {
  width: 100%;
  border-radius: 10px;
}

.first-carousel-caption {
  position: absolute;
  bottom: 5px;
  /* height: 30px; */
  left: 50%;
  transform: translateX(-50%);
  background-color: rgba(0, 0, 0, 0.6);
  color: #fff;
  padding: 10px 20px;
  border-radius: 5px;
}

.first-carousel-control {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(235, 222, 222, 0.5);
  color: white;
  border: none;
  font-size: 24px;
  padding: 10px;
  cursor: pointer;
  z-index: 10;
}

.first-carousel-control.prev {
  left: 10px;
}

.first-carousel-control.next {
  right: 10px;
}

.first-carousel-control:hover {
  background: rgba(0, 0, 0, 0.8);
}

/* Media Query for Mobile View */
@media (max-width: 600px) {
  .first-carousel {
    max-width: 100%; /* Allow the carousel to use the full width of the screen */
  }

  .first-carousel-item {
    min-width: 100%; /* Ensure only one item is shown at a time */
  }

  .first-carousel-caption {
    font-size: 14px; /* Reduce caption font size for smaller screens */
    padding: 8px 15px;
  }

  .first-carousel-control {
    font-size: 18px; /* Reduce control size for smaller screens */
    padding: 5px;
  }
}


.care {
  width: 90%;
  max-width: 800px;
  margin: 20px auto;
}
.section-heading {
  text-align: center;
  font-size: 28px;
  font-weight: bold;
  color: #d63384;
  margin-bottom: 20px;
}
.row {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}
.card {
  width: calc(50% - 10px); /* Ensures two cards fit in a row with spacing */
  border: none;
  box-shadow: rgba(6, 24, 44, 0.4) 0px 0px 0px 2px, rgba(6, 24, 44, 0.65) 0px 4px 6px -1px, rgba(255, 255, 255, 0.08) 0px 1px 0px inset;
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.3s;
  background: #fff;
  text-align: center;
}
.card:hover {
  transform: translateY(-5px);
}
.card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}
.card-body {
  padding: 15px;
}
.card-title {
  font-size: 18px;
  font-weight: bold;
  color: #d63384;
  margin: 10px 0;
}
.card p{
  font-size: 10px;
}
.rules{
  font-size: 10px;
  text-align: left;
}
@media (max-width: 600px) {
  .card {
      width: calc(50% - 10px); /* Full width on smaller screens */
  }
}


/* 
for new contanors */
.container-w {
  display: flex;
  flex-direction: column;
  align-items: center; /* Centers containers */
  width: 100%;
}

.con {
  text-align: center;
  background-color: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
  width: 90%; /* Makes it responsive */
  max-width: 350px; /* Prevents excessive width */
  margin: 10px 0; /* Adds spacing between rows */
}

.con .icon {
  font-size: 40px;
  background-color: #f0f0f0;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 10px;
}

.con h2 {
  margin: 10px 0;
  font-size: 22px;
}

.con p {
  font-size: 16px;
  color: #333;
}

/* Mobile View */
@media screen and (max-width: 480px) {
  .con {
      width: 80%;
      padding: 15px;
  }

  .con h2 {
      font-size: 20px;
  }

  .con p {
      font-size: 14px;
  }

  .con .icon {
      font-size: 35px;
      width: 50px;
      height: 50px;
  }
}

