html,
body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

/* Full Screen Banner */
.social-carousel-section {
  background: linear-gradient(135deg, #f2281b 0%, #d41c10 100%);
  height: 100vh;
  width: 100%;
  position: relative;
  overflow: hidden;
  padding: 0;
}

/* Social Icons Over Banner */
.social-icons-overlay {
  position: absolute;
  top: 50%;
  left: 30px;
  transform: translateY(-50%);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

/* Social Icon Style */
.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.15);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  color: white;
  font-size: 1.3rem;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.social-icon:hover {
  background: #fff;
  color: #f2281b;
  transform: scale(1.1);
}

/* Carousel Full Height */
.social-carousel .item img {
  width: 100%;
  height: 100vh;
  object-fit: cover;
}

/* Remove borders/shadows for full-screen view */
.social-carousel .item {
  border-radius: 0;
  box-shadow: none;
}

/* Owl Navigation */
.owl-nav {
  position: absolute;
  top: 50%;
  width: 100%;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  padding: 0 30px;
  pointer-events: none;
  z-index: 10;
}

.owl-prev,
.owl-next {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.9) !important;
  border-radius: 50% !important;
  color: #f2281b !important;
  font-size: 1.5rem !important;
  display: flex !important;
  align-items: center;
  justify-content: center;
  pointer-events: all;
  transition: 0.3s;
}

.owl-prev:hover,
.owl-next:hover {
  background: #fff !important;
  transform: scale(1.1);
}

/* Responsive */
@media(max-width:768px) {
  .social-icons-overlay {
    left: 15px;
  }

  .social-icon {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }

}

/* Owl Dots Custom Style */
.owl-dots {
  position: absolute;
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 50;
}

.owl-dot span {
  width: 12px !important;
  height: 12px !important;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5) !important;
  display: block;
  transition: .3s;
}

.owl-dot.active span {
  background: #f2281b !important;
  transform: scale(1.2);
}


.about-section {
  position: relative;
  padding: 30px 0;
  background: linear-gradient(135deg, #f2281b 0%, #d41c10 100%);
  color: white;
  overflow: hidden;
}

.about-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
}

/* Content Styling */
.content-column .inner-column {
  padding: 30px;
  position: relative;
  z-index: 2;
}

.sec-title {
  position: relative;
  z-index: 1;
  margin-bottom: 40px;
}

.sec-title .title {
  position: relative;
  display: block;
  font-size: 18px;
  line-height: 24px;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.sec-title h2 {
  position: relative;
  display: block;
  font-size: 32px;
  line-height: 1.3;
  color: #ffffff;
  font-weight: 700;
  padding-bottom: 20px;
  margin-bottom: 0;
}

.sec-title h2:before {
  position: absolute;
  content: '';
  left: 0;
  bottom: 0;
  width: 60px;
  height: 4px;
  background-color: #ffffff;
}

.sec-title.text-center h2:before {
  left: 50%;
  margin-left: -30px;
}

.about-section .text {
  margin-bottom: 25px;
  font-size: 16px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 400;
}

/* New About Section Styles */
.about-section-new {
  position: relative;
  overflow: hidden;
  background: #ffffff;
  margin: 0;
  padding: 0;
}

.about-section-new::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-image: 
    url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"><path d="M50,30 Q60,20 70,30 T90,30 T110,30" stroke="rgba(255,182,47,0.08)" fill="none" stroke-width="1.5"/><path d="M30,70 Q40,60 50,70 T70,70 T90,70" stroke="rgba(255,182,47,0.06)" fill="none" stroke-width="1.5"/><path d="M70,110 Q80,100 90,110 T110,110" stroke="rgba(255,182,47,0.08)" fill="none" stroke-width="1.5"/><path d="M20,150 Q30,140 40,150 T60,150" stroke="rgba(255,182,47,0.06)" fill="none" stroke-width="1.5"/></svg>');
  background-repeat: repeat;
  background-size: 250px 250px;
  opacity: 0.25;
  z-index: 0;
  pointer-events: none;
}

.about-image-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 650px;
  overflow: hidden;
  background: #f5f5f5;
}

.about-main-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.about-image-wrapper:hover .about-main-image {
  transform: scale(1.02);
}

.about-content-wrapper {
  position: relative;
  background: #ffffff;
  padding: 70px 60px;
  height: 100%;
  min-height: 650px;
  display: flex;
  align-items: center;
  z-index: 1;
}

.about-content-inner {
  position: relative;
  z-index: 2;
  width: 100%;
}

.about-us-heading {
  font-size: 52px;
  font-weight: 700;
  color: #f2281b;
  margin-bottom: 35px;
  line-height: 1.1;
  font-family: "UntitledSans", sans-serif;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.about-text-content {
  position: relative;
}

.about-paragraph {
  font-size: 16px;
  line-height: 1.85;
  color: #333333;
  margin-bottom: 28px;
  font-weight: 400;
  text-align: justify;
}

.about-paragraph:last-child {
  margin-bottom: 0;
}

/* Leaf Pattern Background - Multiple decorative elements */
.about-content-wrapper::after {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 350px;
  height: 350px;
  background-image: 
    url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 120 120"><path d="M60,15 Q45,25 35,40 Q25,50 35,60 Q45,70 60,75 Q75,70 85,60 Q95,50 85,40 Q75,25 60,15" fill="rgba(255,182,47,0.06)" stroke="rgba(255,182,47,0.12)" stroke-width="0.8"/><path d="M60,25 Q50,30 45,40 Q40,45 45,50 Q50,55 60,58 Q70,55 75,50 Q80,45 75,40 Q70,30 60,25" fill="rgba(255,182,47,0.04)" stroke="rgba(255,182,47,0.1)" stroke-width="0.6"/></svg>');
  background-repeat: no-repeat;
  background-size: contain;
  opacity: 0.5;
  z-index: 0;
  pointer-events: none;
}

.about-content-wrapper::before {
  content: '';
  position: absolute;
  bottom: -60px;
  left: -60px;
  width: 250px;
  height: 250px;
  background-image: 
    url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path d="M50,20 Q35,30 25,45 Q20,55 25,65 Q35,75 50,80 Q65,75 75,65 Q80,55 75,45 Q65,30 50,20" fill="rgba(255,182,47,0.04)" stroke="rgba(255,182,47,0.08)" stroke-width="0.5"/></svg>');
  background-repeat: no-repeat;
  background-size: contain;
  opacity: 0.4;
  z-index: 0;
  pointer-events: none;
}

/* Responsive Styles - Tablet */
@media (max-width: 1199px) {
  .about-content-wrapper {
    padding: 60px 45px;
  }
  
  .about-us-heading {
    font-size: 44px;
    margin-bottom: 30px;
  }
  
  .about-paragraph {
    font-size: 15.5px;
    margin-bottom: 25px;
  }
}

@media (max-width: 991px) {
  .about-image-wrapper {
    min-height: 500px;
  }
  
  .about-content-wrapper {
    padding: 50px 40px;
    min-height: auto;
  }
  
  .about-us-heading {
    font-size: 38px;
    margin-bottom: 25px;
    letter-spacing: 1.5px;
  }
  
  .about-paragraph {
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 22px;
  }
  
  .about-content-wrapper::after {
    width: 280px;
    height: 280px;
    top: -60px;
    right: -60px;
  }
  
  .about-content-wrapper::before {
    width: 200px;
    height: 200px;
    bottom: -50px;
    left: -50px;
  }
}

/* Responsive Styles - Mobile */
@media (max-width: 767px) {
  .about-section-new {
    padding: 0;
  }
  
  .about-image-wrapper {
    min-height: 350px;
    order: 1;
  }
  
  .about-content-wrapper {
    padding: 40px 25px;
    min-height: auto;
    order: 2;
  }
  
  .about-us-heading {
    font-size: 32px;
    margin-bottom: 20px;
    letter-spacing: 1px;
  }
  
  .about-paragraph {
    font-size: 14px;
    line-height: 1.75;
    margin-bottom: 18px;
    text-align: left;
  }
  
  .about-content-wrapper::after {
    width: 200px;
    height: 200px;
    top: -40px;
    right: -40px;
    opacity: 0.3;
  }
  
  .about-content-wrapper::before {
    width: 150px;
    height: 150px;
    bottom: -30px;
    left: -30px;
    opacity: 0.3;
  }
  
  .about-section-new::before {
    background-size: 180px 180px;
    opacity: 0.15;
  }
}

@media (max-width: 575px) {
  .about-image-wrapper {
    min-height: 300px;
  }
  
  .about-content-wrapper {
    padding: 35px 20px;
  }
  
  .about-us-heading {
    font-size: 28px;
    margin-bottom: 18px;
  }
  
  .about-paragraph {
    font-size: 13.5px;
    line-height: 1.7;
    margin-bottom: 16px;
  }
  
  .about-content-wrapper::after {
    width: 150px;
    height: 150px;
    top: -30px;
    right: -30px;
  }
  
  .about-content-wrapper::before {
    width: 120px;
    height: 120px;
    bottom: -20px;
    left: -20px;
  }
}

/* Image Styling */
.image-column .inner-column {
  position: relative;
  padding: 20px;
}

.image-frame {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.main-image {
  width: 100%;
  height: 500px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.image-frame:hover .main-image {
  transform: scale(1.05);
}

/* Floating Elements */
.floating-element {
  position: absolute;
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #f2281b;
  font-size: 24px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  animation: float 3s ease-in-out infinite;
}

.element-1 {
  top: 20px;
  right: 20px;
  animation-delay: 0s;
}

.element-2 {
  bottom: 80px;
  left: 20px;
  animation-delay: 1s;
}

.element-3 {
  bottom: 20px;
  right: 40%;
  animation-delay: 2s;
}

@keyframes float {

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

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

/* Stats Section */
.stats-container {
  display: flex;
  justify-content: space-between;
  margin: 30px 0;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-item {
  text-align: center;
  flex: 1;
}

.stat-number {
  font-size: 36px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 5px;
}

.stat-label {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Button Styling */
.btn-style-one {
  position: relative;
  display: inline-block;
  font-size: 13px;
  line-height: 24px;
  color: #f2281b;
  padding: 9px 20px;
  font-weight: 600;
  overflow: hidden;
  letter-spacing: 1px;
  background-color: #ffffff;
  border: none;
  border-radius: 4px;
  text-decoration: none;
  transition: all 0.3s ease;
  text-transform: uppercase;
  /* display: flex
; */
  /* justify-content: center; */
}

/* Add this to the parent container */
.btn-box {
  text-align: center;
}

.btn-style-one:hover {
  background-color: #f8f9fa;
  color: #d41c10;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* Mission Section */
.mission-section {
  position: relative;
  z-index: 2;
  margin-top: 80px;
}

.mission-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  padding: 40px 30px;
  text-align: center;
  height: 100%;
  transition: transform 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.mission-card:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.15);
}

.mission-icon {
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  color: #f2281b;
  font-size: 32px;
}

.mission-card h4 {
  color: #ffffff;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 15px;
}

.mission-card p {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  margin: 0;
}

/* Responsive Design */
@media (max-width: 991px) {
  .about-section {
    padding: 80px 0;
  }

  .content-column .inner-column {
    padding: 20px 0;
  }

  .sec-title h2 {
    font-size: 36px;
  }

  .main-image {
    height: 400px;
  }

  .stats-container {
    margin: 20px 0;
  }

  .stat-number {
    font-size: 28px;
  }

  .social-carousel-section {
    background: linear-gradient(135deg, #f2281b 0%, #d41c10 100%);
    height: 68vh;
    width: 100%;
    position: relative;
    overflow: hidden;
    padding: 0;
  }

  .social-carousel .item img {
    width: 100%;
    height: 65vh;
    object-fit: cover;
  }

}

@media (max-width: 768px) {
  .about-section {
    padding: 60px 0;
  }

  .sec-title h2 {
    font-size: 32px;
  }

  .main-image {
    height: 350px;
  }

  .stats-container {
    flex-direction: column;
    gap: 20px;
  }

  .floating-element {
    width: 50px;
    height: 50px;
    font-size: 20px;
  }

  .mission-card {
    padding: 30px 20px;
  }
}

@media (max-width: 576px) {
  .sec-title h2 {
    font-size: 28px;
  }

  .main-image {
    height: 300px;
  }

  .btn-style-one {
    padding: 12px 30px;
    font-size: 14px;
  }

  .mission-icon {
    width: 70px;
    height: 70px;
    font-size: 28px;
  }
}

.ourServices {
  font-family: sail;
  color: #d41c10;
  text-align: center;
  margin-top: 20px;
  font-size: 1.5rem;
}

.services-section {
  background-color: #fff;
  position: relative;
  overflow: hidden;
}

.section-subtitle {
  font-family: "Poppins", sans-serif;
  color: #d41c10;
  font-weight: 500;
  letter-spacing: 0.5px;
}

.section-title {
  font-family: "Playfair Display", serif;
  color: #0b163f;
  font-weight: 700;
}

.service-card {
  background: #ffffff;
  border-radius: 8px;
  /* box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1); */
  padding: 30px 20px;
  transition: all 0.3s ease-in-out;
  height: 100%;
}

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

.service-icon {
  width: 80px;
  height: auto;
  margin-bottom: 20px;
}

.service-title {
  color: #0b163f;
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 18px;
}

.service-text {
  color: #555;
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 20px;
}

.read-more {
  color: #d41c10;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s;
}

.read-more i {
  margin-left: 6px;
  transition: transform 0.3s ease;
}

.read-more:hover {
  color: #005f56;
}

.read-more:hover i {
  transform: translateX(5px);
}

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

  .service-card {
    padding: 25px 15px;
  }

  .service-icon {
    width: 70px;
  }
}

.EventServices {
  padding: 40px 0;
}

.EventServices-title {
  font-size: 2.2rem;
  color: #333;
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.EventServices-subtitle {
  font-size: 1.3rem;
  color: #666;
  margin-bottom: 3rem;
  font-weight: 400;
}

.EventServices-card {
  border: 1px solid #eaeaea;
  border-radius: 8px;
  transition: all 0.3s ease;
  background: white;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 25px 15px;
  margin-bottom: 20px;
}

.EventServices-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
  border-color: #FF9800;
}

.EventServices-card-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f8f8f8;
  border-radius: 50%;
  margin-bottom: 15px;
  color: #FF9800;
}

.EventServices-card-icon i {
  font-size: 24px;
}

.EventServices-card-title {
  font-size: 1rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.EventServices-card-text {
  font-size: 0.85rem;
  color: #666;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .EventServices-title {
    font-size: 1.8rem;
  }

  .EventServices-subtitle {
    font-size: 1.1rem;
  }

  .EventServices-card {
    margin-bottom: 15px;
  }
}


.samanwaya-process {
  position: relative;
  background: #fff;
  padding: 120px 0;
  overflow: hidden;
}

.samanwaya-process::before {
  content: "";
  position: absolute;
  top: 0;
  left: -10%;
  right: 0;
  height: 100%;
  background: radial-gradient(circle at 10% 20%, rgba(242, 40, 27, 0.1), transparent 70%),
    radial-gradient(circle at 90% 80%, rgba(212, 28, 16, 0.08), transparent 70%);
  z-index: 0;
}

.process-header {
  margin-bottom: 70px;
  position: relative;
  z-index: 2;
}

.process-header h2 {
  font-size: 42px;
  font-weight: 700;
  text-transform: uppercase;
  background: linear-gradient(135deg, #f2281b, #d41c10);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: 1px;
}

.process-header p {
  color: #555;
  font-size: 18px;
  margin-top: 8px;
}

.process-flow {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 50px;
  flex-wrap: nowrap;
  position: relative;
  z-index: 2;
}

.process-card {
  text-align: center;
  position: relative;
}

.process-icon {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f2281b 0%, #d41c10 100%);
  color: #fff;
  font-size: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin: 0 auto 20px;
  transition: all 0.4s ease;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  cursor: pointer;
  overflow: hidden;
}

.process-icon i {
  z-index: 1;
  transition: transform 0.4s ease, opacity 0.4s ease;
}

.process-overlay {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.95);
  color: #d41c10;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  opacity: 0;
  transform: scale(0.8);
  border-radius: 50%;
  padding: 20px;
  font-size: 13px;
  font-weight: 500;
  transition: all 0.4s ease;
}

.process-icon:hover i {
  opacity: 0.1;
  transform: scale(1.3);
}

.process-icon:hover .process-overlay {
  opacity: 1;
  transform: scale(1);
}

.process-card h4 {
  font-size: 18px;
  font-weight: 600;
  color: #111;
  margin-top: 10px;
}

.process-arrow {
  font-size: 22px;
  color: #d41c10;
}

/* Responsive */
@media (max-width: 992px) {
  .process-flow {
    flex-wrap: wrap;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .process-flow {
    flex-direction: column;
  }

  .process-arrow i {
    transform: rotate(90deg);
  }
}

.samanwaya-reviews {
  background: #f8f3ef;
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

.review-header {
  margin-bottom: 60px;
}

.review-header h2 {
  font-size: 42px;
  font-weight: 700;
  color: #d41c10;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.review-header p {
  font-size: 18px;
  color: #555;
  margin-top: 10px;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  position: relative;
  z-index: 2;
}

/* Review Card Style */
.review-card {
  background: #fff;
  border-radius: 6px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  position: relative;
}

/* .review-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(242,40,27,0.25);
} */

/* Profile section */
.review-profile {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.review-profile img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #f2281b;
}

.review-profile h4 {
  font-size: 18px;
  font-weight: 600;
  color: #222;
  margin: 0;
}

.review-profile p {
  color: #888;
  font-size: 14px;
  margin: 0;
}

/* Review content */
.review-text p {
  font-size: 16px;
  color: #444;
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 20px;
}

/* Footer */
.review-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.stars {
  color: #f7b731;
  font-size: 18px;
  letter-spacing: 2px;
}

.review-footer small {
  color: #777;
  font-size: 13px;
}

/* Hover overlay aesthetic */
/* .review-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background: linear-gradient(135deg, rgba(242,40,27,0.1), rgba(212,28,16,0.1));
  border-radius: 20px;
  transition: width 0.4s ease;
  z-index: 0;
} */

/* .review-card:hover::after {
  width: 100%;
} */

@media (max-width: 768px) {
  .review-header h2 {
    font-size: 32px;
  }

  .review-header p {
    font-size: 16px;
  }

  .review-card {
    padding: 25px;
  }
}



.footer-section {
  background: linear-gradient(135deg, #f2281b 0%, #d41c10 100%);

  color: #f3f3f3;
  padding: 60px 0 30px;
  font-family: 'Poppins', sans-serif;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

.footer-about,
.footer-links,
.footer-contact {
  flex: 1 1 200px;
}

.footer-about h3 {
  color: #fff;
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.footer-about p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #ddd;
  margin-bottom: 20px;
}

.footer-social a {
  display: inline-block;
  color: #fff;
  background-color: rgba(255, 255, 255, 0.1);
  margin-right: 10px;
  padding: 10px 12px;
  border-radius: 50%;
  transition: all 0.4s ease;
}

.footer-social a:hover {
  background-color: #7e0e1f;
  transform: scale(1.1);
}

.footer-links h4,
.footer-contact h4 {
  color: #fff;
  margin-bottom: 15px;
  font-size: 1.2rem;
  border-bottom: 2px solid #7e0e1f;
  display: inline-block;
  padding-bottom: 5px;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin: 8px 0;
}

.footer-links a {
  text-decoration: none;
  color: #ccc;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #7e0e1f;
}

.footer-contact p {
  color: #ccc;
  font-size: 0.95rem;
  margin: 10px 0;
}

.footer-contact i {
  color: #fff;
  margin-right: 8px;
}

.footer-bottom {
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  margin-top: 40px;
  padding-top: 20px;
}

.footer-bottom p {
  color: #aaa;
  font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 992px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-links h4,
  .footer-contact h4 {
    border: none;
  }

  .footer-social a {
    margin: 5px;
  }
}

/* services */

.corporate-hero-section {
  background-image: url('img/23.abe1aa7cea7e0b1fe547ca11300f6b06.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 400px;
  position: relative;
  display: flex;
  align-items: center;
}

.corporate-hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
}

.corporate-hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero-text {
  text-align: center;
  color: white;
}

.hero-main-title {
  font-family: "Muli", Sans-serif;
  font-size: 2.3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.hero-breadcrumb {
  font-family: "Poppins", sans-serif;
  font-size: 1.1rem;
  letter-spacing: 1px;
}

.hero-breadcrumb a {
  color: white;
  text-decoration: none;
  transition: color 0.3s ease;
}

.hero-breadcrumb a:hover {
  color: #fff;
}

.separator {
  margin: 0 10px;
  color: #fff;
}

.current-page {
  color: #fff;
  font-weight: 500;
}

/* Responsive Design */
@media (max-width: 768px) {
  .corporate-hero-section {
    height: 300px;
  }

  .hero-main-title {
    font-size: 2.5rem;
    letter-spacing: 1px;
  }

  .hero-breadcrumb {
    font-size: 1rem;
  }
}

@media (max-width: 576px) {
  .corporate-hero-section {
    height: 250px;
  }

  .hero-main-title {
    font-size: 2rem;
    margin-bottom: 0.5rem;
  }

  .hero-breadcrumb {
    font-size: 0.9rem;
  }
}


.corporate-content-section {
  background: linear-gradient(135deg, rgba(120, 0, 0, 0.02) 0%, rgba(120, 0, 0, 0.06) 100%);
  position: relative;
}

.section-title {
  font-family: "Playfair Display", serif;
  color: #d41c10;
  font-size: 2.0rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

.section-description {
  color: #555;
  font-size: 1.0rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.content-image {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(120, 0, 0, 0.15);
  border: 3px solid white;
}

.content-image img {
  width: 100%;
  height: auto;
  transition: transform 0.3s ease;
}

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

/* Responsive Design */
@media (max-width: 768px) {
  .section-title {
    font-size: 2rem;
    text-align: center;
  }

  .section-description {
    font-size: 1rem;
    text-align: center;
  }

  .content-image {
    margin-top: 2rem;
  }

  .corporate-content-section .row {
    text-align: center;
  }
}

@media (max-width: 576px) {
  .section-title {
    font-size: 1.8rem;
  }

  .section-description {
    font-size: 0.95rem;
  }
}


.service-title1 {
  color: #d41c10;
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 18px;
  font-family: sail;
  ;
}

.service-card1 {
  background: #ffffff;
  border-radius: 8px;
  /* box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1); */
  padding: 30px 20px;
  transition: all 0.3s ease-in-out;
  /* height: 100%; */
}

.service-text1 {
  color: #555;
  font-size: 13px;
  line-height: 1.7;
  margin-bottom: 20px;
}

.service-card1:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.samanwayaAboutus {
  padding: 60px 0;
  font-family: 'Poppins', sans-serif;
}

.samanwayaAboutus .about-title {
  text-align: center;
  font-size: 48px;
  font-weight: 700;
  color: #ff3b2f;
  margin-bottom: 40px;
}

.samanwayaAboutus .about-content {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  flex-wrap: wrap;
}

.samanwayaAboutus .about-image img {
  width: 100%;
  max-width: 500px;
  border-radius: 10px;
  object-fit: cover;
}

.samanwayaAboutus .about-text {
  flex: 1;
  font-size: 20px;
  line-height: 1.7;
  color: #222;
}

 /* =========================
   samanwayaWhyChoose Styles
   ========================= */
.samanwayaWhyChoose {
  background-color: #eb1f16;
  color: #ffffff;
  font-family: 'Poppins', system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  position: relative;
  overflow: hidden;
  padding-top: 3.5rem;
  padding-bottom: 3.5rem;
}

/* decorative image (absolute so it doesn't push content) */
.samanwayaWhyChoose .decorative-bg {
  position: absolute;
  right: 20px;
  top: 30px;
  width: 360px;
  max-width: 30%;
  height: auto;
  opacity: 0.12;
  pointer-events: none;
  z-index: 0;
  object-fit: cover;
  transform: translateY(0);
}

/* Titles layered above decorative image */
.samanwayaWhyChoose .main-title,
.samanwayaWhyChoose .sub-title {
  position: relative;
  z-index: 2; /* keep above decorative */
}

/* Title styles */
.samanwayaWhyChoose .main-title {
  font-weight: 700;
  font-size: clamp(36px, 6.5vw, 30px);
  margin: 0;
  color: #ffffff;
  line-height: 1;
}

.samanwayaWhyChoose .sub-title {
  color: rgba(0,0,0,0.85);
  font-weight: 700;
  font-size: clamp(16px, 1.6vw, 26px);
  margin-bottom: 1.5rem;
  position: relative;
}

/* Circular image wrapper */
.samanwayaWhyChoose .circle-image {
  width: min(420px, 46vw);
  height: min(420px, 46vw);
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
  background: #fff;
  z-index: 2; /* above decorative */
}

/* inner image */
.samanwayaWhyChoose .circle-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .6s ease;
}

.samanwayaWhyChoose .circle-image:hover img {
  transform: scale(1.03);
}

/* list */
.samanwayaWhyChoose .why-list {
  display: flex;
  flex-direction: column;
  gap: 2.2rem;
  padding-left: 0;
  z-index: 2; /* above decorative */
}

.samanwayaWhyChoose .why-item {
  display: flex;
  align-items: center;
  font-weight: 600;
  color: #fff;
  font-size: clamp(18px, 2.2vw, 27px);
  line-height: 1.1;
}

/* dot */
.samanwayaWhyChoose .dot {
  color: #fff;
  font-size: clamp(20px, 2.8vw, 36px);
  margin-right: 1rem;
  width: 36px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  transform: translateY(-2px);
}

/* ensure text stays readable on small screens */
@media (max-width: 991.98px) {
  .samanwayaWhyChoose .decorative-bg {
    display: none; /* hide decorative on tablets/smaller to save space */
  }

  .samanwayaWhyChoose .circle-image {
    width: 320px;
    height: 320px;
  }

  .samanwayaWhyChoose .why-item {
    font-size: clamp(16px, 2.6vw, 24px);
  }
}

/* very small devices */
@media (max-width: 575.98px) {
  .samanwayaWhyChoose {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  .samanwayaWhyChoose .circle-image {
    width: 240px;
    height: 240px;
  }

  .samanwayaWhyChoose .main-title {
    font-size: 26px;
  }

  .samanwayaWhyChoose .why-item {
    font-size: 18px;
  }
}

 /* ---------- Full responsive CSS for .samanwayaServices ---------- */
:root{
  --red:#eb1f16;
  --overlay-start: rgba(235,31,22,0.20);
  --overlay-end: rgba(0,0,0,0.28);
}

/* SECTION BASE */
.samanwayaServices {
  background: var(--red);
  color: #fff;
  font-family: 'Poppins', system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  padding: 48px 12px 32px;
  box-sizing: border-box;
}

/* HEADER */
.samanwayaServices .services-title {
  text-align: center;
  font-size: clamp(36px, 6vw, 30px);
  font-weight: 700;
  margin: 0;
  color: #fff;
}

.samanwayaServices .services-subtitle {
  text-align: center;
  color: rgba(0,0,0,0.9);
  font-weight: 700;
  margin: 8px 0 28px 0;
  font-size: clamp(14px, 1.8vw, 24px);
}

/* CENTER BOX */
.services-box {
  max-width: 1400px;
  margin: 0 auto;
  overflow: hidden;
  box-sizing: border-box;
}

/* GRID: 12-column control; no gaps */
.services-grid {
  display: grid;
  gap: 0;
  width: 100%;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: minmax(140px, auto);
  align-items: stretch;
  box-sizing: border-box;
}

/* Tile base */
.grid-item {
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
  min-height: 120px;
}

/* Image: dim by default, smooth transition */
.grid-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: opacity .42s cubic-bezier(.2,.9,.3,1),
              transform .42s cubic-bezier(.2,.9,.3,1),
              filter .42s cubic-bezier(.2,.9,.3,1);
  opacity: 0.80;
  filter: brightness(0.82);
  transform: scale(1);
}

/* Hover / focus: brighten & subtle zoom */
.grid-item:hover img,
.grid-item:focus-within img {
  opacity: 1;
  filter: brightness(1);
  transform: scale(1.03);
}

/* Overlay for readability: fades on hover */
.grid-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, var(--overlay-start), var(--overlay-end));
  mix-blend-mode: multiply;
  pointer-events: none;
  transition: opacity .42s cubic-bezier(.2,.9,.3,1);
  opacity: 1;
}
.grid-item:hover::before,
.grid-item:focus-within::before { opacity: 0; }

/* Tile text */
.tile-text {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  color: #fff;
  text-align: center;
  font-weight: 600;
  font-size: clamp(16px, 2.0vw, 24px);
  line-height: 1.05;
  text-shadow: 0 6px 18px rgba(0,0,0,0.45);
  padding: 6px 10px;
  white-space: pre-line;
  transition: transform .42s cubic-bezier(.2,.9,.3,1), opacity .42s linear;
}

/* slight pop on hover/focus */
.grid-item:hover .tile-text,
.grid-item:focus-within .tile-text {
  transform: translate(-50%, -50%) scale(1.03);
}

/* ================= Desktop layout (6 images) ================= */
/* Top-left */
.item-1 { grid-column: 1 / span 4; grid-row: 1 / span 1; }

/* Top-middle */
.item-2 { grid-column: 5 / span 4; grid-row: 1 / span 1; }

/* Tall right column spanning rows 1-3 */
.item-3 { grid-column: 9 / span 4; grid-row: 1 / span 3; }

/* Middle-left under item-1 */
.item-4 { grid-column: 1 / span 4; grid-row: 2 / span 1; }

/* Middle-middle under item-2 */
.item-5 { grid-column: 5 / span 4; grid-row: 2 / span 1; }

/* Bottom full-width (left side) under items 4+5 — spans 8 cols */
.item-6 { grid-column: 1 / span 8; grid-row: 3 / span 1; }

/* Ensure exactly no gaps between tiles */

/* ====== Tablet breakpoint (<= 991.98px) ====== */
@media (max-width: 991.98px) {
  .services-grid {
    grid-template-columns: repeat(6, 1fr);
    grid-auto-rows: minmax(140px, auto);
  }

  /* reorder/respan for tablet */
  .item-1 { grid-column: 1 / span 3; grid-row: 1 / span 1; }
  .item-2 { grid-column: 4 / span 3; grid-row: 1 / span 1; }
  .item-3 { grid-column: 1 / span 6; grid-row: 2 / span 2; } /* tall across */
  .item-4 { grid-column: 1 / span 3; grid-row: 4 / span 1; }
  .item-5 { grid-column: 4 / span 3; grid-row: 4 / span 1; }
  .item-6 { grid-column: 1 / span 6; grid-row: 5 / span 1; }

  .tile-text { font-size: clamp(14px, 2.1vw, 22px); }
}

/* ====== Mobile breakpoint (<= 575.98px) ====== */
@media (max-width: 575.98px) {

  /* Hide first tile on mobile (as requested earlier) */
  /* .item-1 { display: none !important; } */

  /* stack as 2 columns, all tiles full width of 2 cols */
  .services-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    grid-auto-rows: minmax(140px, auto);
  }

  /* ensure every visible tile spans both cols and stacks cleanly (no top gap) */
  .grid-item { grid-column: span 2 !important; grid-row: auto !important; }

  /* new mobile order (item-1 hidden) */
  .item-2 { order: 0; }
  .item-3 { order: 1; }
  .item-4 { order: 2; }
  .item-5 { order: 3; }
  .item-6 { order: 4; }

  .tile-text { font-size: 16px; padding: 6px 8px; }
}

/* Accessibility focus */
.grid-item:focus,
.grid-item:focus-within { outline: 3px solid rgba(255,255,255,0.06); outline-offset: -3px; }

/* Avoid container padding creating visual gaps */
.samanwayaServices .container { padding-left: 12px; padding-right: 12px; box-sizing: border-box; }


 /* Basic fonts/colors */
.samanwayaMomentsThree { background: #ffffff; color: #111; font-family: 'Poppins', system-ui, sans-serif; }
.samanwayaMomentsThree .title { color: #e7372d; font-weight:800; font-size: clamp(36px,6vw,42px); margin:0; }
.samanwayaMomentsThree .subtitle { color:#000; font-weight:700; font-size: clamp(14px,2vw,20px); margin:8px 0 22px; }

/* The 3-column attached layout */
.three-grid {
  display: flex;
  gap: 0;                    /* no gaps between tiles */
  align-items: end;          /* align bottoms so center looks taller */
  justify-content: center;
  width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}

/* Each tile */
.three-item { position: relative; overflow: hidden; display:flex; align-items:flex-end; }

/* widths: left 28%, center 44%, right 28% (adjust to taste) */
.three-item.left  { flex: 0 0 28%; }
.three-item.center{ flex: 0 0 44%; }
.three-item.right { flex: 0 0 28%; }

/* Heights: center taller, sides shorter */
.three-item.left img   { height: 300px; width:100%; object-fit:cover; display:block; }
.three-item.center img { height: 420px; width:100%; object-fit:cover; display:block; }
.three-item.right img  { height: 300px; width:100%; object-fit:cover; display:block; }

/* Smooth dim -> bright and subtle zoom on hover */
.three-item img {
  transition: transform .5s ease, filter .45s ease, opacity .45s ease;
  filter: brightness(0.88);
  opacity: 0.95;
}
.three-item:hover img { transform: scale(1.03); filter: brightness(1); opacity: 1; }

/* Make sure images touch exactly — remove any container padding effect */
.samanwayaMomentsThree .container { max-width:1200px; padding-left:12px; padding-right:12px; }

/* RESPONSIVE: tablets */
@media (max-width: 991.98px) {
  .three-item.left, .three-item.right { flex-basis: 30%; }
  .three-item.center { flex-basis: 40%; }

  .three-item.left img, .three-item.right img { height: 260px; }
  .three-item.center img { height: 360px; }
}

/* RESPONSIVE: mobile — stacked, center first, no top gap */
@media (max-width: 575.98px) {
  .three-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: stretch;
  }

  /* center first */
  .three-item.center { order: 0; }
  .three-item.left   { order: 1; }
  .three-item.right  { order: 2; }

  /* full width and appropriate heights */
  .three-item { flex-basis: auto; width: 100%; }
  .three-item.center img { height: 260px; width:100%; }
  .three-item.left img,
  .three-item.right img { height: 200px; width:100%; }
}

/* Optional: remove default link highlight when focusing (improves look) */
.three-item:focus { outline: none; }
 
/* ===== Contact Form Styling ===== */
.contact-section {
  background: #fff;
}

.contact-form {
  background: #ffffff;
  border-radius: 15px;
  transition: all 0.4s ease;
}

.contact-form:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.contact-form .form-label {
  color: #333;
  font-size: 0.95rem;
  font-weight: 300 !important;
}

.contact-form .form-control,
.contact-form .form-select {
  border-radius: 5px;
  border: 1px solid #ccc;
  transition: all 0.3s ease;
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
  border-color: #dc3545;
  box-shadow: 0 0 8px rgba(220, 53, 69, 0.3);
}

.contact-form .btn-danger {
  border-radius: 30px;
  transition: all 0.3s ease;
}

.contact-form .btn-danger:hover {
  background-color: #c82333;
  transform: scale(1.05);
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .contact-form {
    padding: 20px;
  }
}