.elementor-63 .elementor-element.elementor-element-72b5650{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--margin-top:-72px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;}.elementor-63 .elementor-element.elementor-element-300a136 > .elementor-widget-container{margin:-20px 0px 0px 0px;}.elementor-63 .elementor-element.elementor-element-bea9350 > .elementor-widget-container{margin:-20px 0px 0px 0px;}.elementor-63 .elementor-element.elementor-element-89c8014 > .elementor-widget-container{margin:-21px -21px -21px -21px;}.elementor-63 .elementor-element.elementor-element-9dae3e1 > .elementor-widget-container{margin:-19px 0px 0px 0px;}.elementor-63 .elementor-element.elementor-element-3163428 > .elementor-widget-container{margin:-20px 0px 0px 0px;}.elementor-63 .elementor-element.elementor-element-833e041 > .elementor-widget-container{margin:0px 0px 0px 0px;}.elementor-63 .elementor-element.elementor-element-fa0820e{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-63 .elementor-element.elementor-element-2025f43{--display:flex;}:root{--page-title-display:none;}@media(max-width:767px){.elementor-63 .elementor-element.elementor-element-300a136 > .elementor-widget-container{margin:-31px 0px 0px 0px;}}/* Start custom CSS for html, class: .elementor-element-2d6a15b *//* ===================================
RESET
=================================== */

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

/* ===================================
BODY + HTML
=================================== */

html,
body{

  width:100%;

  height:100%;

  overflow-x:hidden;

  font-family:'Poppins', sans-serif;

  background:#000;
}

/* ===================================
ROOT COLORS
=================================== */

:root{

  --white:#ffffff;
}

/* ===================================
REMOVE ELEMENTOR WIDTH ISSUE
=================================== */

.elementor-section,
.elementor-container,
.elementor-column,
.elementor-widget-wrap{

  width:100% !important;

  max-width:100% !important;
}

/* ===================================
HERO SECTION
=================================== */

.hero{

  position:relative;

  width:100vw;

  max-width:100vw;

  margin-left:calc(-50vw + 50%);

  min-height:100vh;

  display:flex;

  justify-content:center;
  align-items:center;

  overflow:hidden;
}

/* ===================================
VIDEO
=================================== */

.hero video{

  position:absolute;

  top:0;
  left:0;

  width:100%;

  height:100%;

  object-fit:cover;

  z-index:0;
}

/* ===================================
LIGHT OVERLAY
=================================== */

.hero::before{

  content:'';

  position:absolute;

  inset:0;

  background:rgba(0,0,0,0.18);

  z-index:1;
}

/* ===================================
CONTENT
=================================== */

.hero-content{

  position:relative;

  z-index:2;

  width:100%;

  max-width:1200px;

  padding:20px;

  text-align:center;

  display:flex;

  flex-direction:column;

  align-items:center;

  justify-content:center;
}

/* ===================================
HEADING
=================================== */

.hero-content h1{

  font-size:clamp(42px, 7vw, 88px);

  line-height:1.12;

  font-weight:700;

  color:#ffffff;

  max-width:1100px;

  margin-bottom:22px;

  letter-spacing:-2px;

  text-align:center;

  text-shadow:0 8px 30px rgba(0,0,0,0.55);

  opacity:0;

  animation:heroFadeUp 1s ease forwards;

  animation-delay:0.3s;
}

/* ===================================
SUBTEXT
=================================== */

.hero-content p{
    
    position: relative;
    
    top: 60px;

  font-size:clamp(14px, 2vw, 20px);

  line-height:1.7;

  color:#ffffff;

  max-width:850px;

  margin-bottom:34px;

  text-align:center;

  text-shadow:0 4px 20px rgba(0,0,0,0.45);

  opacity:0;

  animation:heroFadeUp 1s ease forwards;

  animation-delay:0.6s;
}

/* ===================================
BUTTON
=================================== */

.btn{
    
    position: relative;
    
    top: 60px;

  display:inline-flex;

  justify-content:center;
  align-items:center;

  padding:18px 42px;

  border:none;

  border-radius:60px;

  cursor:pointer;

  font-size:17px;

  font-weight:600;

  color:#ffffff;

  text-decoration:none;

  background:
  linear-gradient(
    135deg,
    #00d26a,
    #11b7ff
  );

  transition:0.35s ease;

  opacity:0;

  animation:heroFadeUp 1s ease forwards;

  animation-delay:0.9s;
}

/* ===================================
BUTTON HOVER
=================================== */

.btn:hover{

  transform:translateY(-4px);

  background:
  linear-gradient(
    135deg,
    #14e87d,
    #22c5ff
  );
}

/* ===================================
ANIMATION
=================================== */

@keyframes heroFadeUp{

  0%{

    opacity:0;

    transform:translateY(40px);
  }

  100%{

    opacity:1;

    transform:translateY(0);
  }
}

/* ===================================
TABLET
=================================== */

@media(max-width:1024px){

  .hero{

    min-height:85vh;
  }

  .hero-content{

    max-width:92%;
  }

  .hero-content h1{

    line-height:1.15;
  }
}

/* ===================================
MOBILE
=================================== */

@media(max-width:768px){

  .hero{

    min-height:75vh;

    padding:70px 15px 50px;
  }

  .hero-content{

    padding:10px;
  }

  .hero-content h1{

    font-size:38px;

    line-height:1.2;

    margin-bottom:16px;

    letter-spacing:-1px;
  }

  .hero-content p{

    font-size:14px;

    line-height:1.7;

    margin-bottom:24px;
  }

  .btn{

    width:100%;

    max-width:280px;

    padding:15px;

    font-size:15px;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-300a136 *//* ===================================
SCOPE
=================================== */

.hero-scope{

  width:100vw;

  max-width:100vw;

  margin-left:calc(-50vw + 50%);

  overflow:hidden;

  font-family:'Poppins', sans-serif;
}

/* ===================================
RESET
=================================== */

.hero-scope *{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

.hero-scope img{
  width:100%;
  display:block;
}

/* ===================================
SECTION
=================================== */

.hero-scope .hero-section{

  display:flex;

  width:100%;

  min-height:100vh;

  background:#f7f7f7;

  overflow:hidden;
}

/* ===================================
LEFT IMAGE SECTION
=================================== */

.hero-scope .hero-section__visual{

  width:50%;

  position:relative;

  min-height:700px;

  overflow:hidden;
}

/* ===================================
IMAGE
=================================== */

.hero-scope .hero-section__image{

  width:100%;

  height:100%;

  object-fit:cover;
}

/* ===================================
BADGE
=================================== */

.hero-scope .hero-section__availability-badge{

  position:absolute;

  bottom:50px;

  right:30px;

  width:160px;

  height:160px;

  border-radius:50%;

  background:#ffffff;

  display:flex;

  align-items:center;
  justify-content:center;

  text-align:center;

  box-shadow:0 15px 40px rgba(0,0,0,0.18);

  border:5px solid #eeeeee;

  z-index:5;

  font-size:14px;

  line-height:1.5;
}

/* BADGE NUMBER */

.hero-scope .hero-section__availability-badge strong{

  display:block;

  font-size:32px;

  color:#d32f2f;

  margin:4px 0;
}

/* ===================================
RIGHT CONTENT
=================================== */

.hero-scope .hero-section__content{

  width:50%;

  padding:80px;

  display:flex;

  flex-direction:column;

  justify-content:center;
}

/* ===================================
HEADLINE
=================================== */

.hero-scope .hero-section__headline{

  font-size:clamp(40px, 5vw, 70px);

  line-height:1.15;

  color:#111111;

  margin-bottom:22px;

  font-weight:700;
}

/* HIGHLIGHT */

.hero-scope .hero-section__highlight{
  color:#0b7a45;
}

/* ===================================
DESCRIPTION
=================================== */

.hero-scope .hero-section__description{

  font-size:16px;

  line-height:1.9;

  color:#555555;

  max-width:560px;

  margin-bottom:25px;
}

/* ===================================
FEATURES
=================================== */

.hero-scope .hero-section__features{

  font-size:15px;

  line-height:2;

  color:#222222;

  margin-bottom:30px;
}

/* ===================================
BUTTON
=================================== */

.hero-scope .hero-section__cta{

  display:inline-flex;

  align-items:center;
  justify-content:center;

  width:max-content;

  padding:16px 34px;

  border-radius:50px;

  background:
  linear-gradient(
    135deg,
    #0b3d2e,
    #075c43
  );

  color:#ffffff;

  text-decoration:none;

  font-weight:600;

  transition:0.35s ease;
}

/* BUTTON HOVER */

.hero-scope .hero-section__cta:hover{

  transform:translateY(-4px);

  opacity:0.95;
}

/* ===================================
ANIMATION BASE
=================================== */

.hero-scope .animate-up,
.hero-scope .animate-left,
.hero-scope .animate-scale{

  opacity:0;

  transition:all 1s ease;
}

/* UP */

.hero-scope .animate-up{
  transform:translateY(60px);
}

/* LEFT */

.hero-scope .animate-left{
  transform:translateX(-80px);
}

/* SCALE */

.hero-scope .animate-scale{
  transform:scale(0.7);
}

/* SHOW */

.hero-scope .animate-up.show,
.hero-scope .animate-left.show,
.hero-scope .animate-scale.show{

  opacity:1;

  transform:translate(0,0) scale(1);
}

/* ===================================
DELAYS
=================================== */

.hero-scope .delay-1{
  transition-delay:0.2s;
}

.hero-scope .delay-2{
  transition-delay:0.4s;
}

.hero-scope .delay-3{
  transition-delay:0.6s;
}

/* ===================================
TABLET
=================================== */

@media(max-width:1024px){

  .hero-scope .hero-section{
    flex-direction:column;
  }

  .hero-scope .hero-section__visual,
  .hero-scope .hero-section__content{
    width:100%;
  }

  .hero-scope .hero-section__visual{
    min-height:500px;
  }

  .hero-scope .hero-section__content{
    padding:60px 30px;
  }

  .hero-scope .hero-section__headline{
    font-size:48px;
  }
}

/* ===================================
MOBILE
=================================== */

@media(max-width:768px){

  .hero-scope .hero-section{
    min-height:auto;
    flex-direction:column;
  }

  .hero-scope .hero-section__visual{

    width:100%;

    min-height:320px;
  }

  .hero-scope .hero-section__content{

    width:100%;

    padding:35px 18px;

    text-align:center;

    align-items:center;
  }

  .hero-scope .hero-section__headline{

    font-size:32px;

    line-height:1.3;
  }

  .hero-scope .hero-section__description{

    font-size:14px;

    line-height:1.8;
  }

  .hero-scope .hero-section__features{

    font-size:13px;

    line-height:1.8;
  }

  .hero-scope .hero-section__cta{

    width:100%;

    max-width:280px;

    padding:14px;
  }

  /* MOBILE BADGE */

  .hero-scope .hero-section__availability-badge{

    width:95px;

    height:95px;

    right:15px;

    bottom:15px;

    font-size:10px;

    border-width:2px;
  }

  .hero-scope .hero-section__availability-badge strong{

    font-size:18px;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-bea9350 */*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

body{
  font-family:'Poppins',sans-serif;
  background:#f5f7fb;
  color:#333;
  overflow-x:hidden;
}

/* HERO */
.contact-hero-header{
  width:100vw;
  margin-left:calc(-50vw + 50%);
  min-height:90vh;
  display:flex;
  align-items:center;
  padding:80px 8%;
  background:
    linear-gradient(rgba(0,0,0,0), rgba(0,0,0,0.4)),
    url('https://escalarealty.in/wp-content/uploads/2026/05/escala-realty-1.png');
  background-size:cover;
  background-position:center;
}

.hero-content h1{
  font-family:'Playfair Display',serif;
  font-size:70px;
  color:#fff;
  position: relative;
  top: 80px;
}

.hero-content h2{
  font-family:'Playfair Display',serif;
  font-size:72px;
  color:#fff;
   position: relative;
  top: 60px;
}



/* GLOBAL */
*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

body{
  font-family:'Poppins',sans-serif;
}

/* MAIN SECTION */
.portfolio-section{
   position:relative;
  width:100vw;
  margin-left:calc(-50vw + 50%);
  min-height:80vh;

  background:
  linear-gradient(rgba(255,255,255,0.55),
  rgba(255,255,255,0.55)),
  url('https://images.unsplash.com/photo-1507525428034-b723cf961d3e');

  background-size:cover;
  background-position:center;

  /* STICKY BACKGROUND */
  background-attachment:fixed;

  overflow:hidden;

  padding:60px 20px;
}

/* CONTAINER */
.portfolio-container{
  width:100%;
  max-width:1200px;
  margin:auto;
}

/* HEADER */
.portfolio-header{
  text-align:center;
  margin-bottom:40px;
}

.portfolio-header h1{
  font-size:60px;
  font-weight:700;
  color:#064b37;
  line-height:1.1;
}

.portfolio-header p{
  margin-top:15px;
  font-size:20px;
  color:#444;
}

/* TABS */
.portfolio-tabs{
  width:100%;

  display:flex;
  justify-content:center;
  gap:14px;

  padding:10px;

  border-radius:50px;

  background:rgba(255,255,255,0.65);

  backdrop-filter:blur(12px);

  margin-bottom:40px;
}

/* TAB BUTTON */
.portfolio-tab{
  border:none;
  outline:none;

  padding:14px 34px;

  border-radius:40px;

  background:transparent;

  color:#111;

  font-size:16px;
  font-weight:500;

  cursor:pointer;

  transition:0.3s ease;
}

.portfolio-tab.active{
  background:#064b37;
  color:#fff;
}

/* PANEL */
.portfolio-panel{
  display:none;
  justify-content:center;
}

.portfolio-panel.active-panel{
  display:flex;
}

/* CARD */
.project-card{
  width:100%;
  max-width:490px;

  background:rgba(255,255,255,0.75);

  border-radius:24px;

  overflow:hidden;

  backdrop-filter:blur(12px);

  box-shadow:0 20px 60px rgba(0,0,0,0.12);

  transition:0.4s ease;
}

.project-card:hover{
  transform:translateY(-8px);
}

/* IMAGE */
.project-image{
  position:relative;
  width:100%;
  height:260px;
}

.project-image img{
  width:100%;
  height:100%;
  object-fit:cover;
}

/* BADGE */
.project-badge{
  position:absolute;
  top:18px;
  left:18px;

  background:rgba(255,255,255,0.9);

  padding:8px 16px;

  border-radius:30px;

  font-size:13px;
  color:#064b37;
}
/* CURRENT PROJECT CENTER */
#current-project .project-grid{
  grid-template-columns: 1fr;
  max-width: 500px;
  margin: auto;
}

/* STATUS */
.project-status{
  position:absolute;
  right:18px;
  bottom:18px;

  background:#064b37;

  color:#fff;

  padding:8px 18px;

  border-radius:30px;

  font-size:13px;
}

/* CONTENT */
.project-content{
  padding:26px;
}

.project-content h3{
  font-size:28px;
  line-height:1.2;
  font-weight:700;
  

  color:#1b1b1b;
}

.project-content p{
  margin-top:12px;

  color:#555;
  font-size:16px;
  line-height:1.7;
}

/* FEATURES */
.project-features{
  display:flex;
  flex-wrap:wrap;
  gap:10px;

  margin-top:18px;
}

.project-features span{
  padding:8px 14px;

  border-radius:30px;

  background:rgba(6,75,55,0.08);

  color:#064b37;

  font-size:13px;
}

/* BUTTON */
.project-btn{
  display:inline-block;

  margin-top:24px;

  padding:14px 28px;

  border-radius:8px;

  background:#064b37;

  color:#fff;

  text-decoration:none;

  font-size:15px;
  font-weight:600;

  transition:0.3s ease;
}

.project-btn:hover{
  transform:translateY(-3px);
}

/* RESPONSIVE */
@media(max-width:768px){

  .portfolio-header h1{
    font-size:40px;
  }

  .portfolio-header p{
    font-size:16px;
  }

  .portfolio-tabs{
    flex-wrap:wrap;
  }

  .portfolio-tab{
    padding:12px 24px;
    font-size:14px;
  }

  .project-content h3{
    font-size:28px;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-89c8014 *//* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background: #f7f7f7;
}

/* SECTION */
.elite-section {
  padding: 80px 20px;
}

.elite-wrapper {
  max-width: 1200px;
  margin: auto;
}

/* TITLE */
.elite-heading {
  font-size: 42px;
  text-align: center;
  font-family: serif;
  margin-bottom: 20px;
  color: #111;
}

.elite-heading span {
  color: #5c6f73;
}

/* DESCRIPTION */
.elite-description {
  text-align: center;
  max-width: 850px;
  margin: auto;
  color: #555;
  line-height: 1.8;
  margin-bottom: 60px;
}

/* GRID */
.elite-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

/* CARD */
.elite-card {
  background: #fafafa;
  border: 2px solid #c7d1d3;
  border-radius: 16px;
  padding: 45px 20px;
  text-align: center;
  transition: 0.3s ease;

  opacity: 0;
  transform: translateY(40px);
}

.elite-card.active {
  opacity: 1;
  transform: translateY(0);
}

/* ICON */
.elite-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
}

.elite-icon svg {
  transition: 0.3s ease;
}

/* TEXT */
.elite-card h3 {
  font-family: serif;
  font-size: 18px;
  color: #111;
  line-height: 1.4;
}

/* HOVER */
.elite-card:hover {
  transform: translateY(-8px);
  border-color: #0b3d2e;
  background: #ffffff;
}

.elite-card:hover .elite-icon svg {
  transform: scale(1.08);
  stroke: #075c43;
}

/* SCROLL */
.elite-reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
}

.elite-reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* =========================
   MOBILE FIRST OPTIMIZATION
========================= */

/* Tablet */
@media (max-width: 1024px) {
  .elite-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .elite-heading {
    font-size: 34px;
  }

  .elite-description {
    font-size: 15px;
    margin-bottom: 40px;
  }
}

/* Mobile */
@media (max-width: 768px) {

  .elite-section {
    padding: 50px 15px;
  }

  .elite-heading {
    font-size: 28px;
    line-height: 1.3;
  }

  .elite-description {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 30px;
  }

  .elite-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .elite-card {
    padding: 25px 15px;
    border-radius: 12px;
  }

  .elite-card h3 {
    font-size: 16px;
  }

  .elite-icon {
    margin-bottom: 15px;
  }
}

/* Small Mobile (important for real devices like 360px) */
@media (max-width: 480px) {

  .elite-section {
    padding: 40px 12px;
  }

  .elite-heading {
    font-size: 24px;
  }

  .elite-description {
    font-size: 13px;
  }

  .elite-card {
    padding: 20px 12px;
  }

  .elite-card h3 {
    font-size: 15px;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-9dae3e1 *//* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* BODY */
body {
  font-family: 'Poppins', sans-serif;
}

/* BACKGROUND */
.gallery-bg {
  min-height: 80vh;
  background: url('https://escalarealty.in/wp-content/uploads/2026/04/WhatsApp-Image-2026-04-07-at-11.15.24-AM.jpeg') no-repeat center;
  background-size: cover;
  background-attachment: fixed;
}

/* SECTION */
.gallery-section {
  padding: 80px 20px;
}

/* WRAPPER */
.gallery-wrapper {
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 0 20px; /* optional spacing */
}

/* TITLE */
.gallery-title {
  font-size: 50px;
  
  text-align: center;
  font-family: serif;
  margin-bottom: 40px;
  color: #0b3d2e;
}

.gallery-title span {
  color: #0b3d2e;
}

/* SLIDER */
.gallery-slider {
  overflow: hidden;
}

/* TRACK */
.gallery-track {
  display: flex;
  gap: 16px;
  width: max-content;
  animation: scrollLoop 25s linear infinite;
}

/* ANIMATION */
@keyframes scrollLoop {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* PAUSE ON HOVER */
.gallery-slider:hover .gallery-track {
  animation-play-state: paused;
}

/* CARD (SMALL SIZE) */
.gallery-card {
  min-width: 360px;
  max-width: 360px;
  border-radius: 14px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
  transition: 0.3s ease;
}

.gallery-card:hover {
  transform: translateY(-5px);
}

/* IMAGE (COMPACT) */
.gallery-image {
  width: 100%;
  height: 360px;
  object-fit: cover;
  display: block;
  transition: 0.4s ease;
}

.gallery-card:hover .gallery-image {
  transform: scale(1.05);
}

/* =========================
   MOBILE FIX (0 - 767px)
========================= */
@media (max-width: 767px) {

  body {
    overflow-x: hidden;
  }

  .gallery-bg {
    background-attachment: scroll; /* fix mobile bug */
     min-height: 50vh;
  }

  .gallery-section {
    padding: 50px 12px;
  }

  .gallery-title {
    font-size: 26px;
    margin-bottom: 20px;
  }

  .gallery-track {
    gap: 10px;
    animation-duration: 18s; /* smoother */
  }

  .gallery-card {
    min-width: 75px;
    max-width: 200px;
  }

  .gallery-image {
    height: 120px;
  }
}


/* =========================
   TABLET FIX (768 - 1023px)
========================= */
@media (min-width: 768px) and (max-width: 1023px) {

  body {
    overflow-x: hidden;
  }

  .gallery-bg {
    background-attachment: scroll;
  }

  .gallery-section {
    padding: 60px 20px;
  }

  .gallery-title {
    font-size: 36px;
  }

  .gallery-track {
    gap: 14px;
    animation-duration: 22s;
  }

  .gallery-card {
    min-width: 300px;
    max-width: 300px;
  }

  .gallery-image {
    height: 260px;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-3163428 *//* FORCE FULL WIDTH FIX (Elementor issue fix) */
.testimonials-wrapper {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  background: #496a70;
}

/* SECTION */
.testimonials {
  max-width: 1100px;
  margin: auto;
  padding: 100px 20px;
  text-align: center;
  color: #fff;
  font-family: 'Segoe UI', sans-serif;
}

/* TEXT */
.testimonials__title {
  font-size: 42px;
  font-family: serif;
  margin-bottom: 15px;
}

.testimonials__subtitle {
  max-width: 700px;
  margin: auto;
  margin-bottom: 60px;
}

/* SLIDER */
.testimonial-slider {
  overflow: hidden;
  position: relative;
}

.testimonial-track {
  display: flex;
  transition: transform 0.6s ease;
  will-change: transform;
}

/* CARD */
.testimonial-card {
  flex: 0 0 60%;
  margin: 0 20px;
  padding: 40px;
  background: #fff;
  color: #333;
  border-radius: 16px;
  text-align: left;

  opacity: 0.4;
  transform: scale(0.85);
  transition: all 0.5s ease;
}

/* STATES */
.testimonial-card.active {
  opacity: 1;
  transform: scale(1);
}

.testimonial-card.prev,
.testimonial-card.next {
  opacity: 0.7;
  transform: scale(0.92);
}

/* CLIENT */
.client {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 20px;
}

.client img {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  object-fit: cover;
}

.client h4 {
  font-family: serif;
  font-size: 16px;
}

/* TEXT */
.testimonial-card p {
  margin: 15px 0;
  font-size: 15px;
  line-height: 1.6;
}

/* DOTS */
.testimonial-dots {
  margin-top: 40px;
}

.testimonial-dots span {
  width: 8px;
  height: 8px;
  background: #ccc;
  display: inline-block;
  margin: 5px;
  border-radius: 50%;
  cursor: pointer;
}

.testimonial-dots .active {
  background: #fff;
}

/* =========================
   MOBILE OPTIMIZATION (TIGHT)
========================= */
@media (max-width: 768px) {

  /* SECTION HEIGHT FIX */
  .testimonials {
    padding: 50px 15px; /* reduced from 100px */
  }

  /* TITLE */
  .testimonials__title {
    font-size: 26px;
    line-height: 1.3;
    margin-bottom: 8px;
  }

  .testimonials__subtitle {
    font-size: 13px;
    margin-bottom: 25px;
  }

  /* SLIDER */
  .testimonial-track {
    gap: 10px;
  }

  /* CARD (FOCUS MODE) */
  .testimonial-card {
    flex: 0 0 88%;
    margin: 0 8px;
    padding: 18px;

    border-radius: 12px;

    opacity: 1; /* remove blur */
    transform: scale(1);
  }

  /* REMOVE SIDE EFFECTS */
  .testimonial-card.prev,
  .testimonial-card.next {
    opacity: 1;
    transform: scale(1);
  }

  /* TEXT */
  .testimonial-card p {
    font-size: 13px;
    line-height: 1.5;
  }

  /* CLIENT */
  .client {
    gap: 10px;
    margin-top: 12px;
  }

  .client img {
    width: 42px;
    height: 42px;
  }

  .client h4 {
    font-size: 14px;
  }

  /* DOTS */
  .testimonial-dots {
    margin-top: 20px;
  }

  .testimonial-dots span {
    width: 6px;
    height: 6px;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-833e041 *//* SCOPE FIX */
.contact-scope {
  font-family: 'Segoe UI', sans-serif;
}

/* RESET */
.contact-scope * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* SECTION */
.contact-scope .contact-hero {
  min-height: 100vh;
  background: linear-gradient(rgba(11,61,46,0.65), rgba(11,61,46,0.65)),
              url('https://images.unsplash.com/photo-1507525428034-b723cf961d3e');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
}

/* CARD */
.contact-scope .contact-card {
  width: 100%;
  max-width: 1100px;
  display: flex;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  background: rgba(255,255,255,0.08);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.2);
  box-shadow: 0 10px 40px rgba(0,0,0,0.2);
}

/* LEFT */
.contact-scope .contact-info {
  width: 40%;
  padding: 50px;
  color: #fff;
}

.contact-scope .contact-info h2 {
  font-size: 34px;
  font-family: serif;
  margin-bottom: 20px;
}

.contact-scope .contact-info p {
  margin-bottom: 20px;
  opacity: 0.9;
}

/* RIGHT */
.contact-scope .contact-form-box {
  width: 60%;
  background: rgba(255,255,255,0.95);
  padding: 50px;
}

.contact-scope .contact-form-box h2 {
  font-family: serif;
  margin-bottom: 25px;
  color: #0b3d2e;
}

/* FORM */
.contact-scope .form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

/* ROW */
.contact-scope .row {
  display: flex;
  gap: 15px;
}

/* INPUTS */
.contact-scope input,
.contact-scope select,
.contact-scope textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 14px;
  outline: none;
  transition: 0.3s;
}

.contact-scope input:focus,
.contact-scope select:focus,
.contact-scope textarea:focus {
  border-color: #0b3d2e;
  box-shadow: 0 0 0 2px rgba(11,61,46,0.1);
}

.contact-scope textarea {
  height: 90px;
  resize: none;
}

/* FORM BOTTOM */
.contact-scope .form-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

/* TERMS */
.contact-scope .form-terms {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 14px;
  color: #333;
  max-width: 70%;
}

.contact-scope .form-terms input {
  margin-top: 3px;
  width: 16px;
  height: 16px;
  cursor: pointer;
}

.contact-scope .form-terms label {
  cursor: pointer;
}

/* BUTTON */
.contact-scope .form-btn {
  background: linear-gradient(135deg, #0b3d2e, #075c43);
  color: #fff;
  padding: 14px 20px;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
  min-width: 160px;
}

.contact-scope .form-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.contact-scope .form-btn:disabled {
  background: #ccc;
  cursor: not-allowed;
  opacity: 0.7;
}

/* SUCCESS MESSAGE */
#success-msg {
  font-size: 14px;
}

/* =========================
   MOBILE OPTIMIZATION FIX
========================= */
@media (max-width: 768px) {

  /* STACK CARD */
  .contact-scope .contact-card {
    flex-direction: column;
    border-radius: 12px;
  }

  /* LEFT SECTION */
  .contact-scope .contact-info {
    width: 100%;
    padding: 25px 20px;
  }

  .contact-scope .contact-info h2 {
    font-size: 24px;
  }

  .contact-scope .contact-info p {
    font-size: 14px;
  }

  /* RIGHT FORM */
  .contact-scope .contact-form-box {
    width: 100%;
    padding: 25px 20px;
  }

  .contact-scope .contact-form-box h2 {
    font-size: 22px;
  }

  /* INPUT ROW FIX */
  .contact-scope .row {
    flex-direction: column;
    gap: 10px;
  }

  /* INPUTS */
  .contact-scope input,
  .contact-scope select,
  .contact-scope textarea {
    font-size: 14px;
    padding: 14px;
  }

  /* TEXTAREA HEIGHT */
  .contact-scope textarea {
    height: 100px;
  }

  /* FORM BOTTOM STACK */
  .contact-scope .form-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .contact-scope .form-terms {
    max-width: 100%;
    font-size: 13px;
  }

  /* BUTTON FULL WIDTH */
  .contact-scope .form-btn {
    width: 100%;
    text-align: center;
  }

  /* HERO PADDING REDUCE */
  .contact-scope .contact-hero {
    padding: 20px 12px;
  }
}/* End custom CSS */