*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
:root {
  font-family: "Roboto", serif !important;
  font-optical-sizing: auto;
  font-style: normal;
}

html,body{
  font-family: "Roboto", serif !important;
  font-optical-sizing: auto;
  font-style: normal;
  width: 100%;
  min-height: 100vh;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  font-family: "Roboto", serif !important;
  font-optical-sizing: auto;
  font-style: normal;
}
p{
 font-size: clamp(14px, 1vw, 18px);
}
h2 {
    font-size: clamp(20px, 1.8vw, 28px);
}
/* top bar start here  */
header{
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 9999;
}
.top-bar {
  background-color: #f8f9fa;
  padding: 10px 0;
  font-size: 14px;
}
.logo-text-wrapper {
  display: flex;
  align-items: center;
  gap: 10px;
}
.top-bar img {
  max-height: 50px;
}
.logo-text-wrapper .logo-text {
  font-size: 18px;
  font-weight: 600;
  color: #333;
}
.center-info {
  display: flex;
  align-items: center;
  gap: 40px;
}
.center-info i {
  color: #fff;
  font-size: 14px;
}
.center-info span {
  font-size: 13px;
  color: #333;
}

.icon-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 30px;
    background-color: #ec252d;
    border-radius: 50%;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.15);
    margin-right: 12px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.animated-icon {
    font-size: 24px;
    color: #ffffff;
    animation: zoomin-zoomout 3s linear infinite;
}

@keyframes zoomin-zoomout {
   0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
    }
}
.icon-wrapper:hover {
    transform: scale(1.2);
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.25);
}
@media (max-width: 768px) {
  .top-bar .d-flex {
      flex-direction: column;
      align-items: center;
      gap: 10px;
  }
  .center-info {
      flex-direction: column;
      text-align: center;
  }
  .logo-text-wrapper {
      flex-direction: column;
      text-align: center;
  }
}
.nav-bar {
  background-color:#4e8abc;
}

.navbar-nav .nav-item .nav-link {
    position: relative;
    color: #fff;
    font-size: 14px;
    transition: color 0.3s ease;
}

.navbar-nav .nav-item .nav-link:hover {
    color: #fff !important;
}

.navbar-nav .nav-item .nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 1px;
    background-color: #fff;
    transition: width 0.3s ease;
}

.navbar-nav .nav-item .nav-link:hover::after {
    width: 100%;
}
.social-icons{
position: relative;
z-index: 10;   
}
.social-icons a {
  color: white;
  margin-right: 10px;
}
.fa-phone-alt{
  transform:rotate(132deg);
}

/* top bar end here  */

/* navbar start here  */

.nav-link {
  color: #fff;
  margin-right: 20px;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-link:hover {
  color:#035766 !important
}

/* Social Icons Styling */

.social-icon {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
  background-color: #1E88E5; 
  color: #343a40;
  border-radius: 50%; 
  text-decoration: none;
  transition: background-color 0.3s, transform 0.3s;
  font-size: 14px;
}

.social-icon:hover {
  transform: rotate(360deg); 
}
.fa-bars{
  color:#fff;
}
/* navbar end here  */

/* hero section start here  */

/* Full-Screen Video Section */

#package_section {
  position: relative;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background: url('../img/video_bg.jpg') no-repeat center center/cover;
  overflow: hidden;
  padding-top: 123px; /* Push content below fixed header */
  box-sizing: border-box;
}
.video-overly{
    position:absolute;
    top:0;
    left:0;
    right:0;
    bottom:0;
    width:100%;
    background: rgb(255 255 255 / 43%);
    backdrop-filter: blur(2px);
}

.custom-video-container {
  width: 80%; /* Adjust as needed */
  max-width: 900px; /* Prevents video from being too large */
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9;
 overflow: hidden;
 border-radius: 20px;
 clip-path: inset(0 round 20px);
}

.rounded-video {
  width: 100%;
  height: auto;
  clip-path: url(#roundedMask);
  -webkit-clip-path: url(#roundedMask);
}

.custom-video-container video {
  width: 100%; 
  height: auto;
  max-height: 75vh; /* Keeps some space at top and bottom */
  object-fit: contain; /* Prevents cropping */
  /*clip-path: inset(0 round 20px);*/
}


#selectPackageToggle{
transform: translateY(-50%) rotate(89deg);
transform-origin: right center;
z-index: 1050;
background: #d70826;
border-color: #d70826;   
}

.modal-header{
    background-color: #ec2d35 !important;
    color: #fff;
    padding: 8px;
}
.btn-close {
  filter: invert(1);
  opacity: 1;
}
.fixed-btn {
  position: fixed;
  right:16px;
  top: 65%;
  z-index: 1050;
}
/* hero section end here  */


/* why us section start here  */

.section-title::after {
  content: '';
  width: 80px;
  height: 4px;
  background-color: #ff6600;
  display: block;
  margin: 0.5rem auto;
}
.highlight {
  color: #419cd6;
  font-weight: bold;
}
.card-custom {
  border: none;
  border-radius: 15px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  background-color: #ffffff;
  padding: 20px;
  transition: all 0.3s ease-in-out;
  height: 350px;
}
.card-custom:hover {
  transform: translateY(-10px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}
.icon-circle {
  width: 70px;
  height: 70px;
  background-color:#419cd6;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  font-size: 2rem;
  margin: 0 auto 1rem auto;
}
.card-custom h5 {
  font-size:24px;
  margin-bottom: 0.5rem;
}
.card-custom p {
  color: #000;
  text-align:justify;
  font-size: 15px;
  line-height: 30px;
}
.line-height-class{
  line-height: 30px;
}
.content-text {
  line-height: 1.8;
}
.content-image img {
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
.about-para{
  text-align:justify;
  line-height: 25px;
  margin-bottom: 5px;
}
.para-padding{
    padding-top:20px;
}
.about-partner {
    text-align: justify;
    line-height: 30px;
}
#about{
  background: linear-gradient(135deg, #f0f8ff, #e6f7ff); 
  position: relative; 
  overflow: hidden;
  min-height: calc(100vh - 123px);
  display: flex;
  justify-content: center;
  align-items: center;
}
/*.bottom-para{*/
/*    padding-left: 36px;*/
/*    padding-top: 17px;*/
/*}*/
/* why us section end here  */

/* achievement section start here  */

#stats {
  background-image: url('../img/stats-section-bg.jpg');
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
  min-height: calc(100vh - 123px);
  display: flex;
  justify-content: center;
  align-items: center;
}

.bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgb(0 0 0 / 89%);
  z-index: 1;
}

.statistics-section .container {
  position: relative;
  z-index: 2;
}

.stat-card {
  padding: 20px;
  background-color: rgb(48 47 47 / 66%); /* Semi-transparent card background */
  border-radius: 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.3);
}

.stat-card i {
  color:#d70826; /* Gold color for icons */
}

.stat-number {
  font-size: 19px;
  font-weight: bold;
  color: #fff;
  margin: 0;
}

.stat-text {
  color: #ddd;
  margin: 0;
}

#stats h2 {
  font-weight: bold;
}


/* achievement section end here  */

@keyframes zoomInOut {
  0% {
    transform: scale(1); /* Normal size */
  }
  50% {
    transform: scale(1.2); /* Zoom in */
  }
  100% {
    transform: scale(1); /* Back to normal size */
  }
}

/* Apply the animation to images */
.whatsapp_btn img {
  display: block;
  margin: auto;
  transition: transform 0.5s ease;
  animation: zoomInOut 3s infinite; /* 3 seconds animation, infinite loop */
}

.whatsapp_btn img{
position: fixed;
left: 20px;
width: 45px;
z-index: 999;
bottom: 20px;
}

/* Contact us section start here  */

.section-title {
  font-weight: bold;
  color: #d70826;
  position: relative;
  text-transform: capitalize;
  text-align: center;
  margin-bottom: 1rem;
}

.section-title::after {
  content: "";
  display: block;
  width: 80px;
  height: 3px;
  background-color:#d70826;
  margin: 10px auto 0;
}

.contact-card,
.working-hours-card {
  background: #fff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-card:hover,
.working-hours-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.contact-title {
  font-size: 16px;
  font-weight: bold;
  color: #333;
  padding-bottom: 5px;
}

.contact-info li,
.working-hours li {
  font-size: 0.95rem;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}

.contact-info li i,
.working-hours li strong {
  margin-right: 10px;
  font-size: 1.2rem;
  color: #ec1b23 !important;
}

.contact-info a {
  color: #007bff;
  text-decoration: none;
}

.contact-info a:hover {
  text-decoration: underline;
}
.contact-para{
  text-align:justify;
  line-height:30px;
}
@media (max-width: 768px) {
  .contact-card,
  .working-hours-card {
      margin-bottom: 20px;
  }
}

#contact-us .fas{
    color: #eb1b23;
    padding-right: 5px;
}
#contact-us strong{
    color: #eb1b23;
    padding-right: 5px;
    font-size: 14px;
}
.address-td{
    font-size: 14px;
}
  @keyframes point {
        0%, 100% { transform: translateX(0); }
        50% { transform: translateX(5px); }
    }
    
    .animate-hand {
        display: inline-block;
        animation: point 1s infinite;
    }
    @keyframes clock-tick {
        0%, 100% { transform: rotate(0deg); }
        50% { transform: rotate(-10deg); }
    }

    .animate-clock {
        display: inline-block;
        animation: clock-tick 1s infinite;
    }
/* Contact us section end here  */


/* footer section start here  */

.footer-section {
  background:url('../img/footer-bg.jpg');    
  background-color: #1a1a1a;
  color: #ddd;
  padding: 50px 0;
  position:relative;
  background-position: inherit;
}
.footer-overlay{
 background-color:#1c374ef5;   
 position:absolute;
 left:0;
 right:0;
 top:0;
 bottom:0;
 width:100%;
}

.footer-title {
  font-size: 19px;
  font-weight: bold;
  color: #fff;
  display: inline-block;
  margin-bottom: 20px;
}

.footer-link {
  color: #ddd;
  text-decoration: none;
  font-size: 14px;
  display: inline-block;
  margin-bottom: 8px;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: #fff; /* Highlight color on hover */
  transform: translateX(5px);
}

.social-link {
  display: inline-block;
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  background: #333;
  border-radius: 50%;
  color: #ddd;
  font-size: 14px;
  transition: background 0.3s ease, color 0.3s ease;
}
.social-link:hover {
  background: #13486f;
  color: #fff;
}

.text-muted {
  font-size: 0.9rem;
  line-height: 1.8;
}

.footer-section .container {
  max-width: 1200px;
}

/* Copyright Styling */
.footer-section .row.mt-4 p {
    border-top: 1px solid #ffffff45;
    padding-top: 10px;
    margin-top: 20px;
    color: #dddddd;
}

/* footer section end here  */

/* slider css start here  */

.slider .card {
  border: none;
  border-radius: 20px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background: #ffffff;
  position: relative;
  margin: 15px;
  height:490px;
  position: relative;
}

.slider .card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}
.slider .card .card-body{
    padding:0;
}
/* Card Image */
.slider .card img {
  height: 220px;
  width: 100%;
  object-fit: inherit;
}
/* Card Title */
.slider .card h5 {
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  color:#000;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin: 20px 0 10px 0;
}
/* Card Description */
.slider .card p {
    font-size: 16px;
    color: #000 !important;
     text-align: justify; 
    line-height: 30px;
    margin: 0 15px 15px;
    word-spacing: 0px;
}

/* Button (Read More) */
.slider .card .btn-warning {
  display: inline-block;
  text-align: center;
  font-size: 18px;
  font-weight: bold;
  color: #ffffff;
  text-decoration: none;
  border-radius: 20px;
  padding: 10px 15px;
  background: linear-gradient(90deg, #f97316, #f72585); /* Matching vibrant gradient */
  margin: 0 auto 20px;
  transition: background 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%);
}

.slider .card .card-sub-title{
  font-style: italic;
  font-size: 15px;
  text-align: center;
  color: #6f6b6b !important;
}

.slider .card .btn-warning:hover {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  background: linear-gradient(90deg, #f72585, #f97316); /* Reverse gradient */
}

.benefits-title h2 {
  background: linear-gradient(90deg, #ff7a59, #f54b9c);
  color: #ffffff;
  border-radius: 12px;
  padding: 5px 20px;
  display: inline-block;
  font-size: 30px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.benefits-title h2::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.3);
  transform: skewX(-25deg);
  z-index: 2;
  animation: shine 2s infinite;
}

@keyframes shine {
  0% {
    left: -100%;
  }
  50% {
    left: 100%;
  }
  100% {
    left: 100%;
  }
}

.benefits-title {
  text-align: left;
  margin-top: 20px;
  position: relative;
}

.benefits-title::after {
  content: '';
  display: block;
  width: 120px;
  height: 6px;
  border-radius: 50px;
  margin: 10px auto 0 auto;
  animation: fadeIn 1.5s ease-in-out;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: scaleX(0);
  }
  100% {
    opacity: 1;
    transform: scaleX(1);
  }
}


/* slider css end here  */

.ash-white {
    background-color: #F3EDE3 !important;
}

.soft-grey {
    background-color: #D3D8E8 !important;
}

.pink {
    background-color: #F4D7D8 !important;
}

.v {
    background-color: #C6A3C8 !important;
}

.white-green {
    background-color: #D8EAD6 !important;
}

#contact-us{
    background: linear-gradient(135deg, #f0f8ff, #e6f7ff);
    min-height: calc(100vh - 123px);
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;    
}
.btn-primary{
    background:#4e8abc;
    border-color:#4e8abc;
}
.package-section{
    position: absolute;
    z-index: 99;
    top: 25%;
    left: 50%;
    transform: translate(-50%);
}
.btn-design{
    padding: 5px 29px;
    font-size: 20px;
    border-radius: 20px;
}
.lightblue{
    background:#A4C2F4 !important;
}
.lightgreen{
    background:#89DDCD !important;
}
.lightpurple{
    background:#F8C0C3 !important;
}
.lightgreycolor{
    background:#EFEFEF !important;
}
.instagram{
    background:radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%,#d6249f 60%,#285AEB 90%);
}
.linkedin{
    background:#0077B5;
}
.facebook{
    background: #3c5899;
}

/*Testimonial section start here */

/* Testimonial Box Styling */

        .testimonial-slider {
            display: flex;
            background: #ffffff;
            height:320px;
            max-width: 900px;
            padding: 30px;
            border-radius: 20px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
            position: relative;
            overflow: visible;
        }

        .testimonial-content {
            flex: 2;
            margin-left: 20px;
            display: flex;
            flex-direction: column;
        }

        .testimonial-title {
            font-size: 19px;
            color: #ec1c24;
            font-weight: 600;
            margin-bottom: 5px;
            border-bottom: 3px solid #ec1c24;
            display: inline-block;
            padding-bottom: 5px;
            padding-left: 10px;
        }

        .stars {
            color: gold;
            font-size: 13px;
            margin: 10px 0;
        }

        .testimonial-text {
            font-size: 14px;
            color: #555;
            margin-bottom: 15px;
            line-height: 1.6;
        }

        .testimonial-name {
            font-weight: 600;
            color: #ec1c24;
            font-size: 16px;
        }

        .testimonial-designation {
            color: #777;
            font-size: 14px;
        }

.testimonial-h2{
    color: #fff;
    position: relative;
    z-index: 9;
    text-align: center;
    margin-bottom: 30px;
    font-weight: bold;
}

.testimonial-title-wrapper{
position: relative;
z-index: 99;
margin-bottom: -60px;
}
.testimonial-card{
    margin-top:60px;
}
/* Testimonial section start here */

.service-title{
    padding-top:15px;
}

          .circle-container {
              position: relative;
              width: 100%;
              height: 600px;
              margin: auto;
          }
          .center-image {
              position: absolute;
              top: 50%;
              left: 50%;
              transform: translate(-50%, -50%);
              width: 45%;
          }
          .service-card {
              position: absolute;
              width: 145px;
              text-align: center;
              background: #eeeeee;
              border-radius: 10px;
              padding: 8px;
              box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
              transition: background 0.3s ease-in-out;
              font-size: 14px;
          }
          .service-card:hover {
              background:#4e8abc;
              color: white;
          }
          
.service-card:hover i {
    background: linear-gradient(135deg, #64d4ff, #3d8792);
}
          .service-card i {
              display: block;
              font-size: 20px;
              margin-bottom: 8px;
          }
          
          .card-1 {top: -1%;left: 47%;transform: translate(-50%, 0);}
          .card-2 {top: 0%;left: 62%;transform: translate(-50%, 0);}
          .card-3 {top: 30%;left: 91%;transform: translate(-50%, -50%);}
          .card-4 {bottom: 86%;left: 77%;transform: translate(-50%, 50%);}
          .card-5 {bottom: 42%;left: 96%;transform: translate(-50%, 0);}
          .card-6 {bottom: 22%;left: 99%;transform: translate(-50%, 0);}
          .card-7 {bottom: 26%;left: 1%;transform: translate(-50%, 0);}
          .card-8 {bottom: 55%;left: 5%;transform: translate(-50%, 50%);}
          .card-9 {top: 25%;left: 17%;transform: translate(-50%, -50%);}
          .card-10 {top: 6%;left: 32%;transform: translate(-50%, 0);}
          
          
          .service-card i{
    width: 40px;
    height: 40px;
    background:linear-gradient(135deg, #ec1c24, #eb1a22);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    margin: 0 auto 1rem;
    color: #fff;
    }
          
#testimonial{
    position:relative;
    background:url('../img/gear.png');
    overflow:hidden;
    min-height: calc(100vh - 123px);
    display: flex;
   justify-content: center;
   align-items: center;
}     
.testimonial-img{
    position: absolute;
    left: 0;
    bottom: 0;
    top: 0;
    z-index: 1;
    width: 50%;
}
.testimonial-overlay{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgb(236 37 45 / 97%);
  z-index: 1;
}
.testimonial-slider{
    position:relative;
    z-index:9;
}

/*Gallery code start here*/

   /* Lightbox styles */
        .lightbox {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.9);
            justify-content: center;
            align-items: center;
            z-index: 1050;
        }
        
 .gallery-item {
      display: block;
      position: relative;
      overflow: hidden;
      border-radius: 12px;
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
      transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    }

    .gallery-item img {
    width: 100%;
    height: 190px;
    transition: transform 0.3sease;
    object-fit: cover;
    padding: 10px;
    background:#fff;
    transition: transform 0.5s ease-in-out;
    }

.gallery-margin{
    margin-bottom:20px;
}
    .gallery-item:hover {
      box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2);
    }

    .gallery-item:hover img {
      transform: scale(1.1);
    }

    .gallery-item-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.5);
      color: white;
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      transition: opacity 0.4s ease-in-out;
      font-size: 1.5rem;
      font-weight: bold;
      border-radius: 12px;
    }

    .gallery-item:hover .gallery-item-overlay {
      opacity: 1;
    }
 
        .lightbox.active {
            display: flex;
        }

        .lightbox img {
            max-width: 90%;
            max-height: 80%;
            border-radius: 8px;
        }

        .lightbox .close-btn {
    position: absolute;
    top: 20px;
    right: 30px;
    color: white;
    font-size: 40px;
    text-decoration: none;
    background: rgba(0, 0, 0, 0.6);
    padding: 0;
    border-radius: 50%;
    cursor: pointer;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    }

    .lightbox .close-btn:hover {
    background: rgb(203 58 58);
    color: #ffffff;
    }

body.no-scroll {
overflow: hidden;
}

.gallery-herobar{
  background:url('../img/gallery_bg.jpg');    
  background-color: #1a1a1a;
  color: #ddd;
  padding: 50px 0;
  position:relative;
  background-position: inherit;
  margin-top: 123px;
}
.gallery-overlay{
 background-color:#1c374ef5;   
 position:absolute;
 left:0;
 right:0;
 top:0;
 bottom:0;
 width:100%;
}

#gallery_herobar .section-title::after {
background-color: #ffffff;
}
/*Gallery code end here*/

.membership{
min-height: calc(100vh - 123px);
display: flex;
justify-content: center;
align-items: center;   
margin-top:125px;
}

/*new services section start here*/

#our-services{
    min-height: calc(100vh - 123px);
    display: flex;
    justify-content: center;
    align-items: center;
}

 .car-services-card {
            border: 1px solid #ddd;
            padding: 10px;
            text-align: center;
            background: #fff;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
            border-radius: 5px;
            transition: transform 0.3s;
            min-height: 100%;
           padding-bottom: 0 !important;
        }
.car-services-card p{        
 text-align: justify;
 hyphens: auto;
}
        .car-services-card:hover {
            transform: scale(1.05);
        }
      .car-services-card img {
    width: 100%;
    height: 100px;
    margin-bottom: 10px;
    object-fit: contain;
    }
        .car-services-title {
            font-weight: bold;
            color: #ec252d;
            font-size:clamp(14px, 1vw, 19px);;
           text-align: center !important;
           margin-bottom: 5px;
        }
        
.slick-prev, .slick-next {
    width: 40px !important;
    height: 40px !important;
    background-color: white !important;
    border-radius: 20% !important;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    z-index: 1000 !important;
}

.slick-prev {
    left: -50px !important; /* Adjust positioning */
}

.slick-next {
    right: -50px !important; /* Adjust positioning */
}

.slick-prev::before, .slick-next::before {
    font-size: 25px !important;
    color: #ec252d !important; /* Adjust arrow color */
    opacity: 1 !important;
}

.modal{
    z-index:99999 !important;
}
.slider-p{
    text-align:justify;
    hyphens: auto;
}

#benefits{
  min-height: calc(100vh - 123px);
  display: flex;
  justify-content: center;
  align-items: center;    
}
#benefits img{
    height: 155px;
    object-fit: cover;
}
#benefits .card-title{
  font-size: 19px;
    color: #ec252d;
    text-align:center;
}
#benefits .card-body{
padding-bottom: 0px;
}
label {
    font-size: 14px;
}
.contact-card tbody, td, tfoot, th, thead, tr {
    font-size: 14px;
}
.working-hours-card{
    padding-bottom: 16px !important;
}
.footer-para{
    text-align: justify;
    hyphens: auto;
}
.decor-circle {
    position: absolute;
    background: rgba(0, 123, 255, 0.1);
    border-radius: 50%;
}

.top-left {
    top: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
}

.bottom-right {
    bottom: -50px;
    right: -50px;
    width: 300px;
    height: 300px;
}
/*new services section end here*/

/* Modal Dialog: Ensuring Equal Top and Bottom Spacing */
.custom-modal-dialog {
  max-width: 90%;
  margin: auto;
  display: flex;
  align-items: center;
  height: 100%;
  min-height: calc(100vh - 40px); /* Balanced spacing */
}

/* Modal Content: Compact Design */
.custom-modal-content {
  max-width: 350px;
  margin: auto;
}

/* Modal Header: Styling and Rounded Corners */
.custom-modal-header {
  font-size: 14px;
}

/* Submit Button: Rounded Design with Hover Effect */
.custom-submit-btn {
  background: #ec2d35;
  border: none;
  border-radius: 20px;
  box-shadow: 0px 3px 7px rgba(0, 0, 0, 0.2);
  transition: 0.3s;
}

.custom-submit-btn:hover {
  background: #c8232c;
}

/* Make the section take full viewport height */
.membership {
    min-height: 100vh;
    width: 100vw;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Ensure the wrapper covers the entire screen */
.membership-img-wrapper {
    width: 100vw;
    height: 100vh;
    overflow: hidden;
}

/* Make sure the image covers the full screen */
.membership-img-wrapper img {
    width: 100%;
    max-height: 85%;
    object-fit: contain;
    display: block;
}