a,b{font-weight:500;color:#fff;text-decoration:none;transition:color .3s ease}
a:hover{color:#fff}
.navbar{background:#1e7e34;position:sticky;top:0;z-index:1030;padding:.75rem 1rem;box-shadow:0 3px 8px rgba(0,0,0,.25)}
.navbar-brand{font-weight:700;font-size:1.6rem;color:#fff;text-transform:uppercase;letter-spacing:1px;transition:color .3s ease}
.navbar-brand:hover{color:#fff}
.navbar-nav .nav-link{color:#fff;font-weight:500;padding:.5rem 1rem;transition:color .3s ease}
.navbar-nav .nav-link:hover{color:#fff}
.search-box{margin:1.5rem auto;max-width:500px}
.search-box select{border:none;padding:.8rem 1rem;width:100%;outline:0;background:#1e7e34;color:#fff;font-weight:500;box-shadow:0 0 8px rgba(255,0,72,.3);transition:all .3s ease}
.search-box select:hover{background:#1e7e34;color:#000}
.offcanvas{background:#3a0c0c;color:#fff}
.offcanvas-header{border-bottom:1px solid rgba(255,255,255,.2)}
.offcanvas-title{color:#1e7e34;font-weight:700}
.offcanvas-body a{color:#fff;display:block;padding:.6rem 0;border-bottom:1px solid rgba(255,255,255,.1);font-weight:500;transition:color .3s ease}
.offcanvas-body a:hover{color:#1e7e34}
footer{background:#1e7e34;color:#fff6f8;padding:20px 0;text-align:center;font-size:.9rem;border-top:1px solid rgba(255,255,255,.2)}
footer a{color:#1e7e34}
footer a:hover{color:#fff}
h1,h2,h3,h4,h5,h6{color:#fff3e6;text-shadow:0 2px 4px rgba(0,0,0,.25);font-weight:700}
@media (max-width:767px){
.navbar-brand{font-size:1.2rem}
}

.search-section {
  background: #1e7e34; /* ✅ black background */
  text-align: center;
  padding: 50px 15px;
}

.search-section .search-title {
  font-size: 2rem;
  font-weight: 700;
  color: #ffffff; /* bright yellow contrast */
  text-transform: capitalize;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

/* ---------- SEARCH BOX ---------- */
.search-box form {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fff;
  border-radius: 50px;
  overflow: hidden;
  max-width: 420px;
  margin: 0 auto 25px;
  box-shadow: 0 6px 20px rgba(255, 0, 111, 0.3);
  transition: all 0.3s ease;
}

.search-box form:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 0, 111, 0.4);
}

.city-select {
  flex: 1;
  padding: 14px 20px;
  border: none;
  outline: none;
  font-size: 1rem;
  color: #333;
  background: #fff;
  border-radius: 50px 0 0 50px;
  appearance: none;
  cursor: pointer;
}

.city-select option {
  background: #fff;
  color: #000;
}

.search-btn {
  background: #fff; /* ✅ hot pink button */
  border: none;
  padding: 14px 18px;
  border-radius: 0 50px 50px 0;
  cursor: pointer;
  color: #000;
  transition: all 0.3s ease;
}

.search-btn:hover {
  background: #c9004d;
}

.search-btn i {
  font-size: 1.1rem;
}

/* ---------- EMAIL INFO ---------- */
.email-info {
  color: #fff;
  font-size: 1rem;
  margin-top: 10px;
}

.email-info a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
}

.email-info a:hover {
  text-decoration: underline;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 600px) {
  .search-section .search-title {
    font-size: 1.4rem;
  }
  .city-select {
    font-size: 0.9rem;
    padding: 12px;
  }
}



.video-sec{position:relative;width:100%;min-height:100vh;background-color:#1e7e34;display:flex;align-items:center;justify-content:center;text-align:center;overflow:hidden}
.video-sec .video-container{position:absolute;inset:0;width:100%;height:100%;z-index:1;overflow:hidden}
.video-sec video{width:100%;height:100%;object-fit:cover;object-position:center;display:block}
.video-sec .video-container::after{content:"";position:absolute;inset:0;background:rgba(0,0,0,.45);z-index:2}
.video-sec .video-content{position:relative;z-index:3;color:#ffd700;text-shadow:0 4px 15px rgba(0,0,0,.6);max-width:900px;padding:80px 20px}
.video-sec h1{font-size:clamp(1.8rem, 3vw, 2.8rem);font-weight:800;text-transform:uppercase;letter-spacing:1px;line-height:1.3}
@media (max-width:768px){
.video-sec{padding:0;min-height:calc(100vh - 60px)}
.video-sec video{object-fit:cover;height:100%;width:100%}
.video-sec .video-content{padding:60px 15px}
.video-sec h1{font-size:1.5rem}
}
@media (max-width:480px){
.video-sec .video-content{padding:40px 10px}
.video-sec h1{font-size:1.3rem}
}

.luxury-video-section{background-color:#a72859;overflow:hidden;padding:60px 20px}
.luxury-video-box video{border-radius:20px;object-fit:cover;transition:transform .3s ease,box-shadow .3s ease}
.luxury-video-box video:hover{transform:scale(1.03);box-shadow:0 8px 25px rgba(0,0,0,.25)}
.luxury-text-content{max-width:1100px;margin:0 auto;}
.luxury-text-content h2{color:#ffd700;font-weight:800;letter-spacing:.5px;font-size:2.4rem;margin-bottom:1.5rem;text-shadow:0 3px 8px rgba(0,0,0,.3)}
.luxury-text-content p{color:#f8f8f8;font-size:1.1rem;line-height:1.6}
.luxury-link{color:#ff9fd6;font-weight:600;text-decoration:none;border-bottom:2px solid #ff9fd6;transition:all .3s ease}
.luxury-link:hover{color:#ffd700;border-color:#ffd700}

.luxury-video-section img {
    max-width: 400px;
    width: 100%;
    aspect-ratio: 2 / 3;
    object-fit: cover;
    border-radius: 8px;
    margin: 0 auto;
    display: block;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
    transform: perspective(1000px) rotateX(3deg);
    transition: transform 0.3s 
ease, box-shadow 0.3s 
ease;
}
@media (max-width:1.69px){
.luxury-text-content h2{font-size:2.1rem}
.luxury-text-content p{font-size:1.15rem}
}
@media (max-width:991px){
.luxury-video-section{padding:60px 20px}
.luxury-text-content h2{font-size:1.6rem}
.luxury-text-content p{font-size:1.1rem;line-height:1.8}
}
@media (max-width:767px){
.luxury-video-section{padding:50px 10px}
.luxury-video-section .luxury-video-box{width:48%}
.luxury-video-section .d-flex{justify-content:center}
.luxury-text-content h2{font-size:1.7rem}
.luxury-text-content p{font-size:1rem;line-height:1.7}
}
@media (max-width:480px){
.luxury-text-content h2{font-size:1.5rem}
.luxury-text-content p{font-size:.95rem}
}
.content-section{background-color:#a72859;color:#f5e8e9;padding:60px 20px}
.content-section .content-wrapper{max-width:1100px;margin:0 auto}
.content-section h2{color:#ffd700;font-weight:800;font-size:2.4rem;margin-bottom:2rem;letter-spacing:.5px;text-shadow:0 3px 8px rgba(0,0,0,.3)}
.content-section h3{color:#fff;font-weight:700;font-size:2rem;margin-bottom:15px;letter-spacing:.5px}
.content-section p{font-size:1.1rem;line-height:1.6;color:#f3d9db;margin-bottom:1rem}
.content-section b{color:#ffd700}
@media (max-width:1.69px){
.content-section h2{font-size:2.1rem}
.content-section h3{font-size:1.6rem}
.content-section p{font-size:1.15rem}
}
@media (max-width:991px){
.content-section{padding:50px 10px}
.content-section h2{font-size:1.6rem}
.content-section h3{font-size:1.6rem}
.content-section p{font-size:1.1rem;line-height:1.8}
}
@media (max-width:767px){
.content-section{padding:40px 10px}
.content-section h2{font-size:1.7rem;text-align:center}
.content-section h3{font-size:1.5rem}
.content-section p{font-size:1rem;line-height:1.7}
}
@media (max-width:480px){
.content-section h2{font-size:1.5rem}
.content-section h3{font-size:1.2rem}
.content-section p{font-size:.95rem}
}



.member-box{-webkit-box-shadow:0 0 6px 0 rgba(0,0,0,.14);-moz-box-shadow:0 0 6px 0 rgba(0,0,0,.14);box-shadow:0 0 6px 0 rgba(0,0,0,.14);display:block;overflow:hidden;margin-bottom:30px;position:relative}
.img-block{position:relative;width:100%;aspect-ratio:2/3}
.img-block img{width:100%;height:100%;object-fit:cover}
.img-block-overlay{position:absolute;left:0;right:0;bottom:0;top:0;background:rgba(227,23,1.6,.23)}
.text-block{padding:10px 15px;position:absolute;width:100%;border-bottom:5px solid #e31777;left:0;right:0;bottom:0;background:rgba(0,0,0,.34)}
.member-name{color:#fff;font-size:24px;font-weight:600;margin-bottom:0;text-align:center}
.member-age{color:#fff;font-size:16px;text-align:center}
.member-age span{margin-left:10px}
.escort-icons{display:flex;justify-content:center;align-items:center;gap:30px;margin-top:10px}
.escort-icons .phone img,.escort-icons .whatsapp img{width:30px;height:30px;object-fit:contain;border-radius:50%;filter:brightness(0) invert(1);transition:transform .3s ease,box-shadow .3s ease}
.escort-icons .phone img:hover,.escort-icons .whatsapp img:hover{transform:scale(1.1);box-shadow:0 4px 8px rgba(0,0,0,.2)}

.testimonial-section {
  background: linear-gradient(135deg, #1e7e34, #ff4da6);
  padding: 60px 0;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.testimonial-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.1);
  z-index: 0;
}

.testimonial-section * {
  position: relative;
  z-index: 1;
}

.testimonial-section h3 {
  font-size: 2rem;
  font-weight: 800;
  color: #ffd700; /* #1e7e34 accent */
  text-align: center;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-shadow: 0 3px 8px rgba(0, 0, 0, 0.25);
}

.testimonial-section p.section-intro {
  font-size: 1.1rem;
  color: #ffeaea;
  max-width: 700px;
  margin: 0 auto 40px auto;
  text-align: center;
  line-height: 1.7;
}

.testimonial-card {
  background: #2b1e21;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  padding: 25px 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(255, 0, 111, 0.4);
}

.testimonial-card p {
  font-size: 1rem;
  color: #f8e6e6;
  line-height: 1.7;
}

.testimonial-card .clients-name {
  font-size: 1rem;
  color: #ffd700;
  font-weight: 600;
  text-align: right;
  margin-top: 10px;
}

/* Responsive */
@media (max-width: 768px) {
  .testimonial-section {
    padding: 40px 15px;
  }
  .testimonial-section h3 {
    font-size: 1.7rem;
  }
  .testimonial-card {
    padding: 20px 15px;
  }
}


.exclusive-profile-section{background:#1e7e34;padding:60px 20px;text-align:center}
.exclusive-profile-section h2{color:#ffd700;font-weight:800;text-transform:uppercase;letter-spacing:1px;margin-bottom:2rem;text-shadow:0 3px 8px rgba(0,0,0,.3)}
.profile-grid{display:flex;flex-wrap:wrap;justify-content:center;gap:1.2rem}
.profile-box{flex:1 1 calc(20% - 1.2rem);max-width:calc(20% - 1.2rem);border-radius:16px;overflow:hidden;background:#121212;box-shadow:0 4px 15px rgba(0,0,0,.25);transition:transform .3s ease,box-shadow .3s ease}
.profile-box:hover{transform:translateY(-6px);box-shadow:0 8px 25px rgba(0,0,0,.35)}
.profile-image{position:relative;aspect-ratio:2/3;overflow:hidden;border-radius:14px}
.profile-image img{width:100%;height:100%;object-fit:cover;border-radius:14px;transition:transform .4s ease}
.profile-box:hover img{transform:scale(1.05)}
.overlay{position:absolute;inset:0;display:flex;flex-direction:column;justify-content:flex-end;align-items:center;background:linear-gradient(to top,rgba(0,0,0,.75),transparent 65%);padding-bottom:1rem}
.profile-name{font-size:1.1rem;color:#ffd700;font-weight:700;margin-bottom:.6rem;text-shadow:0 2px 6px rgba(0,0,0,.4)}
.profile-actions{display:flex;gap:10px}
.btn-action{display:flex;align-items:center;justify-content:center;width:42px;height:42px;border-radius:50%;color:#fff;font-size:1.1rem;transition:all .3s ease;box-shadow:0 4px 12px rgba(0,0,0,.3)}
.btn-action.call{background:linear-gradient(135deg,#ff0079,#ff4da6)}
.btn-action.call:hover{background:linear-gradient(135deg,#e1006c,#ff0079);transform:scale(1.1)}
.btn-action.whatsapp{background:linear-gradient(135deg,#25d366,#00b75f)}
.btn-action.whatsapp:hover{background:linear-gradient(135deg,#1da851,#00d26b);transform:scale(1.1)}
@media (max-width:1.69px){
.profile-box{flex:1 1 calc(25% - 1rem);max-width:calc(25% - 1rem)}
}
@media (max-width:991px){
.profile-box{flex:1 1 calc(33.33% - 1rem);max-width:calc(33.33% - 1rem)}
}
@media (max-width:767px){
.profile-box{flex:1 1 calc(50% - 0.8rem);max-width:calc(50% - .8rem)}
}
@media (max-width:480px){
.profile-box{flex:1 1 100%;max-width:100%}
}
.next-light {
  background-color: #1e7e34;
  color: #fce8eb;
  padding: 60px 20px;
  position: relative;
  overflow: hidden;
}

.next-light::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .1);
  z-index: 0;
}

.next-light * {
  position: relative;
  z-index: 1;
}

.next-light h2 {
  color: #ffd700;
  font-weight: 800;
  font-size: 2.2rem;
  letter-spacing: .6px;
  text-align: center;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  text-shadow: 0 3px 8px rgba(0, 0, 0, .25);
}

.next-light p {
  color: #fce8eb;
  font-size: 1.05rem;
  line-height: 1.8;
  text-align: justify;
  margin-bottom: 1.2rem;
}

.next-light .table {
  width: 100%;
  color: #fff;
  background-color: transparent;
  border-color: #a72859;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 0, 0, .25);
}

.next-light .table th {
  background-color: #a72859;
  color: #ffd700;
  font-weight: 700;
  text-transform: uppercase;
  border-color: #a72859;
  text-align: center;
  padding: .85rem;
}

.next-light .table td {
  background-color: #175c29;
  color: #fce8eb;
  border-color: #a72859;
  text-align: center;
  vertical-align: middle;
  padding: .85rem;
}

.next-light .table-hover tbody tr:hover td {
  background-color: #a72859;
  color: #ffd700;
  transition: all .3s ease;
}

.next-light .table-primary th {
  background: linear-gradient(135deg, #a72859, #ff75a3);
  color: #fff;
  border: none;
}

@media (max-width: 768px) {
  .next-light {
    padding: 50px 15px;
  }

  .next-light h2 {
    font-size: 1.7rem;
    text-align: center;
  }

  .next-light p {
    font-size: 1rem;
    line-height: 1.6;
  }

  .next-light .table td,
  .next-light .table th {
    font-size: .9rem;
    padding: .65rem;
  }
}

@media (max-width: 480px) {
  .next-light {
    padding: 40px 10px;
  }

  .next-light h2 {
    font-size: 1.5rem;
  }

  .next-light p {
    font-size: .95rem;
  }
}

.faq-section{background-color:#1e7e34;color:#fff6f8;padding:60px 20px;position:relative;overflow:hidden}
.faq-section::before{content:"";position:absolute;inset:0;background:rgba(0,0,0,.15);z-index:0}
.faq-section *{position:relative;z-index:1}
.faq-section h2{color:#1e7e34;font-weight:800;text-transform:uppercase;letter-spacing:1px;text-align:center;margin-bottom:1.5rem;text-shadow:0 3px 8px rgba(0,0,0,.25)}
.faq-section .intro-text{color:#fff3e6;max-width:700px;margin:0 auto 2rem;font-size:1.05rem;line-height:1.7;text-align:center}
.accordion-item{background-color:#2f2628;border:1px solid #3a2c2e;border-radius:10px;margin-bottom:1rem;overflow:hidden;box-shadow:0 5px 15px rgba(0,0,0,.3);transition:transform .3s ease,box-shadow .3s ease}
.accordion-item:hover{transform:translateY(-4px);box-shadow:0 8px 25px rgba(255,0,111,.4)}
.accordion-button{background-color:#3a2c2e;color:#1e7e34;font-weight:600;text-transform:capitalize;letter-spacing:.4px;border:none;box-shadow:none;padding:1rem 1.25rem;transition:all .3s ease}
.accordion-button:not(.collapsed){background:linear-gradient(135deg,#ff0079,#ff4da6);color:#fff;box-shadow:0 0 10px rgba(255,0,111,.3)}
.accordion-button:hover{background-color:#4b3a3d;color:#1e7e34}
.accordion-body{background-color:#2f2628;color:#fff3e6;font-size:1rem;padding:1rem 1.25rem;border-top:1px solid #3a2c2e;line-height:1.7}
@media (max-width:768px){
.faq-section{padding:50px 15px}
.faq-section h2{font-size:1.8rem}
.accordion-button{font-size:.95rem;padding:.9rem 1rem}
}
@media (max-width:480px){
.faq-section{padding:40px 10px}
.faq-section h2{font-size:1.5rem}
}


.tags-section{background-color:#1e7e34;color:#fff3f6;padding:0px 20px 70px;position:relative;overflow:hidden}
.tags-section::before{content:"";position:absolute;inset:0;background:rgba(255,255,255,.05);z-index:0}
.tags-section *{position:relative;z-index:1}
.contain{padding:50px 20px 40px;max-width:1140px;margin:auto}
.tags-section h2{font-size:2rem;margin-bottom:25px;display:flex;align-items:center;gap:10px;font-weight:900;color:#fff!important;text-transform:uppercase;letter-spacing:1px;text-align:center;justify-content:center;text-shadow:0 3px 10px rgba(0,0,0,.3)}
.tags-wrapper{display:flex;flex-wrap:wrap;gap:12px;justify-content:center}
.tags-wrapper span{padding:8px 14px;font-size:13.5px;font-weight:600;border-radius:50px;color:#fff;text-decoration:none!important;display:inline-block;transition:all .3s ease-in-out;box-shadow:0 2px 6px rgba(0,0,0,.25);background:linear-gradient(135deg,#ff4da6,#ff0079)}
.tags-wrapper span:hover{transform:scale(1.1);opacity:.95;box-shadow:0 4px 15px rgba(255,255,255,.3)}
span.badge:nth-child(6n+1){background:linear-gradient(135deg,#ff0079,#ff4da6)}
span.badge:nth-child(6n+2){background:linear-gradient(135deg,#1fa9e2,#63d8ff)}
span.badge:nth-child(6n+3){background:linear-gradient(135deg,#1e7e34,#6fdc9d)}
span.badge:nth-child(6n+4){background:linear-gradient(135deg,#eb008b,#ff5ea9)}
span.badge:nth-child(6n+5){background:linear-gradient(135deg,#009688,#32c8b0)}
span.badge:nth-child(6n+6){background:linear-gradient(135deg,#fd7e14,#ffb45a)}
.city-section{background:#1e7e34;text-align:center;padding:70px 20px;position:relative;overflow:hidden}
.city-section::before{content:"";position:absolute;inset:0;background:rgba(255,255,255,.08);z-index:0}
.city-section *{position:relative;z-index:1}
.city-section h2{color:#fff;font-weight:800;text-transform:uppercase;letter-spacing:1px;position:relative;text-shadow:0 3px 10px rgba(0,0,0,.25)}
.city-section h2::after{content:"";display:block;width:110px;height:3px;margin:15px auto 0;background:linear-gradient(90deg,#ff0079,#1e7e34);border-radius:2px}
.city-tags{display:flex;flex-wrap:wrap;justify-content:center;gap:14px;margin-top:2.5rem}
.city-tags span{display:inline-block;border-radius:6px;transition:transform .3s ease,box-shadow .3s ease}
.city-tags span a{display:block;padding:9px 15px;font-weight:600;color:#fff;text-decoration:none;border-radius:6px;letter-spacing:.3px;font-size:.95rem;transition:all .3s ease}
.city-tags span:nth-child(5n+1) a{background:linear-gradient(135deg,#ff0079,#ff5ea9)}
.city-tags span:nth-child(5n+2) a{background:linear-gradient(135deg,#1fa9e2,#63d8ff)}
.city-tags span:nth-child(5n+3) a{background:linear-gradient(135deg,#9f0c4a,#ff326d)}
.city-tags span:nth-child(5n+4) a{background:linear-gradient(135deg,#eb008b,#ff5ea9)}
.city-tags span:nth-child(5n+5) a{background:linear-gradient(135deg,#009688,#32c8b0)}
.city-tags span:hover{transform:translateY(-4px);box-shadow:0 0 20px rgba(255,255,255,.4)}
.city-tags span a:hover{filter:brightness(1.1);text-shadow:0 0 8px rgba(255,255,255,.7);color:#fff8dc}
@media (max-width:768px){
.tags-section{padding:55px 15px}
.city-section{padding:55px 15px}
.city-section h2,.tags-section h2{font-size:1.8rem}
.city-tags{gap:10px}
.city-tags span a{font-size:.9rem;padding:8px 14px}
}
@media (max-width:480px){
.tags-section{padding:45px 10px}
.city-section{padding:45px 10px}
.city-section h2,.tags-section h2{font-size:1.6rem}
}

.client-testimonials-section{background-color:#1e7e34;color:#f8e6e6;overflow:hidden;padding:60px 20px;position:relative}
.client-testimonials-section::before{content:"";position:absolute;inset:0;background:rgba(0,0,0,.08);z-index:0}
.client-testimonials-section *{position:relative;z-index:1}
.section-title{color:#ffd700;font-weight:800;font-size:2.3rem;letter-spacing:.6px;margin-bottom:.8rem;text-align:center;text-transform:uppercase;text-shadow:0 3px 8px rgba(0,0,0,.25)}
.section-subtitle{color:#f1.6db;font-size:1.05rem;max-width:800px;margin:0 auto 2rem;line-height:1.8;text-align:center}
.testimonial-card{background:#2b2326;padding:25px 20px;border-radius:16px;height:100%;border:1px solid rgba(255,255,255,.05);box-shadow:0 5px 15px rgba(0,0,0,.35);transition:all .35s ease;position:relative}
.testimonial-card:hover{transform:translateY(-6px);box-shadow:0 10px 25px rgba(255,192,145,.4);border-color:rgba(255,192,145,.25)}
.quote-icon{color:#ffd700;font-size:1.6rem;margin-bottom:10px}
.testimonial-text{font-size:.98rem;color:#f3d9db;font-style:italic;line-height:1.7;margin-bottom:15px}
.client-name{font-weight:600;font-size:1rem;color:#ffd700;text-align:right;margin-bottom:0}
.testimonials-wrapper p{color:#f1.6db;font-size:1.05rem;line-height:1.8;text-align:justify}
.nowcalling{display:block;position:fixed;bottom:0;width:100%;z-index:9999;font-family:Poppins,sans-serif;font-weight:600;text-transform:uppercase;letter-spacing:.5px;box-shadow:0 -3px 10px rgba(0,0,0,.25)}
.lcol,.rcol{float:left;width:50%;transition:all .3s ease}
.lcol a,.rcol a{display:block;padding:12px 0;text-align:center;text-decoration:none;color:#fff;font-size:16px}
.lcol{background:linear-gradient(135deg,#1e7e34,#1e7e34)}
.lcol:hover{background:linear-gradient(135deg,#ff3390,#cc0060);transform:scale(1.03)}
.rcol{background:linear-gradient(135deg,#c9004d,#c9004d)}
.rcol:hover{background:linear-gradient(135deg,#c9004d,#c9004d);transform:scale(1.03)}

@media (max-width:991px){
.section-title{font-size:2rem}
.testimonial-text{font-size:.95rem}
}
@media (max-width:768px){
.section-title{font-size:1.7rem}
.section-subtitle{font-size:.95rem}
.lcol a,.rcol a{font-size:14px;padding:10px 0}
}
@media (max-width:480px){
.client-testimonials-section{padding:40px 10px}
.section-title{font-size:1.5rem}
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}
