:root {
  /* --primary-color: #ff6600;     Orange */
  --secondary-color: #91b134;   /* Green */
  --text-color: #a87b5a;        /* Dark Gray */
  --bg-color: #fbfbdb;          /* White */
}
/* Google Font */
body {
  font-family: 'Quicksand', sans-serif;
  color: #2c3e50;
}
/* ==== Custom Scrollbar ==== */
::-webkit-scrollbar {
  width: 10px;                /* Scrollbar width */
}
::-webkit-scrollbar-track {
  background: #e8f0d8;        /* Track color (light) */
}
::-webkit-scrollbar-thumb {
  background-color: #91b134;  /* Scroll thumb color */
  border-radius: 10px;
  border: 2px solid #e8f0d8;  /* Small gap around thumb */
}
::-webkit-scrollbar-thumb:hover {
  background-color: #7aa025;  /* Hover color */
}
.navbar-toggler{
  color: #7aa025 !important;
}
/* Custom Teal Color */
.text-teal {
  color: var(--secondary-color);
}
/* Navbar */
.navbar {
  transition: all 0.3s ease-in-out;
}
.navbar-brand img {
  transition: transform 0.3s ease;
}
.navbar-brand img:hover {
  transform: rotate(-5deg) scale(1.05);
}
/* Nav Links */
.nav-link {
  font-weight: 600;
  color: var(--text-color) !important;
  transition: color 0.3s ease;
}
.nav-link:hover,
.nav-link.active {
  color: var(--secondary-color) !important;
}
.logo-sub-name {
  font-size: 14px;
  color: var(--text-color);
}
.logo-name{
  font-size: 22px;
  color: var(--secondary-color);
}
/* Join Button */
.btn-join {
  background-color: var(--secondary-color);
  color: #fff;
  font-weight: 700;
  border: none;
  transition: 0.3s;
}
.btn-join:hover {
  background-color: #a87b5a;
  transform: translateY(-2px);
}
/* Responsive */
@media (max-width: 991px) {
  .navbar-brand {
    flex-direction: row;
  }
  .navbar-brand img {
    width: 60px;
    height: 60px;
}
  .navbar-collapse {
    background-color: #fbfbdb;
    border-radius: 10px;
    margin-top: 10px;
    padding: 15px;
  }
  .btn-join {
    display: block;
    width: 100%;
    text-align: center;
    margin-top: 10px;
  }
  .logo-sub-name {
  font-size: 10px;
}
.logo-name{
  font-size:18px;
}
}
/* crouser css start */
/* 🌿 Hero Section */
.hero-slider img {
    width: 100%;
    height: auto !important;
    object-fit: contain !important;
    background: #000; /* optional - empty space hide करने के लिए */
}
/* Mobile Slider Height */
.mobile-slider img {
    height:500px;
}
.mobile-slider .owl-dots {
    text-align: center;
    margin-top: 10px;
}
.mobile-slider {
    background-color: #f5f9f8;
}
/* Overlay */
.slider-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.35);
}
/* Desktop Arrows */
.owl-prev, .owl-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: white !important;
    padding: 10px 18px !important;
    border-radius: 50%;
    font-size: 20px !important;
}
.owl-prev { left: 20px; }
.owl-next { right: 20px; }
/* Mobile dots */
.owl-dots .owl-dot span {
    width: 12px;
    height: 12px;
    background: #a87b5a !important ;
    opacity: 0.7;
    border-radius: 50%;
    display: block;
    margin: 3px;
}
.owl-dots .owl-dot.active span {
    background: #7db300 !important;
    opacity: 1;
}
/* --- Beautiful Arrows --- */
.owl-nav button.owl-prev,
.owl-nav button.owl-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    border: none !important;
    outline: none !important;
    width: 55px;
    height: 55px;
    background: rgba(255,255,255,0.95) !important;
    border-radius: 50%;
    box-shadow: 0 3px 15px rgba(0,0,0,0.25);
    transition: 0.3s ease;
    display: flex !important;
    justify-content: center;
    align-items: center;
}
.owl-nav button.owl-prev {
    left: 25px;
}
.owl-nav button.owl-next {
    right: 25px;
}
.mobile-slider {
    padding-top: 100px;
}
/* Arrow icon */
.owl-nav button span {
    font-size: 26px;
    font-weight: bold;
    color: #7db300;    /* green tone */
}
/* Hover premium effect */
.owl-nav button:hover {
    background: #7db300 !important;
}
.owl-nav button:hover span {
    color: #fff;
}
/* about section css start  */
/* 🌸 About Section */
.about-section {
    width: 100%;
    padding: 50px 0 100px;
    background: #f5f9f8;
    display: flex;
    justify-content: center;
    align-items: center;
}
.about-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1150px;
  width: 90%;
  gap: 50px;
  opacity: 1;
  transform: translateY(60px);
  transition: all 1s ease;
}
/* Animation Active */
.about-container.animate {
  opacity: 1;
  transform: translateY(0);
}
/* Left Image */
.about-image img {
  width: 100%;
  max-width: 500px;
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}
/* Right Content */
.about-content {
  flex: 1;
}
.about-content h2 {
  font-size: 2.3rem;
  font-weight: 700;
  color: var(--text-color);
  margin-bottom: 15px;
}
.about-content p {
  color: #444;
  line-height: 1.7;
  margin-bottom: 20px;
  font-size: 1.05rem;
}
.about-content ul {
  list-style: none;
  margin-bottom: 25px;
}
.about-content ul li {
  font-size: 16px;
  color: #333;
  margin-bottom: 8px;
  position: relative;
}
@media(max-width:767px){
.about-content ul li{
  font-size: 14px;
}
.about-content ul{
  text-align: left;
}
.about-section{
    padding: 0px 0 100px;
}
}
/* Button */
.about-btn {
  background: var(--secondary-color);
  color: var(--bg-color);
  border: none;
  padding: 10px 25px;
  border-radius: 25px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}
.about-btn:hover {
  background: var(--text-color);
  transform: translateY(-3px);
}
/* Responsive Design */
@media (max-width: 992px) {
  .about-container {
    flex-direction: column;
    text-align: center;
  }
  .about-content {
    order: 2;
  }
  .about-image {
    order: 1;
  }
  .about-image img {
    max-width: 90%;
  }
}
/* program section css start  */
.programs-section {
  background: var(--bg-color);
  border-radius: 25px;
  padding: 60px 0;
}
.icon-top {
  font-size: 45px;
  color: var(--secondary-color);
}
#animatedHeading {
  font-size: 2.3rem;
  font-weight: 600;
  color: var(--text-color);
  margin-top: 15px;
}
.subtitle {
  max-width: 700px;
  margin: 10px auto 40px;
  color: var(--secondary-color);
}
.program-box {
  margin-bottom: 60px;
  background: #fefefe;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: all 0.3s ease;
}
.program-box:hover {
  transform: scale(1.02);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}
.program-img img {
  width: 100%;
  object-fit: cover;
}
.program-content {
  padding: 40px;
}
.program-icon {
  font-size: 38px;
  color: var(--secondary-color);
  margin-bottom: 10px;
  display: block;
}
.program-content h3 {
  font-size: 1.7rem;
  color: var(--text-color);
  margin-bottom: 10px;
}
.program-content p {
  color: #555;
  line-height: 1.6;
}
/* RESPONSIVE */
@media (max-width: 992px) {
  .program-box {
    flex-direction: column !important;
  }
.program-img img {
    height: auto;
    max-width: 100%;
}
  .program-content {
    text-align: center;
    padding: 25px;
  }
  #animatedHeading {
    font-size: 1.9rem;
  }
}
@media (max-width: 576px) {
  .program-content h3 {
    font-size: 1.4rem;
  }

  .program-content p {
    font-size: 0.95rem;
  }
}
/* ======= Why choose us Yoga Section ======= */
   /* SECTION BACKGROUND */
.why-twinroots {
  padding: 90px 0;
  background: linear-gradient(135deg, #fffdf4, #f9ffe9);
}
/* HEADING */
.why-title {
  text-align: center;
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 50px;
  background: linear-gradient(90deg, #91b134, #5a7a21);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
/* GRID LAYOUT */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
  padding: 0 20px;
}
/* CARDS */
.why-card {
  background: #ffffff;
  padding: 35px 25px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
  transition: .3s ease;
  border: 1px solid #f2f2f2;
}
.why-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}
/* ICONS */
.why-card .icon {
  font-size: 2.5rem;
  display: block;
  margin-bottom: 12px;
}
/* TEXT */
.why-card p {
  color: var(--text-color);
  line-height: 1.7;
  font-size: 1rem;
}
/* RESPONSIVE */
@media (max-width: 991px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .why-title {
    font-size: 2.3rem;
  }
}

@media (max-width: 600px) {
  .why-grid {
    grid-template-columns: 1fr;
  }
  .why-title {
    font-size:22px;
  }
}

/* ====Benifit of yoga Section ==== */
.title{
  font-size:30px;
  font-weight:700;
  color:var(--secondary-color);
}
.title span{
  color:var(--text-color);
}
.dot-line{
  width:80px; height:4px;
  background:var(--secondary-color);
  margin:10px auto 40px;
  border-radius:5px;
}

@media(max-width:576px){
  .title{
    font-size: 22px;
  }
}
/* transmission section start   */
/* ===== Luxury Testimonial Section ===== */
.lux-t-wrap {
    padding: 20px 15px;
    text-align: center;
    border-radius: 20px;
}
.lux-t-title {
  font-size: 32px;
  font-weight: 700;
  color: #1c1c1c;
}
.lux-t-title span {
  color: #c2954f;
}
.lux-t-line {
  height: 4px;
  width: 180px;
  background: #c2954f;
  margin: 12px auto 35px;
  border-radius: 3px;
}
.lux-t-slider {
  max-width: 850px;
  margin: auto;
  position: relative;
}
/* ----------------------------
   ✔ FIXED SMOOTH SLIDE CSS
----------------------------- */
.lux-t-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background: #ffffff;
  border-radius: 12px;
  padding: 28px 20px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
  font-style: italic;
  font-size: 18px;
  color: #444;
  line-height: 1.7;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .8s ease, transform .8s ease;
  pointer-events: none;   /* invisible slide can't block click */
}
/* Active smooth slide */
.lux-t-slide.active {
  opacity: 1;
  transform: translateY(0);
  position: relative;
  pointer-events: auto;
}
/* Profile Image Styling */
.lux-t-img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #c2954f;
  margin-bottom: 14px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}
.lux-t-slide h4 {
  margin-top: 12px;
  font-weight: 700;
  font-style: normal;
  color: #1c1c1c;
}
/* Dots */
.lux-t-dots {
  margin-top: 18px;
  display: flex;
  justify-content: center;
  gap: 8px;
}
.lux-t-dot {
  width: 12px;
  height: 12px;
  background: #d6b98d;
  border-radius: 50%;
  cursor: pointer;
  transition: .3s;
  opacity: .4;
}
.lux-t-dot.active {
  background: #c2954f;
  opacity: 1;
}
/* Responsive */
@media(max-width:576px){
  .lux-t-title{font-size:26px;}
  .lux-t-slide{font-size:16px; padding:20px;}
  .lux-t-img{width:60px;height:60px;}
}
/* video section css start  */
.hero-section {
  width: 100%;
  padding: 60px 6%;
  background: url("img/all/bgimage.jpg") center/cover no-repeat;
  display: flex;
  align-items: center;
  min-height: 85vh;
}
.hero-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  width: 100%;
}
/* Left Video */
.phone-wrapper {
  position: relative;
  width: 330px; /* Frame size */
  margin-left: 80px; /* As per your screenshot placement */
}
.frame-img {
    width: 100%;
    display: block;
    z-index: 3;
    position: relative;
    pointer-events: none;
    height: 550px;
}
/* ★ PERFECT VIDEO FIT INSIDE YOUR FRAME */
.reel-video {
    position: absolute;
    top: 10px;
    left: 5%;
    width: 89%;
    height: 98%;
    object-fit: cover;
    border-radius: 27px;
    z-index: 1;
}
/* SOUND BUTTON */
.sound-btn {
  position: absolute;
  bottom: 6%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  border: none;
  background: rgba(0,0,0,0.7);
  color: #fff;
  padding: 12px 14px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 20px;
}
/* Right Content */
.hero-right {
  flex: 1;
  text-align: right;
}
.hero-right h1 {
  font-size: 46px;
  font-weight: 700;
  color: white;
  line-height: 1.2;
  margin-bottom: 30px;
}

.hero-btn {
  background: var(--secondary-color);
  padding: 14px 42px;
  border-radius: 40px;
  font-size: 20px;
  font-weight: 600;
  color: #000;
  text-decoration: none;
  transition: .3s;
}

.hero-btn:hover {
  background: var(--text-color);
  transform: translateY(-3px);
}
.video-content {
    background-color: #ffffff78;
    padding: 15px 25px;
    border-radius: 20px;
}
.video-content p{
  color: #000;
}
/* Responsive */
@media(max-width: 991px) {
  .hero-section { padding: 40px 4%; }
  .hero-container { flex-direction: column; text-align: center; }
  .hero-right { text-align: center; }
  .video-wrapper { height: 350px; }
  .hero-right h1 { font-size: 32px; }
  .hero-btn { padding: 12px 35px; font-size: 18px; }
}

@media(max-width: 550px){
  .video-wrapper { height: 260px; }
  .hero-right h1 { font-size: 28px; }
 
}
@media(max-width:767px) {
   .phone-wrapper{
    margin: 0;
  }
  .video-content{
    display: none;
  }
}
/* gellary section css start  */
/* Images full width + auto height */
.custom-left-slider img,
.custom-right-slider img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* Extra bottom space */
.custom-left-slider,
.custom-right-slider {
    margin-bottom: 40px;
}
.gallery-sec {
    padding: 50px 0;
    background: linear-gradient(135deg, #fff7fb, #ecf6ff);
}

/* faq section css start  */
.faq-section{
  padding: 80px 40px;
  background: linear-gradient(135deg, var(--bg-color), #fff4fa);
  font-family: "Poppins", sans-serif;
}

.faq-container{
  max-width: 1300px;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 50px;
}

/* 50%-50% layout */
.faq-img, 
.faq-content{
  flex: 1;
} 

/* Image Styling */
.faq-img img{
  width: 100%;
  max-width: 460px;
  border-radius: 20px;
  display: block;
  margin: auto;
  box-shadow: 0 12px 35px rgba(0,0,0,0.12);
} 

/* Titles */
.faq-title{
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 10px;
  /* align-items: center; */
  text-align: center;
  color: var(--text-color);
}
.faq-border{
  border: 1px solid var(--secondary-color);
  margin: 0px 100px;
  border: none;
}

.faq-sub{
  font-size: 16px;
  color: #666;
  margin-bottom: 25px;
  text-align: center;
}

/* FAQ Cards */
.faq-item{
  background: #fff;
  border-radius: 14px;
  margin-bottom: 15px;
  box-shadow: 0 8px 18px rgba(0,0,0,0.07);
  overflow: hidden;
  transition: .3s;
}

.faq-question{
  width: 100%;
  background: none;
  border: none;
  padding: 18px;
  font-size: 18px;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
}

.faq-question span{
  font-size: 24px;
  transition: .3s;
}

/* Hidden answer default */
.faq-answer{
  max-height: 0;
  overflow: hidden;
  font-size: 15px;
  color: #444;
  line-height: 1.6;
  padding: 0 18px;
  transition: max-height .4s ease, padding .4s ease;
}

/* Active FAQ */
.faq-item.active .faq-answer{
  max-height: 180px;
  padding: 10px 18px 18px;
  
}

.faq-item.active .faq-question span{
  transform: rotate(45deg);
  color: var(--secondary-color);
}

/* Responsive */
@media(max-width: 900px){
  .faq-container{
    flex-direction: column;
    text-align: center;
  }
  .faq-img img{
    max-width: 350px;
  }
  .faq-title{
    font-size: 28px;
  }
  .faq-border{
  border: 1px solid var(--secondary-color);
  margin: 0px;
  border: none;
}
}
@media(max-width:767px) {
.faq-question{
  font-size: 13px;
}
}




/* contact form css start  */


.contact-section {
  padding: 70px 20px;
  background: var(--bg-color);
}

.contact-container {
  max-width: 1200px;
  display: flex;
  align-items: center;
  gap: 40px;
  margin: auto;
}

/* Left Image */
.contact-image img {
  width: 100%;
  max-width: 480px;
  border-radius: 16px;
  /* box-shadow: 0 10px 25px rgba(0,0,0,0.15); */
}

/* Form Box */
.contact-form-box {
  flex: 1;
  background: linear-gradient(135deg, var(--bg-color), #fff4fa);
  padding: 35px;
  border-radius: 16px;
  /* box-shadow: 0 10px 35px rgba(0,0,0,0.1); */
}

.contact-form-box h2 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 5px;
  text-align: center;
  color: var(--text-color);
}

.contact-form-box p {
  font-size: 15px;
  color: #666;
  margin-bottom: 20px;
  text-align: center;
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 14px;
  margin-bottom: 15px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 15px;
  outline: none;
}

.submit-btn {
  width: 100%;
  background: var(--secondary-color);
  color: #000;
  padding: 15px;
  border: none;
  border-radius: 10px;
  font-size: 18px;
  cursor: pointer;
  font-weight: 600;
  transition: 0.3s;
}

.submit-btn:hover {
  background: var(--text-color);
}

/* Responsive */
@media(max-width: 900px){
  .contact-container {
    flex-direction: column;
    text-align: center;
  }
  .contact-image img {
    max-width: 350px;
  }
}



/* Floating Buttons Wrapper */
.floating-container {
  position: fixed;
  bottom: 18px;
  right: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 9999;
}

/* Buttons */
.float-btn {
  width: 56px;
  height: 56px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: #fff;
  cursor: pointer;
  transition: .3s;
  text-decoration: none !important;
  border: none !important;
  box-shadow: 0 6px 18px rgba(0,0,0,0.18);
}

/* Remove any underline/outline */
.float-btn:focus,
.float-btn:active,
.float-btn:visited {
  text-decoration: none !important;
  border: none !important;
  outline: none !important;
}

/* Icon colors */
.whatsapp { background: var(--secondary-color); }
.instagram { background: #E1306C; }
.call { background: var(--text-color); }

/* Hover */
.float-btn:hover {
  transform: scale(1.15) translateY(-2px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.22);
}

/* Mobile */
@media(max-width: 480px) {
  .float-btn {
    width: 50px;
    height: 50px;
    font-size: 23px;
  }
}



/* Footer */
.main-footer {
  background: #f5f9f8;
  color: var(--text-color);
  padding: 70px 20px 20px;
  font-family: "Poppins", sans-serif;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
}

/* Section Styles */
.footer-box {
  flex: 1;
  min-width: 140px;
}

.footer-box h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 18px;
  color: var(--secondary-color);
}

/* Logo */
.footer-logo {
  width: 150px;
  margin-bottom: 15px;
}

/* Text */
.footer-about p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-color);
}

/* Lists */
.footer-box ul {
  list-style: none;
  padding: 0;
}

.footer-box ul li {
  margin-bottom: 10px;
  font-size: 14px;
}

.footer-box ul li a {
  color: var(--text-color);
  text-decoration: none;
  transition: .3s;
}

/* Hover effects */
.footer-box ul li a:hover {
  color: var(--secondary-color);
  padding-left: 5px;
}

/* Contact icons */
.contact-links li i {
  color: var(--secondary-color);
  margin-right: 8px;
}

/* Social icons */
.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  text-decoration: none;
  border-radius: 50%;
  background: var(--text-color);
  color: #fff;
  margin-right: 10px;
  transition: .3s;
  font-size: 16px;
}

.footer-social a:hover {
  transform: scale(1.1);
  background: var(--secondary-color);
  color: #fff;
}

/* Bottom Bar */
.footer-bottom {
  text-align: center;
  margin-top: 50px;
  padding-top: 15px;
  border-top: 1px solid #444;
  font-size: 13px;
  color: var(--text-color);
}

/* Responsive */
@media(max-width: 768px) {
  .footer-container {
    text-align: center;
  }
  .footer-social {
    justify-content: center;
  }
}

/*====benifit-of-yoga-card===*/
.yoga-benefits {
    padding: 60px 20px;
    background: var(--bg-color);
    text-align: center;
}
.section-title {
    font-size: 32px;
    font-weight: 700;
    color: #6a9e44;
    margin-bottom: 50px;
}

/* MAIN WRAPPER */
.benefits-container {
    max-width: 1250px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

/* LEFT & RIGHT COLUMNS */
.benefits-left,
.benefits-right {
    display: flex;
    flex-direction: column;
    gap: 25px;
    width: 40%;
}

/* CENTER IMAGE */
.center-img {
    width: 270px;
    max-width: 100%;
}

/* CARD DESIGN */
.benefit-card {
    background:#a87b5a;
    padding: 32px;
    border: 1px solid #e6e6e6;
    transition: 0.3s ease;
    max-width: 210px;
    height: 210px;
    margin: auto;
    border-radius: 50%;

    /* ADD THESE 4 LINES */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0px 8px 22px rgb(145 177 52);
}

.benefit-card img {
    width: 70px;
    margin-bottom: 12px;
}
.benefit-card h4 {
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    margin-top: 16px;
}
.benefit-card i {
    font-size: 40px;
    color: #91b134;
}
/* Bottom Card */
.bottom-center {
    margin-top: 40px;
    display: flex;
    justify-content: center;
}

.bottom-card {
    max-width: 210px;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .benefits-container {
        flex-direction: column;
    }

    .benefits-left,
    .benefits-right {
        width: 100%;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }

    .benefit-card {
        width: 45%;
    }
}

@media (max-width: 576px) {
    .benefit-card {
        width: 100%;
    }

    .center-img {
        width: 190px;
    }
}


