.hero-banner {
  padding-top: 100px;
}

.rs-full-section {
  width: 100%;
  min-height: 100vh;
  position: relative;
  padding: 80px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url("../img/hero-bg.jpg") 0 0 no-repeat;
}


.hero-titleinner {
  font-size: 102px;
  line-height: 1.1;
}

.title-red {
  font-family: 'rundkursivregular';
  color: #DE1515;
}

.rs-desc {
  line-height: 27px;
}

.video-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  /* or set fixed height e.g. 500px */
  overflow: hidden;
  transform: rotate(-5deg);
}

.video-wrapper video {
  width: 100%;
  border-radius: 10px;
  height: 100%;
  object-fit: cover;
  /* 🔥 key line */
}


/* Background wrapper (optional) */
.rs-circle-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Circle Button */
.rs-circle-btn {
  width: 130px;
  height: 130px;
  background: #e50914;
  border-radius: 50%;
  color: #fff;
  text-align: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-decoration: none;
  overflow: hidden;
  transition: 0.4s ease;
}

/* Text */
.rs-text {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.2;
  margin: 0;
  color: #fff;
}


/* Arrow */
.rs-arrow {
  font-size: 28px;
  margin-bottom: 15px;
  display: inline-block;
  transition: 0.4s ease;
  height: 20px;
}

/* 🔥 Hover Effects */
.rs-circle-btn:hover {
  transform: scale(1.08);
  background: #222;
  box-shadow: 0 20px 50px rgba(229, 9, 20, 0.4);
}

/* Arrow Animation */
.rs-circle-btn:hover .rs-arrow {
  transform: translate(8px, -8px) rotate(15deg);
}

/* ✨ Pulse Animation */
.rs-circle-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.3);
  opacity: 0;
}

.rs-circle-btn:hover::before {
  animation: pulseCircle 1.2s ease-out;
}

/* Keyframes */
@keyframes pulseCircle {
  0% {
    transform: scale(1);
    opacity: 0.6;
  }

  100% {
    transform: scale(1.3);
    opacity: 0;
  }
}

/* Responsive */
@media (max-width: 768px) {
  .rs-circle-btn {
    width: 220px;
    font-size: 30px;
    height: 220px;
  }

  .rs-text {
    font-size: 28px;
  }
}




/* Services section */

.services-sec {
  position: relative;
  z-index: 1;
}

.services-sec::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #fff url("../img/pattern-dot.png") 0 0;
  opacity: 0.5;
  /* adjust here */
  z-index: -1;
}

.service-card {
  background: #fff url("../img/blockbg.png") 0 0 no-repeat;
  background-size: cover;
  padding: 25px 25px 55px 25px;
  border-radius: 12px;
  position: relative;
  height: 100%;
  transition: 0.3s ease;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.service-card h5 {
  font-size: 24px;
  line-height: 32px;
  margin-bottom: 20px;
}

.service-card p {
  font-size: 14px;
  color: #111;
  margin-bottom: 40px;
}

/* Image Position Bottom Right */
.service-img {
  position: absolute;
  bottom: -5px;
  right: -5px;
  max-width: 120px;
  height: auto;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .service-card {
    padding: 20px;
  }

  .service-img {
    max-width: 90px;
  }
}








/* Process Section */

/* Container width 1800px */

/* Section */
.process-sec {
  background: #f9f9f9;
}

/* Tag */
.process-tag {
  display: inline-block;
  padding: 6px 18px;
  border: 1px solid #ccc;
  border-radius: 30px;
  font-size: 12px;
  letter-spacing: 1px;
}

/* Wrapper */
.process-wrapper {
  position: relative;
  padding-top: 40px;
}

/* Background Arrow */
.process-arrow {
  position: absolute;
  top: 120px;
  left: 0;
  width: 100%;
  opacity: 0.9;
  pointer-events: none;
}

/* Item */
.process-item {
  position: relative;
  padding: 20px;
  border-left: 1px solid #ddd;
}

.process-wrapper [class*="col-"]:first-child .process-item {
  border: 0;
}

/* Image Circle */
.process-img {
  position: relative;
  width: 200px;
  height: 200px;
  margin: auto;
  border-radius: 50%;
  overflow: hidden;
  border: 6px solid #eee;
}

.process-img-wrap {
  position: relative;
  display: inline-flex;
}



.process-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Step Number */
.process-img-wrap .step {
  font-family: "Poppins", sans-serif;
  position: absolute;
  top: -10px;
  left: -10px;
  background: #e60023;
  color: #fff;
  width: 48px;
  height: 48px;
  font-size: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  z-index: 2;
}

/* Text */
.process-item h6 {
  margin-top: 24px;
  font-weight: 700;
}

.process-item p {
  font-size: 14px;
  color: #111;
  max-width: 260px;
  margin: 15px auto 0;
}

/* Responsive */
@media (max-width: 1400px) {
  .process-arrow {
    display: none;
  }
}

@media (max-width: 992px) {
  .process-img {
    width: 110px;
    height: 110px;
  }
}

@media (max-width: 576px) {
  .process-item p {
    max-width: 100%;
  }
}



/* Price */


/* Background */
.rs-packages-sec {

  color: #fff;
  position: relative;

}

.web-cornor::before {
  position: absolute;
  bottom: 0;
  left: 0;
  content: "";
  width: 700px;
  height: 270px;
  background: url("../img/web-cornor.png") 0 0 no-repeat;
}


/* Left Card */
.rs-left-card {
  background: #e50914;
  padding: 40px;
  border-radius: 12px;
  position: relative;
}

.rs-left-card hr {
  border-color: rgba(255, 255, 255, 0.9);
}

.rs-left-card h4 {
  font-weight: 600;
  font-size: 30px;
  color: #fff;
}

.rs-join {
  font-size: 16px;
}

/* Arrow Button */
.rs-arrow-btn {
  width: 60px;
  height: 60px;
  border: 1px solid #fff;
  border-radius: 50%;
  display: flex;
  padding: 20px;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}

.rs-arrow-btn:hover {
  background: #111;
  color: #e50914;
  border: 1px solid #111;
}

/* Cards */
.rs-card {
  background: #f4f4f4;
  color: #000;
  padding: 25px;
  border-radius: 12px;
  position: relative;
  height: 100%;
  overflow: hidden;
}

/* Pattern Effect */
.rs-card::before {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: repeating-linear-gradient(135deg,
      rgba(229, 9, 20, 0.05),
      rgba(229, 9, 20, 0.05) 2px,
      transparent 2px,
      transparent 6px);
}

.quick-contect small {
  font-size: 18px;
}

.quick-contect h5 {
  font-size: 30px;
  font-weight: 700;
  color: #fff;
}

/* Title */
.rs-card h6 {
  color: #e50914;
  font-weight: 500;
  margin-bottom: 15px;
  font-size: 26px;
  padding: 0 0 10px 0;
  border-bottom: 1px solid #ddd;
}

/* List */
.rs-card ul {
  padding-left: 0;
  list-style: none;
}

.rs-card ul li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 10px;
  font-size: 16px;
  padding: 5px 0 5px 40px;
}

/* Check Icon */
.rs-card ul li::before {
  content: "";
  position: absolute;
  left: 0;
  color: #e50914;
  font-size: 12px;
  background: url("../img/Check-li.svg") 0 0 no-repeat;
  width: 28px;
  height: 22px;
  top: 8px;
}


/*  */


.rs-card-red ul {
  padding-left: 0;
  list-style: none;
}

.rs-card-red ul li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 10px;
  font-size: 16px;
  padding: 5px 0 5px 40px;
}

/* Check Icon */
.rs-card-red ul li::before {
  content: "";
  position: absolute;
  left: 0;
  color: #fff;
  font-size: 12px;
  background: url("../img/Check-li.svg") 0 0 no-repeat;
  width: 28px;
  height: 22px;
  top: 8px;
  filter: brightness(0) invert(1);
  /* ✅ makes SVG white */
}





/* Responsive */
@media (max-width: 992px) {
  .rs-left-card {
    text-align: center;
  }

  .rs-arrow-btn {
    margin: auto;
  }
}

@media (max-width: 576px) {
  .rs-left-card {
    padding: 25px;
  }

  .rs-card {
    padding: 20px;
  }
}



.blue-gr-reverse {
  background: #E7EFF5;
  background: -webkit-linear-gradient(0deg, rgba(231, 239, 245, 1) 0%, rgba(255, 255, 255, 1) 100%);
  background: -moz-linear-gradient(0deg, rgba(231, 239, 245, 1) 0%, rgba(255, 255, 255, 1) 100%);
  background: linear-gradient(0deg, rgba(231, 239, 245, 1) 0%, rgba(255, 255, 255, 1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#E7EFF5",
      endColorstr="#FFFFFF",
      GradientType=0);
}


/* why choose us card css */


.whychooseus {
  background: #FFFFFF;
  background: -webkit-linear-gradient(0deg, rgba(255, 255, 255, 1) 0%, rgba(231, 239, 245, 1) 100%);
  background: -moz-linear-gradient(0deg, rgba(255, 255, 255, 1) 0%, rgba(231, 239, 245, 1) 100%);
  background: linear-gradient(0deg, rgba(255, 255, 255, 1) 0%, rgba(231, 239, 245, 1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#FFFFFF",
      endColorstr="#E7EFF5",
      GradientType=0);
}






.feature-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  padding: 30px 40px;
  display: flex;
  align-items: flex-start;
  gap: 35px;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
  height: 100%;
}

.feature-card:hover {
  box-shadow: 0 8px 28px rgba(212, 43, 43, 0.12);
  transform: translateY(-4px);
}

.feature-card .icon-wrap {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  background-color: #fff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-card .icon-wrap svg {
  width: 60px;
  height: 60px;
  color: #d42b2b;
}

.feature-card .card-title {
  font-weight: 700;
  font-size: 18px;

  margin-bottom: 10px;
}

.feature-card .card-text {
  color: #111;
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
}




/* button */




/* 
========================
      BUTTON THREE
========================
*/





/* Base */
.btn-red {
  background: #d42b2b !important;
}

.btn-black {
  background: #333 !important;
}

.btn-green {
  background: #09a645 !important;
}

.btn-green-transparent {
  background: transparent !important;
}



/* Button */
.btn-animation {
  position: relative;
  overflow: hidden;
  text-transform: capitalize;
  padding: 14px 26px;
  transition: all 0.4s ease;
  border-radius: 6px;

  color: #fff !important;
  border: none;
  font-weight: 500;
}

/* Content above effects */
.btn-animation>* {
  position: relative;
  z-index: 3;
}

/* 🔥 Wave Shine Effect */
.btn-animation::before {
  content: "";
  position: absolute;
  top: 0;
  left: -80%;
  width: 60%;
  height: 100%;
  background: linear-gradient(120deg,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, 0.7) 50%,
      rgba(255, 255, 255, 0) 100%);
  transform: skewX(-5deg);
}

/* 💡 Glow Layer */
.btn-animation::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  opacity: 0;
  transition: 0.4s;
}

/* Hover Effects */
.btn-animation:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 25px rgba(212, 43, 43, 0.4);
}

/* Animate Shine */
.btn-animation:hover::before {
  animation: waveMove 0.9s ease forwards;
}

/* Border Glow */
.btn-animation:hover::after {
  opacity: 1;
  transform: scale(1.05);
}

/* Keyframes */
@keyframes waveMove {
  0% {
    left: -80%;
  }

  100% {
    left: 130%;
  }
}

/* Icon Styling */
.btn-icon {
  width: 22px;
  transition: all 0.4s ease;
}

/* 🚀 Icon Animation */
.btn-animation:hover .btn-icon {
  transform: translateX(8px) rotate(5deg) scale(1.5);
}

/* ✨ Text subtle movement */
.btn-title {
  transition: 0.3s;
}

.btn-animation:hover .btn-title {
  letter-spacing: 0px;
}



/*  */


/* Section */
.rs-faq-sec {
  /* background: #E7EFF5 url("../img/diagonal-lines.png") 0 0; */
  /* background: -webkit-linear-gradient(0deg,rgba(231, 239, 245, 0.79) 0%, rgba(255, 255, 255, 0) 100%);
background: -moz-linear-gradient(0deg,rgba(231, 239, 245, 0.79) 0%, rgba(255, 255, 255, 0) 100%);
background: linear-gradient(0deg,rgba(231, 239, 245, 0.79) 0%, rgba(255, 255, 255, 0) 100%);
filter: progid:DXImageTransform.Microsoft.gradient(
  startColorstr="#E7EFF5",
  endColorstr="#FFFFFF",
  GradientType=0
); */
}

/* Item */
.rs-faq-custom .accordion-item {
  border: none;
  margin-bottom: 12px;
  border-radius: 8px;
  overflow: hidden;
}

/* Button */
.rs-faq-btn {
  background: #fff;
  display: flex;
  align-items: center;
  gap: 15px;
  font-weight: 600;
  padding: 18px 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}


.accordion-button.rs-faq-btn:not(.collapsed) {
  background: #001023;
  color: #fff;
  box-shadow: none;
}

/* Remove default arrow */
.rs-faq-btn::after {
  display: none;
}

/* Icon */
.faq-icon {
  font-size: 28px;
  font-weight: 700;
  transition: 0.3s;
}

/* Active state (- icon) */
.rs-faq-btn:not(.collapsed) .faq-icon {
  content: "-";
}

/* Body */
.rs-faq-custom .accordion-body {
  background: #fff;
  padding: 20px 20px 20px 55px;
  color: #111;
  font-size: 16px;
  line-height: 26px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

/* Green line */
.rs-faq-btn:not(.collapsed)::before {
  content: "";
  position: absolute;
  left: 20px;
  bottom: 0;
  width: 40px;
  height: 3px;
  background: #d42b2b;
}

/* Fix positioning */
.rs-faq-btn {
  position: relative;
}





/*  */



/* Background grid */
.rs-footer-sec {
  background: #010101 url("../img/hero-bg-image.pn") 0 0 no-repeat;
  background-size: cover;
  color: #fff;
  position: relative;
}

/* Grid overlay */
.rs-footer-sec::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 40px 40px;
  z-index: 0;
}

.rs-footer-sec .container {
  position: relative;
  z-index: 2;
}

/* Heading */
.rs-heading {
  font-size: 42px;
  font-weight: 600;
}

.rs-heading span {
  color: #e50914;
}

/* Menu */
.rs-menu {
  list-style: none;
  padding: 0;
}

.rs-menu li {
  margin-bottom: 8px;
  color: #aaa;
}

.rs-menu span {
  color: #e50914;
  margin-right: 10px;
}

/* Services */
.rs-services {
  list-style: none;
  padding: 0;
}

.rs-services li {
  margin-bottom: 8px;
  color: #ccc;
}

/* Contact Cards */
.rs-contact-card {
  padding: 20px;
  border-radius: 12px;
  position: relative;
}

.rs-contact-card.red {
  background: #e50914;
}

.rs-contact-card.dark {
  background: #1c1c1c;
}

.rs-contact-card small {
  display: block;
  color: #ddd;
}

.rs-contact-card h5 {
  margin: 5px 0 0;
}

/* Icon */
.rs-icon {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
}

/* Footer bottom */
.rs-footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.rs-social a {
  margin-left: 10px;
  color: #fff;
  text-decoration: none;
  transition: 0.3s;
}

.rs-social a:hover {
  color: #e50914;
}

/* Responsive */
@media (max-width: 768px) {
  .rs-heading {
    font-size: 28px;
  }
}

.swim-foot {
  position: absolute;
  left: 48%;
  max-width: 250px;
  top: 70%;
}




/* Mobile app developemnt */

.mobile-app-ser {
  background: #001023 url("../img/diagonal-lines.png") 0 0;
}



/* Section */
.rs-service-grid-outline{
  background: #071a2c;
  color: #fff;
}

/* Icon */
.rs-service-grid-outline .rs-icon {
  width: 40px;
  filter: invert(22%) sepia(92%) saturate(745%) hue-rotate(343deg) brightness(97%) contrast(104%);
  transition: 0.3s;
}

/* Grid Row */
.rs-service-grid-outline .rs-grid-row {
  position: relative;
}

/* Horizontal Divider */
.rs-service-grid-outline .rs-grid-row:first-child::after {
  content: "";
  position: absolute;
  bottom: 0px;
  left: 0;
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.2);
}

/* Grid Item */
.rs-service-grid-outline .rs-grid-item {
  padding: 30px 15px;
  position: relative;
  transition: 0.3s;
}

/* Vertical Divider */
.rs-service-grid-outline .rs-grid-item:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 20%;
  right: 0;
  width: 1px;
  height: 60%;
  background: rgba(255, 255, 255, 0.2);
}

/* Text */
.rs-service-grid-outline .rs-grid-item h6 {
  font-size: 14px;
  line-height: 1.6;
  color: #ddd;
}

/* 🔥 Hover Effects */
.rs-service-grid-outline .rs-grid-item:hover {
  background: rgba(255, 255, 255, 0);
}

.rs-service-grid-outline .rs-grid-item:hover .rs-icon {
  transform: scale(1.2);
}

/* Responsive */
@media (max-width: 991px) {
  .rs-service-grid-outline .rs-grid-item::after {
    display: none;
  }

  .rs-service-grid-outline .rs-grid-row:first-child::after {
    display: none;
  }
}


.ma-info {
  line-height: 1.7;
}




.dot-bg {
  position: relative;
  z-index: 1;
}

.dot-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #fff url("../img/pattern-dot.png") 0 0;
  opacity: 0.5;
  /* adjust here */
  z-index: -1;
}

.line-bg-dark {
  background: #001023 url('../img/diagonal-lines.png') 0 0;
}

.dot-bg-dark {
  background: #0b1320 url('../img/plans-bg.png') 0 0 no-repeat;
  background-size: cover;
}





/* Key features section css */

.key-features {
  background: #f8f8f8;
}

/* Title */
.key-features .kf-title {
  font-size: 32px;
  font-weight: 700;
  color: #111;
}

/* Description */
.key-features .kf-desc {
  font-size: 15px;
  color: #111;
  line-height: 1.6;
}


/* Phone Image */
.key-features .kf-phone img {
  max-width: 220px;
  transition: 0.4s ease;
}

.key-features .kf-phone img:hover {
  transform: translateY(-5px) scale(1.03);
}

/* Feature List */
.key-features .kf-list li {
  position: relative;
  padding-left: 36px;
  margin-bottom: 15px;
  font-size: 16px;
  color: #111;
  font-weight: 600;
}

/* Arrow Icon */
.key-features .kf-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  color: #e60023;
  font-weight: bold;
  background: url("../img/li-arrow.svg") 0 0 no-repeat;
  height: 26px;
  width: 26px;
}

/* Bottom Note */
.key-features .kf-note {
  font-size: 16px;
  color: #111;
  margin-top: 25px;
  line-height: 1.5;
}



/*  */


.dev-platform {
  position: relative;
  background: url('../img/dev-bg.jpg') no-repeat center center/cover;
  color: #fff;
}

/* Overlay */
.dev-platform::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
}

.dev-platform .container {
  position: relative;
  z-index: 2;
}

/* Title */
.dev-platform .dp-title {
  font-size: 34px;
  font-weight: 700;
}

/* Subtitle */
.dev-platform .dp-subtitle {
  max-width: 750px;
  margin: 0 auto;
  font-size: 15px;
  color: #fff;
  line-height: 1.6;
}

/* Card */
.dev-platform .dp-card {
  background: #f5f5f5;
  border-radius: 10px;
  padding: 25px 20px;
  text-align: left;
  height: 100%;
  transition: 0.3s ease;
}

/* Hover */
.dev-platform .dp-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

/* Icon */
.dev-platform .dp-icon img {
  width: 40px;
  height: 40px;
}

/* Card Title */
.dev-platform .dp-card-title {
  font-size: 18px;
  font-weight: 700;
  color: #111;
  margin: 10px 0;
  margin-bottom: 10px;
}

/* Card Text */
.dev-platform .dp-card-text {
  font-size: 14px;
  color: #111;
  line-height: 1.6;
}





/*  */


.industry-devlopment {
  position: relative;
  background: #0b1220 url("../img/diagonal-lines.png") 0 0;

  color: #fff;
  overflow: hidden;
}

/* subtle grid overlay */
.industry-devlopment::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 40px 40px;
  opacity: 0.3;
}

/* content above overlay */
.industry-devlopment .container {
  position: relative;
  z-index: 2;
}



/* Pill */
.industry-devlopment .ind-pill {
  display: flex;
  align-items: center;
  gap: 15px;
  background: #eee;
  color: #111;
  padding: 0px 38px 0px 0px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  transition: 0.3s ease;
}

/* Icon circle */
.industry-devlopment .ind-icon {
  width: 70px;
  height: 70px;
  background: #e60023;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.industry-devlopment .ind-icon img {
  width: 40px;
  height: 40px;
  filter: brightness(0) invert(1);
}

/* Hover */
.industry-devlopment .ind-pill:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}




/*  */

.effective-brochures {
  background: #f5f5f5;
}

/* Title */
.effective-brochures .eb-title {
  font-size: 34px;
  font-weight: 700;
  color: #222;
}

/* Headings */
.effective-brochures .eb-heading {
  font-size: 20px;
  font-weight: 700;
  color: #222;
  margin-bottom: 15px;
}

/* Text */
.effective-brochures .eb-text {
  font-size: 16px;

  line-height: 1.7;
}

/* Images */
.effective-brochures .eb-img {
  max-width: 450px;
  transition: 0.4s ease;
}

.effective-brochures .eb-img:hover {
  transform: scale(1.05) rotate(-1deg);
}

/* Button */
.effective-brochures .eb-btn {
  display: inline-block;
  background: #e60023;
  color: #fff;
  padding: 12px 25px;
  font-size: 13px;
  text-decoration: none;
  border-radius: 5px;
  transition: 0.3s ease;
}

.effective-brochures .eb-btn:hover {
  background: #c4001d;
}




/*  */


.why-number {}

/* Title */
.why-number .wn-title {
  font-size: 34px;
  font-weight: 700;
}

.why-number .wn-subtitle {
  font-size: 16px;

}

/* Card */
.why-number .wn-card {
  background: #fff;
  border-radius: 10px;
  min-height: 250px;
  padding: 25px 20px;
  position: relative;
  transition: 0.3s ease;
}

/* Number */
.why-number .wn-number {
  font-size: 48px;
  font-weight: 700;
  color: rgba(0, 0, 0, 0.2);
  font-family: "Bebas Neue", sans-serif;
  display: block;
  line-height: 1;
  margin-bottom: 15px;
}

/* Heading */
.why-number .wn-heading {
  font-size: 17px;
  font-weight: 700;
  color: #222;
  margin-bottom: 10px;
}

/* Text */
.why-number .wn-text {
  font-size: 15px;
  color: #111;
  line-height: 1.6;
}

/* Hover */
.why-number .wn-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

/* Button */
.why-number .wn-btn {
  background: #e60023;
  color: #fff;
  padding: 12px 25px;
  font-size: 13px;
  text-decoration: none;
  border-radius: 5px;
  transition: 0.3s ease;
}

.why-number .wn-btn:hover {
  background: #c4001d;
}

/* Responsive */
@media (max-width: 768px) {
  .why-number .wn-title {
    font-size: 26px;
  }

  .why-number .wn-number {
    font-size: 36px;
  }

  .why-number .wn-card {
    text-align: center;
  }
}




/*  */


.ecommerce-platforms {}

.ecommerce-platforms .ep-card {
  background: #fff;
  padding: 25px 15px;
  border-radius: 10px;
  text-align: center;
  transition: 0.3s ease;
  height: 100%;
}

.ecommerce-platforms .ep-card img {

  margin-bottom: 25px;
}

.ecommerce-platforms .ep-card h6 {
  font-size: 16px;
  color: #222;
  font-weight: 600;
}

.ecommerce-platforms .ep-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.ecommerce-platforms .ep-note {
  font-size: 16px;
  color: #fff;
}


.bg-red {
  background: rgb(222, 21, 21);
}

.text-red {
  color: #DE1515 !important;
}



.rs-marquee {
  width: 100%;
  overflow: hidden;
  background: #e60023;
  padding: 12px 0;
}

.rs-marquee-track {
  display: flex;
  width: max-content;
  gap: 60px;
  animation: scroll-marquee 20s linear infinite;
}

.rs-marquee-track span {
  color: #fff;
  font-weight: 400;
  font-size: 22px;
  white-space: nowrap;
}

/* Animation */
@keyframes scroll-marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .rs-marquee-track span {
    font-size: 14px;
  }

  .rs-marquee-track {
    gap: 30px;
    animation-duration: 15s;
  }
}


/*  */




.email-campaign-types {}

/* Card Base */
.email-campaign-types .ect-card {
  background: #fff;
  padding: 25px 20px;
  border-radius: 8px;
  transition: 0.3s ease;
  min-height: 250px;
  height: 100%;
}

/* Highlight Card */
.email-campaign-types .ect-highlight {
  background: #e60023;
  color: #fff;
}

.email-campaign-types .ect-highlight .ect-title {
  color: #fff;
}

/* Title */
.email-campaign-types .ect-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 10px;
}

/* Heading */
.email-campaign-types .ect-heading {
  font-size: 20px;
  font-weight: 700;
  color: #222;
  margin-bottom: 10px;
}

/* Text */
.email-campaign-types .ect-text {
  font-size: 13px;
  color: #111;
  line-height: 1.6;
}

/* Icon */
.email-campaign-types .ect-icon {
  width: 80px;
  height: 80px;
}

/* Hover */
.email-campaign-types .ect-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.25);
}

/* Responsive */
@media (max-width: 768px) {
  .email-campaign-types .ect-card {
    text-align: center;
  }
}



.why-slider {
  background: url("../img/why-bg.jpg") 0 0 no-repeat;
  background-size: cover;
}

.swiper-wrap .wn-number,
.swiper-wrap .wn-heading,
.swiper-wrap p {
  color: #fff;
}

.swiper-wrap .wn-heading {
  font-size: 30px;
  font-weight: 400;
}

.swiper-wrap .wn-card {
  background: #c4001d;
  min-height: 380px;
}








/*  */

.hosting-app {
  min-height: auto;
  display: flex;
  align-items: center;
  padding: 80px 0;
  overflow: hidden;
}

@media(min-width:993px) {

  .hosting-app {
    min-height: 100vh;
  }

}




/* Background */
.hosting-app .hero-bg {
  position: absolute;
  inset: 0;
  background: url("../img/hero-happ.jpg") no-repeat center center/cover;
  z-index: 1;
}

/* Overlay */
.hosting-app .hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 2;
}

/* Title */
.hosting-app .hero-title {
  font-size: 42px;
  font-weight: 600;
}

@media (max-width: 768px) {
  .hosting-app .hero-title {
    font-size: 28px;
  }
}

/* Icons */
.hosting-app .hosting-item img {
  height: 50px;
  margin-bottom: 10px;
  filter: brightness(0) invert(1);
  transition: 0.3s;
}

.hosting-app .hosting-item p {
  font-size: 14px;
  margin: 0;
}

/* Hover */
.hosting-app .hosting-item:hover img {
  transform: scale(1.1);
}






/*  */


.uae-host {
  position: relative;
  padding: 80px 0;
}

.uae-host::before {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: #DE1515;
  height: 200px;
  content: "";
}



/* Title */
.uae-host .uae-title {
  font-size: 36px;
  font-weight: 600;
  margin-bottom: 15px;
}

/* Subtitle */
.uae-host .uae-subtitle {
  color: #fff;
  font-size: 16px;
}

/* Buttons */
.uae-host .uae-btn {
  display: inline-block;
  background: #e50914;
  color: #fff;
  padding: 10px 22px;
  border-radius: 30px;
  font-size: 16px;
  text-decoration: none;
  transition: 0.3s;
  font-weight: 700;
}

.uae-host .uae-btn:hover {
  background: #c40811;
  transform: translateY(-2px);
}

/* Description */
.uae-host .uae-desc {
  color: #fff;
  font-size: 14px;
}

/* Responsive */
@media (max-width: 768px) {
  .uae-host .uae-title {
    font-size: 24px;
  }

  .uae-host .uae-btn {
    font-size: 13px;
    padding: 8px 16px;
  }
}




/*  */




.all-hosting {}

/* Box spacing */
.all-hosting .hosting-box {
  padding: 20px 10px;
}

/* Title */
.all-hosting .hosting-title {
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #222;
}

/* Subtitle */
.all-hosting .hosting-subtitle {
  font-size: 15px;
  color: #555;
  margin-bottom: 20px;
}

/* List */
.all-hosting .hosting-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.all-hosting .hosting-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
  font-size: 15px;
  color: #333;
}

/* Red check icon */
.all-hosting .hosting-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #e50914;
  font-weight: bold;
}

/* Responsive */
@media (max-width: 768px) {
  .all-hosting .hosting-title {
    font-size: 20px;
  }

  .all-hosting .hosting-list li {
    font-size: 14px;
  }
}




/*  */


.host-loc {}

/* Map Wrapper */
.host-loc .map-wrapper {
  position: relative;
  max-width: 900px;
  margin: auto;
}

/* Map */
.host-loc .world-map {
  opacity: 0.8;
}

/* Location Dot */
.host-loc .location-point {
  position: absolute;
  top: 57%;
  left: 60%;
  width: 14px;
  height: 14px;
  background: #e50914;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

/* Pulse Animation */
.host-loc .location-point::before {
  content: "";
  position: absolute;
  width: 30px;
  height: 30px;
  background: rgba(229, 9, 20, 0.6);
  border-radius: 50%;
  top: -8px;
  left: -8px;
  animation: pulse 1.8s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(0.5);
    opacity: 1;
  }

  100% {
    transform: scale(1.8);
    opacity: 0;
  }
}

/* Line Animation */
.host-loc .location-line {
  position: absolute;
  top: 45%;
  left: 45%;
  width: 120px;
  height: 2px;
  background: #e50914;
  transform: rotate(25deg);
  transform-origin: left;
  animation: drawLine 2s ease forwards;
}

@keyframes drawLine {
  from {
    width: 0;
  }

  to {
    width: 120px;
  }
}

/* Label */
.host-loc .location-label {
  position: absolute;
  top: 40%;
  left: 30%;
  background: #fff;
  color: #e50914;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 500;
  animation: fadeIn 2.5s ease;
}

.host-loc .flag {
  margin-right: 5px;
}

/* Fade Animation */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}






/*  */


.hosting-info {}

/* Box */
.hosting-info .info-box {
  padding: 20px;
}

/* Number */
.hosting-info .info-number {
  font-size: 60px;
  font-weight: 700;
  color: #e50914;
  margin-bottom: 15px;
  font-family: "Bebas Neue", sans-serif;
}

/* Title */
.hosting-info .info-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 15px;
}

/* Text */
.hosting-info .info-text {
  font-size: 16px;
  color: #ccc;
  line-height: 1.7;
}

/* Button */
.hosting-info .info-btn {
  background: #e50914;
  color: #fff;
  padding: 10px 22px;
  border-radius: 5px;
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s;
}

.hosting-info .info-btn:hover {
  background: #c40811;
  transform: translateY(-2px);
}

/* Divider line */
.hosting-info .border-start {
  border-left: 1px solid rgba(229, 9, 20, 0.4) !important;
}

/* Responsive */
@media (max-width: 991px) {
  .hosting-info .border-start {
    border-left: none !important;
    border-top: 1px solid rgba(229, 9, 20, 0.4);
    padding-top: 30px;
  }

  .hosting-info .info-number {
    font-size: 40px;
  }
}





/*  */




/* Parent setup (important) */
.grd-top-sb,
.grd-bottom-sb {
  position: relative;
  overflow: hidden;
}

/* TOP Gradient */
.grd-top-sb::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;

  background: linear-gradient(to bottom,
      rgba(231, 239, 245, 0.8) 0%,
      /* start color */
      rgba(0, 0, 0, 0) 100%);
}

/* BOTTOM Gradient */
.grd-bottom-sb::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(to top,
      rgba(231, 239, 245, 0.9) 0%,
      /* bottom color */
      rgba(0, 0, 0, 0) 100%);
}

/* Ensure content stays above */
.grd-top-sb>*,
.grd-bottom-sb>* {
  position: relative;
  z-index: 2;
}




/*  */


/* Footer Links Styling */
.rs-services li a {
  color: #fff;
  /* default white */
  text-decoration: none;
  transition: all 0.3s ease;
}

/* Hover Effect */
.rs-services li a:hover {
  color: #ff3b3b;
  /* red on hover (change if needed) */
}

/* Optional: smooth underline effect */
.rs-services li a {
  position: relative;
}

.rs-services li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0%;
  height: 2px;
  background: #ff3b3b;
  transition: 0.3s;
}

.rs-services li a:hover::after {
  width: 100%;
}




/*  */



.email-campaign-types {}

/* Card Base */
.card-icon-types .ect-card {
  background: #fff;
  padding: 25px 20px;
  border-radius: 8px;
  transition: 0.3s ease;
  min-height: 250px;
  height: 100%;
}

/* Highlight Card */
.card-icon-types .ect-highlight {
  background: #e60023;
  color: #fff;
}

.card-icon-types .ect-highlight .ect-title {
  color: #fff;
}

/* Title */
.card-icon-types .ect-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 10px;
}

/* Heading */
.card-icon-types .ect-heading {
  font-size: 20px;
  font-weight: 700;
  color: #222;
  margin-bottom: 10px;
}

/* Text */
.card-icon-types .ect-text {
  font-size: 14px;
  color: #111;
  line-height: 1.6;
}

/* Icon */
.card-icon-types .ect-icon {
  width: 80px;
  height: 80px;
}

/* Hover */
.card-icon-types .ect-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.25);
}

/* Responsive */
@media (max-width: 768px) {
  .card-icon-types .ect-card {
    text-align: center;
  }
}





/*  */

p {
  line-height: 1.7;
}


.dubizzle-clone-features {
  background: #001023 url("../img/diagonal-lines.png") 0 0;
}

.dubizzle-clone-features .accordion-button {
  font-weight: 600;
  background: #fff;
  color: #e60023;
  position: relative;
  padding-right: 40px;
  box-shadow: none;
  border: 0;
}

/* ACTIVE STATE */
.dubizzle-clone-features .accordion-button:not(.collapsed) {
  background: #e60023;
  color: #fff;
}

/* PLUS ICON */
.dubizzle-clone-features .accordion-button::after {
  content: '+';
  font-size: 20px;
  font-weight: bold;
  position: absolute;
  right: 15px;
  background-image: none;
  transform: none;
  color: inherit;
}

/* MINUS ICON */
.dubizzle-clone-features .accordion-button:not(.collapsed)::after {
  content: '-';
}

/* BODY */
.dubizzle-clone-features .accordion-body {
  background: #fff;
}

/* LIST STYLE */
.dubizzle-clone-features ul {
  padding-left: 15px;
  margin: 0;
}

.dubizzle-clone-features ul li {
  padding: 6px 0;
  font-size: 14px;
  border-bottom: 1px solid #eee;
}



/*  */



.admin-features .accordion-button {
  font-weight: 600;
  background: #fff;
  color: #e60023;
  position: relative;
  padding-right: 40px;
  box-shadow: none;
}

/* ACTIVE */
.admin-features .accordion-button:not(.collapsed) {
  background: #e60023;
  color: #fff;
}

/* PLUS */
.admin-features .accordion-button::after {
  content: '+';
  font-size: 20px;
  font-weight: bold;
  position: absolute;
  right: 15px;
  background-image: none;
  transform: none;
  color: inherit;
}

/* MINUS */
.admin-features .accordion-button:not(.collapsed)::after {
  content: '-';
}

/* BODY */
.admin-features .accordion-body {
  background: #fff;
}

/* LIST */
.admin-features ul {
  padding-left: 15px;
  margin: 0;
}

.admin-features ul li {
  padding: 6px 0;
  font-size: 14px;
  border-bottom: 1px solid #eee;
}





/*  */



.daily-features {
  background: #f5f5f5;
  border-radius: 10px;
  overflow: hidden;
  font-family: inherit;
}

/* HEADER */
.daily-features .df-header {
  background: #111;
  color: #fff;
  font-weight: 600;
  padding: 16px 20px;
}

/* ROW BASE */
.daily-features .df-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  border-bottom: 1px solid #eee;
  background: #fff;
  color: #111;
  position: relative;
  transition: all 0.35s ease;
}

/* LEFT / RIGHT WIDTH */
.daily-features .df-row>div:first-child {
  width: 75%;
}

.daily-features .df-right {
  width: 25%;
  text-align: center;
}

/* CHECK ICON DEFAULT */
.daily-features .check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #fff;
  color: #fff;
  font-size: 14px;
  transition: all 0.35s ease;
}

/* CREATIVE HOVER EFFECT */
.daily-features .df-row::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 0;
  background: #e60023;
  transition: width 0.35s ease;
  z-index: 0;
}

/* HOVER */
.daily-features .df-row:hover::before {
  width: 100%;
}

.daily-features .df-row:hover {
  color: #fff;
  transform: scale(1.01);
}

/* TEXT ABOVE BACKGROUND */
.daily-features .df-row>div {
  position: relative;
  z-index: 1;
}

/* CHECK ICON ON HOVER */
.daily-features .df-row:hover .check {
  background: #fff;
  color: #e60023;
}

/* LAST ROW */
.daily-features .highlight {
  background: #fff3f5;
}






/*  */


.image-box {
  width: 100%;
  height: 300px;
  /* adjust as needed */
  overflow: hidden;
}

.image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* or contain */
}



.rotate-img-10 {
  transform: rotate(4deg);
}

.rotate-img--10 {
  transform: rotate(-4deg);
}

.p-image-box {

  overflow: hidden;
  border-radius: 12px;
}

.p-image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}




/*  */

.about-features {
  background: url("../img/about-bg5.jpg") 0 0 no-repeat;
  background-size: cover;
}

.dc-features {
  background: url("../img/rs-features.jpg") -260px 0 no-repeat;
}

.sms-target-ser {
  background: url("../img/hero-happ.jpg") -560px 0 no-repeat;
}

.parent-div img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}




.ext-title {
  font-size: 60px;
}

/* responsive */


.redlight-background {
  background: #FFEEEF;
}

.bluelight-background {
  background: rgba(231, 239, 245, 1);
}



.darkblue-line {
  background: #001023 url("../img/diagonal-lines.png") 0 0;
}

/* Home page */

.google-box img {
  background: #fff;
  padding: 10px;
  border-radius: 10px;
}



/*  */
#stak-sec .container {
  background: #fff;
  border: 1px solid #eee;
  padding: 0px 15px;
  border-radius: 20px;
  position: relative;
  z-index: 1;
  box-shadow: 0px 10px 0 #e60023;
}

.stack-no {
  color: #e60023;
  font-size: 60px;
  font-weight: 600;
}

.stack-desc h4 {
  font-size: 17px;
}

.stak-wrap {
  padding: 0 20px;
}


.stak-sec::before {
  background: #fff;
  content: "";
  position: absolute;
  top: 0;
  height: 50%;
  width: 100%;
}

.stak-sec {
  position: relative;
}



/* home contact form */

.home-form {
  background-color: #DF1F26;
  color: #fff;
  border-radius: 8px;
  padding: 40px 20px;
}


.home-form h3 {
  font-weight: 500;
  font-size: 40px;
}

.home-form .form-control,
.home-form .form-select {
  background: transparent;
  border: none;
  border-bottom: 1px solid #fff;
  border-radius: 0;
  color: #fff;
}

.home-form .form-control::placeholder,
.home-form .form-select {
  color: #fff;
}


/* Remove default Bootstrap 5 focus border and shadow */
.home-form .form-control:focus,
.home-form .form-select:focus {
  box-shadow: none !important;
  /* remove shadow */
  border-color: #fff !important;
  /* optional: keep bottom border color consistent */
  outline: none !important;
  /* remove default outline */
}

.home-form .form-select option {
  color: #fff;
  /* dropdown options in black */
}

.home-form .btn-light {
  background-color: #fff;
  color: #DF1F26;
  font-weight: 600;
  border-radius: 50px;
}

.home-form .btn-light:hover {
  background-color: #f2f2f2;
}

.home-form h4 {
  font-weight: 500;
}


.form-extinfo p {
  font-size: 28px;
  line-height: 50px;
}

.form-extinfo h4 {
  font-size: 40px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px dashed #fff;
}


.hfaq-c .container {
  position: relative;
  z-index: 1;
}

.hfaq-c {
  position: relative;
  border-bottom: 100px;
}

.hfaq-c::after {
  content: "";
  height: 150px;
  width: 100%;
  bottom: 0;
  position: absolute;
  background: #fff;
}



/* video play button */

/* Centered Play Button */
.play-btn {
  position: absolute;
  top: 42%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  animation: pulse 1.5s infinite;
  transition: background 0.3s;
}

.play-btn::before {
  content: "";
  border-style: solid;
  border-width: 15px 0 15px 25px;
  border-color: transparent transparent transparent #DF1F26;
  /* Red triangle */
  margin-left: 5px;
}

.play-btn:hover {
  background: rgba(255, 255, 255, 0.9);
}

/* Pulse animation */
@keyframes pulse {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }

  50% {
    transform: translate(-50%, -50%) scale(1.2);
    opacity: 0.7;
  }

  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }
}


.mout-bg {
  background: url("../img/bg-7.jpg") bottom center no-repeat;
  background-size: cover;
}


.icon-square i {
  color: #DE1515;
}



/*  */

.hero-main {
  background: #f2f2f2
}

.hero-main .container.hero-container {
  background: #DE1515;
  z-index: 99;
  position: relative;
}

.hero-main {}

.hero-main .section-title h1 {
  color: #fff;
  font-size: 58px;
}

.hero-main .section-title p {
  color: #fff;
}

.home-serv {}


/*  */



.hswiper-arrow {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -10px;
  width: 100px;
  height: 50px;
  margin: auto;
}



/* Optional: make arrows circular with long appearance */
.homeSwiper .swiper-button-prev::after,
.homeSwiper .swiper-button-next::after {
  font-size: 24px;
  font-weight: bold;
  color: #fff;
}

/* Make each slide full height and vertically center content */
.homeSwiper .swiper-slide {
  display: flex;
  align-items: center;
  /* vertical center */
  min-height: 50vh;
  /* optional: full viewport height */
}


@media(max-width:1199px) {
  .homeSwiper .swiper-slide {

    min-height: auto;
    /* optional: full viewport height */
  }

}


/* Optional: ensure row also takes full height */
.homeSwiper .swiper-slide .row {
  width: 100%;
  align-items: center;
  /* vertical center in row */
}



@media (max-width: 991px) {


  .rs-text {
    font-size: clamp(16px, 2vw, 24px);
  }

  .hero-banner .container {
    padding-top: 30px !important;
  }

  .hero-titleinner {
    text-align: center;
  }

  .rotate-img-10 {
    transform: none !important;
  }

  .rs-desc {
    padding-right: 0 !important;
  }
}

@media (max-width: 992px) {
  .hero-titleinner {
    font-size: 54px;
  }

  .rs-circle-btn {
    width: 115px;
    height: 115px;
  }

  .p-image-box {
    margin-bottom: 15px;
  }

  .rotate-img-10,
  .rotate-img--10 {
    transform: none !important;
  }

  #re-portal .row {
    text-align: center;
  }

  .ect-card {
    text-align: center;
    align-items: center;
  }

  .ect-icon {
    margin-left: auto;
    margin-right: auto;
    display: block;
  }





  /*  */
  .review-sec {
    padding: 0;
  }

}





.floating-whatsapp {
  position: fixed;
  right: 25px;
  bottom: 25px;
  width: 65px;
  height: 65px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.35);
  animation: whatsapp-shake 2s infinite;
  transition: all 0.3s ease;
}

.floating-whatsapp img {
  width: 34px;
  height: 34px;
}

.floating-whatsapp:hover {
  transform: scale(1.1);
  background: #20ba5a;
}

@keyframes whatsapp-shake {

  0%,
  100% {
    transform: rotate(0deg);
  }

  10% {
    transform: rotate(-12deg);
  }

  20% {
    transform: rotate(12deg);
  }

  30% {
    transform: rotate(-12deg);
  }

  40% {
    transform: rotate(12deg);
  }

  50% {
    transform: rotate(0deg);
  }
}



/* whatspp button fixed */
.floating-whatsapp {
  width: 55px;
  height: 55px;
  right: 15px;
  bottom: 85px;
}

.floating-whatsapp img {
  width: 28px;
  height: 28px;
}




.svg-icon-54 {
  width: 54px;
}





/* home carusel */


/*** Carousel Start ***/

.carousel-item {
  position: relative;
}

.carousel-item::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, .8) url(../img/diagonal-lines.png) 0 0;
}

.carousel-item img {
  width: 100%;
  object-fit: cover;
}

#carouselId h6 {
  font-weight: 400;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

#carouselId h1 {
  font-weight: 700;
  font-size: 4em;
  letter-spacing: 1px;
}

.carousel-caption {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.carousel-item p {
  max-width: 700px;
  margin: 0 auto 35px auto;
}

.carousel-control-prev {
  width: 90px;
  height: 60px;
  position: absolute;
  top: 50%;
  left: 0;
  background: #c40811;
  border-radius: 0 50px 50px 0;
  opacity: 1;
}

.carousel-control-prev:hover {
  background: var(--bs-secondary);
  transition: .8s;
}

.carousel-control-next {
  width: 90px;
  height: 60px;
  position: absolute;
  top: 50%;
  right: 0;
  background: #c40811;
  border-radius: 50px 0 0 50px;
  opacity: 1;
}

.carousel-control-next:hover {
  background: var(--bs-secondary);
  transition: .8s;
}

.carousel-caption .carousel-content a button.carousel-content-btn1 {
  background: #c40811;
  color: #fff;
  opacity: 1;
  border: 0;
  border-radius: 20px;
}

.carousel-caption .carousel-content a button.carousel-content-btn1:hover {
  background: #111;
  color: #ffffff;
  border: 0;
  opacity: 1;
  transition: 1s;
  border-radius: 20px;
}

.carousel-caption .carousel-content a button.carousel-content-btn2 {
  background: ;
  color: var(--bs-white);
  opacity: 1;
  border: 0;
  border-radius: 20px;
}

.carousel-caption .carousel-content a button.carousel-content-btn2:hover {
  background: var(--bs-secondary);
  color: var(--bs-dark);
  border: 0;
  opacity: 1;
  transition: 1s;
  border-radius: 20px;
}

#carouselId .carousel-indicators li {
  width: 30px;
  height: 10px;
  background: var(--bs-primary);
  margin: 10px;
  border-radius: 30px;
  opacity: 1;
}

#carouselId .carousel-indicators li:hover {
  background: var(--bs-secondary);
  opacity: 1;
}

@media (max-width: 992px) {
  .carousel-item {
    min-height: 500px;
  }

  .carousel-item img {
    min-height: 500px;
    object-fit: cover;
  }

  .carousel-item h1 {
    font-size: 40px !important;
  }

  .carousel-item p {
    font-size: 16px !important;
  }
}

@media (max-width: 768px) {
  .carousel-item {
    min-height: 400px;
  }

  .carousel-item img {
    min-height: 400px;
    object-fit: cover;
  }

  .carousel-item h1 {
    font-size: 28px !important;
  }

  .carousel-item p {
    font-size: 14px !important;
  }
}


/* portfolio filter custome */

/* 
#portfolio .portfolio-filter-wrapper {
    margin: 40px 0;
}

#portfolio .portfolio-filter-box {
    display: flex;
    align-items: center;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

#portfolio .portfolio-filter-select {
    min-width: 280px;
    height: 50px;
    padding: 0 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 15px;
    background: #fff;
    cursor: pointer;
    outline: none;
    transition: 0.3s;
}

#portfolio .portfolio-filter-select:focus {
    border-color: #dc3545;
    box-shadow: 0 0 10px rgba(220,53,69,0.15);
}

#portfolio .youtube-btn {
    height: 50px;
    padding: 0 25px;
    background: #ff0000;
    color: #fff;
    border-radius: 6px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    transition: 0.3s;
}

#portfolio .youtube-btn:hover {
    background: #d40000;
    color: #fff;
}

#portfolio .youtube-btn i {
    font-size: 20px;
}

@media (max-width: 768px) {

    #portfolio .portfolio-filter-box {
        flex-direction: column;
    }

    #portfolio .portfolio-filter-select, #portfolio .youtube-btn {
        width: 100%;
        max-width: 350px;
    }
} */




#portfolio .portfolio-filter-wrapper {
  margin: 40px 0;
}

#portfolio .portfolio-actions {
  display: flex;
  justify-content: end;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
}

#portfolio .filter-dropdown {
  position: relative;
}

#portfolio .filter-btn {
  background: #111;
  color: #fff;
  border: 0;
  padding: 12px 20px;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
  transition: .3s;
}

#portfolio .filter-btn:hover {
  background: #d40000;
}

#portfolio .filter-btn i {
  margin-right: 6px;
}

#portfolio .filter-menu {
  position: absolute;
  top: 55px;
  left: 0;
  min-width: 260px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .15);
  padding: 10px 0;
  margin: 0;
  list-style: none;
  display: none;
  z-index: 9999;
}

#portfolio .filter-menu.show {
  display: block;
}

#portfolio .filter-menu li {
  padding: 12px 20px;
  cursor: pointer;
  transition: .3s;
  color: #333;
  font-size: 15px;
}

#portfolio .filter-menu li:hover,
#portfolio .filter-menu li.active {
  background: #d42b2b;
  color: #fff;
}

#portfolio .youtube-btn {
  background: #d42b2b;
  color: #fff;
  text-decoration: none;
  padding: 12px 20px;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  transition: .3s;
}

#portfolio .youtube-btn:hover {
  background: #111;
  color: #fff;
}

#portfolio .youtube-btn i {
  font-size: 18px;
}

@media (max-width: 768px) {

  #portfolio .portfolio-actions {
    justify-content: center;
  }

  #portfolio .filter-menu {
    min-width: 220px;
    left: 50%;
    transform: translateX(-50%);
  }

}



/* home FAQ */

.home-faq {
  position: relative;
}

.home-faq .container {
  max-width: 1200px;
}

.home-faq h2 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 10px;
}

.home-faq p {
  color: #777;
}

.home-faq .accordion-item {
  border: none;
  border-radius: 15px;
  overflow: hidden;
  margin-bottom: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
  background: #fff;
}

.home-faq .accordion-button {
  background: #fff;
  color: #222;
  font-size: 16px;
  font-weight: 600;
  padding: 18px 20px;
  box-shadow: none;
  border: none;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.home-faq .accordion-button:not(.collapsed) {
  background: #d20000;
  color: #fff;
}

.home-faq .accordion-button::after {
  display: none;
}

.home-faq .accordion-button::before {
  content: "+";
  width: 28px;
  height: 28px;
  margin-right: 12px;
  border-radius: 50%;
  background: #f4f4f4;
  color: #d20000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 400;
  font-size: 20px;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.home-faq .accordion-button:not(.collapsed)::before {
  content: "−";
  background: #fff;
  color: #d20000;
}

.home-faq .accordion-body {
  padding: 20px;
  color: #666;
  line-height: 2.1;
  background: #fff;
}

.home-faq .col-lg-6:first-child .accordion-item {
  border-left: 4px solid #d20000;
}

.home-faq .col-lg-6:last-child .accordion-item {
  border-left: 4px solid #0A2540;
}

/* Smooth Collapse Animation & Fix 2s Blank Delay */
.accordion-collapse.collapse {
  transition: none !important;
}

.accordion-collapse.collapsing {
  height: 0;
  overflow: hidden;
  transition: height 0.35s ease !important;
}

.accordion-collapse.collapse:not(.show) {
  display: none !important;
}

.accordion-collapse.collapse.show {
  display: block !important;
}

@media (max-width: 991px) {
  .home-faq h2 {
    font-size: 32px;
  }
}



/* home form ful width css */
.form-sec {
  position: relative;
  background: #111 url("../img/form-bg.jpg") center center no-repeat;
  background-size: cover;
  padding: 35px 0;
  overflow: hidden;
}

.form-sec::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(210, 0, 0, 0.45), transparent 28%),
    radial-gradient(circle at 80% 80%, rgba(255, 170, 0, 0.18), transparent 25%),
    linear-gradient(135deg, rgba(0, 0, 0, 0.86), rgba(20, 0, 0, 0.78));
  z-index: 0;
}

.form-sec::after {
  content: "";
  position: absolute;
  width: 380px;
  height: 380px;
  right: -140px;
  top: -120px;
  background: rgba(210, 0, 0, 0.2);
  filter: blur(10px);
  border-radius: 45% 55% 35% 65%;
  animation: formGlowMove 8s ease-in-out infinite;
}

.form-sec .mid_sec {
  padding: 30px 20px;
  background: rgba(255, 255, 255, 0.26);
  max-width: 1320px;
  border-radius: 20px;
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
}

.form-sec .req_block_left {
  padding: 25px;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-radius: 10px;
}

.form-sec .req_block_left .h5 {
  color: #fff;
  font-size: 30px;
  line-height: 1.2;
  font-weight: normal;
  text-transform: uppercase;
}

.form-sec .req_block_left p {
  line-height: 23px;
}

.form-sec .req_block {
  width: 100%;
  background: transparent;
}

.form-sec .req_block_right {
  padding: 0;
}

.form-sec .home-input-cus .req_input {
  width: 100%;
  background: transparent;
  border-bottom: 1px solid #fff;
  border-radius: 0;
  padding: 15px 0;
  color: #fff;
}

.form-sec .home-input-cus .req_input::placeholder,
.req_textarea::placeholder {
  color: #fff !important;

}

.form-sec .req_selected,
.form-sec .req_textarea {
  background-color: transparent;
  font-family: "Inter", sans-serif !important;
  border-width: 0 0 1px 0;
  border-color: #fff;
  border-style: solid;
  border-radius: 0;
  color: #fff;
}

.home .iti__selected-dial-code {
  color: #fff;
}

.form-sec select option {
  color: #000;
}


.form-sec .req_textarea {
  padding: 15px 0;
}


.form-sec {
  position: relative;
}

.form-sec .req_input,
.form-sec .req_selected,
.form-sec .req_textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid #fff;
  border-radius: 0;
  padding: 17px 0;
  color: #fff;
  font-size: 16px;
  outline: none;
  box-shadow: none;
}

.form-sec .req_input::placeholder,
.form-sec .req_textarea::placeholder {
  color: rgba(255, 255, 255, 0.8);
}

.form-sec .req_input:focus,
.form-sec .req_selected:focus,
.form-sec .req_textarea:focus {
  border-bottom: 1px solid #fff;
  background: transparent;
  outline: none;
  box-shadow: none;
}

.form-sec .req_selected option {
  color: #222;
  background: #fff;
}

.form-sec .send {
  background: #fff;
  color: #000;
  border: none;
  padding: 12px 35px;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.form-sec .send:hover {
  background: #d20000;
  color: #fff;
}

.form-sec label {
  display: none;
}

.form-sec .req_block_left .h5,
.form-sec .req_block_left p {
  color: #fff;
}



.form-sec .phone-field {
  display: flex;
  align-items: center;
  gap: 15px;
  border-bottom: 1px solid #fff;
}

.form-sec .country-code {
  width: 110px;
  min-width: 110px;
  background: transparent;
  border: none;

  color: #fff;
  /* padding: 12px 0; */
  outline: none;
}

.form-sec .country-code option {
  color: #222;
  background: #fff;
}

.form-sec .phone-field .req_input {
  flex: 1;
  margin-bottom: 0 !important;
}

@media (max-width: 576px) {

  .form-sec .phone-field {
    gap: 10px;
  }

  .form-sec .country-code {
    width: 90px;
    min-width: 90px;
    font-size: 14px;
  }

}



/* video effect */

.video-grow-sec .section-title {
  margin-bottom: 30px;
}

.video-grow-sec .video-grow-wrap {
  width: 250px;
  max-width: 100%;
  margin: 0 auto;
  transition: width 1s ease;
}

.video-grow-sec .video-grow-wrap.aos-animate {
  width: 100%;
}

.video-grow-sec .video-link {
  position: relative;
  display: block;
  width: 100%;
}

.video-grow-sec .video-thumb {
  width: 100%;
  display: block;
  object-fit: cover;
}




/*  */


.rs-team-intro {
  position: relative;
}

.rs-team-intro .section-title {
  position: relative;
  padding: 40px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.65);
  overflow: hidden;
}

.rs-team-intro .section-title::before {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  right: -60px;
  top: -60px;
  background: rgba(210, 0, 0, 0.12);
  border-radius: 50%;
}

.rs-team-intro .section-title::after {
  content: "";
  position: absolute;
  width: 90px;
  height: 4px;
  left: 40px;
  bottom: 25px;
  background: #d20000;
  border-radius: 30px;
}

.rs-team-intro .section-title>* {
  position: relative;
  z-index: 2;
}

.rs-team-intro .rs-team-label {
  display: inline-block;
  margin-bottom: 18px;
  padding: 7px 16px;
  border-radius: 30px;
  background: #d20000;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.6px;
  text-transform: uppercase;
}

.rs-team-intro h2 {
  color: #0A2540;
  line-height: 1.3;
}

.rs-team-intro p {
  color: #333;
  line-height: 1.8;
  margin-bottom: 0;
}



/* stand out section home */


#rs-growth-sec.rs-growth-sec {
  position: relative;
  overflow: hidden;
}

#rs-growth-sec.rs-growth-sec .rs-growth-inner {
  position: relative;
  padding: 55px;
  border-radius: 35px;
  background-blend-mode: multiply;
  overflow: hidden;
  isolation: isolate;
}

#rs-growth-sec.rs-growth-sec .rs-growth-inner::before {
  content: "";
  position: absolute;
  width: 320px;
  height: 320px;
  right: -120px;
  top: -120px;
  border-radius: 50%;
  background: #d20000;
  opacity: 0;
  mix-blend-mode: multiply;
  z-index: -1;
}

#rs-growth-sec.rs-growth-sec .rs-growth-inner::after {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  left: -90px;
  bottom: -90px;
  border-radius: 50%;
  background: #0a2540;
  opacity: 0;
  mix-blend-mode: multiply;
  z-index: -1;
}

#rs-growth-sec.rs-growth-sec .rs-growth-tag {
  display: inline-block;
  margin-bottom: 16px;
  padding: 7px 18px;
  border-radius: 50px;
  background: #d20000;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

#rs-growth-sec.rs-growth-sec h2 {
  color: #0a2540;
  line-height: 1.3;
}

#rs-growth-sec.rs-growth-sec .rs-growth-card {
  position: relative;
  padding: 35px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 20px 50px rgba(10, 37, 64, 0.08);
  overflow: hidden;
}

#rs-growth-sec.rs-growth-sec .rs-growth-card::before {
  content: "";
  position: absolute;
  width: 90px;
  height: 5px;
  left: 35px;
  top: 0;
  background: #d20000;
  border-radius: 0 0 30px 30px;
}

#rs-growth-sec.rs-growth-sec .rs-growth-no {
  display: block;
  margin-bottom: 20px;
  font-size: 52px;
  font-weight: 800;
  line-height: 1;
  color: rgba(210, 0, 0, 0.18);
}

#rs-growth-sec.rs-growth-sec .rs-growth-card p {
  margin-bottom: 0;
  color: #333;
  line-height: 1.8;
  font-size: 15px;
}

#rs-growth-sec.rs-growth-sec .rs-growth-img {
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  min-height: 100%;
  box-shadow: 0 25px 60px rgba(10, 37, 64, 0.16);
}

#rs-growth-sec.rs-growth-sec .rs-growth-img::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(210, 0, 0, 0.28), rgba(10, 37, 64, 0.28));
  mix-blend-mode: multiply;
  z-index: 1;
  pointer-events: none;
}

#rs-growth-sec.rs-growth-sec .rs-growth-img img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

#rs-growth-sec.rs-growth-sec .rs-growth-img:hover img {
  transform: scale(1.06);
}

@media (max-width: 991px) {
  #rs-growth-sec.rs-growth-sec .rs-growth-inner {
    padding: 35px 25px;
  }

  #rs-growth-sec.rs-growth-sec .rs-growth-img img {
    min-height: 320px;
  }
}





/*  home services section */


/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/

.services {
  background: url(../img/bg2-sun.png) top center no-repeat;

  position: relative;
}


.services .service-item {
  background-color: var(--surface-color);
  box-shadow: 0px 5px 20px 0px rgba(0, 0, 0, 0.1);
  padding: 60px 30px;
  transition: all ease-in-out 0.3s;
  border-radius: 18px;
  border-bottom: 0px solid var(--surface-color);
  height: 100%;
}

.services .service-item .icon {
  color: var(--contrast-color);
  background: var(--accent-color);
  margin: 0;
  width: 64px;
  height: 64px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 28px;
  transition: ease-in-out 0.3s;
}

.services .service-item h3 {
  font-weight: 400;
  margin: 10px 0 15px 0;
  font-size: 20px;
  transition: ease-in-out 0.3s;
}

.services .service-item p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

@media (min-width: 1365px) {
  .services .service-item:hover {
    transform: translateY(-10px);
    border-color: var(--accent-color);
  }

  .services .service-item:hover h3 {
    color: var(--accent-color);
  }
}




/*  */
.rs-floating-icon {
  position: absolute;
  top: 20%;
  left: 10%;
  transform: translateX(-50%);
  z-index: 10;

  animation: rsFloat 3s ease-in-out infinite;
}

@media (max-width:768px) {
  .rs-floating-icon {}

}


@keyframes rsFloat {
  0% {
    transform: translateX(-50%) translateY(0);
  }

  50% {
    transform: translateX(-50%) translateY(-20px);
  }

  100% {
    transform: translateX(-50%) translateY(0);
  }
}



.rs-service-card:hover p a {
  color: #fff;
}



.rs-service-card {
  position: relative;
  padding: 45px 30px 35px;
  background: #ffffff;
  border-radius: 22px;
  overflow: hidden;
  min-height: 280px;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
  transition: all 0.45s ease;
  z-index: 1;
}

.rs-service-card::before {
  content: "";
  position: absolute;
  width: 130px;
  height: 130px;
  right: -45px;
  top: -45px;
  background: rgba(210, 0, 0, 0.08);
  border-radius: 35% 65% 60% 40%;
  transition: all 0.55s ease;
  z-index: -1;
}

.rs-service-card::after {
  content: "";
  position: absolute;
  inset: auto 25px 0 25px;
  height: 4px;
  background: ;
  border-radius: 50px 50px 0 0;
  transform: scaleX(0);
  transform-origin: center;
  transition: all 0.45s ease;
}

.rs-service-icon {
  width: 78px;
  height: 72px;
  background: linear-gradient(135deg, #d20000, #ff4b4b);
  color: #ffffff;
  font-size: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 26px;
  border-radius: 22px 45px 22px 45px;
  position: relative;
  transition: all 0.45s ease;
  box-shadow: 0 12px 25px rgba(210, 0, 0, 0.28);
}

.rs-service-icon::before {
  content: "";
  position: absolute;
  inset: -7px;
  border: 1px dashed rgba(210, 0, 0, 0.35);
  border-radius: 28px 50px 28px 50px;
  animation: rsIconShapeMove 4s linear infinite;
}

.rs-service-card h3 {
  font-size: 21px;
  font-weight: 700;
  color: #0a2540;
  margin-bottom: 14px;
  transition: all 0.35s ease;
}

.rs-service-card p {
  font-size: 15px;
  line-height: 1.7;
  color: #5c6670;
  margin-bottom: 0;
  transition: all 0.35s ease;
}

.rs-service-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 24px 55px rgba(0, 0, 0, 0.14);
}

.rs-service-card:hover::before {
  width: 100%;
  height: 100%;
  right: 0;
  top: 0;
  border-radius: 22px;
  background: linear-gradient(135deg, #d20000, #0a2540);
}

.rs-service-card:hover::after {
  transform: scaleX(1);
}

.rs-service-card:hover .rs-service-icon {
  background: #ffffff;
  color: #d20000;
  transform: rotate(-6deg) scale(1.08);
  box-shadow: 0 16px 35px rgba(255, 255, 255, 0.2);
}

.rs-service-card:hover .rs-service-icon::before {
  border-color: rgba(255, 255, 255, 0.6);
  animation-duration: 1.5s;
}

.rs-service-card:hover h3,
.rs-service-card:hover p {
  color: #ffffff;
}

@keyframes rsIconShapeMove {
  0% {
    border-radius: 28px 50px 28px 50px;
    transform: rotate(0deg);
  }

  50% {
    border-radius: 50px 28px 50px 28px;
    transform: rotate(8deg);
  }

  100% {
    border-radius: 28px 50px 28px 50px;
    transform: rotate(0deg);
  }
}

@media (max-width: 767px) {
  .rs-service-card {
    padding: 38px 24px 30px;
  }

  .rs-service-icon {
    width: 68px;
    height: 64px;
    font-size: 30px;
  }

  .rs-service-card h3 {
    font-size: 19px;
  }
}




/*  */

.section.effect-title {
  height: 70vh;
  background: url("../img/landing-img-38-1.jpg") no-repeat;

}

.dynamic-text {
  display: flex;
  align-items: center;
  justify-content: start;
  position: relative;
  height: 100vh;
  background: white;
}

.dynamic-text h2 {
  font-family: "Inter", sans-serif;
  font-size: calc(2.2rem + 2.5vw);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #0c1221;
}

@media (max-width: 767px) {
  .dynamic-text h2 {
    font-size: 2.2rem !important;
    line-height: 1.3 !important;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .dynamic-text h2 {
    font-size: 3rem !important;
    line-height: 1.25 !important;
  }
}

.dynamic-text-clone>div,
.rs-portfolio-intro {
  filter: blur(8px);
  opacity: 0.5;
  transition: filter 0.3s ease,
    opacity 0.3s ease;
}

.dynamic-text-clone>div {
  display: inline-block;
}





/*  */

.rs-video-zoom-sec {
  position: relative;
  height: 65vh;
  background: url(../img/bg-7.jpg) center bottom no-repeat;
  background-size: cover;
  overflow: visible;
}

.rs-video-content {
  position: relative;
  width: 100%;
  height: 76vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.rs-video-title h4 {
  position: relative;
  z-index: 5;
  color: #ddd;
  font-size: 75px;
  line-height: 1;
  font-weight: 700;
  text-align: center;
  margin: 0 0 20px 0;
  pointer-events: none;
}

.rs-video-wrap {
  width: 560px;
  height: 315px;
  max-width: 90%;
  aspect-ratio: 16/9;
  overflow: hidden;
  border-radius: 20px;
  transform-origin: center center;
  will-change: transform;
}

.rs-video-wrap video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 767px) {
  .rs-video-title {
    font-size: 42px;
  }

  .rs-video-content {
    gap: 30px;
  }
}




/*  */

.modren-services .feature-card {
  position: relative;
  height: 100%;
  padding: 34px 30px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 24px;
  overflow: hidden;
  display: flex;
  gap: 22px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
  transition: all 0.45s ease;
  z-index: 1;
}

.modren-services .feature-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #d20000, #0a2540);
  opacity: 0;
  transition: all 0.45s ease;
  z-index: -1;
}

.modren-services .feature-card::after {
  content: "";
  position: absolute;
  width: 150px;
  height: 150px;
  right: -55px;
  bottom: -55px;
  background: rgba(210, 0, 0, 0);
  border-radius: 45% 55% 35% 65%;
  transition: all 0.6s ease;
  z-index: -1;
}

.modren-services .icon-wrap {
  position: relative;
  min-width: 82px;
  width: 82px;
  height: 82px;
  background: #fff1f1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 26px 48px 26px 48px;
  transition: all 0.45s ease;
}

.modren-services .icon-wrap::before {
  content: "";
  position: absolute;
  inset: -8px;
  border: 1px dashed rgba(210, 0, 0, 0.35);
  border-radius: 32px 54px 32px 54px;
  animation: rsIconSoftMove 5s ease-in-out infinite;
}

.modren-services .icon-wrap::after {
  content: "";
  position: absolute;
  width: 36px;
  height: 36px;
  right: -8px;
  top: -8px;
  /* background: rgba(210, 0, 0, 0.14); */
  border-radius: 50%;
  transition: all 0.45s ease;
}

.modren-services .why-icon {
  width: 48px;
  height: 48px;
  position: relative;
  z-index: 2;
  transition: all 0.45s ease;
}

.modren-services .feature-card h5 {
  color: #0a2540;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
  transition: all 0.35s ease;
}

.modren-services .feature-card p,
.modren-services .feature-card a {
  color: #5f6770;
  transition: all 0.35s ease;
}

.modren-services .feature-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 28px 65px rgba(0, 0, 0, 0.18);
}

.modren-services .feature-card:hover::before {
  opacity: 1;
}

.modren-services .feature-card:hover::after {
  width: 260px;
  height: 260px;
  background: rgba(255, 255, 255, 0.09);
}

.modren-services .feature-card:hover .icon-wrap {
  background: #ffffff;
  transform: rotate(-6deg) scale(1.08);
  box-shadow: 0 18px 35px rgba(255, 255, 255, 0.18);
}

.modren-services .feature-card:hover .icon-wrap::before {
  border-color: rgba(255, 255, 255, 0.65);
  animation-duration: 1.5s;
}

.modren-services .feature-card:hover .icon-wrap::after {
  /* background: #d20000;
transform: scale(1.4); */
}

.modren-services .feature-card:hover .why-icon {
  transform: translateY(-4px) rotate(8deg);
}

.modren-services .feature-card:hover h5,
.modren-services .feature-card:hover p,
.modren-services .feature-card:hover a {
  color: #ffffff;
}

@keyframes rsIconSoftMove {

  0%,
  100% {
    border-radius: 32px 54px 32px 54px;
    transform: rotate(0deg);
  }

  50% {
    border-radius: 54px 32px 54px 32px;
    transform: rotate(8deg);
  }
}

@media (max-width: 767px) {
  .modren-services .feature-card {
    padding: 28px 24px;
    flex-direction: column;
  }
}




/*  */


.lenis.lenis-smooth {
  scroll-behavior: auto;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

.lenis.lenis-stopped {
  overflow: hidden;
}

.lenis.lenis-scrolling iframe {
  pointer-events: none;
}

section.text-revel {
  display: flex;
  align-items: center;
  justify-content: center;

}

/* .container {
  position: relative;
  max-width: 90%;
  margin: 0 auto;
} */

.reveal {
  font-kerning: none;

  font-weight: 300;
  font-size: 1.4rem;
  line-height: 1.4;
}


/*  */

.on-house {
  position: relative;
  overflow: hidden;
  background: #fff;
  z-index: 1;
}

.on-house .container {
  position: relative;
  z-index: 2;
}

/* Background */
.oh-bg-effect {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

/* Common Line */
.oh-line {
  position: absolute;
  border-radius: 100px;
  filter: blur(70px);
  opacity: .45;
  animation: moveGradient 12s ease-in-out infinite alternate;
}

/* Red */
.oh-line-1 {
  width: 600px;
  height: 8px;
  top: 12%;
  left: -8%;
  background: linear-gradient(90deg,
      transparent,
      rgba(210, 0, 0, .45),
      rgba(255, 160, 160, .75),
      transparent);
}

/* Purple */
.oh-line-2 {
  width: 520px;
  height: 7px;
  right: -10%;
  top: 45%;
  background: linear-gradient(90deg,
      transparent,
      rgba(108, 99, 255, .35),
      rgba(201, 192, 255, .75),
      transparent);

  animation-duration: 16s;
  animation-direction: alternate-reverse;
}

/* Orange */
.oh-line-3 {
  width: 700px;
  height: 9px;
  left: 10%;
  bottom: 12%;
  background: linear-gradient(90deg,
      transparent,
      rgba(255, 180, 0, .25),
      rgba(255, 226, 150, .75),
      transparent);

  animation-duration: 14s;
}

@keyframes moveGradient {

  0% {
    transform: translateX(-50px) translateY(0) rotate(-8deg);
  }

  50% {
    transform: translateX(20px) translateY(25px) rotate(2deg);
  }

  100% {
    transform: translateX(70px) translateY(-20px) rotate(10deg);
  }

}



/*  */


.on-house {
  position: relative;
  overflow: hidden;
  background: #fff;
}

.on-house .container {
  position: relative;
  z-index: 2;
  background: #fff;
}

.oh-wave-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.wave {
  position: absolute;
  width: 180%;
  height: 260px;
  left: -40%;
  opacity: .45;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  animation: waveMove 18s linear infinite;
}

/* Top Wave */
.wave1 {
  top: 5%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1600 250'%3E%3Cpath d='M0 120C150 40 300 200 450 120C600 40 750 200 900 120C1050 40 1200 200 1350 120C1500 40 1650 200 1800 120' fill='none' stroke='%23ff5b5b' stroke-width='2'/%3E%3C/svg%3E");
}

/* Middle Wave */
.wave2 {
  top: 40%;
  opacity: .28;
  animation-duration: 25s;
  animation-direction: reverse;

  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1600 250'%3E%3Cpath d='M0 150C180 40 360 220 540 120C720 40 900 220 1080 120C1260 40 1440 220 1620 120' fill='none' stroke='%23ff9898' stroke-width='2'/%3E%3C/svg%3E");
}

/* Bottom Wave */
.wave3 {
  bottom: 5%;
  opacity: .2;
  animation-duration: 30s;

  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1600 250'%3E%3Cpath d='M0 100C170 200 340 20 510 120C680 200 850 20 1020 120C1190 200 1360 20 1530 120C1700 200 1870 20 2040 120' fill='none' stroke='%23ffd1d1' stroke-width='2'/%3E%3C/svg%3E");
}

@keyframes waveMove {

  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-18%);
  }

}




/*  */


.standout-blok {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 40%, rgba(210, 0, 0, 0.10), transparent 18%),
    radial-gradient(circle at 88% 42%, rgba(255, 184, 77, 0.14), transparent 10%),
    linear-gradient(180deg, #ffffff 0%, #fff5f5 55%, #ffffff 100%);
}

.standout-blok .container,
.standout-blok .rs-growth-inner {
  position: relative;
  z-index: 2;
}

.standout-blok .rs-growth-tag {
  display: inline-block;
  padding: 9px 22px;
  margin-bottom: 14px;
  border-radius: 50px;
  color: #d20000;
  background: rgba(210, 0, 0, 0.08);
  font-weight: 400;

}

.standout-blok .section-title h2 {
  color: #0a2540;

}

.standout-blok .rs-growth-card {
  position: relative;
  padding: 42px 34px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(210, 0, 0, 0.10);
  box-shadow: 0 22px 55px rgba(10, 37, 64, 0.08);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  overflow: hidden;
  transition: all 0.45s ease;
}

.standout-blok .rs-growth-card::before {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  right: -70px;
  top: -70px;
  border-radius: 42% 58% 65% 35%;
  background: rgba(210, 0, 0, 0.08);
  transition: all 0.6s ease;
}

.standout-blok .rs-growth-card::after {
  content: "";
  position: absolute;
  inset: auto 28px 0 28px;
  height: 4px;
  border-radius: 50px 50px 0 0;
  background: linear-gradient(90deg, transparent, #d20000, transparent);
  transform: scaleX(0);
  transition: transform 0.45s ease;
}

.standout-blok .rs-growth-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 35px 80px rgba(10, 37, 64, 0.15);
  border-color: rgba(210, 0, 0, 0.22);
}

.standout-blok .rs-growth-card:hover::before {
  width: 280px;
  height: 280px;
  background: rgba(210, 0, 0, 0.13);
}

.standout-blok .rs-growth-card:hover::after {
  transform: scaleX(1);
}

.standout-blok .rs-growth-no {
  position: relative;
  z-index: 1;
  display: inline-flex;
  width: 64px;
  height: 64px;
  margin-bottom: 22px;
  align-items: center;
  justify-content: center;
  border-radius: 22px 42px 22px 42px;
  background: linear-gradient(135deg, #d20000, #ff5757);
  color: #ffffff;
  font-size: 24px;
  font-weight: 800;
  box-shadow: 0 16px 35px rgba(210, 0, 0, 0.25);
  animation: sbFloatIcon 4s ease-in-out infinite;
}

.standout-blok .rs-growth-card p {
  position: relative;
  z-index: 1;
  color: #4f5965;
  font-size: 15.5px;
  line-height: 1.85;
  margin: 0;
}

.standout-blok .rs-growth-img {
  position: relative;
  border-radius: 32px;
  padding: 12px;
  background: linear-gradient(135deg, rgba(210, 0, 0, 0.18), rgba(255, 255, 255, 0.9));
  box-shadow: 0 28px 70px rgba(10, 37, 64, 0.12);
  overflow: hidden;
}

.standout-blok .rs-growth-img::before {
  content: "";
  position: absolute;
  inset: -40%;
  background: linear-gradient(120deg, transparent 35%, rgba(255, 255, 255, 0.65) 50%, transparent 65%);
  transform: translateX(-40%);
  animation: sbImageShine 5s ease-in-out infinite;
}

.standout-blok .rs-growth-img img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
  border-radius: 24px;
  transition: transform 0.6s ease;
}

.standout-blok .rs-growth-img:hover img {
  transform: scale(1.06);
}

.sb-bg-line {
  position: absolute;
  width: 720px;
  height: 2px;
  pointer-events: none;
  opacity: 0.55;
  background: linear-gradient(90deg, transparent, rgba(210, 0, 0, 0.35), transparent);
  filter: blur(0.3px);
  z-index: 1;
}

.sb-line-1 {
  top: 18%;
  left: -160px;
  transform: rotate(-8deg);
  animation: sbLineMove 9s ease-in-out infinite alternate;
}

.sb-line-2 {
  bottom: 20%;
  right: -180px;
  transform: rotate(-8deg);
  animation: sbLineMoveReverse 11s ease-in-out infinite alternate;
}

.sb-float-shape {
  position: absolute;
  pointer-events: none;
  z-index: 1;
  opacity: 0.45;
  animation: sbShapeFloat 8s ease-in-out infinite;
}

.sb-shape-1 {
  width: 90px;
  height: 90px;
  top: 22%;
  right: 9%;
  border-radius: 32px 55px 32px 55px;
  background: rgba(210, 0, 0, 0.10);
}

.sb-shape-2 {
  width: 58px;
  height: 58px;
  left: 7%;
  bottom: 18%;
  border-radius: 50%;
  border: 1px dashed rgba(210, 0, 0, 0.35);
  animation-duration: 10s;
}

.sb-shape-3 {
  width: 74px;
  height: 74px;
  right: 42%;
  top: 12%;
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
  background: rgba(255, 185, 90, 0.18);
  animation-duration: 12s;
}

@keyframes sbFloatIcon {

  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-8px) rotate(-4deg);
  }
}

@keyframes sbImageShine {
  0% {
    transform: translateX(-55%) rotate(8deg);
  }

  45%,
  100% {
    transform: translateX(55%) rotate(8deg);
  }
}

@keyframes sbLineMove {
  from {
    transform: translateX(-30px) rotate(-8deg);
  }

  to {
    transform: translateX(90px) rotate(-8deg);
  }
}

@keyframes sbLineMoveReverse {
  from {
    transform: translateX(50px) rotate(-8deg);
  }

  to {
    transform: translateX(-90px) rotate(-8deg);
  }
}

@keyframes sbShapeFloat {

  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-22px) rotate(12deg);
  }
}

@media (max-width: 991px) {
  .standout-blok .rs-growth-img img {
    min-height: 340px;
  }
}

@media (max-width: 767px) {
  .standout-blok .rs-growth-card {
    padding: 32px 24px;
  }

  .standout-blok .rs-growth-no {
    width: 56px;
    height: 56px;
    font-size: 21px;
  }

  .standout-blok .rs-growth-img img {
    min-height: 280px;
  }

  .sb-bg-line,
  .sb-float-shape {
    display: none;
  }
}



/*  */

.rs-process-steps {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #fff7f7 0%, #ffffff 50%, #f3f7ff 100%);
}

.rs-process-label {
  display: inline-block;
  padding: 8px 20px;
  border-radius: 50px;
  background: rgba(210, 0, 0, 0.1);
  color: #d20000;

  margin-bottom: 14px;
}



.rs-process-timeline {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
}

.rs-process-timeline::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 3px;
  height: 100%;
  background: linear-gradient(to bottom, #d20000, rgba(210, 0, 0, 0.1));
  transform: translateX(-50%);
}

.rs-process-item {
  position: relative;
  display: flex;
  align-items: center;
  width: 50%;
  padding: 0 45px 45px 0;
}

.rs-process-item:nth-child(even) {
  margin-left: auto;
  padding: 0 0 45px 45px;
}

.rs-process-number {
  position: absolute;
  top: 0;
  right: -31px;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: #d20000;
  color: #ffffff;
  font-size: 20px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 30px rgba(210, 0, 0, 0.28);
  z-index: 2;
}

.rs-process-item:nth-child(even) .rs-process-number {
  left: -31px;
  right: auto;
}

.rs-process-content {
  width: 100%;
  padding: 28px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(210, 0, 0, 0.08);
  box-shadow: 0 18px 45px rgba(10, 37, 64, 0.08);
  transition: all 0.35s ease;
}

.rs-process-content:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 60px rgba(10, 37, 64, 0.14);
  border-color: rgba(210, 0, 0, 0.25);
}

.rs-process-content h3 {
  font-size: 20px;
  font-weight: 600;
  color: #0a2540;
  margin-bottom: 10px;
}

.rs-process-content p {
  color: #5f6f80;
  line-height: 1.7;
  margin-bottom: 0;
}

@media (max-width: 991px) {
  .rs-process-timeline::before {
    left: 31px;
  }

  .rs-process-item,
  .rs-process-item:nth-child(even) {
    width: 100%;
    margin-left: 0;
    padding: 0 0 35px 85px;
  }

  .rs-process-number,
  .rs-process-item:nth-child(even) .rs-process-number {
    left: 0;
    right: auto;
  }
}

@media (max-width: 767px) {
  .rs-process-heading {
    font-size: 26px;
  }

  .rs-process-content {
    padding: 24px 20px;
  }

  .rs-process-item,
  .rs-process-item:nth-child(even) {
    padding-left: 75px;
  }
}


/*  */
.rs-process-title-sec {
  padding: 80px 20px;
  text-align: center;
}

.rs-process-title {
  font-size: 38px;
  font-weight: 500;
  color: #1b1b1b;
  line-height: 1.3;
  margin: 0;

}

.rs-process-text {
  max-width: 760px;
  margin: 0 auto;
  color: #5f6f80;
  line-height: 1.8;
  font-size: 16px;
  text-align: left;
}


.rs-process-highlight {
  position: relative;
  display: inline-block;
  color: #ff1654;
  white-space: nowrap;
  padding-bottom: 12px;
}

.rs-process-underline {
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 20px;
}

.rs-process-underline path {
  fill: none;
  stroke: #ff1654;
  stroke-width: 2;
  stroke-linecap: round;

  stroke-dasharray: 380;
  stroke-dashoffset: 380;

  animation: drawLine 4.8s ease forwards infinite;
  animation-delay: .4s;
}

@keyframes drawLine {

  0% {
    stroke-dashoffset: 380;
  }

  45% {
    stroke-dashoffset: 0;
  }

  70% {
    stroke-dashoffset: 0;
  }

  100% {
    stroke-dashoffset: -380;
  }

}

@media(max-width:1200px) {

  .rs-process-title {
    font-size: 38px;
  }

}

@media(max-width:991px) {

  .rs-process-title {
    font-size: 32px;
  }

}

@media(max-width:767px) {

  .rs-process-title {
    font-size: 24px;
    line-height: 1.5;
  }

  .rs-process-highlight {
    display: inline;
  }

}


/* home page section */

.rs-agency-showcase {
  background: #ffffff;
  position: relative;
  overflow: hidden;
}

.rs-agency-showcase::before {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  background: #ffeaea;
  border-radius: 50%;
  top: -220px;
  right: -180px;
  filter: blur(70px);
  opacity: 0.8;
}

.rs-agency-card {
  position: relative;
  z-index: 2;
  background: #ffffff;
  border-radius: 22px;
  height: 90vh;
  padding: 22px;
  box-shadow: 0 30px 70px rgba(10, 37, 64, 0.08);
}

.rs-agency-image {
  border-radius: 18px;
  overflow: hidden;
  min-height: 550px;
}

.rs-agency-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.8s ease;
}

.rs-agency-image:hover img {
  transform: scale(1.06);
}

.rs-agency-content {
  padding: 38px 55px;
}

.rs-agency-top {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: #6c7a89;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.rs-agency-top span {
  color: #d20000;
}

.rs-agency-content h2 {
  font-size: 26px;
  font-weight: 600;
  line-height: 1.2;
  color: #0a2540;
  margin-bottom: 22px;
  margin-top: 30px;
}

.rs-lead {
  font-size: 20px;
  color: #0a2540;
  font-weight: 500;
  line-height: 1.3;
}

.rs-agency-content p {
  color: #333;
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 15px;
}

.rs-agency-list {
  background: #f8f8f8;
  border-left: 0px solid #d20000;
  padding: 25px;
  border-radius: 14px;
}

.rs-agency-list span {
  color: #d20000;
  font-weight: 500;
  display: block;
  margin-bottom: 18px;
}

.rs-agency-list ul {
  padding-left: 18px;
  margin: 0;
}

.rs-agency-list li {
  margin-bottom: 14px;
  color: #0a2540;
}

.rs-agency-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-top: 30px;
}

.rs-agency-dots {
  display: flex;
  align-items: center;
  padding-right: 20px;
}

.rs-agency-dots span {
  width: 92px;
  height: 92px;
  border-radius: 50%;
  overflow: hidden;
  display: block;
  margin-left: -20px;
  border: 4px solid #ffffff;
  box-shadow: 0 15px 35px rgba(10, 37, 64, 0.18);
  animation: rsFloatCircle 4s ease-in-out infinite;
}

.rs-agency-dots span:nth-child(2) {
  animation-delay: 0.5s;
}

.rs-agency-dots span:nth-child(3) {
  animation-delay: 1s;
}

.rs-agency-dots span img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@keyframes rsFloatCircle {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-14px);
  }
}

@media (max-width: 991px) {
  .rs-agency-image {
    min-height: 420px;
  }

  .rs-agency-content {
    padding: 30px 18px;
  }

  .rs-agency-content h2 {
    font-size: 38px;
    margin-bottom: 30px;
  }

  .rs-lead {
    font-size: 19px;
  }

  .rs-agency-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 575px) {
  .rs-agency-content h2 {
    font-size: 30px;
  }

  .rs-agency-top {
    flex-direction: column;
  }

  .rs-agency-dots span {
    width: 68px;
    height: 68px;
  }
}



/* home page card gasp */

.rs-gsap-stack-sec {
  /* padding: 40px 0 0; */
  background: #f8fafc;
  overflow: hidden;
}


.rs-gsap-cards {
  position: relative;
  height: 95vh;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 80px;
  margin-top: 10px !important;
}

.rs-gsap-card {
  position: absolute;
  top: 0;
  width: 100%;
  height: 90vh;
  border-radius: 5px;
  padding: 0px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #fff;
}


.rs-card-1 {
  /* z-index: 2; */
  background: #fff6f9;
}

.rs-card-2 {
  /* z-index: 3;   */
  background: #F6F8F9;
}

.rs-card-3 {
  /* z-index: 4;
  top: 60px; */
  background: #e6f6e3;
}

.rs-card-4 {
  background: #ecf3f6;
}

@media (max-width: 991px) {
  .rs-gsap-stack-title h2 {
    font-size: 34px;
  }

  .rs-gsap-card {
    width: 92%;
    padding: 40px;
  }

  .rs-gsap-card h3 {
    font-size: 34px;
  }
}

@media (max-width: 575px) {
  .rs-gsap-stack-sec {
    padding: 70px 0;
  }

  .rs-gsap-cards {
    height: 60vh;
  }

  .rs-gsap-card {
    height: 60vh;
    border-radius: 24px;
    padding: 28px;
  }
}


.rs-location-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 25px;
}

.rs-location-list a {
  display: inline-block;
  text-decoration: none;
}

.rs-location-list span {
  background: #fff;
  color: #0A2540;
  padding: 10px 18px;
  border-radius: 40px;
  border: 1px solid rgba(210, 0, 0, .15);
  font-size: 14px;
  font-weight: 600;
  transition: .35s;
}

.rs-location-list span:hover {
  background: #D20000;
  color: #fff;
  transform: translateY(-4px);
}

.rs-card-3 .rs-agency-image img {
  height: 420px;
  width: 100%;
  object-fit: cover;
}

.rs-card-3 h2 {
  font-size: 42px;
  font-weight: 700;
  color: #0A2540;
}


/*  */

.rs-card-4 {
  background: #ffffff;
  color: #0A2540;
  padding: 60px;

}



.rs-service-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

.rs-service-grid span {
  background: #FFEAEA;
  color: #D20000;
  padding: 10px 18px;
  border-radius: 40px;
  font-size: 14px;
  font-weight: 600;
  transition: .35s;
}

.rs-service-grid span:hover {
  background: #D20000;
  color: #fff;
  transform: translateY(-4px);
}

.rs-card4-image {
  height: 100vh;
  min-height: 420px;
  overflow: hidden;
  border-radius: 24px;
}

.rs-card4-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 24px;
  transition: .5s;
}

.rs-card4-image:hover img {
  transform: scale(1.05);
}



/*  */

.rs-about-minimal {
  padding: 110px 0;
  background: url("../img/body-section-bg-min.png") 0 0;

}

.rs-about-minimal .container {
  max-width: 1180px;
}

.rs-about-wrap {
  max-width: 1160px;
  margin: 0 auto;
}

.rs-about-head {
  max-width: 620px;
  font-size: 28px;
  line-height: 1.45;
  font-weight: 700;
  color: #050505;
  margin-bottom: 38px;
}

.rs-about-content {
  align-items: flex-start;
}

.rs-about-content p {
  font-size: 16px;
  line-height: 1.75;
  color: #111111;
  margin-bottom: 22px;
}

.rs-about-link {
  display: inline-block;
  margin-top: 20px;
  font-size: 14px;
  font-weight: 700;
  color: #a8a8a8;
  text-decoration: none;
  transition: all 0.3s ease;
}

.rs-about-link:hover {
  color: #d20000;
  transform: translateX(6px);
}

@media (max-width: 991px) {
  .rs-about-minimal {
    padding: 70px 0;
  }

  .rs-about-head {
    font-size: 24px;
    margin-bottom: 28px;
  }

  .rs-about-content p {
    font-size: 15px;
  }
}

@media (max-width: 575px) {
  .rs-about-minimal {
    padding: 55px 0;
  }

  .rs-about-head {
    font-size: 22px;
  }
}


/*  */


.rs-awards-section {
  background: #fff;
  padding: 100px 0;
}

.rs-awards-label {
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  color: #111;
  text-transform: uppercase;
}

.rs-awards-line {
  width: 100%;
  height: 1px;
  background: #d7d7d7;
  margin: 18px 0 35px;
}

.rs-awards-heading {
  font-size: 30px;
  font-weight: 700;
  line-height: 1.5;
  color: #111;
  max-width: 580px;
}

.rs-awards-section p {
  font-size: 16px;
  line-height: 1.9;
  color: #444;
  margin-bottom: 40px;
}

.rs-awards-list {
  margin-top: 10px;
}

.rs-award-card {
  transition: .35s;
}

.rs-award-card:hover {
  transform: translateY(-6px);
}

.rs-award-icon {
  width: 70px;
  height: 70px;
  border: 1px solid #ececec;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  background: #fafafa;
  transition: .35s;
}

.rs-award-card:hover .rs-award-icon {
  background: #d20000;
  border-color: #d20000;
  color: #fff;
}

.rs-award-icon i {
  font-size: 32px;
}

.rs-award-card h6 {
  margin-bottom: 8px;
  font-size: 22px;
  font-weight: 700;
  color: #111;
}

.rs-award-card span {
  display: block;
  color: #666;
  font-size: 16px;
  line-height: 1.7;
}

@media(max-width:991px) {

  .rs-awards-section {
    padding: 80px 0;
  }

  .rs-awards-heading {
    font-size: 46px;
    margin-bottom: 10px;
  }

  .rs-awards-section p {
    margin-bottom: 30px;
    font-size: 17px;
  }

}

@media(max-width:767px) {

  .rs-awards-heading {
    font-size: 36px;
    line-height: 1.15;
  }

  .rs-awards-line {
    margin: 15px 0 25px;
  }

  .rs-award-card {
    text-align: center;
  }

  .rs-award-icon {
    margin: 0 auto 18px;
  }

}



/*  */
/*==================================
      Full Screen Creative Section
===================================*/

.rs-creative-sec {
  background: #fff;
}

/* Full Height */

.rs-creative-row {
  min-height: 100vh;
}

.rs-creative-row>div {
  display: flex;
}

/*====================
        Image
=====================*/

.rs-creative-img {
  flex: 1;
  height: 100%;
}

.rs-creative-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/*====================
      Content Side
=====================*/

.rs-creative-content {
  flex: 1;
  background: #f9f9f9;

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 70px;

  overflow: hidden;
}

/* Content Width */

.rs-creative-inner {
  width: 100%;
  max-width: 700px;

  max-height: calc(100vh - 140px);

  overflow-y: auto;

  padding-right: 10px;
}

/* Scrollbar */

.rs-creative-inner::-webkit-scrollbar {
  width: 5px;
}

.rs-creative-inner::-webkit-scrollbar-thumb {
  background: #d20000;
  border-radius: 20px;
}

/* Heading */

.rs-creative-content h2 {
  font-size: 37px;
  line-height: 1.08;
  font-weight: 500;
  margin-bottom: 25px;
}

/* Intro */

.rs-creative-content>.rs-creative-inner>p {
  margin-bottom: 35px;
  font-size: 16px;
  line-height: 1.8;
  color: #555;
}

/* Accordion */

.rs-creative-accordion .accordion-item {
  border: none;
  border-bottom: 1px solid #ececec;
  border-radius: 0;
  background: transparent;
}

.rs-creative-accordion .accordion-button {
  background: none;
  padding: 24px 0;
  font-size: 18px;
  font-weight: 700;
  box-shadow: none;
}

.rs-creative-accordion .accordion-button:not(.collapsed) {
  background: none;
  color: #111;
}

.rs-creative-accordion .accordion-body {
  padding: 0 0 25px;
}

/*====================
      Responsive
=====================*/

@media (max-width:1199px) {

  .rs-creative-content {
    padding: 60px;
  }

  .rs-creative-content h2 {
    font-size: 46px;
  }

}

@media (max-width:991px) {

  .rs-creative-row {
    min-height: auto;
  }

  .rs-creative-row>div {
    display: block;
  }

  .rs-creative-img {
    height: 450px;
  }

  .rs-creative-content {
    min-height: auto;
    padding: 60px 35px;
  }

  .rs-creative-inner {
    max-height: none;
    overflow: visible;
  }

  .rs-creative-content h2 {
    font-size: 38px;
  }

}

@media (max-width:576px) {

  .rs-creative-img {
    height: 280px;
  }

  .rs-creative-content {
    padding: 45px 20px;
  }

  .rs-creative-content h2 {
    font-size: 30px;
  }

  .rs-creative-accordion .accordion-button {
    font-size: 18px;
  }

}


/*  */

.rs-wave-btn {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  padding: 10px 10px 10px 28px;
  background: #111;
  color: #fff;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
  overflow: hidden;
  position: relative;
  transition: .35s ease;
}

.rs-wave-btn span {
  position: relative;
  z-index: 2;
}

.rs-wave-btn:hover {
  color: #fff;
}

.rs-wave-icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.rs-wave-icon img {
  width: 22px;
}

/* Wave Light Effect */

.rs-wave-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 60%;
  height: 100%;
  background: linear-gradient(110deg,
      transparent 0%,
      rgba(255, 255, 255, .08) 35%,
      rgba(255, 255, 255, .65) 50%,
      rgba(255, 255, 255, .08) 65%,
      transparent 100%);
  transform: skewX(-25deg);
}

.rs-wave-btn:hover::before {
  animation: rsWaveLight .9s ease;
}

@keyframes rsWaveLight {
  from {
    left: -120%;
  }

  to {
    left: 150%;
  }
}

.rs-blog-row {
  margin-top: 0 !important;
}

.rs-home-blog-new {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.88) 50%, #000000 100%),
    url("https://www.redspider.ae/wp-content/uploads/2026/06/form-bg.webp") center top / cover no-repeat;
  padding: 35px 0 50px;
  color: #fff;
}

.rs-home-blog-new .section-title h2 {
  color: #fff;
  font-size: 48px;
  font-weight: 300;
  margin-bottom: 0px;
}

.rs-blog-text-card {
  padding: 0 15px;
}

.rs-blog-text-card h3 {
  font-size: 24px;
  font-weight: 300;
  line-height: 1.4;
  margin-bottom: 18px;
  position: relative;
  padding-left: 0;
}

/* .rs-blog-text-card h3:before{
    content:"•";
    position:absolute;
    left:0;
    color:#fff;
} */

.rs-blog-text-card h3 a {
  color: #fff;
  text-decoration: underline;
}

.rs-blog-text-card p {
  color: #ddd;
  line-height: 22px;
  font-size: 16px;
  margin-bottom: 18px;
  text-align: justify;
}

.blog-read-more,
.rs-blog-btn {
  background-color: #f4bd46;
  border-style: solid;
  border-width: 1px 1px 1px 1px;
  border-color: #f4bd46;
  width: 140px;
  text-align: center;
  border-radius: 0px 15px 0px 15px;
  padding: 12px 24px;
  display: inline-block;
  line-height: 1;
  margin-top: 15px;
  color: #fff;
  text-align: center;
  transition: all .3s;
}

.rs-blog-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 140px;
  height: 40px;
  background: #f7c44c;
  color: #fff;
  font-size: 13px;
  font-weight: 400;
  text-decoration: none;
  border-radius: 0px;
  border: none;
  transition: all .3s ease;
  border-bottom-left-radius: 19px;
  border-top-right-radius: 18px;
  text-decoration: underline;
}

.rs-blog-btn:hover {
  background: #e3ae2b;
  color: #fff;
  text-decoration: none;
}

.rs-blog-stats {
  margin-top: 32px;
}

.rs-blog-stats h4 {
  color: #d71920;
  font-size: 58px;
  font-weight: 700;
}

.rs-blog-stats p {
  color: #fff;
  text-transform: uppercase;
  font-size: 14px;
}

.rs-worked-with {
  margin-top: 55px;
}

.rs-worked-with h3 {
  color: #fff;
  font-weight: 300;
  margin-bottom: 25px;
}

.rs-worked-with img {
  max-width: 900px;
}

#home-blog.rs-home-blog-new {
  background-image: url("https://www.redspider.ae/wp-content/themes/redspider/images/counter.jpg");
  background-position: 0px -319px;
  background-repeat: no-repeat;
  background-color: #000;
  background-size: cover;
}

#home-blog.rs-home-blog-new>.container {
  position: relative;
  z-index: 2;
}

/* About section */
.about-features .h2 {
  font-size: 42px !important;
  line-height: 1.15 !important;
  font-weight: 600 !important;
  color: #fff !important;
  text-transform: uppercase !important;
  margin-top: 17px !important;
}

.about-features .h2 small {
  font-size: 32px !important;
  font-weight: 400 !important;
  color: #fff !important;
}

.btn-about-readmore {
  background-color: #ffffff !important;
  color: #DE1515 !important;
  font-weight: bold !important;
  border-radius: 4px !important;
  border: 1px solid #ffffff !important;
  transition: all 0.3s ease !important;
  text-transform: uppercase !important;
}

.btn-about-readmore:hover {
  background-color: #333333 !important;
  border-color: #333333 !important;
  color: #ffffff !important;
}

.btn-about-portfolio {
  background-color: #DE1515 !important;
  color: #ffffff !important;
  font-weight: bold !important;
  border-radius: 4px !important;
  border: 1px solid #ffffff !important;
  transition: all 0.3s ease !important;
  text-transform: uppercase !important;
}

.btn-about-portfolio:hover {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #333333 !important;
}

.rs-location-list {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.rs-location-list a {
  display: inline-flex;
  text-decoration: none;
  color: inherit;
}

.rs-location-list a span,
.rs-location-list>span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.rs-location-list a:hover span {
  background: #D20000;
  color: #fff !important;
  border-color: #D20000;
  transform: translateY(-4px);
}

.rs-location-list a span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  color: #0A2540;
  padding: 10px 18px;
  border-radius: 40px;
  border: 1px solid rgba(210, 0, 0, .15);
  font-size: 14px;
  font-weight: 600;
  transition: .35s;
}

.form-sec .rs-phone-field {
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid #fff;
}

.form-sec .rs-phone-code {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #fff;
  min-width: 72px;
  font-size: 15px;
  line-height: 1;
}

.form-sec .rs-flag {
  font-size: 15px;
}

.form-sec .rs-code {
  color: #fff;
  font-weight: 500;
}

.form-sec .rs-mobile-input {
  flex: 1;
  margin-bottom: 0 !important;
  border-bottom: 0 !important;
  padding-left: 0 !important;
}

.form-sec .rs-mobile-input::placeholder {
  color: #fff !important;
}
.rs-service-card .rs-service-title{
    font-size:22px;
    font-weight:700;
    color:#222;
    margin-bottom:15px;
    line-height:1.3;
}
.rs-service-card .rs-service-title:hover{
    color:#fff !important;
}
.disabled {
  pointer-events: none;
  cursor: default;
  text-decoration: none;
  color: inherit;
}

.home-blog-title{
    font-size:40px;
    font-weight:400;
    line-height:1.2;
    color:#fff;
    margin-bottom:20px;
}

.rs-blog-post-title{
    font-size:24px;
    font-weight:300;
    line-height:1.35;
    margin-bottom:18px;
}

.rs-blog-post-title a{
    color:#fff;
    text-decoration:underline;
}

.rs-blog-stat-number{
    color:#d71920;
    font-size:58px;
    font-weight:700;
    line-height:1;
    margin-bottom:10px;
}

.rs-worked-title{
    color:#fff;
    font-size:28px;
    font-weight:300;
    margin-bottom:25px;
}
/* About RedSpider Title */
.kf-title{
    display:block;
    color:#fff;
    font-size:3rem;      /* fs-1 jaisa */
    font-weight:700;
    line-height:1.2;
    text-transform:uppercase;
    margin-bottom:20px;
}
.rs-process-title{
    font-size:48px;   /* apni existing h2 wali value */
    font-weight:700;
    line-height:1.2;
    color:#111827;
    margin-bottom:1.5rem;
    display:block;
}

.rs-process-highlight{
    position:relative;
    display:inline-block;
}
/* ===========================
   Left Card Title (h4 Replacement)
=========================== */

.rs-left-card-title{
    font-size: 32px;
    font-weight: 700;
    line-height: 1.3;
    color: #fff !important;
    margin-top: 1.5rem;
    margin-bottom: 0;
}

/* ===========================
   Google Rating (h5 Replacement)
=========================== */

.rs-rating-title{
    font-size: 28px;
    font-weight: 700;
    line-height: 1.2;
    color: #fff;
    margin: 8px 0;
}
.rs-video-title h4,
.rs-video-title .rs-video-heading{
    font-size:48px;
    font-weight:700;
    line-height:1.2;
    color:#ddd;
    margin:0;
}

@media (max-width:991px){
    .rs-video-title h4,
    .rs-video-title .rs-video-heading{
        font-size:38px;
    }
}

@media (max-width:767px){
    .rs-video-title h4,
    .rs-video-title .rs-video-heading{
        font-size:28px;
    }
}

/* =========================================================
   PRESERVED LAYOUT RESPONSIVE PATCH - highlighted section only
   - Existing CSS/classes/content preserved
   - Fixes title cut, top spacing, internal red scrollbar position
   - Restores smooth Bootstrap accordion open/close
========================================================= */

/* Do not allow page-level horizontal overflow from long headings/images */
html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

img,
video,
iframe,
svg {
  max-width: 100%;
}

/* Highlighted creative section: keep same 50/50 desktop layout, remove extra top/right space */
.rs-creative-sec,
.rs-creative-row {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}

.rs-creative-row > div {
  min-width: 0;
}

.rs-creative-content {
  min-width: 0;
  align-items: flex-start !important;
  justify-content: flex-start !important;
  padding-top: clamp(18px, 2.4vw, 42px) !important;
  padding-right: 0 !important;
  padding-bottom: clamp(28px, 3vw, 55px) !important;
  padding-left: clamp(28px, 4.5vw, 70px) !important;
  overflow: hidden !important;
}

.rs-creative-inner {
  width: 100% !important;
  max-width: none !important;
  min-width: 0 !important;
  padding-right: 0 !important;
  margin-right: 0 !important;
  max-height: calc(100vh - 70px) !important;
  overflow-x: hidden !important;
  overflow-y: auto !important;
  scrollbar-color: #d20000 transparent;
  scrollbar-width: thin;
}

.rs-creative-inner::-webkit-scrollbar {
  width: 5px !important;
}

.rs-creative-inner::-webkit-scrollbar-track {
  background: transparent !important;
  margin: 0 !important;
}

.rs-creative-inner::-webkit-scrollbar-thumb {
  background: #d20000 !important;
  border-radius: 20px !important;
}

/* Title: one line on large desktop, scale down instead of cutting */
.rs-creative-sec .rs-process-title-sec {
  padding-top: 0 !important;
  margin-top: 0 !important;
  max-width: 100% !important;
  overflow: visible !important;
}

.rs-creative-sec .rs-process-title,
.rs-creative-sec .rs-creative-content h2 {
  max-width: 100% !important;
  width: 100% !important;
  margin-top: 0 !important;
  padding-top: 0 !important;
  overflow: visible !important;
  text-overflow: clip !important;
  font-size: clamp(28px, 1.85vw, 42px) !important;
  line-height: 1.12 !important;
  letter-spacing: -0.02em;
}

.rs-creative-sec .rs-process-highlight {
  max-width: 100% !important;
  white-space: inherit !important;
}

.rs-creative-sec .rs-process-underline {
  max-width: 100% !important;
  overflow: visible !important;
}

.rs-creative-sec .rs-creative-content > .rs-creative-inner > p {
  max-width: 100% !important;
}

/* Large desktop: keep title in single row */
@media (min-width: 1200px) {
  .rs-creative-sec .rs-process-title,
  .rs-creative-sec .rs-creative-content h2 {
    white-space: nowrap !important;
  }

  .rs-creative-sec .rs-process-highlight {
    display: inline !important;
    white-space: nowrap !important;
  }
}

/* Medium desktop/tablet: allow clean wrap rather than cut */
@media (max-width: 1199px) {
  .rs-creative-content {
    padding-top: 32px !important;
    padding-left: 42px !important;
  }

  .rs-creative-sec .rs-process-title,
  .rs-creative-sec .rs-creative-content h2 {
    white-space: normal !important;
    font-size: clamp(30px, 3.4vw, 42px) !important;
  }

  .rs-creative-sec .rs-process-highlight {
    white-space: normal !important;
  }
}

@media (max-width: 991px) {
  .rs-creative-row {
    min-height: auto !important;
  }

  .rs-creative-row > div {
    display: block !important;
  }

  .rs-creative-img {
    height: clamp(260px, 45vw, 450px) !important;
  }

  .rs-creative-img img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
  }

  .rs-creative-content {
    padding: 28px 22px 38px !important;
  }

  .rs-creative-inner {
    max-height: none !important;
    overflow: visible !important;
  }

  .rs-creative-sec .rs-process-title,
  .rs-creative-sec .rs-creative-content h2 {
    white-space: normal !important;
    font-size: clamp(28px, 5.4vw, 38px) !important;
    line-height: 1.18 !important;
  }
}

@media (max-width: 575px) {
  .rs-creative-content {
    padding: 24px 16px 34px !important;
  }

  .rs-creative-img {
    height: 280px !important;
  }

  .rs-creative-sec .rs-process-title,
  .rs-creative-sec .rs-creative-content h2 {
    font-size: clamp(24px, 8vw, 32px) !important;
  }

  .rs-creative-accordion .accordion-button {
    font-size: 16px !important;
    line-height: 1.35 !important;
  }
}

/* Accordion smoothness: override earlier global transition:none rule without changing markup */
.rs-creative-accordion .accordion-collapse,
.rs-faq-custom .accordion-collapse,
.home-faq .accordion-collapse,
.dubizzle-clone-features .accordion-collapse,
.admin-features .accordion-collapse {
  transition: height 0.35s ease !important;
}

.rs-creative-accordion .accordion-collapse.collapsing,
.rs-faq-custom .accordion-collapse.collapsing,
.home-faq .accordion-collapse.collapsing,
.dubizzle-clone-features .accordion-collapse.collapsing,
.admin-features .accordion-collapse.collapsing {
  height: 0;
  overflow: hidden !important;
  transition: height 0.35s ease !important;
}

.rs-creative-accordion .accordion-collapse.collapse:not(.show),
.rs-faq-custom .accordion-collapse.collapse:not(.show),
.home-faq .accordion-collapse.collapse:not(.show),
.dubizzle-clone-features .accordion-collapse.collapse:not(.show),
.admin-features .accordion-collapse.collapse:not(.show) {
  display: none !important;
}

.rs-creative-accordion .accordion-collapse.collapse.show,
.rs-faq-custom .accordion-collapse.collapse.show,
.home-faq .accordion-collapse.collapse.show,
.dubizzle-clone-features .accordion-collapse.collapse.show,
.admin-features .accordion-collapse.collapse.show {
  display: block !important;
}

.rs-creative-accordion .accordion-button,
.rs-faq-custom .accordion-button,
.home-faq .accordion-button,
.dubizzle-clone-features .accordion-button,
.admin-features .accordion-button {
  cursor: pointer;
}

/* =========================================================
   MOBILE RESPONSIVE PATCH - ORIGINAL SECTION WIDTH PRESERVED
   Note: No container/section max-width/width values are changed here.
   This only fixes text overflow, card spacing, images, and mobile stacking.
========================================================= */

html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

img,
video,
iframe,
svg,
canvas {
  max-width: 100%;
}

img,
video,
iframe {
  height: auto;
}

section {
  max-width: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
li,
a,
span,
button {
  overflow-wrap: anywhere;
}

/* Services section heading and intro - keep same layout width */
#services .section-title {
  overflow: visible;
}

#services .rs-process-title {
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  font-size: clamp(32px, 4.6vw, 58px) !important;
  line-height: 1.12 !important;
}

#services .rs-process-highlight {
  display: inline;
  white-space: normal;
}

#services .rs-process-underline {
  max-width: 100%;
}

#services .section-title p {
  font-size: clamp(15px, 1.35vw, 18px) !important;
  line-height: 1.75 !important;
}

#services .rs-service-card {
  height: 100%;
  min-height: auto;
}

#services .rs-service-icon {
  flex: 0 0 auto;
}

#services .rs-service-title,
#services .rs-service-card h3,
#services .rs-service-card h5 {
  font-size: clamp(19px, 2vw, 22px) !important;
  line-height: 1.3 !important;
}

#services .rs-service-card p:not(.rs-service-title) {
  font-size: clamp(14px, 1.2vw, 15px) !important;
  line-height: 1.7 !important;
}

/* Images should shrink naturally without changing section/container widths */
.portfolio-content img,
.g-review-wrap img,
.rs-agency-image img,
.rs-card4-image img,
.parent-div img,
.p-image-box img,
.image-box img,
.video-thumb {
  max-width: 100%;
  display: block;
}

/* Form: keep original section width, only prevent field overflow */
.form-sec .req_input,
.form-sec .req_selected,
.form-sec .req_textarea,
.form-sec .phone-field,
.form-sec .rs-phone-field {
  max-width: 100%;
}

.form-sec .home-page-form {
  max-width: 100%;
}

.verify-wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
}

/* Mobile/tablet only - no section/container width changes */
@media (max-width: 991px) {
  [data-aos] {
    transform: none !important;
  }

  .hero-banner {
    padding-top: 60px;
  }

  .hero-titleinner {
    font-size: clamp(42px, 8vw, 54px) !important;
    line-height: 1.1 !important;
  }

  .rs-full-section {
    min-height: auto;
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .rs-circle-btn {
    width: 115px !important;
    height: 115px !important;
  }

  .rs-text {
    font-size: 16px !important;
  }

  #services .rs-process-title {
    font-size: clamp(30px, 5.5vw, 44px) !important;
    line-height: 1.16 !important;
  }

  #services .section-title p {
    text-align: left;
  }

  .rs-service-card,
  .service-card,
  .feature-card,
  .rs-card,
  .rs-left-card,
  .rs-blog-text-card,
  .standout-blok .rs-growth-card,
  #rs-growth-sec.rs-growth-sec .rs-growth-card {
    padding-left: clamp(22px, 4vw, 32px) !important;
    padding-right: clamp(22px, 4vw, 32px) !important;
  }

  .form-sec .mid_sec {
    padding-top: 24px !important;
    padding-bottom: 24px !important;
  }

  .form-sec .req_block_left {
    margin-bottom: 20px;
  }

  .form-sec .req_block_left .h5,
  .home-form h3,
  .form-extinfo h4 {
    font-size: clamp(26px, 4.5vw, 34px) !important;
    line-height: 1.2 !important;
  }

  .rs-video-zoom-sec,
  .rs-video-content {
    height: auto !important;
    min-height: auto !important;
  }

  .rs-video-content {
    padding-top: 55px;
    padding-bottom: 55px;
  }

  .rs-video-heading,
  .rs-video-title h4 {
    font-size: clamp(32px, 6vw, 52px) !important;
    line-height: 1.12 !important;
  }

  .rs-gsap-stack-sec,
  .rs-gsap-cards,
  .rs-gsap-card,
  .rs-agency-card,
  .pin-spacer {
    position: relative !important;
    height: auto !important;
    min-height: auto !important;
    transform: none !important;
    opacity: 1 !important;
  }

  .rs-gsap-card {
    margin-bottom: 24px;
  }

  .rs-agency-image,
  .rs-card4-image {
    height: auto !important;
    min-height: 320px !important;
  }

  .rs-agency-content {
    padding: 30px 18px !important;
  }

  .rs-agency-content h2,
  .rs-card-3 h2,
  .rs-card-4 h2 {
    font-size: clamp(28px, 5vw, 38px) !important;
    line-height: 1.2 !important;
  }

  .home-faq h2,
  .rs-heading,
  .section-title h2,
  .key-features .kf-title,
  .dev-platform .dp-title,
  .effective-brochures .eb-title,
  .why-number .wn-title,
  .hosting-app .hero-title,
  .uae-host .uae-title,
  .all-hosting .hosting-title,
  .rs-home-blog-new .section-title h2 {
    font-size: clamp(28px, 5vw, 42px) !important;
    line-height: 1.2 !important;
  }
}

@media (max-width: 767px) {
  body {
    font-size: 15px;
  }

  .hero-banner {
    padding-top: 45px;
  }

  .rs-full-section,
  .section,
  .rs-about-minimal,
  .rs-awards-section,
  .hosting-app,
  .uae-host {
    padding-top: 5px !important;
    padding-bottom: 45px !important;
  }

  #services .rs-process-title {
    font-size: clamp(27px, 8vw, 34px) !important;
    line-height: 1.18 !important;
    text-align: center !important;
  }

  #services .rs-process-title-sec,
  .rs-process-title-sec {
    padding-top: 35px !important;
    padding-bottom: 28px !important;
  }

  #services .section-title p {
    font-size: 15px !important;
    line-height: 1.75 !important;
  }

  #services .rs-service-card,
  .services .service-item,
  .service-card {
    padding: 26px 22px !important;
    min-height: auto !important;
  }

  #services .rs-service-icon,
  .rs-service-icon {
    width: 64px !important;
    height: 60px !important;
    font-size: 28px !important;
    margin-bottom: 20px !important;
  }

  .feature-card,
  .modren-services .feature-card {
    flex-direction: column;
    gap: 18px;
  }

  .form-sec .phone-field,
  .form-sec .rs-phone-field {
    gap: 8px;
  }

  .form-sec .country-code {
    width: 90px !important;
    min-width: 90px !important;
    font-size: 14px !important;
  }

  .g-recaptcha {
    transform: scale(0.84);
    transform-origin: left top;
  }

  .btn-animation,
  .form-sec .send,
  .form-sec input[type="submit"] {
    max-width: 100%;
  }

  .dynamic-text,
  .section.effect-title {
    height: auto !important;
    min-height: auto !important;
  }

  .dynamic-text h2 {
    font-size: clamp(28px, 8vw, 36px) !important;
    line-height: 1.18 !important;
  }

  #portfolio .portfolio-actions {
    justify-content: center;
  }

  #portfolio .filter-btn,
  #portfolio .youtube-btn {
    width: 100%;
    justify-content: center;
  }

  .image-box {
    height: 230px;
  }

  .about-features .h2 {
    font-size: clamp(28px, 8vw, 36px) !important;
    line-height: 1.2 !important;
  }

  .about-features .h2 small {
    font-size: clamp(20px, 6vw, 28px) !important;
  }

  .inlinebtns .btn {
    width: 100%;
  }

  .home-faq .accordion-button,
  .rs-creative-accordion .accordion-button {
    font-size: 15px !important;
    line-height: 1.35 !important;
    align-items: flex-start;
  }

  .home-faq .accordion-body,
  .rs-creative-accordion .accordion-body {
    font-size: 14px !important;
    line-height: 1.7 !important;
  }

  .rs-blog-stats h4,
  .rs-blog-stat-number,
  .stack-no,
  .hosting-info .info-number {
    font-size: clamp(34px, 11vw, 46px) !important;
    line-height: 1 !important;
  }

  .rs-location-list,
  .rs-service-grid {
    justify-content: flex-start;
  }

  .rs-location-list a,
  .rs-location-list span,
  .rs-service-grid span {
    max-width: 100%;
  }

  .rs-creative-row,
  .rs-creative-row > div {
    display: block !important;
    min-height: auto !important;
  }

  .rs-creative-img {
    height: 280px !important;
  }

  .rs-creative-content {
    padding: 35px 20px !important;
  }

  .rs-creative-inner {
    max-height: none !important;
    overflow: visible !important;
    padding-right: 0 !important;
  }

  .rs-creative-content h2 {
    font-size: clamp(28px, 8vw, 34px) !important;
    line-height: 1.15 !important;
  }
}

@media (max-width: 420px) {
  #services .rs-process-title {
    font-size: 26px !important;
  }

  #services .rs-service-card,
  .services .service-item,
  .service-card,
  .feature-card,
  .rs-card,
  .rs-left-card,
  .rs-blog-text-card,
  .standout-blok .rs-growth-card,
  #rs-growth-sec.rs-growth-sec .rs-growth-card {
    padding-left: 18px !important;
    padding-right: 18px !important;
  }

  .g-recaptcha {
    transform: scale(0.74);
  }

  .floating-whatsapp {
    right: 12px !important;
    bottom: 70px !important;
    width: 50px !important;
    height: 50px !important;
  }
}

/* =========================================================
   FINAL FIX: Creative Accordion Smooth Scroll + Stable Red Bar
   Added to preserve existing layout/content and only fix:
   1) Accordion open/close smooth like Bootstrap
   2) No scroll jump when accordion tabs are clicked
   3) Red scrollbar stays visible and stable on right side
========================================================= */

/* keep page from jumping horizontally */
html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

/* highlighted creative section: stable layout */
.rs-creative-sec,
.rs-creative-row {
  width: 100%;
  max-width: 100%;
  overflow: hidden !important;
}

.rs-creative-row > div,
.rs-creative-content,
.rs-creative-inner {
  min-width: 0;
}

/* right content keeps its own scroll area; page will not jump */
.rs-creative-content {
  overflow: hidden !important;
}

.rs-creative-inner {
  width: 100% !important;
  max-width: 700px;
  max-height: calc(100vh - 140px) !important;
  overflow-x: hidden !important;
  overflow-y: scroll !important;
  padding-right: 10px !important;
  margin-right: 0 !important;
  scrollbar-gutter: stable;
  scrollbar-width: thin;
  scrollbar-color: #d20000 transparent;
  overscroll-behavior: contain;
  overflow-anchor: none;
  scroll-behavior: auto;
}

/* restore and force red scrollbar in Chrome/Edge/Safari */
.rs-creative-inner::-webkit-scrollbar {
  display: block !important;
  width: 5px !important;
}

.rs-creative-inner::-webkit-scrollbar-track {
  background: transparent !important;
  margin: 0 !important;
}

.rs-creative-inner::-webkit-scrollbar-thumb {
  background: #d20000 !important;
  border-radius: 20px !important;
}

.rs-creative-inner::-webkit-scrollbar-thumb:hover {
  background: #b70000 !important;
}

/* remove browser focus scrolling outline behavior inside accordion */
.rs-creative-accordion .accordion-button:focus,
.rs-creative-accordion .accordion-button:active {
  box-shadow: none !important;
  outline: none !important;
}

/* Bootstrap-like smooth accordion animation */
.rs-creative-accordion .accordion-collapse {
  will-change: height;
}

.rs-creative-accordion .accordion-collapse.collapse:not(.show) {
  display: none !important;
}

.rs-creative-accordion .accordion-collapse.collapse.show {
  display: block !important;
}

.rs-creative-accordion .accordion-collapse.collapsing {
  height: 0;
  overflow: hidden !important;
  transition: height 0.35s ease !important;
}

.rs-creative-accordion .accordion-body {
  overflow-anchor: none;
}

/* keep title/content responsive but do not alter your layout widths */
.rs-creative-sec .rs-process-title,
.rs-creative-sec .rs-creative-content h2 {
  max-width: 100% !important;
  overflow: visible !important;
  text-overflow: clip !important;
}

@media (min-width: 1200px) {
  .rs-creative-sec .rs-process-title,
  .rs-creative-sec .rs-creative-content h2 {
    white-space: nowrap !important;
    font-size: clamp(30px, 1.95vw, 37px) !important;
    line-height: 1.12 !important;
  }

  .rs-creative-sec .rs-process-highlight {
    white-space: nowrap !important;
  }
}

@media (max-width: 1199px) {
  .rs-creative-sec .rs-process-title,
  .rs-creative-sec .rs-creative-content h2 {
    white-space: normal !important;
    font-size: clamp(28px, 3.2vw, 36px) !important;
    line-height: 1.18 !important;
  }

  .rs-creative-sec .rs-process-highlight {
    white-space: normal !important;
  }
}

@media (max-width: 991px) {
  .rs-creative-inner {
    max-height: none !important;
    overflow-y: visible !important;
    padding-right: 0 !important;
  }

  .rs-creative-inner::-webkit-scrollbar {
    display: none !important;
  }
}

/* =========================================================
   FINAL SECTION-ONLY FIX: Creative title visible + underline restored
   Scope: only .rs-creative-sec section
   - Does not change other sections
   - Does not reduce original title font size
   - Allows long title to wrap instead of cutting
   - Restores red underline under highlighted title text
========================================================= */

.rs-creative-sec .rs-creative-inner,
.rs-creative-sec .rs-creative-content,
.rs-creative-sec .rs-process-title-sec {
  min-width: 0 !important;
  max-width: 100% !important;
}

.rs-creative-sec .rs-process-title,
.rs-creative-sec .rs-creative-content h2 {
  width: 100% !important;
  max-width: 100% !important;
  padding-right: 24px !important;
  box-sizing: border-box !important;
  white-space: normal !important;
  overflow: visible !important;
  text-overflow: unset !important;
  word-break: normal !important;
  overflow-wrap: break-word !important;
  line-height: 1.08 !important;
  font-size: 37px !important;
}

.rs-creative-sec .rs-process-highlight {
  position: relative !important;
  display: inline-block !important;
  max-width: 100% !important;
  color: #ff1654 !important;
  white-space: normal !important;
  padding-bottom: 12px !important;
  vertical-align: baseline !important;
}

.rs-creative-sec .rs-process-underline {
  display: block !important;
  position: absolute !important;
  left: 0 !important;
  right: auto !important;
  bottom: -6px !important;
  width: 100% !important;
  max-width: 100% !important;
  height: 20px !important;
  overflow: visible !important;
  pointer-events: none !important;
}

.rs-creative-sec .rs-process-underline path {
  fill: none !important;
  stroke: #ff1654 !important;
  stroke-width: 2 !important;
  stroke-linecap: round !important;
}

@media (max-width: 1199px) {
  .rs-creative-sec .rs-process-title,
  .rs-creative-sec .rs-creative-content h2 {
    font-size: 46px !important;
    line-height: 1.1 !important;
    padding-right: 18px !important;
  }
}

@media (max-width: 991px) {
  .rs-creative-sec .rs-process-title,
  .rs-creative-sec .rs-creative-content h2 {
    font-size: 38px !important;
    line-height: 1.15 !important;
    padding-right: 0 !important;
  }
}

@media (max-width: 576px) {
  .rs-creative-sec .rs-process-title,
  .rs-creative-sec .rs-creative-content h2 {
    font-size: 30px !important;
    line-height: 1.2 !important;
  }
}


/* =========================================================
   001-004 GSAP STACK RESPONSIVE FIX ONLY
   Animation JS same stack effect rakhta hai. Yeh CSS sirf
   mobile/tablet/desktop layout ko device ke according adjust
   karta hai, taaki section blank/overlap/skew na ho.
   ========================================================= */

.rs-gsap-stack-sec {
  position: relative;
  overflow: hidden;
  clear: both;
}

.rs-gsap-cards {
  position: relative;
  isolation: isolate;
  height: clamp(720px, 95vh, 980px);
  min-height: clamp(720px, 95vh, 980px);
  margin-top: 10px !important;
  margin-bottom: 80px;
}

.rs-gsap-card {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  width: 100%;
  height: clamp(700px, 90vh, 940px);
  min-height: clamp(700px, 90vh, 940px);
  overflow: hidden;
  will-change: transform, opacity;
  backface-visibility: hidden;
  transform-origin: center top;
}

.rs-gsap-card .row {
  min-width: 0;
}

.rs-gsap-card [class*="col-"] {
  min-width: 0;
}

.rs-gsap-card .rs-agency-card {
  width: 100%;
  height: 100%;
  overflow: hidden;
  box-sizing: border-box;
}

.rs-gsap-card .rs-agency-content {
  min-width: 0;
  overflow: visible;
  box-sizing: border-box;
}

.rs-gsap-card .rs-agency-image,
.rs-gsap-card .rs-card4-image {
  overflow: hidden;
}

.rs-gsap-card .rs-agency-image img,
.rs-gsap-card .rs-card4-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.rs-gsap-card img {
  max-width: 100%;
}

/* Large laptop/small desktop: keep same animation, only reduce card height pressure */
@media (min-width: 992px) and (max-width: 1399px) {
  .rs-gsap-cards {
    height: 100vh;
    min-height: 760px;
  }

  .rs-gsap-card {
    height: 94vh;
    min-height: 730px;
  }

  .rs-gsap-card .rs-agency-card {
    padding: 24px !important;
  }

  .rs-gsap-card .rs-agency-content h2 {
    font-size: clamp(30px, 3vw, 44px);
    line-height: 1.15;
  }

  .rs-gsap-card .rs-agency-content p {
    font-size: 15px;
    line-height: 1.55;
  }
}

/* Tablet: animation/pin remains, but card becomes single responsive card layout */
@media (max-width: 991px) {
  .rs-gsap-stack-sec {
    padding: 40px 0 !important;
    overflow: hidden !important;
  }

  .rs-gsap-cards {
    height: 92vh !important;
    min-height: 700px !important;
    margin-top: 0 !important;
    margin-bottom: 40px !important;
    display: block !important;
  }

  .rs-gsap-card {
    width: 100% !important;
    height: 88vh !important;
    min-height: 660px !important;
    padding: 0 12px !important;
    border-radius: 22px !important;
    display: block !important;
  }

  .rs-gsap-card .rs-agency-card {
    height: 100% !important;
    min-height: 0 !important;
    padding: 18px !important;
    border-radius: 22px !important;
  }

  .rs-gsap-card .row {
    --bs-gutter-x: 1rem;
    --bs-gutter-y: 1rem;
    height: auto !important;
  }

  .rs-gsap-card .rs-agency-image,
  .rs-gsap-card .rs-card4-image {
    height: 210px !important;
    min-height: 210px !important;
    max-height: 210px !important;
    border-radius: 18px !important;
  }

  .rs-gsap-card .rs-agency-image img,
  .rs-gsap-card .rs-card4-image img {
    height: 210px !important;
    min-height: 210px !important;
    max-height: 210px !important;
    object-fit: cover !important;
  }

  .rs-gsap-card .rs-agency-content {
    height: auto !important;
    max-height: none !important;
    padding: 12px 0 0 !important;
  }

  .rs-gsap-card .rs-agency-top {
    gap: 8px !important;
    margin-bottom: 12px !important;
  }

  .rs-gsap-card .rs-agency-content h2,
  .rs-gsap-card.rs-card-4 h2 {
    font-size: clamp(26px, 5vw, 38px) !important;
    line-height: 1.14 !important;
    margin-bottom: 12px !important;
    word-break: normal;
    overflow-wrap: anywhere;
  }

  .rs-gsap-card .rs-agency-content p,
  .rs-gsap-card .rs-lead,
  .rs-gsap-card .rs-agency-list li {
    font-size: 14px !important;
    line-height: 1.55 !important;
  }

  .rs-gsap-card .rs-lead {
    margin-bottom: 10px !important;
  }

  .rs-gsap-card .rs-agency-content .row.mt-4 {
    margin-top: 10px !important;
  }

  .rs-gsap-card .rs-agency-list {
    margin-top: 8px !important;
  }

  .rs-gsap-card .rs-agency-list ul {
    margin-bottom: 0 !important;
  }

  .rs-gsap-card .rs-agency-dots {
    margin-top: 12px !important;
    gap: 8px !important;
  }

  .rs-gsap-card .rs-agency-dots span {
    width: 58px !important;
    height: 58px !important;
  }

  .rs-location-list {
    gap: 8px !important;
    margin-top: 14px !important;
  }

  .rs-location-list span {
    padding: 7px 12px !important;
    font-size: 13px !important;
  }
}

/* Mobile: same scroll stack effect, compact single-card design, no inner scrollbar */
@media (max-width: 575px) {
  .rs-gsap-stack-sec {
    padding: 28px 0 !important;
  }

  .rs-gsap-stack-sec .container {
    padding-left: 12px !important;
    padding-right: 12px !important;
  }

  .rs-gsap-cards {
    height: 92vh !important;
    min-height: 620px !important;
    margin-bottom: 24px !important;
  }

  .rs-gsap-card {
    height: 88vh !important;
    min-height: 590px !important;
    padding: 0 !important;
    border-radius: 20px !important;
  }

  .rs-gsap-card .rs-agency-card {
    padding: 14px !important;
    border-radius: 20px !important;
  }

  .rs-gsap-card .row,
  .rs-gsap-card .row.g-4,
  .rs-gsap-card .row.g-5 {
    --bs-gutter-x: 0.75rem;
    --bs-gutter-y: 0.75rem;
  }

  .rs-gsap-card .rs-agency-image,
  .rs-gsap-card .rs-card4-image {
    height: 150px !important;
    min-height: 150px !important;
    max-height: 150px !important;
  }

  .rs-gsap-card .rs-agency-image img,
  .rs-gsap-card .rs-card4-image img {
    height: 150px !important;
    min-height: 150px !important;
    max-height: 150px !important;
  }

  .rs-gsap-card .rs-agency-top {
    flex-direction: row !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 8px !important;
    margin-bottom: 8px !important;
  }

  .rs-gsap-card .rs-agency-top span,
  .rs-gsap-card .rs-agency-top small {
    font-size: 11px !important;
    line-height: 1.2 !important;
  }

  .rs-gsap-card .rs-agency-content h2,
  .rs-gsap-card.rs-card-4 h2 {
    font-size: clamp(22px, 7vw, 30px) !important;
    line-height: 1.12 !important;
    margin-bottom: 8px !important;
  }

  .rs-gsap-card .rs-agency-content p,
  .rs-gsap-card .rs-lead,
  .rs-gsap-card .rs-agency-list li {
    font-size: 12.5px !important;
    line-height: 1.42 !important;
    margin-bottom: 6px !important;
  }

  .rs-gsap-card .rs-agency-content p:not(.rs-lead) {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .rs-gsap-card .rs-lead {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .rs-gsap-card .rs-agency-list span {
    font-size: 12px !important;
  }

  .rs-gsap-card .rs-agency-list ul li {
    margin-bottom: 3px !important;
  }

  .rs-gsap-card .rs-agency-dots span {
    width: 46px !important;
    height: 46px !important;
  }

  .rs-location-list {
    gap: 6px !important;
    margin-top: 10px !important;
    /*max-height: 264px;*/
    overflow: hidden;
  }

  .rs-location-list span {
    padding: 6px 9px !important;
    font-size: 11px !important;
  }
}

/* Very small devices 300px-374px */
@media (max-width: 374px) {
  .rs-gsap-cards {
    height: 94vh !important;
    min-height: 560px !important;
  }

  .rs-gsap-card {
    height: 90vh !important;
    min-height: 540px !important;
  }

  .rs-gsap-card .rs-agency-image,
  .rs-gsap-card .rs-card4-image,
  .rs-gsap-card .rs-agency-image img,
  .rs-gsap-card .rs-card4-image img {
    height: 120px !important;
    min-height: 120px !important;
    max-height: 120px !important;
  }

  .rs-gsap-card .rs-agency-content h2,
  .rs-gsap-card.rs-card-4 h2 {
    font-size: 21px !important;
  }

  .rs-gsap-card .rs-agency-content p,
  .rs-gsap-card .rs-lead,
  .rs-gsap-card .rs-agency-list li {
    font-size: 12px !important;
    line-height: 1.35 !important;
  }
}
@media (max-width: 767px) {

  #section-two{
    padding-bottom: 5px !important;
    margin-top: 15px !important;
  }
  #section-two h2{
      max-width: 340px;
      margin: 0 auto;
  }

  .dynamic-text-clone{
      font-size: 28px;
      font-weight: 700;
      line-height: 1.15;
      text-wrap: balance; /* Supported browsers */
  }

  .dynamic-text-clone div{
      display: inline;
      margin: 0;
  }

  .dynamic-text-clone br{
      display: none;
  }
}
.rs-blog-stat-number,
.rs-plus{
    display:inline-block;
    font-size:70px;
    font-weight:700;
    line-height:1;
    color:#e51b24;
}

@media (max-width:767px){
    .rs-blog-stat-number,
    .rs-plus{
        font-size:52px;
    }
}
.accordion-header{
  margin: 0px !important;
}
