@import url('https://fonts.googleapis.com/css2?family=Inria+Sans:ital,wght@0,300;0,400;0,700;1,300;1,400;1,700&family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Poppins:wght@100;200;300;400;500;600;700;800&display=swap');


:root {
  --primary-color: #FF3C3C;
  --secondary-color: #E31E24;
  --third-color: #ffcc00;
  --dark-red: #2E0102;
  --dark-text: #2E0102;
}

body {
  /* font-family: "Inria Sans", sans-serif; */
  font-family: "Poppins", serif;
  overflow-x: hidden !important;
}

.heading {
  text-align: center;
  margin: 50px 0;
  font-size: 25px;
  font-weight: bold;
  color: #242424;
}

.para {
  text-align: center;
  margin: 50px 0;
  font-size: 16px;
  font-weight: 500;
  color: #504D4D;
}

.form-control:focus {
  box-shadow: none !important;
}


.topbar-section {
  width: 100%;
  background-color: var(--dark-red);
  padding: 7px 0;
  color: #fff;
}

.topbar-section a {
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}

.topbar-section a i {
  margin-right: 5px;
}

.package_name{
    font-family: math;
}

.topbar-section a:hover {
  color: var(--third-color);
}

/* nvabar */
.navbar-section {
  width: 100%;
  background-color: #fff;
  padding: 7px 0;
}

.logo-wrapper {
  width: 150px;
}

.logo-wrapper img {
  width: 100%;
}

.main-nav-link {
  font-family: "Poppins", serif !important;
  color: var(--dark-text) !important;
  position: relative;
}

.main-nav-link::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-color);
  transition: width 0.3s ease-in-out;
}

.main-nav-link:hover::before {
  width: 100%;
}

.main-nav-link:hover {
  color: var(--primary-color) !important;
}

.nav-btn {
  padding: 12px !important;
  background-color: #fff !important;
  text-decoration: none !important;
  color: var(--primary-color) !important;
  border-radius: 4px;
  font-family: "Tiro Devanagari Marathi", serif;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  border: 1px solid var(--primary-color) !important;
}

.custom-btn-1 {
  padding: 12px !important;
  background-color: var(--primary-color) !important;
  text-decoration: none !important;
  color: #fff !important;
  border-radius: 4px;
  font-family: "Tiro Devanagari Marathi", serif;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;

}

.nav-btn:hover {
  background-color: var(--primary-color) !important;
  color: #fff !important;
}

.custom-btn-1:hover {
  background-color: #fff !important;
  color: var(--primary-color) !important;
}

/* hero section */

.hero-section {
  width: 100vw;
  height: fit-content;
  overflow-x: hidden !important;
}

.hero-container {
  height: 100%;
}

.hero-img {
  height: 100%;
  object-fit: cover;
}

.hero-prev-btn {
  left: 20px !important;
}

.hero-next-btn {
  right: 20px !important;
}

.hero-mb {
  display: none !important;
}

.main-container-fluid {
  position: relative;
  z-index: 10 !important;
  margin-top: -30px;
  padding: 20px;
  background-color: var(--third-color);
  border-radius: 4px;
  bottom: 20px;
  z-index: 10;
  box-shadow: 0 0 7px #00000020;
  width: 90%;
  margin-left: 5%;
}

.radio-input {
  appearance: none;
  width: 15px;
  height: 15px;
  border: 1px solid #898888;
  border-radius: 50%;
  background-color: #fff;
  cursor: pointer;
  padding: 0 !important;
  transition: all 0.3s ease-in-out;
}

.radio-input:checked {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}


.left-container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;

}

.btn-1 {

  border: none !important;
  padding: 10px 20px !important;
  margin: 10px !important;
  border-radius: 5px !important;
  cursor: pointer !important;
  font-size: 16px !important;
  width: 100% !important;

}

.btn-1:hover {
  color: #e31e25 !important;
  border: 3px solid #e31e25 !important;

  transform: scale(1.05);
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.left-image {
  width: 100px;
  height: auto;
}


.right-container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;

}

.form-item {
  display: flex;
  align-items: center;
  margin: 12px 6px;
  position: relative;

  width: 100%;
}

.form-item:hover {
  border-color: var(--secondary-color) !important;
  cursor: pointer !important;
}


input {
  padding: 10px 40px 10px 10px;
  width: 200px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 14px;
  margin-right: 10px;
  width: 100%;



}

.form-item i {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 16px;
  color: #888;
  /* pointer-events: none;  */
}

.form-item i:hover {
  cursor: pointer;
}

.let-us-begin {
  width: 100%;
  padding: 10px 20px;
  background-color: var(--primary-color) !important;
  color: white !important;
  border-radius: 4px !important;
  border: none !important;
  cursor: pointer !important;

}

.let-us-begin:hover {
  background-color: var(--secondary-color) !important;
}


/* whatsapp-calling-icon css */
.connect-icons {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 9999;
}

.connect-container {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.connect-container div {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.connect-container div:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.2);
}

.connect-container img {
  width: 60%;
  height: 60%;
  object-fit: contain;
}


/* process */
.registration-process {
  padding: 40px 0;
  text-align: center;
  position: relative;
}

.registration-process h5 {
  font-family: "Tiro Devanagari Marathi", serif;
  color: var(--dark-text);
  font-size: 1.4rem;
  font-weight: 600;

}

.registration-process-container {
  text-align: center;
  margin-top: 60px;
  position: relative;
  z-index: 5;
}

.registration-icon {
  width: 120px;
  margin: 0 auto;
  margin-bottom: 30px;
}

.registration-icon img {
  width: 100%;
}

.registration-process-container p {
  font-family: "Tiro Devanagari Marathi", serif;
  font-size: 20px;
  font-weight: 600;
}


/* find match Section */
.sectionfind_match {
  background-color: #fff;
  margin-bottom: 20px;
}

.find-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
}

.about-img {
  width: 100%;
  max-width: 550px;
}

.about-img img {
  width: 100%;
}


.top-heading {
  font-size: 18px;
  color: #555;
  text-transform: uppercase;
  margin-bottom: 10px;
  letter-spacing: 1px;
}

.main-heading {
  font-size: 32px;
  color: #333;
  font-weight: bold;
  font-family: "Tiro Devanagari Marathi", serif;
}

.description {
  font-size: 16px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 20px;
}

/* Button Styling */
.Know-more {
  background-color: var(--secondary-color);
  color: #fff;
  border: none;
  padding: 10px 20px;
  border-radius: 10px;
  transition: background-color 0.3s;
  cursor: pointer;
}

.Know-more:hover {
  background-color: var(--primary-color);
}

.main-hr {
  background-color: var(--third-color);
  height: 4px;
  width: 192.78px;
  border: none;
  margin-top: 0px;

}


.step-container {
  width: 100%;
  padding: 0;
  display: flex;
  justify-content: space-between;
  background-color: #fff;
  margin-bottom: 50px;
}

.row {
  display: flex !important;
  flex-wrap: wrap;
}


.heading {
  font-size: 20px;
  color: #555;
  text-transform: uppercase;
  margin-bottom: 10px;
  letter-spacing: 1px;
}

.heading span {
  color: var(--primary-color);
}



.find-card {
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(31, 30, 30, 0.1);
  overflow: hidden;
  text-align: center;
  height: 250px;
}

.find-card:hover {
  transform: translateY(-10px);
  transition: transform 0.3s ease;
  box-shadow: 0 1px 1px rgba(236, 214, 8, 0.938);
}

.round {
  position: absolute;
  width: 50px;
  height: 50px;
  background-color: var(--third-color);
  border-radius: 0 0 30px 0;
  font-size: 20px;
  color: red;
  padding: 10px;
}


.fa-right-to-bracket,
.fa-user-group,
.fa-comments {
  font-size: 40px;
  margin: 20px 0;
  color: #E12C2C;
}



.card-title {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 10px;
}

.card-text {
  font-size: 17px;
    color: #666;
    padding-top: 40px;
    width: 92%;
    margin: 0 auto;
}


/* why-choose-css */

.why-choose {
  background-color: #FFFDF5;
  padding: 50px 15px;
  margin-top: 50px;
  margin-bottom: 50px;
}


.why-choose-us {
  display: flex;
  align-content: center;
  justify-content: center;
  color: #242424;
}

.why-choose-heading {
  color: #242424;
  font-size: 32px;

  font-weight: bold;
}

.choose-description {
  display: flex;
  align-content: center;
  justify-content: center;
  font-size: 16px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 20px;
}

.card-choose {
  background: #fff;
  border-top: 5px solid #c70909;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s ease-in-out;
  padding-top: 40px;

  overflow: visible;
}

.card-choose:hover {
  transform: translateY(-5px);
  overflow: visible;
}

.eclipse {
  position: absolute;
  top: -25px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 50px;
  background-color: #fff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #FF3C3C;
}

.eclipse i {
  color: #242424;
  font-size: 24px;
}

.card-choose h5 {
  font-size: 18px;
  font-weight: bold;
  color: #242424;
  padding: 23px;
}

.card-choose p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
}


.button-feat {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
}

.feat-button {
  background-color: #fff;
  color: #E12C2C;
  border-color: #fff;
  padding: 10px 20px;
  border-radius: 10px;
  transition: background-color 0.3s;
  cursor: pointer;
}

.feat-button:hover {
  background-color: var(--third-color);
  color: #E12C2C;
}



.why-choose-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.why-choose-img-wrap {
  max-width: 300px;
  width: 100%;
  margin: 0 auto;
  margin-left: 55px;
}

.why-choose-img-wrap img {
  width: 100%;

}

.why-choose-wrap {
  position: relative;

}

.why-choose-point {
  padding: 12px 10px;
  border-radius: 30px;
  margin-bottom: 30px;
  width: 300px;
  position: relative;
  padding-right: 55px;
}

.why-choose-point p {
  margin: 0;
  text-align: right;
}

.left-para-1 {
  font-weight: bold;
  position: absolute;
  top: 30px;
  right: 70px
}

.left-icon-1 {
  position: absolute;
  top: 22px;
  right: -12px;
}

.right-para-1 {
  font-weight: bold;
  position: absolute;
  top: 28px;
  left: 118px;
}

.right-icon-1 {
  position: absolute;
  top: 22px;
  left: 45px;
}

.why-choose-circle {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: var(--primary-color);
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  justify-content: center;
  align-items: center;
}

.left-1 {
  margin-left: 100px;
}

.left-2 {
  margin-left: 50px;
}

.right-1 {
  margin-right: 100px;
}

.right-2 {
  margin-left: 50px;
}

.right-side-content .why-choose-point .why-choose-circle {
  left: 0;

}

.right-side-content .why-choose-point p {
  text-align: left;
}


@media screen and (max-width: 991px) {
  .left-1 {
    margin-left: 0;
  }

  .left-2 {
    margin-left: 0;
  }

  .right-1 {
    margin-right: 0;
  }

  .right-2 {
    margin-left: 0;
  }

  .why-choose-wrap {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .why-choose-img-wrap {
    display: none;
  }

  .why-choose-circle {
    left: 0;
  }

  .why-choose-point {
    margin: 0;
  }

  .why-choose-point p {
    text-align: left;
  }

}

@media screen and (max-width: 390px) {
  .why-choose-point{
    padding-right: 0;
  }
  .why-choose-wrap svg {
    width: 100%;
  }

  .left-para-1 {
    right: 98px;
    font-size: 0.8rem;
  }

  .left-icon-1 {
    top: 28px;
    right: 30px;
    width: 26px;
  }

  .right-para-1 {
    position: absolute;
    top: 30px;
    left: 103px;
    font-size: 0.8rem;
  }

  .right-icon-1 {
    width: 26px;
    position: absolute;
    top: 28px;
    left: 42px;
  }
}

/* Heading and HR */

.why-choose-heading {
  font-size: 32px;
  color: #09032a;
  font-weight: bold;
  text-align: center;
  font-family: "Tiro Devanagari Marathi", serif;
}

.choose-description p {
  color: #09032a;
}

.choose-hr {
  width: 218px;
  height: 3px;
  background-color: var(--third-color);
  margin: 0 auto;
  margin-top: 15px;

}


.button-feat {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.feat-button {
  background-color: var(--primary-color);
  color: white;
  padding: 10px 20px;
  border-radius: 10px;

  cursor: pointer;
}

.feat-button:hover {
  background-color: var(--third-color);
  transform: scale(1.1);
}

.car-pro-wrapper {
  gap: 30px;
}

.card-pro {
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 16px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;

}

.card-pro:hover {
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  border-color: #E31E24 !important;
}


.card-pro .img {
  width: 100%;
  height: 268px;
  position: relative;
}

.card-pro .img img {
  width: 100%;
  height: 268px;
  object-fit: cover;
  border-radius: 8px;
}


.wishlist-icon {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 24px;
  color: #ff6b6b;
  transition: color 0.3s ease, background-color 0.3s ease;
  -webkit-text-stroke: 1px #ff6b6b;
  background-color: transparent;
}

.wishlist-icon:hover {
  color: var(--secondary-color);
  -webkit-text-stroke: 0;
  border-radius: 50%;
}

.card-content h3 {
  font-size: 20px;
  font-weight: bold;
  color: #333;
}

.card-content h4 {
  font-size: 16px;
  color: #555;
}

/* Card Button */
.card-button {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}

.card-button button {
  background-color: var(--primary-color);
  color: white;
  border-color: var(--secondary-color);
  padding: 10px 20px;
  border-radius: 10px;
  transition: background-color 0.3s;
  cursor: pointer;
}

.card-button button:hover {
  background-color: var(--secondary-color);
  border-color: var(--secondary-color);
  transition: all 0.3s ease;
}

.card-button .btn span {
  transition: transform 0.3s ease;
}

.card-button .btn i {
  margin-left: 10px;
  transition: transform 0.3s ease;
}

.card-button .btn:hover span,
.card-button .btn:hover i {
  transform: translateX(10px);
}

/* testimonial-slider css */
.story-description {
  display: flex;
  align-content: center;
  justify-content: center;
  font-size: 16px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 20px;
}

.custom-slider {
  position: relative;
  padding: 50px 0;
  background-color: #f9f9f9;
  overflow: hidden;

}


.custom-slider::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('images/image.png') !important;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -1;
}

.custom-slider .container {
  position: relative;
  z-index: 1;
}

.carousel .custom-slider-inner img {
  width: 250px;
  height: 250px;
  object-fit: cover;
  border: 4px solid #fff;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  /* margin-bottom: 20px; */
}

.carousel .carousel-control-prev,
.carousel .carousel-control-next {
  position: absolute;
  top: 50%;
  /* transform: translateY(-50%); */
  color: red;
  width: 50px;
  height: 50px;
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  border: none;
}

.carousel .carousel-control-prev-icon,
.carousel .carousel-control-next-icon {
  filter: invert(100%);

}

.custom-slider-indicators {
  display: none;
}

/* .carousel .custom-slider-indicators .active { */
/* background-color: #ff6b6b; */
/* } */

.slider-text h3 {
  font-size: 24px;
  font-weight: bold;

}

.slider-text p {
  font-size: 16px;
  color: #666;
}




/* footer css */
.footer {
  background-color: #092749;
  color: #fff;
}

.footer-logo img {
  max-width: 100%;
  height: auto;
}

.footer-heading {
  font-size: 18px;
  font-weight: bold;
}

.footer-link {
  color: #fff;
  text-decoration: none;
  display: block;
  margin-bottom: 5px;
  transition: color 0.3s;
  position: relative;
  padding-left: 30px;
}

.footer-link:hover {
  color: var(--secondary-color);
}

.footer-link::before {
  content: "";
  position: absolute;
  left: 0 !important;
  top: 50%;
  transform: translateY(-50%);
  width: 10px;
  height: 10px;
  background-color: #ffcc00a1
}

.social-link {
  color: #fff;
  font-size: 20px;
  margin-right: 15px;
  transition: color 0.3s;
}

/* .social-link {
    font-size: 16px;
    color: #555;
    text-decoration: none;
    transition: color 0.3s;
} */
/* .social-link:hover {
    color: #007bff;
} */
.corporate-address {
  margin-top: 20px;
}

.address-heading {
  font-size: 16px;
  font-weight: bold;
  color: #fff;
  display: flex;
  align-items: center;
}

.address-heading i {
  margin-right: 8px;
  color: #ffcc00;
}

.address-text {
  font-size: 14px;
  color: #fff;
  margin: 5px 0 0;
}

.social-link:hover {
  color: var(--secondary-color);
}

.copyright {
  background-color: #071F38;
  color: #fff;
}


/* registration  common-css */

.registration-info {
  background-image: url("../images/top-bg.webp");
  background-repeat: no-repeat !important;
  background-position: center;
  background-size: cover;
  height: 180px;
  margin-top: 10px;
  display: flex;
  justify-content: center;
  align-items: center;

  padding: 10px;

}

.registration-info .main-heading {
  font-size: 28px;
  color: #fff;
  text-align: center;
}

.registration-info .description {
  font-size: 16px;
  text-align: center;
}





/* Media Queries for Smaller Screens  */
@media (max-width: 1200px) {
  .topbar-content {
    /* flex-direction: column;  */
    align-items: flex-start;
  }

  .topbar-left,
  .topbar-center,
  .topbar-right {
    /* width: 100%;  */
    margin-bottom: 10px;
    margin-top: 10px;
  }

  .search-bar input {
    width: 100%;
  }



  .right-container {
    width: 60%;
  }


  .left-container {
    width: 90%;
    max-width: 300px;
  }

  /* find-match-section */
  .sectionfind_match {
    padding: 30px 0px 40px;
  }
}


@media (min-width: 992px) {
  .navbar-expand-lg .navbar-nav {
    flex-direction: row;
    gap: 15px;
  }
}

@media (max-width: 991px) {
  .topbar-content {
    flex-direction: column-reverse;
    flex-wrap: wrap;
  }

  .topbar-right {
    display: none;
  }

  .topbar-center {
    position: absolute;
    top: -3px;
  }

  .search-bar {
    display: none;
  }

  .nav-togglr-btn {
    position: absolute;
    right: 17px;
    top: -64px;
  }

  .login-mobile-link {
    display: block !important;

  }

  .navbar-container {
    width: 90% !important;
    max-width: 100vh !important;
  }

  /* 
  .hero-section{
   
    height: 600px;

  }

 
  
  .hero-container{
    height: 600px;
  } */

  /* find-match-section */
  .find-card {
    margin-bottom: 20px;
  }

  .find-container {
    margin-top: 10px;
    flex-direction: column-reverse;
  }

  .about-us-content {
    text-align: center;
    max-width: 100%;
    margin-bottom: 20px;
  }

  .main-hr {
    margin: 0 auto;
  }

  .Know-more {
    margin-bottom: 20px;
  }

  .hero-lg {
    display: none;
  }


  .hero-mb {
    display: block !important;
  }

  .logo-wrapper {
    width: 70px;
  }
}

@media (max-width: 900px) {
  .topbar-content {
    flex-direction: column-reverse;
    flex-wrap: wrap;
  }

  .topbar-left,
  .topbar-center,
  .topbar-right {
    width: 100%;
    margin-bottom: 10px;
  }

  .topbar-left {
    justify-content: space-between;
  }

  .topbar-center {
    width: 100%;
    margin-bottom: 10px;
    display: flex;
    justify-content: center;
  }

  .topbar-center img {
    max-width: 70px;
  }

  .topbar-right ul {
    flex-direction: column;
    gap: 15px;
  }

  .search-bar input {
    width: 100%;
  }

  .navbar-container {
    width: 93% !important;
    max-width: 100vh !important;
  }

  .footer-link {
    padding-left: 30px !important;
  }

  .footer-link::before {
    left: 0px !important;
  }

  /* testimonial-slider */
  .custom-carousel-control-prev {
    top: 500
  }

  .custom-slider .story-description p {
    text-align: center !important;

  }
}


@media (max-width: 880px) {
  .navbar-container {
    width: 100% !important;
    max-width: 100vh !important;
  }
}


@media (max-width: 768px) {
  .navbar-container {
    width: 100% !important;
    max-width: 100vh !important;
  }

  .navbar-nav {
    flex-direction: column;
    gap: 10px;
  }

  .form-control .form-i {
    position: absolute !important;
    right: 10px !important;
    top: 95% !important;
    transform: translateY(-50%) !important;
    font-size: 16px !important;
    color: #666 !important;
  }



  .left-container,
  .right-container {
    width: 92%;
    align-items: center;
  }

  .right-container {
    display: block
  }

  .form-item {
    width: 100%;
    justify-content: space-between;
    display: flex;
    text-align: center;
    justify-content: center;
  }

  input {
    width: 100%;
  }

  .form-item i {
    right: 30px;
    top: 20px;
  }

  .connect-icons {
    bottom: 15px;
    right: 15px;
  }

  /*.connect-container div {*/
  /*  width: 40px;*/
  /*  height: 40px;*/
  /*}*/

  .connect-container img {
    width: 50%;
    height: 50%;
  }

  .footer-link {
    padding-left: 30px !important;
  }

  .footer-link::before {
    left: 100px !important;
  }

  .footer .row>div {
    text-align: center;
  }

  .footer .social-link {
    margin-right: 10px;
  }
  .registration-info{
    width:100%;
    height: 140px;
  }

}

@media (max-width: 576px) {

  /* find-match-section */
  .main-heading {
    font-size: 24px;
  }

  .description {
    font-size: 14px;
  }

  .btn-primary {
    padding: 8px 16px;
  }

  /* footer */
  .footer .row>div {
    margin-bottom: 20px;
  }
}


@media (max-width: 480px) {
  .topbar-content {
    flex-direction: column-reverse;
    align-items: flex-start;
  }

  .topbar-left,
  .topbar-center,
  .topbar-right {
    width: 100%;
    margin-bottom: 10px;
  }

  .search-bar input {
    width: 100%;
  }

  .topbar-right ul {
    flex-direction: column;
    gap: 15px;
    width: 100%;
  }

  .topbar-left img,
  .topbar-center img {
    max-width: 80px;
  }

  .connect-icons {
    bottom: 10px;
    right: 10px;
  }

  .connect-container div {
    width: 35px;
    height: 35px;
  }

  .connect-container img {
    width: 45%;
    height: 45%;
  }
}




/* new added styles  *
/* sign up login modal  */

.modal-section {
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  background-color: #000000b7;
  z-index: 9999;
  justify-content: center;
  align-items: center;
  display: none;
}

.modal-login-form-container {
  max-width: 500px;
  width: 95%;
  background-color: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
  padding: 20px;
  border-radius: 5px;
  display: none;
  animation: modalAnimation 0.3s ease-in-out;
  position: relative;
}

@keyframes modalAnimation {
  0% {
    opacity: 0;
    transform: scale(0);
  }

  100% {
    opacity: 1;
    transform: scale(1);
  }
}

.login-icon{
  position: absolute;
    top: 10px;
    right: 20px;
    opacity: 0.6;
    cursor: pointer;
}

.modal-login-form-container h4 {
  text-align: center;
  color: var(--primary-color);
}

.login-sub-para-text {
  text-align: center;
  opacity: 0.8;
}

.modal-login-form-container input {
  outline: none;
  margin-bottom: 10px;
}

.modal-login-form-container input:focus {
  border: 1px solid var(--primary-color) !important;
}

.password-field {
  position: relative;
}

.password-field i {
  position: absolute;
  top: 41%;
  transform: translateY(-50%);
  right: 14px;

}

.forgot-password {
  margin: 0px;
  cursor: pointer;
  margin-top: -5px;
  font-size: 0.9rem;
  opacity: 0.8;
  transition: all 0.3s ease-in-out;
}

.forgot-password:hover {
  color: var(--primary-color);
  opacity: 1;
}

.modal-login-form-btn {

  padding: 10px 20px !important;
  background-color: var(--third-color) !important;
  color: #E31E24 !important;
  font-weight: 600 !important;
}

.modal-login-form-btn:hover {
  color: #f9f9f9 !important;
}

.register-now-text {
  text-align: center;
  color: #434343;
  cursor: pointer;
}

.register-now {
  color: var(--primary-color);
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  font-weight: 600;
}

.modal-register-form-container input[type="radio"] {
  appearance: none;
  width: 15px;
  height: 15px;
  border: 1px solid #898888;
  border-radius: 50%;
  background-color: #fff;
  cursor: pointer;
  padding: 0 !important;
  transition: all 0.3s ease-in-out;
  margin: 0px !important;
}

.modal-register-form-container input[type="radio"]:checked {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

.registration-form-label {
  margin-bottom: 10px !important;
}
.page-btn{
    padding: 0 10px !important;
}
.pagination-controls {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    margin: 10px 0;
}
.inputFilter{
        width:25% !important;
    }
span.select2-selection--multiple{
    width: 100% !important;
}

@media (max-width: 768px) {
    .inputFilter{
        width: 100%;
    }
}
.pagination-controls .active{
    background: skyblue !important;
    border:none;
}
