
  .response-message {
    padding: 18px 22px;
    margin: 20px 0 15px 0;
    border-radius: 12px;
    font-size: 15.5px;
    font-weight: 500;
    line-height: 1.5;
    display: none;
    align-items: flex-start;
    gap: 14px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
    transition: all 0.4s ease;
    position: relative;
    width: 650px;
  }

  .response-message.show {
    display: flex;
    animation: slideDown 0.4s ease forwards;
  }

  @keyframes slideDown {
    from {
      opacity: 0;
      transform: translateY(-10px);
    }

    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .response-message.success {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    border: 1px solid #34d399;
  }

  .response-message.error {
    background: linear-gradient(135deg, #ef4444, #b91c1c);
    color: white;
    border: 1px solid #f87171;
  }

  .response-message i {
    font-size: 24px;
    margin-top: 2px;
    flex-shrink: 0;
  }

  .response-message .close-btn {
    position: absolute;
    right: 14px;
    top: 14px;
    background: none;
    border: none;
    color: inherit;
    font-size: 20px;
    cursor: pointer;
    opacity: 0.85;
  }

  .response-message .close-btn:hover {
    opacity: 1;
  }


/* ========================================================== */
  
  /* 1. Shared Initial State: Button is White with Black text in both modes */
  .thank-you-modal-window .modal-box .rr-btn {
    background: var(--white) !important;
    /* Force white background [1] */
  }

  .thank-you-modal-window .modal-box .rr-btn .btn-wrap .text-one {
    color: var(--black) !important;
    /* Force black text for visibility [1] */
  }

  /* 2. Light Mode Hover: Button background becomes Orange */
  body:not(.dark) .thank-you-modal-window .modal-box .rr-btn:hover::before {
    background-color: var(--action) !important;
    /* Becomes Orange (#ff5f2e) [1, 2] */
  }

  /* 3. Dark Mode Hover: Button background becomes Black */
  body.dark .thank-you-modal-window .modal-box .rr-btn:hover::before {
    background-color: #000000 !important;
    /* Becomes Black to contrast with Orange modal [1] */
  }

  /* 4. Text color on hover: Ensures the sliding text is White for both hover states */
  .thank-you-modal-window .modal-box .rr-btn:hover .btn-wrap .text-two {
    color: var(--white) !important;
    /* Readable on both Orange and Black [1, 2] */
  }

  /* =============================================== */


  
  /* Increase button size for Services Page Hero CTA */
  .samesize_ashomepage .rr-btn {
    padding: 25px 50.6px !important;
    /* Larger padding to match Home Page CTAs */
    font-size: 18px !important;
    /* Slightly larger font for better visibility */
    font-weight: 500;
    line-height: 20px;
    letter-spacing: -0.48px;
  }

  /* Ensure the hover animation scales correctly with the larger size */
  .samesize_ashomepage .rr-btn .btn-wrap .text-one,
  .samesize_ashomepage .rr-btn .btn-wrap .text-two {
    gap: 10px;
  }




 .badge_new_custon_white_pill {
    font-weight: 600;
    font-size: 14px;
    line-height: 16px;
    padding: 10px 18px;
    border-radius: 20px;
    color: var(--white);
    text-transform: uppercase;
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin: 5px;
 }

 /* =========================================== */
 
.theme-color {
    color: var(--action) !important;
    font-weight: 600 !important;
}

.service__title h3 a {
    pointer-events: none;
}

.awards-section-3__heading .sub-title {
    font-weight: 600;
}

.blog-details-area .blog-details-area-inner .section-header .section-title-wrapper .title-wrapper h2 {
 line-height: 95px;

 }

.blog-details-area .feature-list ul{
  margin: 1rem;
  padding: 1rem;
  line-height: 2rem;
}

.blog-details-area .blog-details-area-inner .section-details .thumb-text-wrapper .thumb img {
    width: auto;
    height: auto;
}
.blog-details-area .blog-details-area-inner .section-details .text-wrapper {
   align-self: center;
}

.blog-details-area .blog-details-area-inner .section-header .section-title-wrapper {
    display: grid;
    grid-template-columns: 400px 1fr !important;
}


 /* Fix for Footer Text Visibility in Light Mode */
body:not(.dark) footer.footer-area-4.rr-bg-color {
    /* If the background is white, force text to be dark */
    background-color: #ffffff !important;
    color: #111111 !important;
}

/* Target all text elements and links within the footer */
body:not(.dark) footer.footer-area-4.rr-bg-color p,
body:not(.dark) footer.footer-area-4.rr-bg-color a,
body:not(.dark) footer.footer-area-4.rr-bg-color li,
body:not(.dark) footer.footer-area-4.rr-bg-color span,
body:not(.dark) footer.footer-area-4.rr-bg-color h3,
body:not(.dark) footer.footer-area-4.rr-bg-color h4,
body:not(.dark) footer.footer-area-4.rr-bg-color .footer-widget__title,
body:not(.dark) footer.footer-area-4.rr-bg-color .copyright {
    color: #111111 !important;
}

/* Ensure the email link in the top section is also visible */
body:not(.dark) footer.footer-area-4.rr-bg-color .footer-area-4__top a[href^="mailto:"] {
    color: rgba(0, 0, 0, 0.7) !important;
}

/* ==========================================================================
   LIGHT MODE: Email Subscription Field Polish
   ========================================================================== */

/* 1. Form Container Wrapper */
body:not(.dark) footer.footer-area-4.rr-bg-color .ts-subscribe-form {
    position: relative !important;
    background-color: #f7f7f7 !important; /* Soft off-white/light-grey background */
    border: 1px solid #e0e0e0 !important;   /* Subtle, clean border */
    border-radius: 30px !important;         /* Smooth rounded capsule look */
    padding: 4px 50px 4px 20px !important;  /* Space on left for text, right for button */
    display: flex !important;
    align-items: center !important;
    transition: all 0.3s ease !important;
    width: 100% !important;
    max-width: 450px;                       /* Optional constraint to keep it elegant */
}

/* 2. Interactive Focus State for the Container */
body:not(.dark) footer.footer-area-4.rr-bg-color .ts-subscribe-form:focus-within {
    border-color: #ff6a3a !important;       /* Shifts to brand accent color on focus */
    box-shadow: 0 0 0 3px rgba(255, 106, 58, 0.15) !important; /* Gentle brand glow */
    background-color: #ffffff !important;   /* Pops cleanly on focus */
}

/* 3. The Input Field (.form-control) */
body:not(.dark) footer.footer-area-4.rr-bg-color .ts-subscribe-form .form-control {
    background: transparent !important;     /* Uses container's background style */
    border: none !important;                /* Strips double-border clashes */
    color: #1a1a1a !important;              /* High contrast crisp dark text */
    font-size: 15px !important;
    height: 44px !important;
    padding: 0 !important;                  /* Relies on parent container's padding */
    width: 100% !important;
    box-shadow: none !important;
}

/* 4. Placeholder Contrast Fix */
body:not(.dark) footer.footer-area-4.rr-bg-color .ts-subscribe-form .form-control::placeholder {
    color: #757575 !important;              /* Easily scannable mid-grey text */
    opacity: 1 !important;
}

/* 5. The Submit Button Adjustment */
body:not(.dark) footer.footer-area-4.rr-bg-color .ts-subscribe-form .submit.theme-color {
    position: absolute !important;
    right: 6px !important;                  /* Nested neatly inside the container capsule */
    top: 50% !important;
    transform: translateY(-50%) !important;
    background-color: #ff6a3a !important;   /* Vibrant brand theme color */
    border: none !important;
    border-radius: 50% !important;
    width: 40px !important;
    height: 40px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: #ffffff !important;
    cursor: pointer !important;
    transition: background-color 0.2s ease, transform 0.2s ease !important;
    z-index: 2;
}

/* 6. Button Hover Effect */
body:not(.dark) footer.footer-area-4.rr-bg-color .ts-subscribe-form .submit.theme-color:hover {
    background-color: #e05326 !important;   /* Richer dark-orange variant on hover */
}

  /* --- Light Mode Visibility (When body does not have .dark) --- */
  body:not(.dark) footer.footer-area-4.rr-bg-color .footer-area-4__logo .logo-dark {
    display: none !important;
  }

  body:not(.dark) footer.footer-area-4.rr-bg-color .footer-area-4__logo .logo-light {
    display: inline-block !important;
  }

  /* --- Dark Mode Visibility (When body has .dark) --- */
  body.dark footer.footer-area-4.rr-bg-color .footer-area-4__logo .logo-dark {
    display: inline-block !important;
  }

  body.dark footer.footer-area-4.rr-bg-color .footer-area-4__logo .logo-light {
    display: none !important;
  }

body:not(.dark) .footer-area-4 .footer-widget-wrapper .widget-header .text a::before {
    color: var(--black);
}
body:not(.dark) .footer-area-4__content a::before {
    color: var(--black);
}

body:not(.dark) footer.footer-area-4.rr-bg-color .copyright a::before {
    width: 100%;
    height: 1px;
    background-color: currentColor;
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    transition: all 0.5s;
    color: var(--black);
}
body:not(.dark) footer.footer-area-4.rr-bg-color .date h4 a::before {
    width: 100%;
    height: 1px;
    background-color: currentColor;
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    transition: all 0.5s;
    color: var(--black);
}



/* ======================================================= */


/* ==========================================================
   Mayaroo Momentum Hover Gallery Section
   Add this custom CSS in assets/css/style.css
   ========================================================== */

.mayaroo-momentum-section {
  position: relative;
  overflow: hidden;
  padding: 100px 0 110px;
  background-color: var(--black);
  color: var(--white);
  isolation: isolate;
}

.mayaroo-momentum-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 18px 18px;
  opacity: 0.75;
}

.mayaroo-momentum-section::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 50% 10%, rgba(255, 255, 255, 0.08), transparent 32%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.55));
  pointer-events: none;
}

.mayaroo-momentum-inner {
  width: 100%;
  /* max-width: 1180px; */
  margin: 0 auto;
}

.mayaroo-momentum-heading-wrap {
  position: relative;
  width: fit-content;
  max-width: 100%;
  margin: 0 auto 52px;
}

.mayaroo-momentum-title {
  margin: 0;
  font-family: var(--font_body);
  font-size: clamp(46px, 7vw, 94px);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -0.065em;
  color: var(--white);
  text-align: left;
}

.mayaroo-momentum-hint {
  position: absolute;
  right: -95px;
  bottom: -40px;
  display: flex;
  align-items: center;
  gap: 8px;
  transform: rotate(10deg);
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  line-height: 1;
  font-weight: 500;
  pointer-events: none;
  white-space: nowrap;
}

.mayaroo-momentum-hint i {
  font-size: 22px;
  transform: rotate(35deg);
  color: var(--white);
}

.mayaroo-momentum-gallery {
  display: flex;
  justify-content: center;
  align-items: stretch;
  width: min(100%, 1040px);
  height: clamp(170px, 18vw, 220px);
  margin: 0 auto;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.5);
}

.mayaroo-momentum-card {
  position: relative;
  flex: 1 1 0;
  min-width: 0;
  height: 100%;
  overflow: hidden;
  cursor: pointer;
  background-color: #1f1f1f;
  transition:
    flex 0.55s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.35s ease;
}

.mayaroo-momentum-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transform: scale(1.02);
  transition:
    transform 0.6s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.35s ease;
}

.mayaroo-momentum-gallery:hover .mayaroo-momentum-card {
  flex: 0.82 1 0;
  opacity: 0.82;
}

.mayaroo-momentum-gallery .mayaroo-momentum-card:hover {
  flex: 2.55 1 0;
  opacity: 1;
  z-index: 2;
}

.mayaroo-momentum-card:hover img {
  transform: scale(1.08);
}

.mayaroo-momentum-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 42%, rgba(0, 0, 0, 0.22)),
    radial-gradient(circle at center, transparent 45%, rgba(0, 0, 0, 0.2));
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}

.mayaroo-momentum-card:hover::after {
  opacity: 1;
}

/* Light Mode */
body:not(.dark) .mayaroo-momentum-section {
  background-color: #f8f6f3;
  color: var(--black);
}

body:not(.dark) .mayaroo-momentum-section::before {
  background-image:
    linear-gradient(rgba(17, 17, 17, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17, 17, 17, 0.055) 1px, transparent 1px);
  opacity: 1;
}

body:not(.dark) .mayaroo-momentum-section::after {
  background:
    radial-gradient(circle at 50% 10%, rgba(255, 95, 46, 0.1), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.2), rgba(248, 246, 243, 0.82));
}

body:not(.dark) .mayaroo-momentum-title {
  color: var(--black);
}

body:not(.dark) .mayaroo-momentum-hint,
body:not(.dark) .mayaroo-momentum-hint i {
  color: rgba(17, 17, 17, 0.78);
}

body:not(.dark) .mayaroo-momentum-gallery {
  box-shadow: 0 24px 70px rgba(17, 17, 17, 0.14);
}

body:not(.dark) .mayaroo-momentum-card {
  background-color: #e8e4de;
}

/* Dark Mode */
body.dark .mayaroo-momentum-section {
  background-color: var(--black);
  color: var(--white);
}

body.dark .mayaroo-momentum-title {
  color: var(--white);
}

/* Responsive */
@media only screen and (max-width: 1199px) {
  .mayaroo-momentum-section {
    padding: 110px 0 90px;
  }

  .mayaroo-momentum-inner {
    max-width: 920px;
  }

  .mayaroo-momentum-gallery {
    width: 100%;
    height: 190px;
  }
}

@media only screen and (max-width: 991px) {
  .mayaroo-momentum-section {
    padding: 95px 0 80px;
  }

  .mayaroo-momentum-heading-wrap {
    width: 100%;
    margin-bottom: 44px;
  }

  .mayaroo-momentum-title {
    text-align: center;
    font-size: clamp(44px, 8vw, 76px);
  }

  .mayaroo-momentum-hint {
    right: 24px;
    bottom: -42px;
  }

  .mayaroo-momentum-gallery {
    height: 180px;
  }

  .mayaroo-momentum-gallery .mayaroo-momentum-card:hover {
    flex: 2.15 1 0;
  }
}

@media only screen and (max-width: 767px) {
  .mayaroo-momentum-section {
    padding: 78px 0 68px;
  }

  .mayaroo-momentum-title {
    font-size: clamp(40px, 12vw, 62px);
    line-height: 1.02;
    letter-spacing: -0.055em;
  }

  .mayaroo-momentum-title br {
    display: none;
  }

  .mayaroo-momentum-hint {
    display: none;
  }

  .mayaroo-momentum-gallery {
    height: 430px;
    flex-direction: column;
    border-radius: 18px;
  }

  .mayaroo-momentum-card {
    flex: 1 1 0;
    width: 100%;
  }

  .mayaroo-momentum-gallery:hover .mayaroo-momentum-card {
    flex: 0.82 1 0;
    opacity: 0.86;
  }

  .mayaroo-momentum-gallery .mayaroo-momentum-card:hover {
    flex: 2.25 1 0;
    opacity: 1;
  }

  .mayaroo-momentum-card img {
    object-position: center;
  }
}

@media only screen and (max-width: 575px) {
  .mayaroo-momentum-section {
    padding: 65px 0 55px;
  }

  .mayaroo-momentum-gallery {
    height: 390px;
    border-radius: 16px;
  }

  .mayaroo-momentum-title {
    font-size: clamp(38px, 14vw, 54px);
  }
}

@media (hover: none) {
  .mayaroo-momentum-gallery:hover .mayaroo-momentum-card,
  .mayaroo-momentum-gallery .mayaroo-momentum-card:hover {
    flex: 1 1 0;
    opacity: 1;
  }

  .mayaroo-momentum-card:active {
    flex: 2.2 1 0;
  }

  .mayaroo-momentum-card:active img {
    transform: scale(1.06);
  }
}

/* Smooth hover transform update */
.mayaroo-momentum-gallery {
  display: flex;
  justify-content: center;
  align-items: stretch;
  width: min(100%, 80vw);
  height: clamp(220px, 28vw, 420px);
  margin: 0 auto;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.5);
}

.mayaroo-momentum-card {
  position: relative;
  flex: 1 1 0;
  min-width: 0;
  height: 100%;
  overflow: hidden;
  cursor: pointer;
  background-color: #1f1f1f;
  transform: translateZ(0) scale(1);
  transform-origin: center;
  will-change: flex-grow, transform, opacity;
  transition:
    flex-grow 0.95s cubic-bezier(0.16, 1, 0.3, 1),
    flex-basis 0.95s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.95s cubic-bezier(0.16, 1, 0.3, 1),
    opacity 0.95s ease;
}

.mayaroo-momentum-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transform: scale(1.04);
  transform-origin: center;
  will-change: transform, filter;
  transition:
    transform 2s cubic-bezier(0.16, 1, 0.3, 1),
    filter 0.95s ease;
}

.mayaroo-momentum-gallery:hover .mayaroo-momentum-card {
  flex-grow: 0.82;
  opacity: 0.82;
}

.mayaroo-momentum-gallery .mayaroo-momentum-card:hover {
  flex-grow: 1.75;
  opacity: 1;
  z-index: 2;
  /* transform: translateY(-6px) scale(1.015); */
}

.mayaroo-momentum-gallery .mayaroo-momentum-card:hover img {
  transform: scale(1.13);
}

.mayaroo-momentum-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 42%, rgba(0, 0, 0, 0.25)),
    radial-gradient(circle at center, transparent 45%, rgba(0, 0, 0, 0.22));
  opacity: 0;
  transition: opacity 0.6s ease;
  pointer-events: none;
}

.mayaroo-momentum-card:hover::after {
  opacity: 1;
}

/* Mobile/touch fallback */
@media (hover: none) {
  .mayaroo-momentum-gallery:hover .mayaroo-momentum-card,
  .mayaroo-momentum-gallery .mayaroo-momentum-card:hover {
    flex-grow: 1;
    opacity: 1;
    transform: none;
  }

  .mayaroo-momentum-card:active {
    flex-grow: 2.25;
    transform: scale(1.01);
  }

  .mayaroo-momentum-card:active img {
    transform: scale(1.1);
  }
}