:root {
  --primary: #4b328f;
  --primary-dark: #24125c;
  --green: #1f4d2d;
  --text: #131225;
  --muted: #6f6b80;
  --light: #f7f5fb;
  --white: #fff;
  --shadow: 0 18px 45px rgba(75, 50, 143, .14);
  --radius: 22px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box
}

body {
  font-family: Arial, sans-serif;
  color: var(--text);
  background: #e4e4e4;
  overflow-x: hidden;
}

a {
  text-decoration: none
}

img {
  max-width: 100%
}

.top-header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(255, 255, 255, .96);
  backdrop-filter: blur(12px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, .06);
}

.navbar-brand img {

  height: 63px;
}


.navbar-nav .nav-link {
  color: #201647;
  font-weight: 500;
  font-size: 15px;
  padding: 8px 14px !important;
  border-radius: 30px;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  background: rgba(75, 50, 143, .1);
  color: var(--primary);
}

.call-btn {
  /* background: linear-gradient(135deg, var(--primary), var(--primary-dark)); */
    background: radial-gradient(circle at top right, rgba(106, 90, 205, .28), transparent 34%), linear-gradient(135deg, #120c2e 0%, #3f3278 45%, #3b2a70 100%);
  color: #fff;
  padding: 11px 20px 10px 22px;
  border-radius: 40px;
  box-shadow: 0 12px 25px rgba(75, 50, 143, .28);
  display: inline-flex;
  align-items: center;
  gap: 9px;
  text-decoration: none;
}

.call-btn {
  /* background: linear-gradient(135deg, #4c309b, #24125c); */
    background: radial-gradient(circle at top right, rgba(106, 90, 205, .28), transparent 34%), linear-gradient(135deg, #2d235e 0%, #3f3278 45%, #3b2a70 100%);
  color: #fff;
  transition: all 0.3s ease;
}

.call-btn:hover {
  background: linear-gradient(135deg, #5a4bcf, #7b68ee, #4b3fb5);
  color: #fff;
  transform: translateY(-2px);
}

.call-btn i {
  transition: all 0.3s ease;
}

/* 🔥 Hover pe icon move + thoda scale */
.call-btn:hover i {
  transform: translateX(5px) scale(1.1);
}

/* hero-section code  */





.hero-gulf{
  position:relative;
  height:90vh;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  color:#fff;
  font-family:'Poppins',sans-serif;

  background:
    linear-gradient(rgba(0,0,0,0.45), rgba(0,0,0,0.65)), /* dark overlay */
    radial-gradient(circle at center, rgba(255,102,0,0.12), transparent 40%), /* light glow */
    url("services images 2.png"); /* image */

  background-size:cover;
  background-position:center;
  background-repeat:no-repeat;
}

.hero-overlay{
  position:absolute;
  inset:0;
  background:
    radial-gradient(circle at top left, rgba(106,90,205,.35), transparent 40%),
    radial-gradient(circle at bottom right, rgba(73,62,119,.35), transparent 40%);
}

.hero-content{
  position:relative;
  z-index:2;
  max-width:750px;
  padding:20px;
}

.hero-badge{
  display:inline-flex;
  align-items:center;
  gap:8px;
  background:rgba(255,255,255,.12);
  padding:8px 18px;
  border-radius:40px;
  font-size:13px;
  margin-bottom:20px;
}

.hero-content h1 {
    font-size: 44px;
    font-weight: 800;
    line-height: 1.2;
}

.hero-content h1 span{
  color:#a99cff;
}

.hero-content p{
  margin:20px 0 30px;
  color:#e3ddff;
  line-height:1.7;
}

.hero-buttons{
  display:flex;
  justify-content:center;
  gap:15px;
  flex-wrap:wrap;
}

.btn-primary{
  background:linear-gradient(135deg,#493e77,#6a5acd);
  padding:14px 28px;
  border-radius:40px;
  color:#fff;
  text-decoration:none;
  font-weight:700;
  display:flex;
  align-items:center;
  gap:8px;
  transition:.3s;
  box-shadow:0 15px 35px rgba(106,90,205,.4);
}

.btn-primary:hover{
  transform:translateY(-3px);
  background:linear-gradient(135deg,#6a5acd,#7b68ee);
}

.btn-outline{
  border:1px solid rgba(255,255,255,.3);
  padding:14px 28px;
  border-radius:40px;
  color:#fff;
  text-decoration:none;
  transition:.3s;
}

.btn-outline:hover{
  background:rgba(255,255,255,.1);
}

/* Responsive */

@media(max-width:768px){
  .hero-content h1{
    font-size:34px;
  }

  .hero-gulf{
    height:80vh;
  }
}



/* cards style */

/* service card */
/* ===== Compact Modern Service Cards ===== */
.ser {
  max-width: 1400px;
  margin: auto;
}

/* Column flex for equal height */
.ser>.col-md-3 {
  display: flex;
}

/* Card */
.service-card {
  position: relative;
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  width: 100%;
  height: 100%;

  border: 1px solid #f0f0f0;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;

  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

/* Image */
.img-box {
  height: 170px;
  min-height: 170px;
  position: relative;
  overflow: hidden;
}

.img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.4s ease;
}

.service-card:hover .img-box img {
  transform: scale(1.06);
}

/* Badge */
.badge-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  background: #5541b8;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 30px;
  z-index: 2;
}

/* Content */
.service-card .p-3 {
  padding: 20px !important;
  text-align: center;

  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  /* GAP FIX */
}

/* Title */
.service-card h6 {
  font-size: 20px;
  color: rgb(34, 34, 34);
  line-height: 1.4;
  margin-bottom: 10px;
  font-weight: 700 !important;
  min-height: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Description */
.service-card p {
  font-size: 14px;
  color: #6f6f6f !important;
  line-height: 1.6;

  margin-bottom: 10px !important;
  /* GAP FIX */

  min-height: 45px;
  max-height: 45px;

  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Remove extra inline margin */
.service-card p[style],
.service-card p.mt-4 {
  margin-top: 0 !important;
}

/* Button position fix */
.service-card .text-center.mt-3 {
  margin-top: 12px !important;
  /* GAP FIX */
}

/* Button */
.btn-view {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding-top: 14px;
  border-top: 1px solid #eeeeee;
  color: #5541b8 !important;
  font-size: 15px;
  text-decoration: none;
}

.btn-view::after {
  content: "\f061";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 18px;
  transition: 0.3s ease;
}

.btn-view:hover::after {
  transform: translateX(5px);
}

.btn-view:hover {
  color: #3f2ca0 !important;
}

/* Responsive */
@media (max-width: 1199px) {
  .ser>.col-md-3 {
    width: 33.333%;
  }
}

@media (max-width: 991px) {
  .ser>.col-md-3 {
    width: 50%;
  }

  .service-card {
    min-height: 400px;
  }
}

@media (max-width: 575px) {
  .ser>.col-md-3 {
    width: 100%;
  }

  .img-box {
    height: 190px;
    min-height: 190px;
  }

  .service-card {
    min-height: auto;
  }

  .service-card h6,
  .service-card p {
    min-height: auto;
    max-height: none;
  }
}


/* card */

/* Button area */
.service-card .text-center.mt-3 {
  margin-top: 18px !important;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Premium Pill Button */
.service-card .btn-new {
  position: relative;
  overflow: hidden;
  padding: 11px 78px;
  border-radius: 50px;
  /* background: linear-gradient(135deg, #6a5acd, #3f22a8); */
    background: radial-gradient(circle at top right, rgba(106, 90, 205, .28), transparent 34%), linear-gradient(135deg, #211946 0%, #3f3278 45%, #3b2a70 100%);
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  box-shadow: 0 10px 22px rgba(106, 90, 205, 0.28);
  transition: all 0.35s ease;
}

/* Arrow circle */
.service-card .btn-new::after {
  content: "→";
  width: 26px;
  height: 25px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  transition: all 0.35s ease;
}

/* Shine effect */
.service-card .btn-new::before {
  content: "";
  position: absolute;
  top: 0;
  left: -80%;
  width: 45%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.45), transparent);
  transform: skewX(-20deg);
  transition: 0.6s ease;
}

.service-card .btn-new:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(63, 34, 168, 0.35);
}

.service-card .btn-new:hover::before {
  left: 130%;
}

.service-card .btn-new:hover::after {
  background: #fff;
  color: #4834d4;
  transform: translateX(4px);
}



/* how its work  */


.how-modern {
  padding: 60px 0;

  /* background: radial-gradient(circle at top left, rgba(106, 90, 205, .35), transparent 40%), radial-gradient(circle at bottom right, rgba(73, 62, 119, .35), transparent 40%), linear-gradient(135deg, #493e77, #6a5acd, #24125c); */
  background: radial-gradient(circle at top right, rgba(106, 90, 205, .28), transparent 34%), linear-gradient(190deg, #251e46 0%, #3f3278 48%, #3b2a70 100%);

}

.how-modern::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  top: -160px;
  left: -120px;
}



.how-modern .container {
  position: relative;
  z-index: 2;
}

.how-modern-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 55px;
}

.how-modern-head span {
  display: inline-block;
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
  padding: 8px 22px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.8px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(10px);
}

.how-modern-head h2 {
  font-size: 40px;
  line-height: 1.2;
  font-weight: 600;
  color: #fff;
  margin: 16px 0 10px;
}

.how-modern-head p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 16px;
  margin: 0;
}

.how-modern-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.how-modern-card {
  min-height: 285px;
  padding: 24px;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.45);
  box-shadow: 0 20px 45px rgba(20, 16, 55, 0.22);
  position: relative;
  overflow: hidden;
  transition: 0.4s ease;
}

.how-modern-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, rgba(106, 90, 205, 0.16), transparent 55%);
  opacity: 0;
  transition: 0.4s ease;
}

.how-modern-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 30px 70px rgba(20, 16, 55, 0.32);
}

.how-modern-card:hover::before {
  opacity: 1;
}

.how-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
  position: relative;
  z-index: 1;
}

.how-no {
  font-size: 54px;
  line-height: 1;
  font-weight: 900;
  color: rgba(106, 90, 205, 0.16);
}

.how-icon {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  background: linear-gradient(135deg, #6a5acd, #3f22a8);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 23px;
  box-shadow: 0 14px 25px rgba(106, 90, 205, 0.35);
  transition: 0.4s ease;
}

.how-modern-card:hover .how-icon {
  transform: rotate(-8deg) scale(1.08);
}

.how-modern-card h4 {
  position: relative;
  z-index: 1;
  font-size: 21px;
  font-weight: 600;
  color: #11162a;
  margin: 0 0 12px;
}

.how-modern-card p {
  position: relative;
  z-index: 1;
  color: #626a7c;
  font-size: 14px;
  line-height: 1.7;
  margin: 0;
}

@media (max-width: 1200px) {
  .how-modern-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 575px) {
  .how-modern {
    padding: 60px 0;
  }

  .how-modern-grid {
    grid-template-columns: 1fr;
  }

  .how-modern-head h2 {
    font-size: 26px;
  }

  .how-modern-card {
    min-height: auto;
  }
}


/* why choose us  */

.premium-why {
  padding: 90px 20px;
  background:
    radial-gradient(circle at top left, rgba(123, 104, 238, .18), transparent 35%),
    linear-gradient(135deg, #f8f7ff, #eef2ff);
  font-family: 'Poppins', sans-serif;
  overflow: hidden;
}

.why-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: .9fr 1.2fr;
  gap: 55px;
  align-items: center;
}

.why-tag {
  display: inline-block;
  padding: 9px 18px;
  border-radius: 50px;
  background: rgba(76, 48, 155, .1);
  color: #4c309b;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .5px;
  margin-bottom: 18px;
}

.why-left h2 {
  font-size: 46px;
  line-height: 1.15;
  font-weight: 600;
  color: #20104f;
  margin-bottom: 18px;
}

.why-left p {
  color: #666;
  font-size: 16px;
  line-height: 1.8;
  max-width: 480px;
}

.why-stats {
  display: flex;
  gap: 18px;
  margin-top: 35px;
}

.why-stats div {
  background: #fff;
  padding: 22px 28px;
  border-radius: 22px;
  box-shadow: 0 18px 45px rgba(76, 48, 155, .12);
  border: 1px solid rgba(76, 48, 155, .08);
}

.why-stats h3 {
  font-size: 32px;
  font-weight: 500;
  color: #4c309b;
  margin: 0;
}

.why-stats span {
  color: #666;
  font-size: 14px;
}

.why-right {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.premium-card {
  position: relative;
  background: rgba(255, 255, 255, .82);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, .7);
  padding: 34px 28px;
  border-radius: 28px;
  box-shadow: 0 22px 55px rgba(76, 48, 155, .13);
  overflow: hidden;
  transition: .35s ease;
}

.premium-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #4c309b, #7b68ee);
  opacity: 0;
  transition: .35s ease;
}

.premium-card::after {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  right: -45px;
  bottom: -45px;
  background: rgba(123, 104, 238, .16);
  border-radius: 50%;
  transition: .35s ease;
}

.premium-card:hover::before,
.premium-card.active::before {
  opacity: 1;
}

.premium-card:hover::after,
.premium-card.active::after {
  background: rgba(255, 255, 255, .18);
}

.premium-card * {
  position: relative;
  z-index: 2;
}

.premium-card .num {
  position: absolute;
  top: 22px;
  right: 25px;
  font-size: 42px;
  font-weight: 800;
  color: rgba(76, 48, 155, .09);
}

.premium-card:hover .num,
.premium-card.active .num {
  color: rgba(255, 255, 255, .16);
}

.premium-card .icon {
  width: 62px;
  height: 62px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #f1edff, #ffffff);
  color: #4c309b;
  font-size: 24px;
  margin-bottom: 22px;
  box-shadow: 0 12px 28px rgba(76, 48, 155, .12);
}

.premium-card h4 {
  font-size: 20px;
  font-weight: 500;
  color: #20104f;
  margin-bottom: 10px;
}

.premium-card p {
  color: #666;
  font-size: 14px;
  line-height: 1.7;
  margin: 0;
}

.premium-card:hover,
.premium-card.active {
  transform: translateY(-10px);
  box-shadow: 0 30px 70px rgba(76, 48, 155, .25);
}

.premium-card:hover .icon,
.premium-card.active .icon {
  background: rgba(255, 255, 255, .18);
  color: #fff;
}

.premium-card:hover h4,
.premium-card:hover p,
.premium-card.active h4,
.premium-card.active p {
  color: #fff;
}

@media(max-width:992px) {
  .why-container {
    grid-template-columns: 1fr;
  }

  .why-left h2 {
    font-size: 36px;
  }
}

@media(max-width:576px) {
  .premium-why {
    padding: 60px 14px;
  }

  .why-right {
    grid-template-columns: 1fr;
  }

  .why-stats {
    flex-direction: column;
  }

  .why-left h2 {
    font-size: 30px;
  }

  .premium-card {
    padding: 28px 24px;
  }
}

/* get in touch  */

.same-theme {
  padding: 81px 20px;
  /* background:
    radial-gradient(circle at top left, rgba(106, 90, 205, .35), transparent 40%),
    radial-gradient(circle at bottom right, rgba(73, 62, 119, .35), transparent 40%),
    linear-gradient(135deg, #493e77, #6a5acd, #24125c); */
      background: radial-gradient(circle at top right, rgba(106, 90, 205, .28), transparent 34%), linear-gradient(135deg, #120c2e 0%, #3f3278 48%, #3b2a70 100%);
  color: #fff;
  font-family: 'Poppins', sans-serif;
}

.luxury-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

/* LEFT */

.luxury-tag {
  display: inline-block;
  padding: 8px 18px;
  border-radius: 40px;
  background: rgba(255, 255, 255, .12);
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 15px;
}

.luxury-left h2 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 15px;
}

.luxury-left p {
     color: #8d8d8d;
  line-height: 1.7;
  max-width: 450px;
}

.luxury-info {
  margin-top: 30px;
}

.luxury-info div {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  color: #e9e5ff;
}

.luxury-info i {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, .12);
}

/* FORM */

.service-form-card{
  max-width:500px;
  width:100%;
  background:#fff;
  padding:34px;
  border-radius:22px;
  border:1px solid #e9e5ff;
  box-shadow:0 22px 60px rgba(73,62,119,.14);
  font-family:'Poppins',sans-serif;
}

.service-form-card h3{
  font-size:28px;
  font-weight:800;
        font-weight: 500;
    color: #868686;
  margin:0 0 10px;
}
.service-form-card{
  max-width:500px;
  width:100%;
  background:#fff;
  padding:34px;
  border-radius:22px;
  border:1px solid #e9e5ff;
  box-shadow:0 22px 60px rgba(73,62,119,.14);
  font-family:'Poppins',sans-serif;
  box-sizing:border-box;
}

.service-form-card *{
  box-sizing:border-box;
}

.service-form-card h3{
  font-size:28px;
  font-weight:800;
  color:#06122a;
  margin:0 0 10px;
}

.service-form-card p{
  font-size:13px;
  color:#5f6072;
  margin:0 0 24px;
}

.service-form-card input,
.service-form-card select,
.service-form-card textarea{
  width:100%;
  background:#f7f7ff;
  border:1px solid #deddf0;
  border-radius:13px;
  padding:14px 16px;
  margin-bottom:14px;
  color:#24125c;
  font-size:13px;
  outline:none;
  transition:.3s ease;
}

.service-form-card textarea{
  height:96px;
  resize:none;
}

.service-form-card input:focus,
.service-form-card select:focus,
.service-form-card textarea:focus{
  background:#fff;
  border-color:#6a5acd;
  box-shadow:0 0 0 4px rgba(106,90,205,.12);
}

.service-form-card button{
  width:100%;
  border:0;
  border-radius:12px;
  padding:15px;
      background: radial-gradient(circle at top right, rgba(106, 90, 205, .28), transparent 34%), linear-gradient(135deg, #2d235e 0%, #3f3278 45%, #3b2a70 100%);
  color:#fff;
  font-weight:700;
  cursor:pointer;
  box-shadow:0 14px 28px rgba(106,90,205,.28);
  transition:.3s ease;
}

.service-form-card button:hover{
  transform:translateY(-3px);
  box-shadow:0 18px 35px rgba(106,90,205,.38);
}

/* Contact Section Responsive Fix */
@media (max-width: 992px){
  .luxury-container{
    grid-template-columns:1fr;
    gap:35px;
  }

  .service-form-card{
    max-width:100%;
    justify-self:center;
  }
}

@media (max-width: 768px){
  .same-theme{
    padding:60px 16px;
  }

  .luxury-left h2{
    font-size:34px;
  }

  .luxury-left p{
    max-width:100%;
  }
}

@media (max-width: 576px){
  .same-theme{
    padding:50px 14px;
  }

  .luxury-container{
    grid-template-columns:1fr;
    gap:28px;
  }

  .luxury-left h2{
    font-size:28px;
    line-height:1.25;
  }

  .luxury-left p{
    font-size:14px;
    line-height:1.7;
  }

  .luxury-info div{
    font-size:14px;
  }

  .service-form-card{
    width:100%;
    max-width:100%;
    padding:24px 18px;
  }
}



/* testinomial */

.client-love{
  padding:90px 18px;
  background:
    radial-gradient(circle at top left, rgba(106,90,205,.22), transparent 35%),
    linear-gradient(135deg,#f7f5ff,#eef1ff);
  font-family:'Poppins',sans-serif;
}

.client-container{
  max-width:1180px;
  margin:auto;
}

.review-head{
  text-align:center;
  max-width:650px;
  margin:0 auto 45px;
}

.review-head span{
  display:inline-block;
  padding:8px 18px;
  border-radius:40px;
  background:#fff;
  color:#493e77;
  font-size:12px;
  font-weight:800;
  box-shadow:0 10px 28px rgba(73,62,119,.12);
  margin-bottom:14px;
}

.review-head h2{
  font-size:42px;
  font-weight:800;
  color:#1f1647;
  margin:0 0 12px;
}

.review-head p{
  color:#666;
  line-height:1.7;
  margin:0;
}

.review-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
}

.review-card{
  position:relative;
  min-height:255px;
  height:100%;
  background:#fff;
  padding:30px;
  border-radius:26px;
  border:1px solid rgba(106,90,205,.13);
  box-shadow:0 20px 55px rgba(73,62,119,.12);
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  overflow:hidden;
  transition:.35s ease;
}

.review-card::before{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(135deg,#493e77,#6a5acd);
  opacity:0;
  transition:.35s ease;
}

.review-card::after{
  content:"”";
  position:absolute;
  top:8px;
  right:24px;
  font-size:90px;
  font-weight:900;
  color:rgba(106,90,205,.10);
  line-height:1;
  transition:.35s ease;
}

.review-card:hover{
  transform:translateY(-8px);
  box-shadow:0 30px 75px rgba(73,62,119,.22);
}

.review-card:hover::before{
  opacity:1;
}

.review-card:hover::after{
  color:rgba(255,255,255,.16);
}

.review-card > *{
  position:relative;
  z-index:2;
}

.stars{
  color:#ffc94a;
  letter-spacing:3px;
  font-size:16px;
  margin-bottom:18px;
}

.review-card p{
  color:#555;
  font-size:15px;
  line-height:1.75;
  margin:0 0 26px;
  flex-grow:1;
  transition:.35s ease;
}

.review-user{
  display:flex;
  align-items:center;
  gap:14px;
}

.review-user img{
  width:56px;
  height:56px;
  border-radius:50%;
  object-fit:cover;
  border:3px solid rgba(106,90,205,.22);
  transition:.35s ease;
}

.review-user h4{
  margin:0;
  font-size:16px;
  font-weight:800;
  color:#1f1647;
  transition:.35s ease;
}

.review-user span{
  font-size:13px;
  color:#777;
  transition:.35s ease;
}

.review-card:hover p,
.review-card:hover h4,
.review-card:hover span{
  color:#fff;
}

.review-card:hover .review-user img{
  border-color:rgba(255,255,255,.45);
}

@media(max-width:992px){
  .review-grid{
    grid-template-columns:repeat(2,1fr);
  }
}

@media(max-width:576px){
  .client-love{
    padding:60px 14px;
  }

  .review-head h2{
    font-size:30px;
  }

  .review-grid{
    grid-template-columns:1fr;
  }

  .review-card{
    min-height:auto;
    padding:26px;
    border-radius:22px;
  }
}

/* footer */

.footer-design-4{
 position: relative;
    overflow: hidden;
    background: radial-gradient(circle at top right, rgba(106, 90, 205, .28), transparent 34%), linear-gradient(135deg, #120c2e 0%, #3f3278 45%, #3b2a70 100%);
    color: #fff;
    padding: 55px 38px 0;
    font-family: 'Poppins', sans-serif;
    
}


.footer-wave-right{
  right:-120px;
  top:20px;
  background:repeating-radial-gradient(ellipse at right top,
    transparent 0 13px,
    rgba(166,143,255,.45) 14px 15px
  );
  transform:rotate(-8deg);
}

.footer-container{
  position:relative;
  z-index:2;
  max-width:1280px;
  margin:auto;
  display:grid;
  grid-template-columns:1.25fr .85fr 1.15fr 1fr 1.15fr;
  gap:36px;
  align-items:flex-start;
}

.footer-logo{
  max-width:230px;
  margin-bottom:18px;
      filter: brightness(6);
}

.footer-brand p{
color: #bebebe;
  font-size:14px;
  line-height:1.65;
  max-width:320px;
  margin:0;
}

.footer-social{
  display:flex;
  gap:13px;
  margin-top:24px;
}

.footer-social a{
  width:36px;
  height:36px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#fff;
  text-decoration:none;
  background:rgba(255,255,255,.08);
  border:1px solid rgba(190,175,255,.45);
  transition:.3s ease;
}

.footer-social a:hover{
  background:linear-gradient(135deg,#493e77,#6a5acd);
  transform:translateY(-4px);
  box-shadow:0 12px 25px rgba(106,90,205,.35);
}

.footer-col h4,
.footer-hours h4{
  font-size:15px;
  font-weight:600;
  text-transform:uppercase;
  margin:0 0 16px;
  color:#fff;
}

.footer-col a{
  display:block;
color: #bebebe;
  text-decoration:none;
  font-size:15px;
  margin-bottom:8px;
  transition:.3s ease;
}

.footer-col a:hover{
  color:#b9aaff;
  transform:translateX(5px);
}

.contact-item{
  display:flex;
  gap:12px;
color: #bebebe;
  font-size:15px;
  line-height:1.5;
  margin-bottom:16px;
}

.contact-item i{
  color:#b9aaff;
  font-size:17px;
  margin-top:3px;
}

.footer-hours{
    padding: 43px 20px;
  border-radius:18px;
  background:rgba(255,255,255,.09);
  border:1px solid rgba(190,175,255,.32);
  box-shadow:0 18px 45px rgba(0,0,0,.22);
  backdrop-filter:blur(14px);
}

.footer-hours h4{
  display:flex;
  align-items:center;
  gap:5px;
  margin-bottom:16px;
      margin-left: -7px;
}

.footer-hours h4 i{
  width:34px;
  height:34px;
  border-radius:50%;
  border:1px solid rgba(255,255,255,.45);
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight: 600;
  font-size: 15px;
}

.footer-hours p{
  margin:8px 0;
color: #bebebe;
  font-size:14px;
}

.footer-bottom{
  position:relative;
  z-index:2;
  max-width:1280px;
  margin:35px auto 0;
  padding:17px 0;
  border-top:1px solid rgba(255,255,255,.18);
  display:flex;
  justify-content:space-between;
  gap:18px;
  flex-wrap:wrap;
    color: #838383;
  font-size:15px;
}

.footer-bottom p{
  margin:0;
}

.footer-bottom-links{
  display:flex;
  align-items:center;
  gap:18px;
}

.footer-bottom-links a{
    color: #838383;
  text-decoration:none;
  transition:.3s;
  
}

.footer-bottom-links a:hover{
  color:#b9aaff;
}

.footer-bottom-links span{
  width:1px;
  height:14px;
  background:rgba(255,255,255,.35);
}

@media(max-width:1100px){
  .footer-container{
    grid-template-columns:1fr 1fr;
  }
}

@media(max-width:576px){
  .footer-design-4{
    padding:45px 18px 0;
    border-radius:0;
  }

  .footer-container{
    grid-template-columns:1fr;
    gap:30px;
  }

  .footer-bottom{
    flex-direction:column;
  }

  .footer-bottom-links{
    flex-wrap:wrap;
    gap:12px;
  }
}