:root {
      --gold: #c5942a;
      --gold-light: #d4b06a;
      --gold-dark: #8a6a1f;
      --cream: #ede5d8;
      --cream-light: #f5f1ec;
      --brown-dark: #1f1710;
      --brown: #3a2e22;
      --brown-light: #5c4d3d;
    }

    * { margin: 0; padding: 0; box-sizing: border-box; }

    body {
      font-family: 'Poppins', sans-serif;
      color: var(--brown-dark);
      background: var(--cream-light);
    }

    h1, h2, h3, h4, h5, h6 {
      font-family: 'Playfair Display', serif;
    }

    .text-gold { color: var(--gold) !important; }
    .bg-brown-dark { background-color: var(--brown-dark) !important; }
    .bg-brown { background-color: var(--brown) !important; }
    .bg-cream { background-color: var(--cream) !important; }
    .bg-cream-light { background-color: var(--cream-light) !important; }
    .text-cream { color: var(--cream) !important; }

    .text-gold-gradient {
      background: linear-gradient(135deg, var(--gold), var(--gold-light));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .bg-gold-gradient {
      background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    }

    .shadow-luxury {
      box-shadow: 0 10px 40px -10px rgba(31, 23, 16, 0.15);
    }

    .shadow-gold {
      box-shadow: 0 4px 20px rgba(197, 148, 42, 0.25);
    }

    .tracking-wide { letter-spacing: 0.2em; }

    /* ===== HEADER ===== */
    .navbar-spa {
      background: rgba(31, 23, 16, 0.95);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid rgba(197, 148, 42, 0.2);
      padding: 1rem 0;
      transition: all 0.3s;
    }
    .navbar-spa .nav-link {
      color: rgba(237, 229, 216, 0.8);
      font-size: 0.85rem;
      text-transform: uppercase;
      letter-spacing: 0.15em;
      font-family: 'Poppins', sans-serif;
      transition: color 0.3s;
    }
    .navbar-spa .nav-link:hover { color: var(--gold); }
    .navbar-spa .navbar-brand {
      font-family: 'Playfair Display', serif;
      font-weight: 600;
      color: var(--cream);
      font-size: 1.25rem;
    }
    .navbar-spa .navbar-brand span { color: var(--gold); font-size: 1.5rem; margin-right: 0.5rem; }
    .btn-call {
      background: linear-gradient(135deg, var(--gold), var(--gold-dark));
      color: var(--brown-dark);
      font-weight: 600;
      border: none;
      border-radius: 50px;
      padding: 0.5rem 1.5rem;
      font-size: 0.85rem;
      transition: box-shadow 0.3s;
    }
    .btn-call:hover { box-shadow: 0 4px 20px rgba(197, 148, 42, 0.4); color: var(--brown-dark); }
    .navbar-toggler { border-color: rgba(197, 148, 42, 0.3); }
    .navbar-toggler-icon { filter: invert(1); }

    /* ===== HERO ===== */
    .hero-section {
      position: relative;
      min-height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
      background: url('../image/banner.jpg') center/cover no-repeat;
      overflow: hidden;
    }
    .hero-section::before {
      content: '';
      position: absolute;
      inset: 0;
      background: rgba(31, 23, 16, 0.6);
    }
    .hero-content { position: relative; z-index: 2; }
    .hero-content h1 { font-size: 3.5rem; line-height: 1.1; }
    @media (min-width: 768px) { .hero-content h1 { font-size: 5rem; } }
    .btn-hero-primary {
      background: linear-gradient(135deg, var(--gold), var(--gold-dark));
      color: var(--brown-dark);
      font-weight: 600;
      border: none;
      border-radius: 50px;
      padding: 1rem 2rem;
      transition: box-shadow 0.3s;
    }
    .btn-hero-primary:hover { box-shadow: 0 4px 20px rgba(197, 148, 42, 0.4); color: var(--brown-dark); }
    .btn-hero-outline {
      border: 2px solid var(--gold);
      color: var(--gold);
      font-weight: 600;
      border-radius: 50px;
      padding: 1rem 2rem;
      background: transparent;
      transition: all 0.3s;
    }
    .btn-hero-outline:hover { background: var(--gold); color: var(--brown-dark); }
    .scroll-indicator {
      position: absolute;
      bottom: 2rem;
      left: 50%;
      transform: translateX(-50%);
      width: 24px;
      height: 40px;
      border: 2px solid rgba(197, 148, 42, 0.5);
      border-radius: 50px;
      display: flex;
      justify-content: center;
      padding-top: 8px;
    }
    .scroll-indicator span {
      width: 4px;
      height: 8px;
      background: rgba(197, 148, 42, 0.7);
      border-radius: 4px;
      animation: scrollBounce 2s infinite;
    }
    @keyframes scrollBounce {
      0%, 100% { transform: translateY(0); opacity: 1; }
      50% { transform: translateY(8px); opacity: 0.3; }
    }

    /* ===== SECTIONS ===== */
    .section-label {
      color: var(--gold);
      letter-spacing: 0.2em;
      text-transform: uppercase;
      font-size: 0.85rem;
      margin-bottom: 0.75rem;
      font-family: 'Poppins', sans-serif;
    }

    /* About */
    .about-badge {
      position: absolute;
      bottom: -1rem;
      right: -1rem;
      width: 6rem;
      height: 6rem;
      background: linear-gradient(135deg, var(--gold), var(--gold-dark));
      border-radius: 1rem;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      box-shadow: 0 4px 20px rgba(197, 148, 42, 0.25);
    }
    .about-badge span:first-child { font-family: 'Playfair Display', serif; font-weight: 700; font-size: 1.75rem; color: var(--brown-dark); }
    .about-badge span:last-child { font-size: 0.7rem; color: rgba(31, 23, 16, 0.7); }

    /* Services */
    .service-card {
      background: rgba(58, 46, 34, 0.5);
      border: 1px solid rgba(197, 148, 42, 0.1);
      border-radius: 1rem;
      padding: 2rem;
      transition: all 0.3s;
    }
    .service-card:hover {
      border-color: rgba(197, 148, 42, 0.3);
      transform: translateY(-4px);
      box-shadow: 0 4px 20px rgba(197, 148, 42, 0.25);
    }
    .service-icon {
      width: 3.5rem;
      height: 3.5rem;
      background: linear-gradient(135deg, var(--gold), var(--gold-dark));
      border-radius: 0.75rem;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 1.25rem;
      transition: transform 0.3s;
    }
    .service-card:hover .service-icon { transform: scale(1.1); }
    .service-icon i { font-size: 1.25rem; color: var(--brown-dark); }
.service-card ul li{    color: #ede5d8;font-size: 15px;padding: 4px 0px;color:rgba(237,229,216,0.6);line-height:1.7;}
    /* Why Choose Us */
    .feature-icon {
      width: 5rem;
      height: 5rem;
      background: rgba(197, 148, 42, 0.1);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 1.25rem;
      transition: all 0.3s;
    }
    .feature-item:hover .feature-icon {
      background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    }
    .feature-icon i { font-size: 1.75rem; color: var(--gold); transition: color 0.3s; }
    .feature-item:hover .feature-icon i { color: var(--brown-dark); }

    /* Gallery */
    .gallery-item {
      position: relative;
      overflow: hidden;
      border-radius: 0.75rem;
      aspect-ratio: 1;
    }
    .gallery-item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s;
    }
    .gallery-item:hover img { transform: scale(1.1); }
    .gallery-overlay {
      position: absolute;
      inset: 0;
      background: rgba(31, 23, 16, 0);
      display: flex;
      align-items: center;
      justify-content: center;
      transition: background 0.3s;
    }
    .gallery-item:hover .gallery-overlay { background: rgba(31, 23, 16, 0.4); }
    .gallery-overlay span {
      color: var(--cream);
      font-family: 'Playfair Display', serif;
      font-size: 1rem;
      opacity: 0;
      transition: opacity 0.3s;
    }
    .gallery-item:hover .gallery-overlay span { opacity: 1; }

    /* Testimonials */
    .testimonial-card {
      background: rgba(58, 46, 34, 0.4);
      border: 1px solid rgba(197, 148, 42, 0.1);
      border-radius: 1rem;
      padding: 2rem;
      transition: border-color 0.3s;
    }
    .testimonial-card:hover { border-color: rgba(197, 148, 42, 0.25); }
    .testimonial-avatar {
      width: 2.5rem;
      height: 2.5rem;
      background: linear-gradient(135deg, var(--gold), var(--gold-dark));
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--brown-dark);
      font-weight: 700;
      font-size: 0.85rem;
    }

    /* CTA */
    .cta-section {
      background: linear-gradient(135deg, var(--gold), var(--gold-dark));
      position: relative;
      overflow: hidden;
    }
    .cta-section .cta-circle {
      position: absolute;
      border: 1px solid rgba(31, 23, 16, 0.1);
      border-radius: 50%;
    }
    .btn-cta-dark {
      background: var(--brown-dark);
      color: var(--cream);
      font-weight: 600;
      border: none;
      border-radius: 50px;
      padding: 1rem 2rem;
      transition: background 0.3s;
    }
    .btn-cta-dark:hover { background: var(--brown); color: var(--cream); }
    .btn-cta-outline {
      border: 2px solid var(--brown-dark);
      color: var(--brown-dark);
      font-weight: 600;
      border-radius: 50px;
      padding: 1rem 2rem;
      background: transparent;
      transition: all 0.3s;
    }
    .btn-cta-outline:hover { background: var(--brown-dark); color: var(--cream); }

    /* Contact */
    .contact-card {
      background: #faf8f5;
      border-radius: 0.75rem;
      padding: 1.25rem;
      border: 1px solid rgba(197, 148, 42, 0.1);
    }
    .contact-icon {
      width: 3rem;
      height: 3rem;
      background: rgba(197, 148, 42, 0.1);
      border-radius: 0.75rem;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }
    .contact-icon i { font-size: 1.25rem; color: var(--gold); }
    .contact-card a {
      color: var(--brown-dark);
      text-decoration: none;
      font-family: 'Playfair Display', serif;
      font-weight: 600;
      transition: color 0.3s;
    }
    .contact-card a:hover { color: var(--gold); }

    /* Footer */
    .footer-link {
      color: rgba(237, 229, 216, 0.5);
      text-decoration: none;
      font-size: 0.85rem;
      transition: color 0.3s;
    }
    .footer-link:hover { color: var(--gold); }
    .social-icon {
      width: 2.5rem;
      height: 2.5rem;
      background: rgba(197, 148, 42, 0.1);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.3s;
    }
    .social-icon:hover { background: linear-gradient(135deg, var(--gold), var(--gold-dark)); }
    .social-icon i { color: var(--gold); font-size: 1rem; transition: color 0.3s; }
    .social-icon:hover i { color: var(--brown-dark); }

    /* Smooth scroll */
    html { scroll-behavior: smooth; }



    /* <-----------about--------------> */
    .text-gold { color: var(--gold) !important; }
    .text-cream { color: var(--cream) !important; }
    .bg-brown-dark { background: var(--brown-dark) !important; }
    .bg-cream-light { background: var(--cream-light) !important; }

    .text-gold-gradient {
      background: linear-gradient(135deg, var(--gold), var(--gold-light));
      -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
    }
    .bg-gold-gradient { background: linear-gradient(135deg, var(--gold), var(--gold-dark)); }
    .shadow-luxury { box-shadow: 0 10px 40px -10px rgba(31,23,16,0.15); }
    .shadow-gold { box-shadow: 0 4px 20px rgba(197,148,42,0.25); }
    .section-label {
      color: var(--gold); letter-spacing: 0.2em; text-transform: uppercase;
      font-size: 0.85rem; margin-bottom: 0.75rem; font-family: 'Poppins', sans-serif;
    }
    .divider { width: 5rem; height: 2px; background: linear-gradient(135deg, var(--gold), var(--gold-dark)); margin: 0 auto; }

    /* Navbar */
    .navbar-spa {
      background: rgba(31,23,16,0.95); backdrop-filter: blur(12px);
      border-bottom: 1px solid rgba(197,148,42,0.2); padding: 1rem 0;
    }
    .navbar-spa .nav-link {
      color: rgba(237,229,216,0.8); font-size: 0.85rem; text-transform: uppercase;
      letter-spacing: 0.15em; font-family: 'Poppins', sans-serif; transition: color 0.3s;
    }
    .navbar-spa .nav-link:hover { color: var(--gold); }
    .navbar-spa .navbar-brand { font-family: 'Playfair Display', serif; font-weight: 600; color: var(--cream); font-size: 1.25rem; }
    .navbar-spa .navbar-brand span { color: var(--gold); font-size: 1.5rem; margin-right: 0.5rem; }
    .btn-gold {
      background: linear-gradient(135deg, var(--gold), var(--gold-dark)); color: var(--brown-dark);
      font-weight: 600; border: none; border-radius: 50px; padding: 0.5rem 1.5rem; font-size: 0.85rem; transition: box-shadow 0.3s;
    }
    .btn-gold:hover { box-shadow: 0 4px 20px rgba(197,148,42,0.4); color: var(--brown-dark); }
    .navbar-toggler { border-color: rgba(197,148,42,0.3); }
    .navbar-toggler-icon {filter: initial; }
.navbar-toggler {
  border-color: #fff;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 30 30'%3E%3Cpath stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E") !important;
}
    /* Banner */
    .page-banner {
      position: relative; padding: 8rem 0 5rem; overflow: hidden;
      background: linear-gradient(135deg, var(--brown-dark), var(--brown));
    }
    .page-banner .deco-circle {
      position: absolute; border: 1px solid rgba(197,148,42,0.08); border-radius: 50%;
    }

    /* Story */
    .story-badge {
      position: absolute; bottom: -1rem; right: -1rem; width: 6rem; height: 6rem;
      background: linear-gradient(135deg, var(--gold), var(--gold-dark)); border-radius: 1rem;
      display: flex; flex-direction: column; align-items: center; justify-content: center;
    }
    .story-badge .num { font-family: 'Playfair Display', serif; font-weight: 700; font-size: 1.75rem; color: var(--brown-dark); }
    .story-badge .lbl { font-size: 0.7rem; color: rgba(31,23,16,0.7); }

    /* Mission */
    .mission-card {
      background: rgba(58,46,34,0.5); border: 1px solid rgba(197,148,42,0.1);
      border-radius: 1rem; padding: 2rem; transition: all 0.3s; text-align: center;
    }
    .mission-card:hover { border-color: rgba(197,148,42,0.3); transform: translateY(-4px); }
    .mission-icon {
      width: 3.5rem; height: 3.5rem; background: linear-gradient(135deg, var(--gold), var(--gold-dark));
      border-radius: 0.75rem; display: flex; align-items: center; justify-content: center; margin: 0 auto 1.25rem;
      transition: transform 0.3s;
    }
    .mission-card:hover .mission-icon { transform: scale(1.1); }
    .mission-icon i { font-size: 1.25rem; color: var(--brown-dark); }

    /* Team */
    .team-card { text-align: center; }
    .team-img-wrap {
      position: relative; overflow: hidden; border-radius: 1rem; margin-bottom: 1.25rem;
    }
    .team-img-wrap img {
      width: 100%; aspect-ratio: 1; object-fit: cover; transition: transform 0.5s;
    }
    .team-card:hover .team-img-wrap img { transform: scale(1.05); }
    .team-overlay {
      position: absolute; inset: 0;
      background: linear-gradient(to top, rgba(31,23,16,0.6), transparent);
      opacity: 0; transition: opacity 0.3s;
    }
    .team-card:hover .team-overlay { opacity: 1; }

    /* Services */
    .service-card {
      background: rgba(58,46,34,0.5); border: 1px solid rgba(197,148,42,0.1);height: 100%;
      border-radius: 1rem; padding: 2rem; transition: all 0.3s;
    }
    .service-card:hover { border-color: rgba(197,148,42,0.3); transform: translateY(-4px); box-shadow: 0 4px 20px rgba(197,148,42,0.25); }
    .service-icon {
      width: 3.5rem; height: 3.5rem; background: linear-gradient(135deg, var(--gold), var(--gold-dark));
      border-radius: 0.75rem; display: flex; align-items: center; justify-content: center; margin-bottom: 1.25rem;
      transition: transform 0.3s;
    }
    .service-card:hover .service-icon { transform: scale(1.1); }
    .service-icon i { font-size: 1.25rem; color: var(--brown-dark); }

    /* Why Choose Us */
    .feature-icon {
      width: 5rem; height: 5rem; background: rgba(197,148,42,0.1); border-radius: 50%;
      display: flex; align-items: center; justify-content: center; margin: 0 auto 1.25rem; transition: all 0.3s;
    }
    .feature-item:hover .feature-icon { background: linear-gradient(135deg, var(--gold), var(--gold-dark)); }
    .feature-icon i { font-size: 1.75rem; color: var(--gold); transition: color 0.3s; }
    .feature-item:hover .feature-icon i { color: var(--brown-dark); }

    /* CTA */
    .cta-section { background: linear-gradient(135deg, var(--gold), var(--gold-dark)); position: relative; overflow: hidden; }
    .cta-circle { position: absolute; border: 1px solid rgba(31,23,16,0.1); border-radius: 50%; }
    .btn-cta-dark {
      background: var(--brown-dark); color: var(--cream); font-weight: 600; border: none;
      border-radius: 50px; padding: 1rem 2rem; transition: background 0.3s;
    }
    .btn-cta-dark:hover { background: var(--brown); color: var(--cream); }
    .btn-cta-outline {
      border: 2px solid var(--brown-dark); color: var(--brown-dark); font-weight: 600;
      border-radius: 50px; padding: 1rem 2rem; background: transparent; transition: all 0.3s;
    }
    .btn-cta-outline:hover { background: var(--brown-dark); color: var(--cream); }

    /* Footer */
    .footer-link { color: rgba(237,229,216,0.5); text-decoration: none; font-size: 0.85rem; transition: color 0.3s; }
    .footer-link:hover { color: var(--gold); }
    footer a,footer span{text-decoration: none;}
    footer a{cursor: pointer;}
     footer a:hover span{
    color: var(--gold);
}
    .social-icon {
      width: 2.5rem; height: 2.5rem; background: rgba(197,148,42,0.1); border-radius: 50%;
      display: flex; align-items: center; justify-content: center; transition: all 0.3s;
    }
    .social-icon:hover { background: linear-gradient(135deg, var(--gold), var(--gold-dark)); }
    .social-icon i { color: var(--gold); font-size: 1rem; transition: color 0.3s; }
    .social-icon:hover i { color: var(--brown-dark); }

    /* Fade-in animation */
    .fade-up { opacity: 0; transform: translateY(30px); transition: all 0.7s ease-out; }
    .fade-up.visible { opacity: 1; transform: translateY(0); }

 .toast-success.show {display: none;}
    @keyframes slideIn { from { transform: translateX(100%); opacity: 0; } to { transform: translateX(0); opacity: 1; } }
    .info-card {
    background: #fff;
    border-radius: 1rem;
    padding: 2.2em 1.5rem;
      border: 1px solid rgba(197,148,42,0.1); transition: all 0.3s;
    }
    .info-card:hover {
      border-color: rgba(197,148,42,0.3); transform: translateY(-3px);
      box-shadow: 0 10px 30px -10px rgba(31,23,16,0.12);
    }
    .info-icon {
      width: 3.25rem; height: 3.25rem; background: rgba(197,148,42,0.1); border-radius: 0.75rem;
      display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: all 0.3s;
    }
    .info-card:hover .info-icon { background: linear-gradient(135deg, var(--gold), var(--gold-dark)); }
    .info-icon i { font-size: 1.2rem; color: var(--gold); transition: color 0.3s; }
    .info-card:hover .info-icon i { color: var(--brown-dark); }
    .info-card a { color: var(--brown-dark); text-decoration: none; font-weight: 600; transition: color 0.3s; }
    .info-card a:hover { color: var(--gold); }
  .info-label {
    font-size: 16px;
    color: var(--brown-light);
    margin-bottom: 0.15rem;
    padding: 7px 0px 2px 0px;
}
    .info-value { font-family: 'Playfair Display', serif; font-weight: 600; font-size: 1rem; color: var(--brown-dark); }

    /* Contact Form */
    .contact-form-card {
      background: #fff; border-radius: 1.25rem; padding: 2.5rem;
      border: 1px solid rgba(197,148,42,0.1);
    }
    .form-control-spa {
      background: var(--cream-light); border: 1px solid rgba(197,148,42,0.15);
      border-radius: 0.75rem; padding: 0.85rem 1rem; font-family: 'Poppins', sans-serif;
      font-size: 0.9rem; color: var(--brown-dark); transition: border-color 0.3s, box-shadow 0.3s;
    }
    .form-control-spa::placeholder { color: var(--brown-light); opacity: 0.6; }
    .form-control-spa:focus {
      outline: none; border-color: var(--gold);
      box-shadow: 0 0 0 3px rgba(197,148,42,0.15); background: #fff;
    }
    .form-label-spa {
      font-size: 0.85rem; font-weight: 500; color: var(--brown-dark); margin-bottom: 0.4rem;
    }
    .btn-submit {
      background: linear-gradient(135deg, var(--gold), var(--gold-dark)); color: var(--brown-dark);
      font-weight: 600; border: none; border-radius: 50px; padding: 0.9rem 2.5rem;
      font-size: 0.95rem; transition: all 0.3s; width: 100%;
    }
    .btn-submit:hover { box-shadow: 0 4px 20px rgba(197,148,42,0.4); color: var(--brown-dark); transform: translateY(-2px); }

    /* WhatsApp Button */
    .whatsapp-section { background: var(--cream); }
    .btn-whatsapp {
      background: #25d366; color: #fff; font-weight: 600; border: none; border-radius: 50px;
      padding: 1.1rem 3rem; font-size: 1.1rem; transition: all 0.3s; display: inline-flex;
      align-items: center; gap: 0.75rem;
    }
    .btn-whatsapp:hover { background: #1fb855; color: #fff; transform: translateY(-3px); box-shadow: 0 8px 25px rgba(37,211,102,0.35); }
    .btn-whatsapp i { font-size: 1.4rem; }

    /* Map */
    .map-wrap { border-radius: 1.25rem; overflow: hidden; border: 1px solid rgba(197,148,42,0.15); }
/* Fixed Buttons Wrapper */
.fixed-buttons {
  position: fixed;
  bottom: 20px;
  left: 0;
  width: 100%;
  pointer-events: none; /* important */
  z-index: 9999;
}

/* Common Button Style */
.call-btn,
.whatsapp-btn {
  position: absolute;
  bottom: 0;
  pointer-events: auto;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 22px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.2);
  transition: all 0.3s ease;
}

/* Left Button (Call) */
.call-btn {
left: 15px;
    background: #b18626;
    border: 1px solid #fff;
}

/* Right Button (WhatsApp) */
.whatsapp-btn {
  right: 15px;
  background: #25D366;
}

/* Hover Effect */
.call-btn:hover,
.whatsapp-btn:hover {
  transform: scale(1.1);
}
.about-list li{padding: 3px 0px;}


/* <----------new service page----------------> */
.strategy {
    width: 100%;
    /* margin: 80px 0px; */
    background-color: #fff;
}

.strategy__row {
  display: flex;
  min-height: 400px;
}

.strategy__row.reverse {
  flex-direction: row-reverse;
}

.strategy__img,
.strategy__content {
  width: 50%;
}

.strategy__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.strategy__content {
  padding: 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #f8f8f8;
}

.strategy__row {
  display: flex;
  min-height: 400px;
}

.strategy__row.reverse {
  flex-direction: row-reverse;
}
.strategy__img, .strategy__content {
    width: 50%;
    margin-bottom: -5px;
    overflow: hidden;
}
.business-subtitle {
    font-size: 23px;
    font-weight: 500;
    padding: 0px 0px 10px 0px;    color: #404040;
}
h6.outcome {
    font-size: 20px;
    font-weight: 600;
    color: #404040;
}
.strategy__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.strategy__content {
  padding: 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #f8f8f8;
}


.subtitle {
  color: #666;
  margin-bottom: 20px;
}

.strategy__content ul {
  padding-left: 18px;
  margin-bottom: 20px;
}

.strategy__content ul li {
  margin-bottom: 8px;
}

.outcome {
  font-weight: 600;
}

/* Responsive */
@media (max-width: 992px) {
  .strategy {
    width: 100%;
}
  .strategy__row,
  .strategy__row.reverse {
    flex-direction: column;
  }

  .strategy__img,
  .strategy__content {
    width: 100%;
  }

  .strategy__content {
    padding: 30px;
  }
}
.message-btn{display: inline-block !important;width: 180px;background: rgb(14, 139, 37);
    padding: 9px 18px 11px 21px;
    border-radius: 50px;
    font-size: 14px;
    color: #fff;
    font-weight: 600;margin-top: 10px;}





    /* <-----------responsive------------> */
    @media (max-width: 767px) {
  
       .bg-cream-light,.bg-brown-dark,.bg-cream,.cta-section{padding:3rem 0rem !important;}
       .mb-5{
    margin-bottom: 15px !important;
}
html,body{overflow-x: hidden;}
.col-sm-6.col-lg-3 {
    margin-top: 20px;
}
.btn-cta-dark,.btn-cta-outline{justify-content: center !important;}
.Appointmentitle{font-size: 27px !important;}
.call-btn, .whatsapp-btn {        line-height: 22px;
    width: 40px;
    height: 40px;
    font-size: 17px;}
        .hero-section a{justify-content:center;}
        .common-title-mb{font-size: 27px !important;}
    .padding-mb1 .col-md-6{padding: 10px 0px;margin: 10px 0px;}
    }

    @media(min-width:110px){
      .flx-direction{flex-direction: row-reverse;}
    }