/* Reset and Basic Styles */

/* Initial state (hidden) */
html {
  scroll-behavior: smooth;
}

.fade-in {
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

/* When the page loads */
.fade-in.visible {
  opacity: 1;
}

body {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  background-color: #898a8c;
}

/* Navbar  start */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 77px;
}

.logo img {
  width: 162px;
  height: 160px;
}

.navlinks {
  display: none;
  flex-direction: column;
  position: absolute;
  top: 120px;
  right: 138px;
  background-color: #151208;
  padding: 29px;
  border-radius: 20px;
  z-index: 100;
  text-align: center;
  gap: 20px;
  height: 239px;
  width: 167px;
}
.navitem {
  width: 168px;
  list-style: none;
  padding: 12px 0px;
}
.navitem li {
  margin: 20px auto;
}
.navitem li a {
  color: #fff;
  text-decoration: none;
  font-size: 20px;
  font-weight: 600;
}

/* Utility Classes */
.hidden {
  display: none;
}

/* Responsive Animation (Optional) */
.navlinks {
  animation: slideIn 0.5s forwards;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (max-width: 768px) {
  .navbar {
    flex-direction: row;
    padding: 10px 16px;
    width: 95%;
    justify-content: space-between;
    padding: 10px;
  }

  .navlinks {
    width: 200px;
    animation: slideIn 0.3s ease-in-out forwards;
  }
  .frontbg .frontbg2 {
    display: none;
  }

  @keyframes slideIn {
    from {
      opacity: 0;
      transform: translateY(-10px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
}

/* Navbar  end */
.background_img1 {
  position: absolute;
  width: 50%;
  top: 0;
  right: 0;
  z-index: -1;
}

/* Main Section Styling start */
.main-section {
  height: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
  /* background:url("images/modo_img3.jpg"); */
  width: 100%;
}

.main_heading {
  width: 100%;
  text-align: center;
}

.main_heading h1 {
  font-size: 3rem;
  font-family: "Rubik Distressed", sans-serif;
  color: #002500;
  font-weight: 500;
  margin-bottom: 13px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.typewriter {
  display: inline-block;
  white-space: nowrap;
  overflow: hidden;
  width: 100%;
}
.typewriter p {
  font-family: math;
  color: darkgreen;
  font-size: 1rem;
  font-weight: 600;
  margin-top: 44px;
  word-wrap: break-word;
  white-space: normal;
}

.typewriter__wrapper {
  display: inline-block;
  /* font-family: "Courier New", Courier, monospace; */
  font-family: ui-monospace;
  font-size: 24px;
  white-space: nowrap;
  overflow: hidden;
  animation: typing 4s steps(25, end) infinite,
    blink-caret 0.5s step-end infinite;
  font-weight: 600;
}

/*@keyframes typing {*/
/*  0% {*/
/*    width: 0;*/
/*  }*/
/*  50% {*/
/*    width: 100%;*/
/*  }*/
/*  100% {*/
/*    width: 0;*/
/*  }*/
/*}*/

/* Blinking Cursor Effect */
/*@keyframes blink-caret {*/
/*  50% {*/
/*    border-color: transparent;*/
/*  }*/
/*}*/

@media (max-width: 768px) {
  .main_heading h1 {
    font-size: 2rem; /* Adjust for smaller screens */
  }

  .typewriter__wrapper {
    font-size: 1.2rem;
  }

  .typewriter p {
    font-size: 0.9rem;
  }
}

/* Main Section Styling end */

.frontbg{
  position: absolute;
  width: 64%;
  top: 0;
  left: 0;
  z-index: -1;
  transform: scaleX(-1);
}

.frontbg2{
  position: absolute;
  width: 75%;
  top: 0;
  right: 200px;
  z-index: -1;
  transform: scaleX(-1);
}
.modo_house{
  position: absolute;
  width: 50%;
  top: 0;
  right: 0;
  /* z-index: -1; */
}

/* top section start */

.top-section{
  width: 100%;
  overflow: hidden;
  /* background-color: #898a8c; */
  padding: 20px 0;
  margin-bottom: 200px;
  background: none;
}

.marquee-container{
  display: flex;
  justify-content: flex-start;
  align-items: center;
  position: relative;
  width: 100%;
  height: 150px;
}

.marquee-content{
  display: flex;
  animation: marquee 20s infinite;
}
.marquee-content:hover {
  animation-play-state: paused;
}
.multi-img{
  flex-shrink: 0;
  width: 150px;
  margin: 0 10px;
  border-radius: 50%;
}

.multi-img img{
  width: 100%;
  height: 200px;
  object-fit: unset;
  border-radius: 25px;
}

@keyframes marquee {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }
}

@media (max-width: 768px) {
  .multi-img {
    width: 80px;
    height: 80px;
  }
}

@media (max-width: 480px) {
  .marquee-container {
    margin-bottom: -40px;
  }
  .multi-img {
    width: 100px;
    height: 100px;
  }
  .multi-img img {
    object-fit: unset;
    height: 100%;
  }
}

/* top section end */

/* About section start */

.about-section {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-top: -110px;
  flex-direction: column;
}
.our-intro h1 {
  text-align: center;
  font-size: 50px;
  font-family: "Rubik Distressed";
  color: darkgreen;
  font-weight: 400;
  backdrop-filter: contrast(4.5);
  text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.4);
}
.intro-para {
  width: 70%;
  margin: auto;
  font-family: cursive;
  margin-bottom: 10px;
  word-spacing: 3px;
}
.about-box {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  position: relative;
  bottom: 0;
  width: 70%;
  height: 400px;
  gap: 20px;
  margin-top: 42px;
}
.img-box {
  width: 80%;
  height: 100%;
}
.img-box img {
  width: 100%;
  border-radius: 20px;
  height: 400px;
}
.img-box img:hover {
  filter: brightness(0.5);
  cursor: pointer;
}
.about-vision {
  width: 80%;
}
.about-vision img {
  width: 100%;
  height: 40%;
  border-radius: 25px;
}
.about-vision img:hover {
  filter: brightness(0.5);
}

.vision-desc {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  padding: 20px;
  border-radius: 20px;
  margin-bottom: 20px;
  height: 60%;
  font-family: Red Hat Display, sans-serif;
  border: 1px solid #62626257;
  border-bottom: 5px solid #fcc427;
  background: #e2e2e2;
}
.vision-desc h2 {
  font-family: "Rubik Distressed";
  font-weight: 300;
}
.vision-desc p {
  font-family: cursive;
}
.vision-desc:hover {
  background: black;
  color: white;
  box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.5);
}
.about-mission {
  width: 80%;
}
.about-mission h1 {
  font-family: "Rubik Distressed";
  font-weight: 400;
}
.mission-box {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  padding: 15px;
  font-family: Red Hat Display, sans-serif;
}
.about-mission h1 {
  color: #000;
  font-weight: 500;
  font-size: 50px;
  font-family: rgb(180, 116, 116) "Rubik Distressed";
}

.mission-desc {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  border: 1px solid #62626257;
  border-radius: 20px;
  padding: 15px;
  height: 321px;
  position: relative;
  border-bottom: 5px solid #fcc427;
  width: 272px;
  background: #e2e2e2;
}
.mission-desc h2 {
  font-family: "Rubik Distressed";
  font-weight: 300;
}
.mission-desc p {
  font-family: cursive;
}
.mission-desc:hover {
  background: black;
  color: white;
  box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.5);
}

.about-learnmore .learn_more {
  display: inline-block;
  width: 50px; /* Adjust the size if needed */
  height: auto;
}
.about-learnmore .learn_more1 {
  display: none; /* Hide the first button on mobile */
}

@media (max-width: 768px) {
  .about-section{
    width: 90%;
    margin: auto;
  }
  .about-box {
    flex-direction: column;
    align-items: center;
    gap: 20px;
    justify-content: center;
    height: fit-content;
    width: 60%;
    margin: auto;
  }

  .about-vision,
  .about-mission {
    align-items: flex-start;
    text-align: left;
    width: 100%;
  }
  .vision-desc {
    width: 100%;
  }

  .img-box img {
    max-width: 100%;
    height: 200px;
  }
  .about-mission h1 {
    font-size: 30px;
  }
  .about-vision h2,
  .about-mission h2 {
    font-size: 20px;
  }
  .mission-box {
    display: flex;
    flex-direction: column;

    width: 100%;
  }
  .intro-para {
    font-size: 16px;
  }

  .about-learnmore .learn_more {
    display: none; /* Hide the first button on mobile */
  }

  .about-learnmore .learn_more1 {
    display: inline-block; /* Show the second button on mobile */
    width: 100%; /* Adjust size if needed */
    height: auto;
  }
}

/* Extra Small Mobile View (max-width: 480px) */
@media (max-width: 480px) {
  .about-section {
    padding: 20px 10px;
  }

  .our-intro h1 {
    font-size: 28px;
  }

  .about-vision h2,
  .about-mission h2 {
    font-size: 18px;
  }

  .intro-para {
    font-size: 14px;
  }
}

/* About section end */

.background_img2 {
  position: absolute;
  width: 30%;
  right: 0;
  top: -200px;
  z-index: -1;
}

/* service section start */
.service-section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-top: 155px;
  position: relative;
}
.services {
  display: flex;
  width: 90%;
}
.service-heading {
  height: 163px;
  width: 100%;
}
.service-heading h1 {
  text-align: center;
  font-size: 50px;
  font-family: "Rubik Distressed";
  color: darkgreen;
  font-weight: 400;
  backdrop-filter: contrast(4.5);
  text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.4);
}

.list-item li {
  margin: 10px;
  list-style: none;
  border-left: 5px solid black;
  height: 80px;
  display: flex;
}
.list-item li:hover {
  border-color: #fcc427;
}
.list-item li button {
  font-size: 18px;
  border: none;
  background: none;
  /* font-weight: 700; */
  margin: 10px 45px;
  font-family: "Rubik Distressed";
  font-weight: 200;
}
.list-item li button:hover {
  font-size: 18px;
  border: 1px solid grey;
  padding: 10px;
  border-radius: 12px;
  transform: scale(1.1);
  background: beige;
}
.list-head {
  width: 60%;
}

.listcard-image {
  position: relative;
  width: 100%;
  top: 0;
}
.list-btn {
}
.listcard-content {
  position: absolute;
  top: 120px;
  padding: 33px 16px;
  width: 45%;
}
.listcard-desc h2 {
  font-size: 3rem;
  font-family: Rubik Distressed;
  font-weight: 400;
}
.listcard-content p {
  padding: 12px;
  letter-spacing: 2px;
  font-family: cursive;
  font-size: 19px;
}
.listcard-img2 {
  top: 278px;
  bottom: 66px;
  position: absolute;
  right: 33px;
  width: 340px;
  height: 280px;
  object-fit: fill;
  border: none;
  border-radius: 100px 0px 94px 29px;
}

/* Mobile and Tablet View (max-width: 768px) */
@media (max-width: 768px) {
  .service-section{
    width: 90%;
    margin: auto;
  }
  .service-heading {
    height: fit-content;
  }

  .service-heading h1 {
    font-size: 28px;
  }

  .services {
    flex-direction: column;
    width: 100%;
  }

  .list-head {
    flex-direction: column;
    width: 100%;
    margin-top: 0;
    text-align: center;
    margin-left: -37px;
  }

  .list-desc button {
    padding: 12px 20px;
    font-size: 16px;
    width: 100%;
    margin: 5px 0;
  }

  .list-item {
    display: flex;
    justify-content: space-around;
    align-items: center;
    width: 100%;
    margin-left: 0;
  }

  .list-item li {
    border-left: none;
    border-top: 5px solid black;
    width: auto;
    padding: 10px 0;
  }

  .list-item li button {
    margin: 0;
    width: auto;
    font-family: "Rubik Distressed";
  }

  .listcard-image img {
    max-width: 100%;
    height: 315px;
  }

  .listcard-img2 {
    margin: -88px -23px;
    width: 156px;
    height: 102px;
    max-height: 123px;
    border: none;
    border-radius: 39px 5px 40px 18px;
  }

  .listcard-content {
    padding-left: 0;
    margin-top: 70px;
    text-align: center;
    width: 100%;
  }

  .listcard-desc h2 {
    font-size: 24px;
  }

  .listcard-desc p {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .service-heading h1 {
    font-size: 24px;
  }

  .list-desc button {
    font-size: 14px;
    padding: 10px 18px;
  }

  .listcard-desc h2 {
    font-size: 20px;
  }

  .listcard-desc p {
    font-size: 14px;
  }
}

/* Animation for fading in the content */
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

/* Gallery section start */
.gallery-section {
  display: flex;
  flex-direction: column;
  margin-top: 5px;
  align-items: center;
  width: 100%;
  margin: auto;
  /* background: url("images/feature-bg1.jpg"); */
  
}
.gallery-heading {
  text-align: center;
  margin: 20px;
  width: 80%;
}
.gallery-heading h1 {
  text-align: center;
  font-size: 50px;
  font-family: "Rubik Distressed";
  color: darkgreen;
  font-weight: 400;
  backdrop-filter: contrast(3.5);
  background-image: linear-gradient(45deg, #7c6b6d, #ffffff, transparent);
  text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.4);
}
.gallery-container {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  margin: 15px;
}
.gallary-img img {
  width: 500px;
  margin: 16px;
  /*border-radius: 19px 79px 25px 84px;*/
  height: 530px;
  cursor: pointer;
  object-fit: cover;
}

.gallary-img img:hover {
  box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.3);
  /* transform: scale(1.1); */
  filter: brightness(0.5);
}

.more-btn button {
  background-image: repeating-linear-gradient(
    45deg,
    #85ff46,
    transparent 100px
  );
  color: rgb(28 58 2);
  border: none;
  border-radius: 5px;
  padding: 10px 33px;
  font-size: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: cursive;
  font-weight: bold;
}

.more-btn button:hover {
  background-image: repeating-linear-gradient(
    45deg,
    #2d8202,
    transparent 100px
  );
  transform: scale(1.1);
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
}

.more-btn button:active {
  transform: scale(0.95);
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
  .gallery-section{
    width: 90%;
    margin: auto;
  }
  .gallery-container {
   grid-template-columns: 1fr;
   width: 90%;
   object-fit: contain;
  }
  .gallary-img{
    width: 90%;
    margin: auto;
  }
  .gallary-img img{
    object-fit: unset;
    width: 95%;
    height: 252px;
  }

}

/* Gallery section end */

/* card container start */
:root {
  --card-height: 250px;
  --card-gap: 40px;
  --primary-color: #16263a;
  --secondary-color: #63666c;
}
.card-container {
  margin-top: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #63666c;
  backdrop-filter: drop-shadow(2px 4px 6px black);
  /* background: url("images/feature-bg.jpg"); */
}

/* .card-container::before,
.card-container::after {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  background: rgba(196, 196, 196, 0.873);
  border-radius: 50%;
  z-index: 0;
}
.card-container::before {
  top: -50px;
  left: -50px;
}

.card-container::after {
  bottom: -50px;
  right: -50px;
} */

.card {
  position: sticky;
  top: 0;
}

.card__inner {
  will-change: transform;
  background: white;
  border-radius: 14px;
  display: flex;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px hsla(265.3, 20%, 10%, 35%);
  transform-origin: center top;
}

.cards {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-rows: repeat(var(--cards-count), var(--card-height));
  gap: 40px 0;
}

.card__image-container {
  display: flex;
  width: 40%;
  flex-shrink: 0;
  background: #4f4d4d;
  /*  ackground:none; */
  justify-content: center;
  align-items: center;
}

.card__image {
  width: 100%;
  height: 100%;
  object-fit: unset;
  aspect-ratio: 1;
}

.card__content {
  padding: 40px 30px;
  display: flex;
  flex-direction: column;
  background-image: linear-gradient(5deg, #625959, #00000000);
}

.card__title {
  padding: 0;
  margin: 0;
  font-size: 25px;
  font-weight: 300;
  color: #16263a;
  text-align: center;
  font-family: "Rubik Distressed";
}

.card__description {
  line-height: 1.4;
  font-size: 20px;
  color: #16263a;
  font-family: cursive;
}

.space {
  height: 90vh;
}

.space--small {
  height: 40vh;
}

@media (max-width: 768px) {
  /* Card Container */
  .card-container {
    padding: 20px; /* Add padding around the container */
    width: 90%;
    margin: auto;
  }
  .feature-head {
    font-size: 40px;
    margin-bottom: -100px;
  }
  /* Cards Grid */
  .cards {
    grid-template-columns: 1fr; /* Single-column layout for stacking */
    gap: 30px; /* Moderate gap between cards */
  }

  /* Card Inner */
  .card__inner {
    flex-direction: column; /* Stack content vertically */
    box-shadow: 0 10px 20px -5px hsla(265.3, 20%, 10%, 35%);
  }

  /* Card Image */
  .card__image-container {
    width: 100%; /* Full width for images */
  }

  .card__image {
    width: 100%;
    height: auto; /* Auto height to maintain aspect ratio */
    object-fit: scale-down; /* Ensure no distortion */
    aspect-ratio: 16 / 9;
  }

  /* Card Content */
  .card__content {
    padding: 20px; /* Adjust padding for smaller screens */
    text-align: center; /* Center-align content */
  }

  /* Title */
  .card__title {
    font-size: 22px; /* Adjust title size for tablets */
    margin-bottom: 15px; /* Add spacing below the title */
  }

  /* Description */
  .card__description {
    font-size: 16px; /* Slightly larger font for readability on tablets */
    line-height: 1.6; /* Enhance readability */
    text-align: justify; /* Keep a clean text layout */
  }

  /* Space Adjustments */
  .space {
    height: 60vh; /* Adjust large spacer for tablet screens */
  }

  .space--small {
    height: 30vh; /* Adjust smaller spacer */
  }
}

@media (max-width: 600px) {
  .card-container {
    padding: 10px; /* Add padding for better spacing */
  }

  .cards {
    grid-template-rows: auto; /* Allow cards to grow dynamically */
    gap: 20px; /* Reduce gap for smaller screens */
  }

  .card__inner {
    flex-direction: column; /* Stack image and content vertically */
    box-shadow: 0 10px 20px -5px hsla(265.3, 20%, 10%, 35%);
  }

  .card__image-container {
    width: 100%; /* Make image full-width */
  }

  .card__image {
    width: 100%; /* Ensure the image takes the full width */
    aspect-ratio: 16 / 9; /* Maintain aspect ratio */
    object-fit: cover; /* Prevent distortion */
  }

  .card__content {
    padding: 20px; /* Reduce padding */
  }

  .card__title {
    font-size: 20px; /* Adjust title size */
    margin-bottom: 10px; /* Add spacing below the title */
    text-align: center; /* Center-align title for better presentation */
  }

  .card__description {
    font-size: 14px; /* Smaller font for descriptions */
    line-height: 1.5; /* Ensure good readability */
    text-align: justify; /* For a clean look */
  }

  .space--small {
    height: 20vh; /* Reduce spacer height for mobile */
  }

  .space {
    height: 40vh; /* Adjust large spacer for mobile */
  }
}

/* card container end */

/* tubular design section start */

.tubular-design {
  display: flex;
  flex-direction: column;
  /* justify-content: center; */
  align-items: center;
  background: #63666c;
  backdrop-filter: drop-shadow(2px 4px 6px black);
}
.tubular-head {
  width: 90%;
}
.tubular-head h1 {
  text-align: center;
  font-size: 50px;
  font-family: "Rubik Distressed";
  color: darkgreen;
  font-weight: 400;
  /* backdrop-filter: contrast(4.5); */
  backdrop-filter: contrast(3.5);
  background-image: linear-gradient(45deg, #7c6b6d, #ffffff, transparent);
  text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.4);
}
.tubularimg-section {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  justify-content: center;
  align-items: center;
}
.tubular-img {
  width: 366px;
  height: 300px;
  object-fit: contain;
  margin: 20px;
  box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.5);
  border: none;
  border-radius: 30px;
}
.tubular-img img {
  width: 100%;
  height: 100%;
  border-radius: 30px;
  filter: saturate(3);
  transition: all 0.3s ease-in-out;
}

@keyframes image-hover {
  0% {
    transform: scale(1);
    filter: grayscale(0%);
  }
  100% {
    transform: scale(1.1);
    filter: grayscale(100%);
  }
}

.tubular-img img:hover {
  animation: image-hover 0.3s forwards;
  cursor: pointer;
}

@media (max-width: 768px) {
  .tubularimg-section {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 480px) {
  .tubularimg-section {
    grid-template-columns: 1fr;
  }
  .tubular-img {
    width: 90%;
    height: 300px;
  }
}

/* tubular design section end */

/* Mobile Responsive Styling */
@media (max-width: 768px) {
  .navbar {
    flex-direction: row;
    align-items: flex-start;
    padding: 16px 20px;
    position: static;
  }

  .logo img {
    width: 80px;
    height: 80px;
  }

  .menu-icon,
  .crosimg {
    width: 40px;
    height: 40px;
    top: 5;
    right: 5;
    position: sticky;
  }

  .navlinks {
    position: static; /* Place under the logo in mobile view */
    width: 100%;
    padding: 20px;
    background-color: #151208;
    border-radius: 0; /* Remove rounded corners */
    box-shadow: none; /* Remove shadow for simplicity */
  }

  .navlinks a {
    font-size: 18px;
    padding: 10px 0;
  }

  .main_heading h1 {
    font-size: 35px;
  }
}

@media (max-width: 480px) {
  .navbar {
    padding: 12px 16px;
  }

  .logo img {
    width: 60px;
    height: 60px;
  }

  .menu-icon,
  .crosimg {
    width: 30px;
    height: 30px;
  }

  .navlinks {
    padding: 15px;
  }

  .navlinks a {
    font-size: 16px;
  }

  .main_heading h1 {
    font-size: 28px;
  }
  .services {
    display: flex;
  }
}

/* advantages home */

.advantages-section {
  padding: 80px 20px;
  background: #63666c;
  position: relative;
  overflow: hidden;
  margin-top: 100px;
}

.advantages-section::before,
.advantages-section::after {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  background: rgba(196, 196, 196, 0.873);
  border-radius: 50%;
  z-index: 0;
}

.advantages-section::before {
  top: -50px;
  left: -50px;
}

.advantages-section::after {
  bottom: -50px;
  right: -50px;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.advantages-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #2a9d8f;
  text-align: center;
  margin-bottom: 50px;
  position: relative;
}

.advantages-title::after {
  content: "";
  width: 80px;
  height: 4px;
  background: #2a9d8f;
  position: absolute;
  left: 50%;
  bottom: -10px;
  transform: translateX(-50%);
}

.row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin-top: 100px;
}

.col {
  flex: 1 1 calc(50% - 20px); /* 50% width minus the gap for 2 cards per row */
  max-width: calc(
    50% - 20px
  ); /* ensures it doesn't exceed 50% of the row width */
  box-sizing: border-box;
}

@media screen and (max-width: 768px) {
  .col {
    flex: 1 1 calc(50% - 20px); /* keeps 2 cards in the row even on medium screens */
    max-width: calc(50% - 20px);
  }
}

@media screen and (max-width: 480px) {
  .col {
    flex: 1 1 100%; /* 1 card per row on small screens */
    max-width: 100%;
  }
}

.advantage-item {
  background: #ffffff; /* initial background color */
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease; /* Add transition for background */
  position: relative;
  z-index: 1;
  height: 450px;
  background-image: linear-gradient(275deg, #299ea5, transparent);
}

.advantage-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  /* background: #aed0d3; background color on hover */
}

.advantage-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(to right, #2a9d8f, #e9c46a);
}

.advantage-content {
  padding: 30px;
  /* text-align: center; */
}

.advantage-icon {
  font-size: 70px;
  color: #2a9d8f;
  margin-bottom: 20px;
  text-align: center;
}

.advantage-title {
  padding: 0;
  margin: 0;
  font-size: 32px;
  font-weight: 400;
  color: #16263a;
  text-align: center;
  font-family: Rubik Distressed;
}

.advantage-text {
  font-size: 18px;
  color: #1e1e1f;
  line-height: 1.8;
  font-family: cursive;
}
.advantages-heading h1 {
  font-size: 52px;
  font-weight: 400;
}

/* Footer styling */
.footer {
  background-color: black;
  color: white;
  padding: 2rem 0;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
  max-width: 1200px;
  margin: auto;
  padding: 1rem;
}

.footer-section {
  flex: 1;
  min-width: 200px;
}

.footer-section h2 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: #ffcc00;
  font-family: "Rubik Distressed";
  font-weight: 200;
}

.footer-section p,
.footer-section ul,
.footer-section a {
  color: #ddd;
  font-size: 1rem;
  text-decoration: none;
  line-height: 1.6;
  font-family: cursive;
}
.footer-section p{
  display: flex;
  align-items: center;
}
.footer-section p i{
  margin-right: 12px;
}

.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section ul li {
  margin-bottom: 0.5rem;
}
.footer-section ul li a {
  color: #ddd;
  text-decoration: none;
}

.footer-section ul li a:hover {
  color: #ffcc00;
  text-decoration: underline;
}

.social-icons {
  display: flex;
  gap: 1rem;
}

.social-icons a img {
  width: 40px;
  height: 40px;
  transition: transform 0.3s;
}

.social-icons a img:hover {
  transform: scale(1.1);
}

.footer-bottom {
  text-align: center;
  padding: 1rem;
  background-color: #222;
  color: #bbb;
  font-size: 0.875rem;
}
.footer-bottom p a {
  color: gold;
}
.footer-bottom p a:hover {
  color: pink;
}

.bottom_star1 {
  position: absolute;
  width: 10%;
  right: 0;
  margin-top: 100px;
}

.bottom_star2 {
  position: absolute;
  width: 10%;
  display: flex;
  justify-content: end;
}
/* float button start */
.float_wa {
  position: fixed;
  width: 100px;
  height: 100px;
  bottom: 24px;
  left: 20px;
  color: #fff;
  border-radius: 50px;
  text-align: center;
  font-size: 32px;
  z-index: 100;
  border-radius: 61%;
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}
.float_wa:hover {
  transform: scale(1.1); /* Slight zoom on hover */
}

.float_wa img {
  width: 100px;
  height: 100px;
  border-radius: 50px;
}

.float_call {
  position: fixed;
  bottom: 40px;
  right: 20px;
  width: 100px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.float_call:hover {
  transform: scale(1.1);
}

.float_call img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: contrast(1.5);
}
/* float button end */
.frontbg3 {
  position: absolute;
  z-index: -1;
  right: 37%;
  transform: scaleX(3.5);
  width: 29%;
  height: 1000px;
}
.background_img3 {
  position: absolute;
  right: 0;
  z-index: -1;
}

/* gallery page start */
.gallerypage-section {
  width: 100%;
  background: url("./images/gallery_img12.jpg");
  height: 200px;
  background-repeat: no-repeat;

  background-size: cover;
  background-position: center;
}
.gallerypage-section h1 {
  text-align: center;
  font-size: 50px;
  font-family: "Rubik Distressed", sans-serif;
}
.gallerypage-imgsection {
  display: grid;
  grid-template-columns: auto auto auto;
  width: 100%;
  justify-content: center;
}
.gallerypage-img {
  width: 400px;
  height: 366px;
  margin: 15px;
  border: none;
}
.gallerypage-img img {
  width: 100%;
  height: 100%;
  border-radius: 12px;
  /* filter: contrast(1.5); */
  cursor: pointer;
}
.gallerypage-img img:hover {
  transform: scale(1.05);
  filter: contrast(1.5) brightness(0.5);
  transition: transform 0.3s ease, filter 0.3s ease;
}

@media (max-width: 768px) {
  .main-section{
    width: 90%;
    margin: auto;
  }
  .gallerypage-imgsection {
    grid-template-columns: 1fr; /* 2 columns for medium screens */
    width: 90%;
    margin: auto;
  }
}

@media (max-width: 480px) {
  .gallerypage-imgsection {
    grid-template-columns: 1fr; /* 1 column for small screens */
  }

  .gallerypage-img {
    width: 100%; /* Ensure the image takes up full width */
    height: auto; /* Maintain aspect ratio */
  }
}

/* gallery page end */

/* about Us Page Start */
.aboutpage-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 50px;
  gap: 20px;
  margin: 0 100px;
  margin-top: -100px;
}

.aboutus-img {
  position: relative;
  overflow: hidden;
  display: inline-block;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  width: 420px;
  height: auto;
  cursor: pointer;
}

.aboutus-img img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease, filter 0.5s ease;
  transform-origin: center;
}

.aboutus-img::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: 1;
  pointer-events: none;
  border-radius: 12px;
}

.aboutus-img img:hover {
  transform: scale(1.1) rotate(2deg);
  filter: brightness(1.2) saturate(1.5);
}

.aboutus-img:hover::before {
  opacity: 1;
}
.aboutus-content {
  max-width: 600px;
  font-family: "Montserrat", sans-serif;
  line-height: 1.6;
}

.aboutus-content p {
  margin-bottom: 15px;
  font-family: cursive;
  word-spacing: 2px;
}
.aboutus-content p strong {
  font-weight: 800;
  font-size: 20px;
  color: red;
}

.about-page-section {
  margin: 38px auto;
  margin-bottom: 205px;
}
@media (max-width: 768px) {
  .aboutpage-section {
    flex-direction: column;
    text-align: center;
    align-items: center;
    margin: auto;
  }
  .aboutus-img {
    margin: auto;
    width: 325px;
  }
  .aboutus-img img {
    /* width: 90%; */
    max-width: 400px;
  }
}

/* about Us Page end */

/* contactPage start */
/* General Container */
.contactpage-container {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  padding: 40px;
  background-color: #53525296;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Info Section */
.contactpage-info {
  flex: 1;
  min-width: 300px;
  font-family: "Montserrat", sans-serif;
  color: #333;
}

.contactpage-info h1 {
  font-size: 32px;
  margin-bottom: 10px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.4);
  color: #ffcc00;
  font-family: Rubik Distressed;
  font-weight: 400;
}

.contactpage-info p {
  margin-bottom: 15px;
  line-height: 1.5;
  font-family: cursive;
}

.contactpage-info a {
  color: #ffffff;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.contactpage-info a:hover {
  color: #0056b3;
}

/* Form Section */
.contactpage-form {
  flex: 1;
  min-width: 300px;
  background-color: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.contactpage-form form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contactpage-form label {
  font-weight: bold;
  color: #333;
}

.contactpage-form input,
.contactpage-form textarea {
  width: 100%;
  padding: 12px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 8px;
  box-sizing: border-box;
}

.contactpage-form button {
  padding: 12px;
  font-size: 18px;
  color: #fff;
  background-color: #007bff;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.contactpage-form button:hover {
  background-color: #0056b3;
  transform: scale(1.05);
}

/* Responsive Design */
@media (max-width: 768px) {
  .contactpage-container {
    flex-direction: column;
  }

  .contactpage-info,
  .contactpage-form {
    width: 100%;
  }
}
.map-section {
  padding: 50px;
  background-color: #f9f9f9;
  text-align: center;
}

.map-container {
  max-width: 100%;
  margin: 0 auto;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.map-container iframe {
  border: none;
  border-radius: 12px;
}

/* contactPage end */



/* key benefits start */
/* Container Styling */
.keybenfits-container {
  background:#747474;
  position: relative;
  
}
.keybenfits-container::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4); /* Dark overlay */
  z-index: 0;
}
.keybenfits-container * {
  position: relative;
  z-index: 1;
}

.keybenfits-head{
  background-image: linear-gradient(45deg, #f5edee, #ffffff, transparent);
  width: 85%;
  margin: auto;
}

.keybenfits-head h1 {
  font-size: 2.5rem;
  color: #2c3e50;
  margin-bottom: 10px;
  text-align: center;
    /* font-size: 50px; */
    font-family: "Rubik Distressed";
    color: darkgreen;
    font-weight: 400;
    /* backdrop-filter: contrast(4.5); */
    backdrop-filter: contrast(3.5);
    background-image: linear-gradient(45deg, #7c6b6d, #ffffff, transparent);
    text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.4);
    border: none;
}

.keybenfits-head p {
  font-size: 1rem;
  color: #00002f;
  margin-bottom: 30px;
  font-family: monospace;
  border: none;
  text-align: center;

}

/* Inner Container Styling */
.keybenfits-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 27px;
  justify-content: center;
  width: 58%;
  margin: auto;
  
}

.keybenfits-card {
  position: relative; /* Required for the :after pseudo-element */
  background: white;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  padding: 20px;
  flex: 1 1 calc(33.333% - 20px);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: left;
  overflow: hidden; /* Ensures the pseudo-element doesn’t spill out */
  margin-bottom: 10px; 
}


.keybenfits-card:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px; /* Top border height */
  background: linear-gradient(to right, #2a9d8f, #e9c46a);
  transition: transform 0.3s ease;
  z-index: -1;
}

.keybenfits-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  border-bottom: 4px solid #2a9d8f;
}

.keybenfits-card:hover:after {
  transform: scaleX(1.1); /* Slight expansion for a dynamic hover effect */
}

.keybenfits-card h2 {
  font-size: 1.5rem;
  color: #16a085;
  margin-bottom: 10px;
}

.keybenfits-card p {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
  font-family: cursive;
}

/* Responsive Design */
@media (max-width: 768px) {
  .keybenfits-card {
    flex: 1 1 calc(50% - 20px); /* Two cards per row on tablets */
  }

  .keybenfits-head h1 {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .keybenfits-card {
    flex: 1 1 100%; /* Single column layout on mobile */
  }

  .keybenfits-head p {
    font-size: 0.9rem;
  }
}

/* key benefits end */


/* about container start */

    /* Section styling */
    .about-container {
      padding: 12px 15px;
      background: white;
      height: 500px;
     
    }
    .aboutpage-profile{
      max-width:75% ;
    }
    
    /* About Section (flex layout for large screens) */
   /* Flex Layout for About Section */
  .aboutpage-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap; /* Allows for responsiveness on small screens */
    flex-direction: row;
    width: 85%;
    margin: auto;
    /* background: url("assets/images/whitebg_img1.jpg") no-repeat center center/cover; */
  }
  
  /* Image Section Styling */
  .about-img-section {
    position: relative;
    width: 250px;
    height: 250px; /* Ensure it's square */
    background: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  /* Animated Circular Effect */
  .about-img-section::before {
    content: "";
    position: absolute;
    inset: -10px 140px;
    background: linear-gradient(315deg, #00ccff, #d400d4);
    transition: 0.5s;
    animation: animate 4s linear infinite;
  }
  
  .about-img-section:hover::before {
    inset: -10px 0px;
  }
  
  @keyframes animate {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(360deg);
    }
  }
  
  /* Dark Circle Border Around Image */
  .about-img-section::after {
    content: "";
    position: absolute;
    inset: 6px;
    background: #1b1b1b;
    border-radius: 50%;
    z-index: 1;
  }
  
  /* Image Container */
  .about-img {
    position: absolute;
    z-index: 3;
    inset: 30px;
    border: 6px solid #1b1b1b;
    border-radius: 50%;
  }
  
  /* Image Styling */
  .about-img img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 8px;
    object-fit: cover;
    border-radius: 50%;
  }
  
  /* Content Styling */
  .about-content {
    flex: 1;
    padding: 0 20px;
  }
  .about-content h2 {
    font-size: 2.5rem;
    color: #333;
    font-weight: 400;
    margin-bottom: 20px;
    font-family: "Rubik Distressed";
  }
  
  .about-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 15px;
    font-family:cursive;
  }
  
  /* Responsive Design for Small Screens */
  @media (max-width: 767px) {
    .about-section {
      flex-direction: column;
      text-align: center;
    }
  
    .about-img-section {
      width: 300px; /* Make the image container smaller on mobile */
      height: 300px;
      margin-bottom: 20px; /* Space between the image and text */
    }
  
    .about-img img {
      max-width: 100%; /* Make sure the image is responsive */
    }
  
    .about-content {
      padding: 0 10px;
    }
  
    .about-content h2 {
      font-size: 2rem;

    }
  
    .about-content p {
      font-size: 1rem;
    }
  }
  .about-img-content{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
  }
  .about-img-content h2{
    font-family: 'Times New Roman', Times, serif;
    color: #00002f;
    font-weight: 700;
  }
  .about-profile{
    background: white;
  }
  .about-profile h1{
    font-family: "Rubik Distressed";
    font-size: 40px;
    font-weight: 400;
    text-align: center;
    padding-top: 44px;
    
  }
     /* about container end */


/* Style the scrollbar track */
 ::-webkit-scrollbar {
  width: 12px;
  height: 12px;
}

/* Style the scrollbar thumb */
::-webkit-scrollbar-thumb {
  background: linear-gradient(45deg, gray, yellow);
  border-radius: 10px;
  border: 3px solid #060c21; /* Adds spacing around the thumb */
}

/* Style the scrollbar corner (for two-way scrolling) */
::-webkit-scrollbar-corner {
  background: #060c21;
}

/* Style on hover */
::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(45deg, yellow, gray);
}

/* Style the scrollbar buttons */
::-webkit-scrollbar-button {
  background: #060c21;
  border: none;
  border-radius: 50%;
  width: 12px;
  height: 12px;
}

/* Style scrollbar button on hover */
::-webkit-scrollbar-button:hover {
  background: #d11149;
}     










