*,
*::before,
*::after{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

html,
body{
  overflow-x:hidden;
}


:root{

  --bg:#000000;
  --bg2:#0b0b0d;
  --bg3:#161616;

  --white:#F5F5F5;

  --text:#CFCFCF;

  --text-light:#9f9f9f;

  --gold:#D4A437;
  --gold2:#E0B84B;
  --gold3:#F4D06F;
  --gold-light:#f5c542;
  

  --border:rgba(212,164,55,0.12);

  --glass:rgba(255,255,255,0.04);

  --shadow:
  0 15px 40px rgba(0,0,0,0.45);


  --card:#111111;
  --light:#9f9f9f;
}

/* body */

body{

  font-family:'Cabin', sans-serif;

  font-weight:400;

  line-height:1.8;

  color:var(--white);

  background:
  linear-gradient(
  135deg,
  #000000 0%,
  #0b0b0d 45%,
  #1a1a1a 100%
  );
}


/* selection */

::selection{
  background:#d4a437;
  color:#000;
}

/* scrollbar */

::-webkit-scrollbar{
  width:8px;
}

::-webkit-scrollbar-track{
  background:#000;
}

::-webkit-scrollbar-thumb{
  background:linear-gradient(var(--gold),var(--gold3));
  border-radius:20px;
}

/* common  */


section{
  padding: 60px 0;
  position: relative;
} 


.eyebrow{
    display:inline-block;
    padding:10px 20px;
    border-radius:40px;
    background:linear-gradient(135deg,#d4a437,#f4d06f);
    color:#111;
    font-size:12px;
    font-weight:700;
    letter-spacing:1.5px;
    text-transform:uppercase;
}

.container{
   position:relative;
  z-index:2; 

  width:100%;
  max-width:1320px;
  margin:auto;
  padding:0 15px;
  position:relative;
  z-index:2;

}

img{
  max-width:100%;
  display:block;
}

p{

  font-family:'Cabin', sans-serif;

  font-size:18px;

  font-weight:400;

  line-height:1.7;

  color:var(--text);
}

span
{

  font-family:'Playfair Display', serif;

  font-weight:400;

}

.section-title,
.spaces-title,
.partner-heading h2,
.section-util-title h2{

  font-size:clamp(2rem,4vw,3.5rem);

  font-weight:400;

  line-height:1.15;

  margin-bottom:18px;
 
}

.section-subtitle,
.spaces-subtitle,
.section-util-title p{

  max-width:760px;

  margin: 0 auto;

  color:var(--text);

  font-size:18px;

  line-height:2;
}


.grad-text{

  background:linear-gradient(
  135deg,
  #c8962b 0%,
  #e0b84b 50%,
  #f4d06f 100%
  );

  -webkit-background-clip:text;

  -webkit-text-fill-color:transparent;

  background-clip:text;
}


h1{
  font-family:'Playfair Display', serif;
  /* font-family: 'Cabin', sans-serif; */
  font-weight:400;
  line-height:1.1;
  letter-spacing:-1px;
  font-size:clamp(2.8rem, 7vw, 5rem);
}

h2{
  font-family:'Playfair Display', serif;
   /* font-family: 'Cabin', sans-serif; */
  font-weight:400;
  line-height:1.2;
  letter-spacing:-0.5px;
  font-size:clamp(2rem, 5vw, 3rem);
}

/* Italic Gold Text */
.gold-text{

  font-style:italic;
  color:#c9962b;

}

/* navbar */

.navbar{

  padding:12px 0;

  background:rgba(0,0,0,0.82);

  backdrop-filter:blur(18px);

  border-bottom:1px solid rgba(212,164,55,0.08);

  transition:.4s;
}

.navbar .container{
  display:flex;
  align-items:center;
  justify-content:space-between;
}

.navbar.scrolled{

  background:#000;

  box-shadow:
  0 10px 30px rgba(0,0,0,0.45);
}

.navbar-brand{

  color:var(--white) !important;

  font-size:28px;

  font-weight:800;

  font-family:'Playfair Display', serif;
}

.nav-link{

  color:#d8d8d8 !important;

  margin-left:10px;

  font-size:14px;

  font-weight:500;

  position:relative;

  transition:.3s;

  font-family:'Cabin', sans-serif;
  padding:10px 0 !important;
    white-space: nowrap;
}

.nav-link:hover{
  color:var(--gold3) !important;
}

.nav-link::after{

  content:"";

  position:absolute;

  left:0;

  bottom:-6px;

  width:0;

  height:1px;

  background:linear-gradient(to right,var(--gold),var(--gold3));

  transition:.3s;
}

.nav-link:hover::after{
  width:100%;
}

/* DROPDOWN HOVER OPEN */

.navbar .dropdown:hover .dropdown-menu{
  display:block;
  margin-top:0;
  opacity:1;
  visibility:visible;
  transform:translateY(0);
}

/* SMOOTH EFFECT */

.navbar .dropdown-menu{
  display:block;
  opacity:0;
  visibility:hidden;
  transform:translateY(10px);
  transition:0.3s ease;
  margin-top:0;
  border:none;
}

/* buttons */

.nav-btn,
.btn-main,
.footer-btn{

  display:inline-flex;

  align-items:center;

  justify-content:center;

  padding:15px 30px;

  border-radius:60px;

  border:none;

  text-decoration:none;

  background:linear-gradient(
  135deg,
  #c8962b 0%,
  #e0b84b 50%,
  #f4d06f 100%
  );

  color:#000;

  font-size:14px;

  font-weight:700;

  transition:.35s;

  font-family:'Cabin', sans-serif;

  box-shadow:
  0 10px 25px rgba(212,164,55,0.20);
}

nav-item.dropdown{
  position:relative;
}

.nav-item.dropdown:hover .dropdown-menu{
  opacity:1;
  visibility:visible;
  transform:translateY(0);
}

.dropdown-menu{
  display:block;
  opacity:0;
  visibility:hidden;
  transform:translateY(15px);
  transition:0.35s ease;
  margin-top:0;
  background:#111111;
  border:1px solid rgba(212,160,23,0.2);
  border-radius:16px;
  padding:12px;
}

.dropdown-item{
  color:#f5f5f5;
  border-radius:10px;
  padding:10px 14px;
  transition:0.3s ease;
}

.dropdown-item:hover{
  background:rgba(212,160,23,0.12);
  color:#f5d76e;
}


.navbar-nav .dropdown-toggle {
  display: inline-flex;
  align-items: center;
}
.dropdown-toggle::after {
  content: none !important;
}

.nav-btn:hover,
.btn-main:hover,
.footer-btn:hover{

  transform:translateY(-4px);

  color:#000;
}

.btn-glass,
.btn-outline-light{

  padding:15px 30px;

  border-radius:60px;

  background:rgba(255,255,255,0.04);

  border:1px solid rgba(212,164,55,0.14) !important;

  color:var(--white) !important;

  font-size:14px;

  font-weight:600;

  backdrop-filter:blur(14px);

  transition:.35s;

  text-decoration:none;
}

.btn-glass:hover,
.btn-outline-light:hover{

  background:rgba(212,164,55,0.12);

  transform:translateY(-3px);
}

/* hero */
.hero{
  min-height:100vh;
  position:relative;
  display:flex;
  align-items:center;
  overflow:hidden;
  padding-top:140px;
  padding-bottom:90px;
  background:#000;
}

.hero-content{
  max-width:850px;
}

.hero-overlay{
  position:absolute;
  inset:0;
  z-index:2;

  background:
  linear-gradient(
    to right,
    rgba(0,0,0,0.30),
    rgba(0,0,0,0.10)
  ),

  linear-gradient(
    to top,
    rgba(0,0,0,0.35),
    rgba(0,0,0,0.05)
  );
}

.hero video{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;

  z-index:1;

  opacity:1;

  filter:brightness(1.1);

}


.hero p{
  font-size:17px;
  line-height:2;
  color:#e0e0e0;
  max-width:680px;
  margin-bottom:42px;
  font-weight:400;
}

.hero-btns{
  display:flex;
  flex-wrap:wrap;
  gap:18px;
}

.glow{
  position:absolute;
  border-radius:50%;
  filter:blur(120px);
  opacity:.16;
  z-index:1;
}

.glow.one{
  width:320px;
  height:320px;
  background:#d4a437;
  top:-8%;
  left:-6%;
  animation:floatGlow 8s ease-in-out infinite;
}

.glow.two{
  width:260px;
  height:260px;
  background:#f4d06f;
  bottom:-10%;
  right:-5%;
  animation:floatGlow 10s ease-in-out infinite;
}

@keyframes floatGlow{

  0%{
    transform:translateY(0);
  }

  50%{
    transform:translateY(20px);
  }

  100%{
    transform:translateY(0);
  }

}


/* cards */

.glass-card,
.inventory-card,
.utility-card,
.philosophy-card,
.stats-card,
.floating-stat,
.about-feature-box,
.vision-card-box,
.amenities-image-card,
.amenities-feature-item,
.baas-pillar-card,
.baas-stream-card{

  background:rgba(255,255,255,0.03);

  border:1px solid rgba(212,164,55,0.10);

  backdrop-filter:blur(16px);

  box-shadow:
  0 15px 35px rgba(0,0,0,0.35);
}

.glass-card,
.inventory-card,
.utility-card,
.philosophy-card,
.logo-box,
.about-feature-box,
.vision-card-box,
.amenities-feature-item,
.contact-location-card,
.baas-pillar-card,
.baas-stream-card
{

  transition:
  transform .45s ease,
  border-color .45s ease,
  box-shadow .45s ease;
}

.glass-card,
.inventory-card,
.utility-card,
.philosophy-card,
.baas-pillar-card{

  border-radius:28px;
}

.glass-card:hover,
.inventory-card:hover,
.utility-card:hover,
.philosophy-card:hover,
.baas-pillar-card:hover{

  transform:translateY(-8px);

  border-color:rgba(224,184,75,0.28);
}



/* =========================
INVENTORY GRID
========================= */
.inventory-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  align-items: stretch;
}

/* =========================
CARD STRUCTURE (FIXED)
========================= */
.inventory-card{
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 0 0 34px;
  overflow: hidden;

  background: var(--card);
  border-radius: 28px;
}

/* =========================
GRADIENT BORDER EFFECT
========================= */
.inventory-card::before{
  content: "";
  position: absolute;
  inset: 0;
  padding: 1px;
  border-radius: 28px;

  background: linear-gradient(
    135deg,
    rgba(212,164,55,.35),
    transparent,
    rgba(244,208,111,.25)
  );

  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;

  pointer-events: none;
}

/* inner layer fix */
.inventory-card::after{
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: 27px;
  background: var(--card);
  z-index: -1;
}

/* =========================
TEXT STYLE (FIXED FLOW)
========================= */
.inventory-card h4{
  color: #fff;
  margin: 15px 20px 8px;
}

.inventory-card p{
  line-height: 1.6;
  word-spacing: 0.5px;
  letter-spacing: 0.2px;
  color: var(--muted);
  font-size: 0.95rem;

  margin: 0 20px 15px;

  word-break: break-word;
  overflow-wrap: anywhere;
  white-space: normal;
}

/* =========================
BUTTON ALIGNMENT FIX
========================= */
.inventory-card a.btn-main{
  margin-top: auto;
  margin-left: 20px;
  margin-right: 20px;
  display: inline-block;
}

/* =========================
HOVER EFFECT (OPTIONAL PREMIUM TOUCH)
========================= */
.inventory-card{
  transition: 0.3s ease;
}

.inventory-card:hover{
  transform: translateY(-8px);
  border-color: rgba(212,164,55,0.6);
}



/* philosophy */

.philosophy-card{
  padding:42px;
}

.philosophy-card h3{

  font-size:2.5rem;

  font-weight:500;
}

.philosophy-img{
  position:relative;
}
#philosophy .section-title{
  margin-top: 30px;
}

.philosophy-img img{

  width:100%;

  height:500px;

  object-fit:cover;

  border-radius:28px;

  filter:brightness(.82);
}




.stats-card{

  position:absolute;

  bottom:24px;
  right:24px;

  padding:22px 24px;

  border-radius:20px;
}

.stats-card h3{

  color:var(--gold2);

  font-size:34px;

  margin-bottom:4px;
}

.stats-card span{
  color:var(--text);
  font-size:13px;
}

.offer-list{
  margin-top:30px;
  display:flex;
  flex-direction:column;
  gap:16px;
}

/* CARD */
.offer-item{
  padding:20px 22px;
  background:var(--card);
  border:1px solid var(--border);
  border-radius:16px;
  position:relative;
  overflow:hidden;
  transition:0.35s ease;
  box-shadow: var(--shadow);
}

/* subtle gold glow accent */
.offer-item::before{
  content:"";
  position:absolute;
  top:0;
  left:0;
  width:3px;
  height:100%;
  background:linear-gradient(
    to bottom,
    var(--gold),
    transparent
  );
  opacity:0.8;
}

/* hover effect */
.offer-item:hover{
  transform:translateY(-4px);
  border-color:rgba(212,164,55,0.35);
  box-shadow:0 20px 50px rgba(0,0,0,0.6);
}

/* TITLE */
.offer-item h5{
  color:var(--gold3);
  font-size:18px;
  margin-bottom:8px;
  letter-spacing:0.3px;
}

/* DESCRIPTION */
.offer-item p{
  margin:0;
  color:var(--text-light);
  font-size:15px;
  line-height:1.7;
}

/* LINK */
.read-more-link{
  display:inline-flex;
  align-items:center;
  gap:8px;
  margin-top:22px;
  color:var(--gold2);
  font-weight:500;
  text-decoration:none;
  transition:0.3s ease;
}

.read-more-link i{
  transition:0.3s ease;
}

.read-more-link:hover{
  color:var(--gold3);
}

.read-more-link:hover i{
  transform:translateX(5px);
}

/* philosophy */

.philosophy-points{
  margin-top:30px;
}

.point{

  display:flex;

  align-items:center;

  gap:12px;

  margin-bottom:16px;
}

.point i{
  color:var(--gold2);
}

.point h6{
  color:var(--text);
  font-size:16px;
}


/* spaces */

.spaces-image{
  position:relative;
}

.spaces-image img{

  width:100%;

  height:480px;

  object-fit:cover;

  border-radius:28px;

  filter:brightness(.84);
}

.floating-stat{

  position:absolute;

  bottom:24px;
  left:24px;

  padding:20px 24px;

  border-radius:20px;
}

.floating-stat h4{

  color:var(--gold2);

  font-size:30px;

  margin-bottom:5px;
}

.floating-stat p{
  margin:0;
  font-size:13px;
}



.inventory-slider{

  width:100%;

  height:240px;

  position:relative;

  overflow:hidden;

  border-radius:28px 28px 0 0;
}

.inventory-slider .slide{

  position:absolute;

  inset:0;

  opacity:0;

  animation:slideShow 9s infinite;
}

.inventory-slider img{

  width:100%;

  height:100%;

  object-fit:cover;

  transition:1s ease;
}

.inventory-card:hover .inventory-slider img{
  transform:scale(1.05);
}

.inventory-slider .slide:nth-child(1){
  animation-delay:0s;
}

.inventory-slider .slide:nth-child(2){
  animation-delay:3s;
}

.inventory-slider .slide:nth-child(3){
  animation-delay:6s;
}

@keyframes slideShow{

  0%{opacity:0;}
  10%{opacity:1;}
  30%{opacity:1;}
  40%{opacity:0;}
  100%{opacity:0;}

}
.inventory-grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:30px;
}


.inventory-card{
  display:flex;
  flex-direction:column;
  align-items:center;
  text-align:center;
  height:100%;
}

.inventory-card p{
  flex-grow:1;
}

.inventory-card .btn-main{
  margin-top:auto;
  padding:8px 18px !important;
  font-size:14px;
  width:fit-content !important;
  min-width:unset !important;
  display:inline-flex;
  align-items:center;
  justify-content:center;
}

.inventory-card h4{

  font-size:22px;

  padding:28px 28px 10px;

  line-height:1.5;
}


/* partners */
.partner-logos{
  display:flex;
  justify-content:center;
  align-items:center;
  gap:50px;
  flex-wrap:nowrap;
  margin-top:60px;
}

.logo-box{
  display:flex;
  align-items:center;
  justify-content:center;
}

.logo-box img{
  max-width:180px;
  max-height:80px;
  object-fit:contain;
  opacity:0.85;
  transition:0.3s ease;
}

.logo-box img:hover{
  opacity:1;
  transform:scale(1.05);
}

@media(max-width:991px){

  .partner-logos{
      flex-wrap:wrap;
      gap:30px;
  }

  .logo-box img{
      max-width:140px;
  }

}
/* testimonials */

.client-success-section{
  padding: 100px 0;
  background: var(--bg);
  color: var(--white);
}

/* Heading */
.success-heading{
  max-width: 850px;
  margin: 0 auto 60px;
}


.success-heading p{
  color: var(--text);
  line-height: 1.6;
}

/* GRID */
.success-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

/* CARD */
.success-card{
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: 16px;

  padding: 30px;
  text-align: center;

  box-shadow: var(--shadow);
  transition: var(--transition);
}

.success-card:hover{
  transform: translateY(-6px);
  border-color: var(--gold2);
}

/* ICON */
.success-icon{
  font-size: 32px;
  color: var(--gold2);
  margin-bottom: 15px;
}

/* TITLE */
.success-card h3{
  font-size: 18px;
  margin-bottom: 10px;
}

/* TEXT */
.success-card p{
  font-size: 14px;
  color: var(--text);
  line-height: 1.5;
}

/* METRIC BADGE */
.success-metric{
  margin-top: 15px;
}

.success-metric span{
  display: inline-block;
  padding: 6px 12px;

  background: var(--bg2);
  border: 1px solid var(--border);

  border-radius: 30px;

  font-size: 12px;
  color: var(--gold3);
}

/* RESPONSIVE */
@media(max-width: 992px){
  .success-grid{
    grid-template-columns: repeat(2, 1fr);
  }
}

@media(max-width: 576px){
  .success-grid{
    grid-template-columns: 1fr;
  }

  .success-heading h2{
    font-size: 26px;
  }
}

/* amenity */

#amenitiesCarousel{

  overflow:hidden;

  border-radius:32px;
}

.amenity-slide{

  min-height:680px;

  position:relative;

  background-size:cover;

  background-position:center;

  display:flex;

  align-items:flex-end;

  padding:70px;
}

.amenity-overlay{

  position:absolute;

  inset:0;

  background:
  linear-gradient(
  to top,
  rgba(0,0,0,.92),
  rgba(0,0,0,.25)
  );
}

.amenity-content{

  position:relative;

  z-index:2;

  max-width:720px;
}

.amenity-tag{

  display:inline-block;

  padding:10px 18px;

  border-radius:50px;

  background:rgba(255,255,255,0.05);

  border:1px solid rgba(212,164,55,0.14);

  color:var(--gold3);

  font-size:13px;

  margin-bottom:22px;
}

.amenity-content h2{

  font-size:clamp(3rem,5vw,4.5rem);

  line-height:1.1;

  margin-bottom:22px;
}

.amenity-features{

  display:flex;

  flex-wrap:wrap;

  gap:14px;
}

.amenity-features span{

  padding:10px 18px;

  border-radius:40px;

  background:rgba(255,255,255,0.05);

  border:1px solid rgba(212,164,55,0.14);

  color:var(--gold3);

  font-size:13px;
}
.phase-notice{
  position:relative;
  overflow:hidden;
}

.phase-notice::before{
  content:"";
  position:absolute;
  top:0;
  left:0;

  width:100%;
  height:3px;

  background:linear-gradient(
      90deg,
      #d4af37,
      #f5d67b,
      #d4af37
  );
}



.section-util-title{
  text-align:center;
  margin-bottom:70px;
}

.utility-card{

  border-radius:26px;

  padding:30px;

  height:100%;
}

.utility-icon{

  width:65px;
  height:65px;

  border-radius:18px;

  display:flex;

  align-items:center;

  justify-content:center;

  background:linear-gradient(
  135deg,
  #c8962b,
  #f4d06f
  );

  color:var(--white) !important;

  font-size:22px;

  margin-bottom:22px;
}

.utility-card h5{

  margin-bottom:14px;

  font-size:20px;

  font-weight:700;
}

.utility-card p{
  color:var(--text);
  line-height:1.8;
  margin-top:10px;
}


/* footer */

/* 
 .footer-section{

   padding:100px 0 40px;

  background:
  radial-gradient(
  circle at top left,
  rgba(212,164,55,0.06),
  transparent 30%
  ),
  #050505;

  border-top:1px solid rgba(212,164,55,0.08);
}
.footer-section .col-lg-4
{
  padding-left:0px;
}

.footer-section .container{
  max-width:1400px;
    padding-left:80px;
}


.footer-section h3,
.footer-section h5{

  margin-bottom:26px;

  font-weight:600;

  letter-spacing:-0.5px;

  color:var(--white);
}

.footer-section p{
  line-height:1.9;
}

.footer-links{

  display:flex;

  flex-direction:column;

  gap:14px;
}


.footer-links a{

  color:var(--text);

  text-decoration:none;

  font-size:18px;

  line-height:1.8;

  transition:.3s;
}

.footer-links a:hover{

  color:var(--gold3);

  padding-left:6px;
}

.footer-contact{

  display:flex;

  flex-direction:column;

  gap:18px;
}

.footer-contact-item{

  display:flex;

  align-items:flex-start;

  gap:14px;
}

.footer-contact-item span{
 
  margin:0;
  color: var(--text) !important;
  font-family:'Cabin', sans-serif !important;   
  font-size:16px;
  font-weight:300;


}
.footer-contact-item i{
  color:var(--gold2);
}



  .footer-contact-item a{

  display:block;
  text-decoration:none;
  letter-spacing:0.5px;
  color: var(--text) !important;

}


.footer-form input,
.footer-form textarea{

  width:100%;

  padding:16px 18px;

  border-radius:18px;

  border:1px solid rgba(212,164,55,0.10);

  background:rgba(255,255,255,0.04);

  color:var(--white);

  outline:none;

  transition:0.35s ease;
}

.footer-form input::placeholder,
.footer-form textarea::placeholder{
  color:#9d9d9d;
}

.footer-form textarea{

  resize:none;

  min-height:160px;
}

.footer-form input:focus,
.footer-form textarea:focus{

  border-color:rgba(212,164,55,0.5);

  background:rgba(255,255,255,0.06);

  box-shadow:0 0 25px rgba(212,164,55,0.12);
}

.social-icons{

  display:flex;

  gap:14px;
}

.social-icons a{

  width:52px;

  height:52px;

  border-radius:50%;

  display:flex;

  align-items:center;

  justify-content:center;

  background:rgba(255,255,255,0.04);

  border:1px solid rgba(212,164,55,0.12);

  color:var(--gold2);

  transition:.35s;
}

.social-icons a:hover{

  transform:translateY(-5px);

  background:linear-gradient(
  135deg,
  #c8962b,
  #f4d06f
  );

  color:#000;

  box-shadow:0 10px 25px rgba(212,164,55,0.35);
}

.footer-bottom{

    padding:28px 0 10px;

    margin-top:70px;

    border-top:1px solid rgba(255,255,255,0.06);
}

.footer-bottom p{

    margin:0;

    font-family:'Cabin', sans-serif !important;

    font-size:12px;

    color:#ffffff;
}
.footer-contact-item a{
  color: #fff !important;  
  text-decoration: none !important;
}

.footer-contact-item a:hover{
  color:#f4d06f !important;
  text-decoration:none !important;
}
.footer-contact-item a span{
  color: inherit !important;
  text-decoration: none !important;
}  */



/* .powered-by{

    font-family:'Cabin', sans-serif;

    font-size:15px;

    color:#ffffff;

    white-space:nowrap;
}

.powered-by img{
    object-fit:contain;
} */

/* =========================
   FOOTER BASE
========================= */

.footer-section{
  padding:100px 0 40px;

  background:
    radial-gradient(circle at top left, rgba(212,164,55,0.08), transparent 35%),
    radial-gradient(circle at bottom right, rgba(255,255,255,0.03), transparent 40%),
    #050505;

  border-top:1px solid rgba(255,255,255,0.06);
  position:relative;
}

/* Keep your header alignment */
.footer-section .container{
  max-width:1400px;
  padding:0 80px;
  margin:0 auto;
}

/* Grid spacing rhythm */
.footer-section .row{
  row-gap:60px;
}

/* =========================
   HEADINGS
========================= */

.footer-section h3,
.footer-section h5{
  margin-bottom:20px;
  font-weight:600;
  letter-spacing:-0.3px;
  color:var(--white);
}

/* =========================
   TEXT
========================= */

.footer-section p{
  line-height:1.9;
  color:var(--text);
}

/* =========================
   LINKS
========================= */

.footer-links{
  display:flex;
  flex-direction:column;
  gap:14px;
}

.footer-links a{
  color:var(--text);
  text-decoration:none;
  font-size:17px;
  line-height:1.8;
  transition:0.3s ease;
}

.footer-links a:hover{
  color:var(--gold3);
  padding-left:6px;
}

/* =========================
   CONTACT SECTION
========================= */

.footer-contact{
  display:flex;
  flex-direction:column;
  gap:18px;
}

.footer-contact-item{
  display:flex;
  align-items:flex-start;
  gap:14px;
  padding:10px 0;
  border-bottom:1px solid rgba(255,255,255,0.04);
  font-family:'Cabin', sans-serif;
}

.footer-contact-item:last-child{
  border-bottom:none;
}

.footer-contact-item i{
  color:var(--gold2);
  margin-top:4px;
}

.footer-contact-item span,
.footer-contact-item a{
  color:var(--text) !important;
  font-size:15px;
  font-weight:300;
  text-decoration:none !important;
}

/* =========================
   FORM (GLASS STYLE)
========================= */

/* =========================
   FOOTER FORM BASE STYLE
========================= */

.footer-form input,
.footer-form textarea{
  width:100%;
  padding:14px 16px;
  border-radius:14px;

  border:1px solid rgba(255,255,255,0.06);
  background:rgba(255,255,255,0.03);

  color:var(--white);
  outline:none;

  transition:0.35s ease;

  display:block;
  margin:0;
  line-height:1.4;
}

/* =========================
   TEXTAREA FIX
========================= */

.footer-form textarea{
  resize:none;
  min-height:120px; /* reduced for better SaaS rhythm */
}

/* =========================
   PLACEHOLDER STYLE
========================= */

.footer-form input::placeholder,
.footer-form textarea::placeholder{
  color:#9d9d9d;
}

/* =========================
   FOCUS EFFECT (GLASS GLOW)
========================= */

.footer-form input:focus,
.footer-form textarea:focus{
  border-color:rgba(212,164,55,0.5);
  box-shadow:0 0 20px rgba(212,164,55,0.15);
  background:rgba(255,255,255,0.05);
}

/* =========================
   ROW SPACING FIX (MAIN ISSUE FIX)
========================= */

.footer-form .row{
  row-gap:12px;
}

/* =========================
   COLUMN SPACING FIX
========================= */

.footer-form .col-md-6,
.footer-form .col-12{
  margin-bottom:0 !important;
  padding-bottom:10px;
}

/* remove last extra spacing */
.footer-form .col-12:last-child{
  padding-bottom:0;
}

/* =========================
   BUTTON CENTER FIX
========================= */

.footer-form .col-12{
  display:flex;
  justify-content:center;
}

.footer-btn{
  width:100%;
  max-width:220px;

  padding:14px 20px;
  border-radius:12px;
  border:none;

  background:linear-gradient(135deg,#c8962b,#f4d06f);
  color:#000;

  font-weight:600;
  cursor:pointer;

  display:flex;
  justify-content:center;
  align-items:center;

  transition:0.3s ease;
}

.footer-btn:hover{
  transform:translateY(-2px);
  box-shadow:0 10px 25px rgba(212,164,55,0.25);
}
/* Center button */
.footer-form .col-12{
  display:flex;
  justify-content:center;
}


/* =========================
   SOCIAL ICONS (SAAS STYLE)
========================= */

.social-icons{
  display:flex;
  gap:12px;
  margin-top:20px;
}

.social-icons a{
  width:44px;
  height:44px;

  border-radius:12px;

  display:flex;
  align-items:center;
  justify-content:center;

  background:rgba(255,255,255,0.03);
  border:1px solid rgba(255,255,255,0.06);

  color:var(--gold2);

  transition:0.3s ease;
}

.social-icons a:hover{
  transform:translateY(-4px);
  background:rgba(212,164,55,0.12);
  color:#000;
}

/* =========================
   FOOTER BOTTOM
========================= */

.footer-bottom{
  padding:28px 0 10px;
  margin-top:70px;
  border-top:1px solid rgba(255,255,255,0.06);
}

.footer-bottom p{
  margin:0;
  font-size:12px;
  color:#ffffff;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 992px){
  .footer-section .container{
    padding:0 24px;
  }
}

@media (max-width: 768px){
  .footer-section{
    padding:70px 0 30px;
  }

  .social-icons{
    justify-content:flex-start;
  }

  .footer-btn{
    max-width:100%;
  }
}

/* Mobile Responsive */

 /* @media(max-width:768px){

  .footer-section{
    text-align:left;
    padding:70px 0 30px;
  }

  .footer-links,
  .footer-contact{
    align-items:flex-start;
  }

  .footer-contact-item{
    justify-content:flex-start;
  }

  .social-icons{
    justify-content:flex-start;
  }

  .footer-form{
    margin-top:20px;
  }

  .footer-bottom{
    flex-direction:column;
    gap:15px;
    text-align:center;
  }

}  */

/* responsive */

@media(max-width:1200px){

  .inventory-grid{
    grid-template-columns:repeat(2,1fr);
  }

}

@media(max-width:991px){

  section{
    padding:90px 0;
  }

  .navbar-collapse{

    background:#050505;

    padding:25px;

    border-radius:20px;

    margin-top:15px;

    border:1px solid rgba(212,164,55,0.10);
  }

  .nav-link{
    margin:12px 0;
  }

  .hero{
    text-align:center;
  }

  .hero-btns{
    justify-content:center;
  }

  .hero h1{
    font-size:3.6rem;
  }

  .inventory-grid{
    grid-template-columns:1fr;
  }

  .philosophy-img img,
  .spaces-image img{
    height:420px;
  }

  .amenity-slide{
    min-height:620px;
    padding:40px;
  }

}

@media(max-width:768px){

  section{
    padding:75px 0;
  }

  .navbar{
    padding:14px 0;
  }

  .hero{
    min-height:auto;
    padding-top:150px;
    padding-bottom:80px;
  }

   .hero h1{
    font-size:2.8rem;
    word-break:break-word;
}
  .section-title,
  .spaces-title,
  .section-util-title h2{
    font-size:2.3rem;
  }
  

  p{
    font-size:14px;
  }

  .inventory-slider{
    height:220px;
  }

  .logo-box{
    width:140px;
    height:80px;
  }

  .logo-box img{
    max-height:40px;
  }

  .amenity-slide{
    min-height:560px;
    padding:30px;
  }

  .amenity-content h2{
    font-size:2.3rem;
  }

}
@media(max-width:1366px){

  .container{
    padding:0 25px;
  }

  .hero-content{
    max-width:700px;
  }

  h1{
    font-size:clamp(3rem,6vw,4.8rem);
  }

}

@media(max-width:576px){

  .hero h1{
    font-size:2.3rem;
  }

  .hero-btns{
    flex-direction:column;
  }

  .btn-glass,
  .btn-outline-light,
  .btn-main{
    width:80%;
  }

  .inventory-card h4{
    font-size:20px;
  }

  .philosophy-card h3{
    font-size:2rem;
  }

  .inventory-slider{
    height:200px;
  }

}
@media(max-width:991px){

  .navbar .dropdown-menu{
    opacity:1;
    visibility:visible;
    transform:none;
    display:none;
    background:rgba(255,255,255,0.04);
    box-shadow:none;
    padding:8px;
    margin-top:10px;
  }

  .navbar .dropdown-menu.show{
    display:block;
  }

}


/* about page */


.about-main-hero{
  position:relative;
  min-height:100vh;
  display:flex;
  align-items:center;
  overflow:hidden;
  padding:160px 0 100px;
  background:
  linear-gradient(
    135deg,
    #000000 0%,
    #0b0b0d 45%,
    #1a1a1a 100%
  );
}

.about-glow{
  position:absolute;
  border-radius:50%;
  filter:blur(120px);
  opacity:.15;
  z-index:1;
}

.about-glow-one{
  width:320px;
  height:320px;
  background:#d4a437;
  top:-10%;
  left:-5%;
}

.about-glow-two{
  width:260px;
  height:260px;
  background:#f4d06f;
  bottom:-10%;
  right:-5%;
}

.about-hero-content{
  position:relative;
  z-index:2;
}

.about-hero-content h1{

  font-weight:400;
  line-height:1.1;
  letter-spacing:-1px;
  font-size: 80px
}

.about-hero-content p{

  max-width:650px;

  font-size:17px;

  line-height:2;

  margin-bottom:38px;

  color:var(--text);
}

.about-hero-btns{

  display:flex;

  flex-wrap:wrap;

  gap:18px;
}

.btn-outline-custom{

  display:inline-flex;

  align-items:center;

  justify-content:center;

  padding:15px 32px;

  border-radius:60px;

  background:rgba(255,255,255,0.04);

  border:1px solid rgba(212,164,55,0.14);

  color:var(--white);

  text-decoration:none;

  font-size:14px;

  font-weight:600;

  transition:.35s;

  backdrop-filter:blur(12px);
}

.btn-outline-custom:hover{

  background:rgba(212,164,55,0.12);

  color:var(--white);

  transform:translateY(-4px);
}

.about-hero-image{
  position:relative;
}

.about-hero-image img{

  width:100%;

  height:700px;

  object-fit:cover;

  border-radius:32px;

  border:1px solid rgba(212,164,55,0.10);

  box-shadow:
  0 20px 50px rgba(0,0,0,0.45);

  filter:brightness(.9);
}


.about-main-section{
  position:relative;
}

.about-image-wrap{
  position:relative;
}

.about-image-wrap img{

  width:100%;

  height:650px;

  object-fit:cover;

  border-radius:32px;

  border:1px solid rgba(212,164,55,0.10);

  filter:brightness(.88);
}

.about-content-wrap h2{

  font-size:clamp(2.5rem,5vw,4rem);

  line-height:1.1;

  margin-bottom:25px;
}

.about-content-wrap p{

  margin-bottom:22px;

  color:var(--text);

  line-height:2;
}

.about-feature-grid{

  display:grid;

  grid-template-columns:repeat(2,1fr);

  gap:20px;

  margin-top:35px;
}

.about-feature-box{

  background:rgba(255,255,255,0.03);

  border:1px solid rgba(212,164,55,0.10);

  border-radius:24px;

  padding:24px;

  display:flex;

  align-items:center;

  gap:16px;

  transition:.4s;

  backdrop-filter:blur(12px);
}

.about-feature-box:hover{

  transform:translateY(-6px);

  border-color:rgba(224,184,75,0.28);
}

.about-feature-box i{

  width:55px;

  height:55px;

  border-radius:16px;

  display:flex;

  align-items:center;

  justify-content:center;

  background:linear-gradient(
    135deg,
    #c8962b,
    #f4d06f
  );

  color:#000;

  font-size:20px;

  flex-shrink:0;
}

.about-feature-box span{

  color:var(--white);

  font-size:16px;

  font-weight:600;
}
.about-section-title{

  margin-bottom:40px;
}

.about-section-title h2{

  font-size:clamp(2.5rem,5vw,4rem);

  line-height:1.15;
}
.team-card.icon-card{
  text-align: center;
  padding: 35px;
  border-radius: 16px;

  background: var(--glass);
  border: 1px solid var(--border);

  box-shadow: var(--shadow);
  transition: var(--transition);
}

.team-card.icon-card:hover{
  transform: translateY(-6px);
  border-color: var(--gold2);
}

/* ICON CIRCLE */
.team-icon{
  width: 70px;
  height: 70px;

  margin: 0 auto 20px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;

  background: rgba(212,164,55,0.08);
  border: 1px solid var(--border);
}

.team-icon i{
  font-size: 26px;
  color: var(--gold2);
}

/* TEXT */
.team-card h4{
  color: var(--white);
  margin-bottom: 5px;
}

.team-role{
  color: var(--gold3);
  font-size: 14px;
  display: block;
  margin-bottom: 10px;
}

.team-card p{
  color: var(--text);
  font-size: 14px;
  line-height: 1.6;
}

/* BADGE */
.team-badge{
  margin-top: 15px;
  display: inline-block;

  padding: 6px 12px;
  border-radius: 30px;

  font-size: 12px;

  background: var(--bg2);
  border: 1px solid var(--border);

  color: var(--text-light);
}


.vision-mission-section{
  position:relative;
}

.about-section-title{

  margin-bottom:40px;
}

.about-section-title h2{

  font-size:clamp(2.5rem,5vw,4rem);

  line-height:1.15;
}

 


.vision-mission-section{
  padding:100px 0;
  background:var(--bg);
}

/* IMAGE */
.vision-image img{
  width:100%;
  border-radius:18px;
  object-fit:cover;
  box-shadow:var(--shadow);
  transition:0.5s ease;
}

.vision-image img:hover{
  transform:scale(1.03);
}

/* CONTENT */
.vision-content h3{
  color:var(--gold3);
  font-size:26px;
  margin-bottom:12px;
}

.vision-content p{
  color:var(--text-light);
  font-size:20px;
  line-height:1.9;
}

/* spacing */
.vision-mission-section .row{
  margin-bottom:40px;
}

/* leadership */
.leadership-section{
    padding:100px 0;
    position:relative;
}

.team-card{
    background:rgba(255,255,255,0.03);
    border:1px solid rgba(255,255,255,0.08);
    border-radius:28px;
    overflow:hidden;
    height:100%;
    transition:.4s ease;
    backdrop-filter:blur(12px);
}

.team-card:hover{
    transform:translateY(-8px);
    border-color:rgba(255,255,255,0.15);
}

.team-image{
    height:320px;
    overflow:hidden;
}

.team-image img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.team-content{
    padding:30px;
}

.team-content h4{
    font-size:24px;
    margin-bottom:8px;
}

.team-role{
    display:inline-block;
    color:#b8b8b8;
    margin-bottom:18px;
    font-size:14px;
    letter-spacing:.5px;
    text-transform:uppercase;
}

.team-content p{
    line-height:1.8;
    color:#cfcfcf;
    margin-bottom:20px;
}

.team-badge{
    display:inline-block;
    padding:10px 18px;
    border-radius:50px;
    background:rgba(255,255,255,0.06);
    font-size:13px;
    color:#fff;
}



@media(max-width:1200px){



  .about-hero-image img,
.about-image-wrap img{
  width:100%;
  height:auto;
  max-height:620px;
  object-fit:cover;

}

}


@media(max-width:991px){

  .about-main-hero{

    min-height:auto;

    padding:150px 0 90px;

    text-align:center;
  }

  .about-hero-btns{
    justify-content:center;
  }

  .about-hero-image img{

    height:520px;

    margin-top:20px;
  }

  .about-image-wrap img{
    height:500px;
  }

  .about-content-wrap{
    text-align:center;
  }

  .vision-content{
    text-align:center;
  }

}

@media(max-width:768px){

  .about-main-hero{
    padding:140px 0 80px;
  }

  .about-hero-content h1{
    font-size:2.7rem;
  }

  .about-hero-content p{

    font-size:15px;

    line-height:1.9;
  }

  .about-hero-image img{

    height:420px;

    border-radius:26px;
  }

  .about-image-wrap img{

    height:420px;

    border-radius:26px;
  }

  .about-content-wrap h2,
  .about-section-title h2{

    font-size:2.3rem;
  }

  .about-feature-grid{
    grid-template-columns:1fr;
  }

  .vision-image img{
    height:260px;
  }

  .vision-content{
    padding:28px;
  }

  .vision-content h3{
    font-size:1.7rem;
  }

}

@media(max-width:576px){

  .about-main-hero{
    padding-top:130px;
  }

  .about-hero-content h1{

    font-size:2.2rem;

    line-height:1.15;
  }

  .about-hero-btns{
    flex-direction:column;
  }

   .btn-main,
.btn-outline-custom{
  width:auto;
  max-width:100%;
}

  .about-hero-image img{

    height:340px;
  }

  .about-image-wrap img{

    height:340px;
  }

  .about-feature-box{

    padding:20px;

    flex-direction:column;

    text-align:center;
  }

  .vision-content h3{
    font-size:1.5rem;
  }

  .footer-section .container.d-flex{

    flex-direction:column;

    gap:20px;

    text-align:center;
  }

}


.roadmap-section{
  padding:90px 0;
  background:var(--bg);
  color:var(--white);
}

.roadmap-header p{
  max-width:750px;
  margin:10px auto 40px;
  color:var(--text);
}

/* badge */
.launch-badge{
  display:inline-block;
  padding:6px 14px;
  border-radius:20px;
  background:rgba(212,164,55,0.08);
  color:var(--gold);
  border:1px solid var(--border);
  margin-bottom:12px;
  font-size:13px;
  letter-spacing:0.5px;
}

/* timeline */
.roadmap-timeline{
  display:flex;
  flex-direction:column;
  gap:25px;
  position:relative;
  margin-top:40px;
}

/* vertical line */
.roadmap-timeline::before{
  content:"";
  position:absolute;
  left:20px;
  top:0;
  bottom:0;
  width:1px;
  background:linear-gradient(to bottom,var(--gold),transparent);
  opacity:0.25;
}

.roadmap-item{
  display:flex;
  gap:20px;
  padding-left:60px;
  position:relative;
}

/* gold dot */
.roadmap-item::before{
  content:"";
  width:10px;
  height:10px;
  background:var(--gold);
  border-radius:50%;
  position:absolute;
  left:16px;
  top:10px;
  box-shadow:0 0 15px rgba(212,164,55,0.4);
}

.roadmap-status{
  position:absolute;
  left:60px;
  top:-10px;
  font-size:12px;
  padding:4px 10px;
  border-radius:20px;
  background:var(--bg2);
  color:var(--gold3);
  border:1px solid var(--border);
}

/* card */
.roadmap-content{
  background:var(--card);
  padding:22px;
  border-radius:14px;
  border:1px solid var(--border);
  box-shadow:var(--shadow);
}

.roadmap-content h3{
  margin-bottom:8px;
  font-size:20px;
  color:var(--gold2);
}

.roadmap-content p{
  color:var(--text);
  line-height:1.6;
}

/* CTA */
.roadmap-cta{
  margin-top:55px;
  padding:35px;
  background:linear-gradient(135deg,var(--bg2),var(--bg3));
  border:1px solid var(--border);
  border-radius:16px;
}

.roadmap-btn{
  display:inline-block;
  margin-top:10px;
  padding:12px 28px;
  background:linear-gradient(135deg,var(--gold),var(--gold2));
  color:#000;
  font-weight:600;
  border-radius:10px;
  text-decoration:none;
  transition:0.3s ease;
}

.roadmap-btn:hover{
  transform:translateY(-2px);
  box-shadow:0 10px 25px rgba(212,164,55,0.25);
}
@media (max-width: 992px) {

  .roadmap-item{
    flex-direction: column;
    padding-left: 40px;
  }

  .roadmap-timeline::before{
    left:10px;
  }

  .roadmap-item::before{
    left:6px;
  }

  .roadmap-status{
    position: relative;
    left:0;
    top:0;
    margin-bottom:10px;
    display:inline-block;
  }

  .roadmap-content{
    width:100%;
  }

}
@media (max-width: 768px) {

  .roadmap-section{
    padding:60px 15px;
  }

  .roadmap-header h2{
    font-size:26px;
  }

  .roadmap-header p{
    font-size:14px;
    padding:0 10px;
  }

  .roadmap-content h3{
    font-size:18px;
  }

  .roadmap-content p{
    font-size:14px;
  }

  .roadmap-item{
    padding-left:35px;
  }

}

@media (max-width: 480px) {

  .launch-badge{
    font-size:11px;
    padding:5px 10px;
  }

  .roadmap-content{
    padding:16px;
  }

  .roadmap-btn{
    width:100%;
    text-align:center;
    display:block;
  }

  .roadmap-header h2{
    font-size:22px;
  }

}


/* Solution hub */



/* HERO SECTION */

.baas-hero-section{
  padding:180px 0 110px;
  position:relative;
  overflow:hidden;
}

.baas-hero-content{
  max-width:900px;
  margin:auto;
}

.baas-hero-content h1{
  /* font-size:68px;
  line-height:1.1;
  font-weight:800;
  color:#ffffff;
  margin-bottom:28px;
  font-family:'Playfair Display', serif; */

   font-weight:400;
  line-height:1.1;
  letter-spacing:-1px;
  font-size: 80px
}



.baas-hero-content p{
  font-size:18px;
  line-height:1.9;
  color:rgba(255,255,255,0.72);
  max-width:760px;
  margin:auto;
  font-family:'Cabin', sans-serif;
}


/* CONCEPT SECTION */

.baas-concept-section{
  padding:110px 0;
  position:relative;
}

.baas-image-card{
  position:relative;
  overflow:hidden;
  border-radius:30px;
  border:1px solid rgba(212,160,23,0.18);
}

.baas-image-card img{
  width:100%;
  height:100%;
  object-fit:cover;
  border-radius:30px;
  transition:0.5s ease;
}

.baas-image-card:hover img{
  transform:scale(1.05);
}

.baas-content-card{
  padding-left:25px;
}

.baas-content-card h2{
  /* font-size:52px;
  line-height:1.2;
  color:#ffffff;
  margin-bottom:30px;
  font-weight:800;
  font-family:'Playfair Display', serif; */

  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.5px;
  font-size: 48px;
}

.baas-content-card p{
  font-size:17px;
  line-height:1.9;
  color:rgba(255,255,255,0.72);
  margin-bottom:22px;
  font-family:'Cabin', sans-serif;
}

.baas-feature-list{
  margin-top:35px;
}

.baas-feature-item{
  display:flex;
  align-items:center;
  gap:18px;
  margin-bottom:22px;
}

.baas-feature-item i{
  width:55px;
  height:55px;
  border-radius:16px;
  background:rgba(212,160,23,0.12);
  border:1px solid rgba(212,160,23,0.25);
  display:flex;
  align-items:center;
  justify-content:center;
  color:#f5d76e;
  font-size:20px;
}

.baas-feature-item span{
  color:#ffffff;
  font-size:17px;
  font-weight:600;
  font-family:'Cabin', sans-serif;
}


/* PILLARS SECTION */

.baas-pillars-section{
  padding:110px 0;
  position:relative;
}

.baas-pillars-section h2{
font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.5px;
  font-size: 48px;
}

.baas-section-text{
  max-width:760px;
  margin:auto;
  font-size:18px;
  line-height:1.9;
  color:rgba(255,255,255,0.72);
  font-family:'Cabin', sans-serif;
}

.baas-pillar-card{
  height:100%;
  padding:40px 32px;
  border-radius:28px;
  background:rgba(255,255,255,0.03);
  border:1px solid rgba(212,160,23,0.15);
  transition:0.4s ease;
  position:relative;
  overflow:hidden;
}

.baas-pillar-card:hover{
  transform:translateY(-10px);
  border-color:rgba(212,160,23,0.45);
  box-shadow:0 20px 60px rgba(0,0,0,0.55);
}

.baas-icon{
  width:78px;
  height:78px;
  border-radius:22px;
   background:linear-gradient(135deg, #c8962b, #f4d06f);
  display:flex;
  align-items:center;
  justify-content:center;
  margin-bottom:28px;
}

.baas-icon i{
  color:white;
  font-size:28px;
}

.baas-pillar-card h4{
  font-size:28px;
  line-height:1.4;
  color:#ffffff;
  margin-bottom:22px;
  font-weight:700;
  font-family:'Playfair Display', serif;
}

.baas-pillar-card p{
  color:rgba(255,255,255,0.72);
  line-height:1.9;
  font-size:16px;
  margin-bottom:28px;
  font-family:'Cabin', sans-serif;
}

.baas-plan-box{
  display:inline-flex;
  align-items:center;
  padding:12px 20px;
  border-radius:50px;
  background:rgba(212,160,23,0.12);
  border:1px solid rgba(212,160,23,0.28);
  color:#f5d76e;
  font-size:14px;
  font-weight:600;
  font-family:'Cabin', sans-serif;
}


/* STREAM SECTION */

.baas-stream-section{
  padding:110px 0 120px;
  position:relative;
}

.baas-stream-section h2{
   font-weight:400;
  line-height:1.1;
  letter-spacing:-1px;
  font-size: 80px
}

.baas-stream-card{
  height:100%;
  padding:45px 38px;
  border-radius:30px;
  background:rgba(255,255,255,0.03);
  border:1px solid rgba(212,160,23,0.15);
  transition:0.4s ease;
}

.baas-stream-card:hover{
  transform:translateY(-8px);
  border-color:rgba(212,160,23,0.45);
}

.baas-stream-icon{
  width:85px;
  height:85px;
  border-radius:24px;
  background:linear-gradient(135deg, #c8962b, #f4d06f);
  display:flex;
  align-items:center;
  justify-content:center;
  margin-bottom:30px;
}

.baas-stream-icon i{
  color:white;
  font-size:34px;
}

.baas-stream-card h3{
  color:#ffffff;
  font-size:34px;
  margin-bottom:24px;
  font-weight:700;
  font-family:'Playfair Display', serif;
}

.baas-stream-card p{
  color:rgba(255,255,255,0.72);
  line-height:1.9;
  font-size:17px;
  margin-bottom:28px;
  font-family:'Cabin', sans-serif;
}

.baas-stream-list{
  padding-left:18px;
  margin:0;
}

.baas-stream-list li{
  color:whitesmoke;
  margin-bottom:16px;
  line-height:1.7;
  font-size:16px;
  font-family:'Cabin', sans-serif;
}




/* RESPONSIVE */

@media(max-width:991px){

  .baas-hero-section{
    padding:150px 0 90px;
  }

  .baas-hero-content h1{
    font-size:52px;
  }

  .baas-content-card{
    padding-left:0;
  }

  .baas-content-card h2,
  .baas-pillars-section h2,
  .baas-stream-section h2{
    font-size:42px;
  }

}

@media(max-width:767px){

  .baas-hero-content h1{
    font-size:40px;
  }

  .baas-content-card h2,
  .baas-pillars-section h2,
  .baas-stream-section h2{
    font-size:34px;
  }

  .baas-pillar-card,
  .baas-stream-card{
    padding:34px 26px;
  }

  .baas-stream-card h3{
    font-size:28px;
  }

}



/* RESPONSIVE */

@media(max-width:991px){

  .baas-hero-section{
    padding:150px 0 90px;
  }

  .baas-hero-content h1{
    font-size:52px;
  }

  .baas-content-card{
    padding-left:0;
  }

  .baas-content-card h2,
  .baas-pillars-section h2,
  .baas-stream-section h2{
    font-size:42px;
  }

}

@media(max-width:767px){

  .baas-hero-content h1{
    font-size:40px;
  }

  .baas-content-card h2,
  .baas-pillars-section h2,
  .baas-stream-section h2{
    font-size:34px;
  }

  .baas-pillar-card,
  .baas-stream-card{
    padding:34px 26px;
  }

  .baas-stream-card h3{
    font-size:28px;
  }

}



.digitalmarketing-hero,
.videoproduction-hero,
.brandingservices-hero,
.webdevelopment-hero{
  position:relative;
  padding:180px 0 120px;
  overflow:hidden;
}



.digitalmarketing-hero h1,
.videoproduction-hero h1,
.brandingservices-hero h1,
.webdevelopment-hero h1{
  /* font-size:4.2rem;
  font-weight:700;
  letter-spacing:-1px; */
   font-weight:400;
  line-height:1.1;
  letter-spacing:-1px;
  font-size: 80px;
  margin-bottom:28px;
}

.digitalmarketing-hero p,
.videoproduction-hero p,
.brandingservices-hero p,
.webdevelopment-hero p{
  max-width:650px;
}



.digitalmarketing-image,
.videoproduction-image,
.brandingservices-image{
  position:relative;
  border-radius:30px;
  overflow:hidden;
  box-shadow:0 20px 60px rgba(0,0,0,.08);
}

.digitalmarketing-image img,
.videoproduction-image img,
.brandingservices-image img{
  height:540px;
  object-fit:cover;
  transition:.5s ease;
}

.digitalmarketing-image:hover img,
.videoproduction-image:hover img,
.brandingservices-image:hover img{
  transform:scale(1.05);
}




.hero-tag{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:10px 18px;
  border-radius:50px;
  margin-bottom:25px;
  font-weight:600;
  font-size:.95rem;
}



.digitalmarketing-services,
.videoproduction-services,
.branding-services,
.webdevelopment-services{
  padding:110px 0;
  position:relative;
}


.section-title{
  text-align:center;
  margin-bottom:70px;
}

.section-title h2{
 font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.5px;
  font-size: 48px;
  
}




.utility-card{
  position:relative;
  padding:42px 30px;
  border-radius:28px;
  text-align:center;
  height:100%;
  overflow:hidden;
  transition:.4s ease;
}

.utility-card::before{
  content:"";
  position:absolute;
  top:-100%;
  left:0;
  width:100%;
  height:100%;
  transition:.5s ease;
}

.utility-card:hover::before{
  top:0;
}

.utility-card:hover{
  transform:translateY(-10px);
}


.utility-icon{
  width:85px;
  height:85px;
  margin:0 auto 28px;
  border-radius:24px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:2rem;
}



.utility-card h5{
  font-size:1.35rem;
  font-weight:600;
  line-height:1.5;
  margin-bottom:0;
}



@media(max-width:991px){

  .digitalmarketing-hero,
  .videoproduction-hero,
  .brandingservices-hero,
  .webdevelopment-hero{
    padding:150px 0 90px;
    text-align:center;
  }

  .digitalmarketing-hero h1,
  .videoproduction-hero h1,
  .brandingservices-hero h1,
  .webdevelopment-hero h1{
    font-size:3.2rem;
  }

  .digitalmarketing-hero p,
  .videoproduction-hero p,
  .brandingservices-hero p,
  .webdevelopment-hero p{
    margin:auto;
  }

  .digitalmarketing-image,
  .videoproduction-image,
  .brandingservices-image{
    margin-top:20px;
  }

  .section-title h2{
    font-size:2.5rem;
  }

}


@media(max-width:767px){

  .digitalmarketing-hero,
  .videoproduction-hero,
  .brandingservices-hero,
  .webdevelopment-hero{
    padding:130px 0 75px;
  }

  .digitalmarketing-hero h1,
  .videoproduction-hero h1,
  .brandingservices-hero h1,
  .webdevelopment-hero h1{
    font-size:2.3rem;
    line-height:1.3;
    margin-bottom:20px;
  }

  .digitalmarketing-image img,
  .videoproduction-image img,
  .brandingservices-image img{
    height:320px;
  }

  .digitalmarketing-services,
  .videoproduction-services,
  .branding-services,
  .webdevelopment-services{
    padding:80px 0;
  }

  .section-title{
    margin-bottom:45px;
  }

  .section-title h2{
    font-size:2rem;
    line-height:1.3;
  }

  .utility-card{
    padding:35px 22px;
    border-radius:24px;
  }

  .utility-icon{
    width:72px;
    height:72px;
    font-size:1.7rem;
    border-radius:20px;
    margin-bottom:22px;
  }

  .utility-card h5{
    font-size:1.1rem;
  }

  .hero-tag{
    font-size:.85rem;
    padding:9px 16px;
  }

}


/* ========================================
SMALL MOBILE
======================================== */

@media(max-width:480px){

  .digitalmarketing-hero h1,
  .videoproduction-hero h1,
  .brandingservices-hero h1,
  .webdevelopment-hero h1{
    font-size:2rem;
  }

  .section-title h2{
    font-size:1.8rem;
  }

  .utility-card{
    padding:30px 18px;
  }

}


/* Spaces & Cabins */

.membership-hero-section{
  position:relative;
  padding:190px 0 120px;
  background:
  linear-gradient(rgba(0,0,0,0.82),rgba(0,0,0,0.88)),
  #050505;
  overflow:hidden;
}

.membership-hero-container{
  position:relative;
  z-index:2;
}

.membership-hero-title{
  /* font-size:72px;
  line-height:1.12; */
  color:var(--white);
  /* font-family:'Playfair Display',serif;
  font-weight:700; */
  font-weight:400;
  line-height:1.1;
  letter-spacing:-1px;
  font-size: 80px;
  max-width:980px;
  margin:auto;
  text-align:center;
}

.membership-grad-text{
  color:var(--gold-light);
}

.membership-hero-text{
  max-width:850px;
  margin:35px auto 0;
  color:var(--text);
  font-size:18px;
  line-height:1.9;
  text-align:center;
  font-family:'Cabin',sans-serif;
}

.membership-hero-btns{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:20px;
  margin-top:45px;
  flex-wrap:wrap;
}

.membership-btn-main{
  padding:16px 34px;
  background:linear-gradient(135deg,var(--gold),var(--gold-light));
  color:#000;
  border-radius:60px;
  text-decoration:none;
  font-weight:700;
  transition:.4s;
  border:1px solid var(--gold);
}

.membership-btn-main:hover{
  transform:translateY(-4px);
  color:#000;
  box-shadow:0 15px 40px rgba(212,160,23,0.28);
}

.membership-btn-outline{
  padding:16px 34px;
  border:1px solid rgba(255,255,255,0.18);
  color:var(--white);
  border-radius:60px;
  text-decoration:none;
  transition:.4s;
}

.membership-btn-outline:hover{
  background:var(--gold);
  border-color:var(--gold);
  color:#000;
}


.membership-plans-section{
  position:relative;
  padding:120px 0;
  background:var(--bg);
  overflow:hidden;
}

.membership-blur{
  position:absolute;
  border-radius:50%;
  filter:blur(120px);
  opacity:.18;
}

.membership-blur-1{
  width:320px;
  height:320px;
  background:var(--gold);
  top:-80px;
  left:-80px;
}

.membership-blur-2{
  width:280px;
  height:280px;
  background:#8b6508;
  right:-80px;
  bottom:-80px;
}

.membership-main-heading{
  font-size:56px;
  line-height:1.2;
  color:var(--white);
  font-family:'Playfair Display',serif;
  margin-bottom:25px;
}

.membership-heading-text{
  max-width:760px;
  margin:auto;
  color:var(--text);
  font-size:18px;
  line-height:1.9;
}

.membership-tier-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:32px;
  margin-top:70px;
}

.membership-tier-card{
  position:relative;
  background:linear-gradient(180deg,#121212,#090909);
  border:1px solid var(--border);
  border-radius:30px;
  padding:45px 35px;
  transition:.45s;
  overflow:hidden;
}

.membership-tier-card:hover{
  transform:translateY(-10px);
  border-color:rgba(212,160,23,0.45);
  box-shadow:0 25px 60px rgba(0,0,0,0.55);
}

.membership-premium-card{
  border:1px solid rgba(245,197,66,0.45);
  background:
  linear-gradient(180deg,
  rgba(212,160,23,0.08),
  rgba(0,0,0,0.96));
}

.membership-floating-badge{
  position:absolute;
  top:20px;
  right:20px;
  background:var(--gold);
  color:#000;
  font-size:13px;
  font-weight:700;
  padding:8px 16px;
  border-radius:40px;
}

.membership-tier-pill{
  display:inline-block;
  padding:8px 18px;
  border-radius:40px;
  background:rgba(212,160,23,0.12);
  color:var(--gold-light);
  font-size:14px;
  font-weight:700;
  margin-bottom:22px;
}

.membership-tier-title{
  font-size:38px;
  color:var(--white);
  font-family:'Playfair Display',serif;
  margin-bottom:10px;
}

.membership-tier-subtitle{
  color:var(--gold-light);
  font-size:16px;
  margin-bottom:0;
}

.membership-tier-list{
  list-style:none;
  padding:0;
  margin:40px 0;
}

.membership-tier-list li{
  color:var(--text);
  margin-bottom:18px;
  line-height:1.7;
  display:flex;
  gap:14px;
  align-items:flex-start;
  font-size:15px;
}

.membership-tier-list i{
  color:var(--gold-light);
  margin-top:5px;
}

.membership-red-icon{
  color:#ff4d4d !important;
}

.membership-tier-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:100%;
  padding:16px;
  border-radius:60px;
  text-decoration:none;
  background:linear-gradient(135deg,var(--gold),var(--gold-light));
  color:#000;
  font-weight:700;
  transition:.4s;
}

.membership-tier-btn:hover{
  transform:translateY(-3px);
  color:#000;
  box-shadow:0 14px 40px rgba(212,160,23,0.3);
}



.membership-utilities-section{
  padding:120px 0;
  background:var(--bg2);
}

.membership-utilities-title h2{
  /* font-size:54px; */

  /* font-weight:400;
  line-height:1.1;
  letter-spacing:-1px; */
  font-size:43px;
  color:var(--white);
  margin-bottom:25px;
  font-family:'Playfair Display',serif;
}

.membership-utilities-title p{
  max-width:780px;
  margin:auto;
  color:var(--text);
  line-height:1.9;
  font-size:18px;

}

.membership-utility-card{
  height:100%;
  background:#101010;
  border:1px solid rgba(212,160,23,0.14);
  border-radius:28px;
  padding:40px 30px;
  transition:.45s;
}

.membership-utility-card:hover{
  transform:translateY(-10px);
  border-color:rgba(212,160,23,0.45);
  box-shadow:0 18px 45px rgba(0,0,0,0.5);
}

.membership-utility-icon{
  width:78px;
  height:78px;
  border-radius:22px;
  background:rgba(212,160,23,0.12);
  display:flex;
  align-items:center;
  justify-content:center;
  margin-bottom:28px;
}

.membership-utility-icon i{
  color:var(--gold-light);
  font-size:30px;
}

.membership-utility-card h5{
  color:var(--white);
  margin-bottom:18px;
  font-size:24px;
  font-family:'Playfair Display',serif;
}

.membership-utility-card p{
  color:var(--text);
  line-height:1.8;
  margin-bottom:0;
}


.membership-cta-section{
  padding:120px 0;
  background:#050505;
}

.membership-cta-box{
  background:
  linear-gradient(135deg,
  rgba(212,160,23,0.12),
  rgba(0,0,0,0.96));
  border:1px solid rgba(212,160,23,0.24);
  border-radius:35px;
  padding:80px 50px;
  text-align:center;
}

.membership-cta-title{
  color:var(--white);
  font-size:58px;
  max-width:900px;
  margin:auto;
  line-height:1.2;
  font-family:'Playfair Display',serif;
}

.membership-cta-text{
  color:var(--text);
  max-width:760px;
  margin:28px auto 40px;
  line-height:1.9;
  font-size:18px;
}

.membership-cta-btn{
  display:inline-block;
  padding:18px 42px;
  border-radius:60px;
  text-decoration:none;
  background:linear-gradient(135deg,var(--gold),var(--gold-light));
  color:#000;
  font-weight:700;
  transition:.4s;
}

.membership-cta-btn:hover{
  transform:translateY(-4px);
  color:#000;
  box-shadow:0 18px 45px rgba(212,160,23,0.35);
}


/* ========================================
RESPONSIVE
======================================== */

@media(max-width:991px){

  .membership-tier-grid{
    grid-template-columns:1fr;
  }

  .membership-hero-title{
    font-size:52px;
  }

  .membership-main-heading,
  .membership-utilities-title h2,
  .membership-cta-title{
    font-size:42px;
  }

}

@media(max-width:767px){

  .membership-hero-section{
    padding:160px 0 90px;
  }

  .membership-hero-title{
    font-size:40px;
  }

  .membership-main-heading,
  .membership-utilities-title h2,
  .membership-cta-title{
    font-size:34px;
  }

  .membership-tier-card{
    padding:35px 24px;
  }

  .membership-cta-box{
    padding:60px 25px;
  }

  .membership-hero-text,
  .membership-heading-text,
  .membership-utilities-title p,
  .membership-cta-text{
    font-size:16px;
  }

}

/* membership */

.pricing-hero-section{
  padding:190px 0 110px;
  background:
  linear-gradient(rgba(0,0,0,0.84),rgba(0,0,0,0.88)),
  #050505;
  position:relative;
  overflow:hidden;
}

.pricing-hero-content h1{
  /* font-size:72px;
  line-height:1.12; */
  font-weight:400;
  line-height:1.1;
  letter-spacing:-1px;
  font-size: 80px;
  color:var(--white);
  max-width:950px;
  margin:auto;
  /* font-family:'Playfair Display',serif;
  font-weight:700; */
}



.pricing-hero-content p{
  max-width:760px;
  margin:32px auto 0;
  color:var(--text);
  font-size:18px;
  line-height:1.9;
  font-family:'Cabin',sans-serif;
}



.pricing-table-section{
  padding:110px 0;
  background:var(--bg);
}

.pricing-table{
  min-width:1100px;
  border-collapse:separate;
  border-spacing:0 24px;
  margin-bottom:0;
}

.pricing-table thead th{
  border:none;
  background:transparent;
  padding:0 12px;
  vertical-align:top;
}

.pricing-feature-column{
  width:270px;
  color:var(--gold-light);
  font-size:28px;
  font-family:'Playfair Display',serif;
  padding-top:40px !important;
}

.pricing-plan-header{
  background:linear-gradient(180deg,#131313,#0a0a0a);
  border:1px solid rgba(212,160,23,0.16);
  border-radius:28px;
  padding:38px 28px;
  text-align:center;
  height:100%;
  transition:.4s;
}

.pricing-plan-header:hover{
  transform:translateY(-8px);
  border-color:rgba(212,160,23,0.4);
  box-shadow:0 22px 45px rgba(0,0,0,0.45);
}

.active-plan{
  border:1px solid rgba(245,197,66,0.38);
}

.premium-plan{
  background:
  linear-gradient(180deg,
  rgba(212,160,23,0.10),
  rgba(0,0,0,0.96));
  border:1px solid rgba(245,197,66,0.42);
}

.pricing-plan-badge{
  display:inline-block;
  padding:8px 18px;
  border-radius:40px;
  background:rgba(212,160,23,0.12);
  color:var(--gold-light);
  font-size:14px;
  font-weight:700;
  margin-bottom:22px;
}

.pricing-plan-header h3{
  color:var(--white);
  font-size:34px;
  margin-bottom:22px;
  font-family:'Playfair Display',serif;
}

.pricing-price{
  color:var(--gold-light);
  font-size:50px;
  font-weight:700;
  margin-bottom:20px;
  line-height:1;
}

.pricing-price span{
  display:block;
  font-size:15px;
  color:var(--text);
  margin-top:10px;
  font-weight:400;
}

.pricing-plan-header p{
  color:var(--text);
  line-height:1.8;
  margin-bottom:0;
  font-size:15px;
}


.pricing-table tbody tr{
  background:#101010;
  transition:.35s;
}

.pricing-table tbody tr:hover{
  transform:scale(1.01);
}

.pricing-table tbody td{
  border:none;
  padding:28px 24px;
  color:var(--text);
  vertical-align:middle;
  background:#101010;
  border-top:1px solid rgba(212,160,23,0.06);
  border-bottom:1px solid rgba(212,160,23,0.06);
}

.pricing-table tbody td:first-child{
  border-radius:22px 0 0 22px;
}

.pricing-table tbody td:last-child{
  border-radius:0 22px 22px 0;
}

.pricing-feature-title{
  color:var(--white) !important;
  font-weight:700;
  width:270px;
  font-size:17px;
  letter-spacing:.3px;
}

.pricing-disabled{
  color:#ff5a5a;
  font-weight:600;
}

.pricing-table tbody td:nth-child(4){
  background:
  linear-gradient(180deg,
  rgba(212,160,23,0.08),
  rgba(17,17,17,1));
  color:#f4f4f4;
}




/* ========================================
RESPONSIVE
======================================== */

@media(max-width:991px){

  .pricing-hero-content h1{
    font-size:52px;
  }

  .pricing-price{
    font-size:40px;
  }

}

@media(max-width:767px){

  .pricing-hero-section{
    padding:160px 0 90px;
  }

  .pricing-hero-content h1{
    font-size:38px;
  }

  .pricing-hero-content p{
    font-size:16px;
  }

  .pricing-feature-column{
    font-size:22px;
  }

  .pricing-plan-header{
    padding:30px 22px;
  }

  .pricing-plan-header h3{
    font-size:26px;
  }

  .pricing-price{
    font-size:34px;
  }

  .pricing-table tbody td{
    padding:22px 18px;
    font-size:14px;
  }

}


/* ========================================
CONTACT PAGE
======================================== */

/* .contact-hero-section{
  padding:180px 0 110px;
  position:relative;
  overflow:hidden;

  background:
  linear-gradient(135deg,#081120 0%,#111d33 100%);
}

.contact-hero-section::before{
  content:"";
  position:absolute;

  width:500px;
  height:500px;

  top:-180px;
  right:-150px;

  border-radius:50%;

  background:rgba(198,167,106,0.08);

  filter:blur(20px);
}

.contact-hero-section::after{
  content:"";
  position:absolute;

  width:350px;
  height:350px;

  bottom:-120px;
  left:-100px;

  border-radius:50%;

  background:rgba(198,167,106,0.06);

  filter:blur(10px);
}

.contact-hero-content{
  max-width:950px;
  margin:auto;
  position:relative;
  z-index:2;
}

.contact-tag{
  display:inline-flex;
  align-items:center;
  justify-content:center;

  padding:10px 22px;
  margin-bottom:28px;

  border-radius:100px;

  background:rgba(255,255,255,0.08);
  border:1px solid rgba(255,255,255,0.12);

  color:#e3e8ef;

  font-size:14px;
  font-weight:600;
  letter-spacing:.5px;
  text-transform:uppercase;

  font-family:'Cabin',sans-serif;
}

.contact-hero-content h1{
  /* font-size:68px;
  line-height:1.1; */
  /* font-weight:400;
  line-height:1.1;
  /* letter-spacing:-1px; */
  /* font-size: 80px;
  color:#fff;
  margin-bottom:28px;
    font-weight:700; 
}  */

/* .contact-hero-content p{
  max-width:860px;
  margin:auto;

  color:rgba(255,255,255,0.75);

  font-size:18px;
  line-height:1.9;

  font-family:'Cabin',sans-serif;
}

.contact-benefits{
  display:flex;
  flex-direction:column;
  gap:22px;
  margin-top:30px;
}

.contact-benefit-item{
  display:flex;
  align-items:flex-start;
  gap:16px;
}

.contact-benefit-item i{
  width:52px;
  height:52px;

  display:flex;
  align-items:center;
  justify-content:center;

  flex-shrink:0;

  border-radius:16px;

  background:#f8f6f2;
  color:#081120;

  font-size:18px;
}

.contact-benefit-item span{
  color:#5f6b7a;
  font-size:16px;
  line-height:1.8;
  font-family:'Cabin',sans-serif;
}

.contact-info-card h3{
  font-size:40px;
  line-height:1.2;
  margin-bottom:18px;
}

.contact-info-card p{
  color:#5f6b7a;
  line-height:1.9;
  margin-bottom:35px;
  font-family:'Cabin',sans-serif;
}

.contact-benefit-item:hover i{
  transform:translateY(-2px);
  transition:.3s ease;
}
.contact-benefit-item i{
  box-shadow:0 8px 20px rgba(0,0,0,0.05);
} */ 


/* ========================================
FORM SECTION
======================================== */

/* .contact-form-section{
  padding:110px 0;
  background:#f8f6f2;
}

.contact-info-card,
.contact-form-card{
  background:#fff;

  padding:50px 42px;

  border-radius:28px;

  border:1px solid rgba(0,0,0,0.05);

  box-shadow:0 15px 50px rgba(0,0,0,0.05);
}

.contact-info-card{
  height:100%;
}

.contact-info-card h3,
.contact-form-card h3{
  font-size:40px;
  line-height:1.2;
  color:#081120;
  margin-bottom:22px;
}

.contact-info-card p{
  color:#5f6b7a;
  line-height:1.9;
  margin-bottom:35px;

  font-family:'Cabin',sans-serif;
}  */

/* ========================================
BENEFITS
======================================== */

/* .contact-benefits{
  display:flex;
  flex-direction:column;
  gap:18px;
}

.contact-benefit-item{
  display:flex;
  align-items:center;
  gap:18px;

  padding:18px 20px;

  border-radius:18px;

  background:#faf8f5;
  border:1px solid rgba(0,0,0,0.05);
}

.contact-benefit-item i{
  width:52px;
  height:52px;

  display:flex;
  align-items:center;
  justify-content:center;

  border-radius:14px;

  background:#081120;
  color:#f1d59a;

  font-size:18px;

  flex-shrink:0;
}

.contact-benefit-item span{
  color:#081120;

  font-size:16px;
  font-weight:600;

  font-family:'Cabin',sans-serif;
}
.address-text{
  color:#081120;
  font-size:15px;
  font-weight:500;
  line-height:1.8;
  font-family:'Cabin',sans-serif;
} */

/* ========================================
FORM
======================================== */

/* .contact-label{
  display:block;
  margin-bottom:12px;

  color:#081120;

  font-size:15px;
  font-weight:600;

  font-family:'Cabin',sans-serif;
}

.contact-input{
  height:58px;

  border-radius:16px;
  border:1px solid rgba(0,0,0,0.08);

  background:#faf8f5;

  padding:14px 18px;

  color:#081120;
  font-size:15px;

  box-shadow:none !important;

  font-family:'Cabin',sans-serif;
}

textarea.contact-input{
  height:auto;
  resize:none;
  padding-top:18px;
}

.contact-input:focus{
  border-color:#c6a76a;
  background:#fff;
}

.contact-submit-btn{
  border:none;
  outline:none;

  padding:16px 36px;

  border-radius:14px;

  background:#081120;
  color:#fff;

  font-size:15px;
  font-weight:600;

  transition:.4s ease;

  font-family:'Cabin',sans-serif;
}

.contact-submit-btn:hover{
  background:#000;
  transform:translateY(-3px);
}
.contact-form-card .contact-input{
  color:#081120 !important;
  -webkit-text-fill-color:#081120 !important;
} */

/* ========================================
LOCATION SECTION
======================================== */

/* .contact-location-section{
  padding:110px 0;
  background:#fff;
}

.contact-location-section h2{
  font-size:56px;
  line-height:1.2;

  color:#081120;
  margin-bottom:20px;
}

.contact-location-text{
  max-width:820px;
  margin:auto;

  color:#5f6b7a;

  line-height:1.9;

  font-family:'Cabin',sans-serif;
}

.contact-location-card{
  background:#faf8f5;

  padding:40px 32px;

  border-radius:26px;

  border:1px solid rgba(0,0,0,0.05);

  transition:.4s ease;

  height:100%;
}

.contact-location-card:hover{
  transform:translateY(-8px);
}

.contact-location-card i{
  width:72px;
  height:72px;

  display:flex;
  align-items:center;
  justify-content:center;

  border-radius:18px;

  background:#081120;
  color:#f1d59a;

  font-size:26px;

  margin-bottom:24px;
}

.contact-location-card h5{
  font-size:24px;
  color:#081120;
  margin-bottom:16px;
}

.contact-location-card p{
  color:#5f6b7a;
  line-height:1.8;

  font-family:'Cabin',sans-serif;
} */

/* ========================================
MAP
======================================== */

/* .contact-map-wrapper{
  overflow:hidden;
  border-radius:28px;

  box-shadow:0 15px 50px rgba(0,0,0,0.08);
}

.contact-map-wrapper iframe{
  width:100%;
  height:500px;
  border:0;
} */



/* =======================================
HERO SECTION
======================================= */

.contact-hero-section{
  padding:180px 0 110px;
  position:relative;
  overflow:hidden;

  background:linear-gradient(135deg,var(--bg) 0%,var(--bg2) 100%);
}

.contact-hero-section::before{
  content:"";
  position:absolute;

  width:500px;
  height:500px;

  top:-180px;
  right:-150px;

  border-radius:50%;

  background:rgba(212,164,55,0.08);
  filter:blur(25px);
}

.contact-hero-section::after{
  content:"";
  position:absolute;

  width:350px;
  height:350px;

  bottom:-120px;
  left:-100px;

  border-radius:50%;

  background:rgba(244,208,111,0.06);
  filter:blur(20px);
}

.contact-hero-content{
  max-width:950px;
  margin:auto;
  position:relative;
  z-index:2;
}

.contact-tag{
  display:inline-flex;
  padding:10px 22px;

  border-radius:100px;

  background:rgba(255,255,255,0.04);
  border:1px solid var(--border);

  color:var(--gold3);

  font-size:14px;
  font-weight:600;
  letter-spacing:.5px;
  text-transform:uppercase;
}

.contact-hero-content h1{
  font-size:80px;
  font-weight:400;
  line-height:1.1;

  color:var(--white);
  margin-bottom:25px;
}

.contact-hero-content p{
  color:var(--text);
  font-size:18px;
  line-height:1.9;
}

/* =======================================
FORM SECTION
======================================= */

.contact-form-section{
  padding:110px 0;
  background:var(--bg2);
}

/* =======================================
CARDS
======================================= */

.contact-info-card,
.contact-form-card{
  background:var(--card);

  padding:50px 42px;
  border-radius:28px;

  border:1px solid var(--border);
  box-shadow:var(--shadow);
}

.contact-info-card h3,
.contact-form-card h3{
  font-size:40px;
  color:var(--white);
  margin-bottom:22px;
}

/* =======================================
TEXT
======================================= */

.contact-info-card p,
.contact-benefit-item span,
.address-text{
  color:var(--text);
  line-height:1.8;
}

/* =======================================
BENEFITS
======================================= */

.contact-benefits{
  display:flex;
  flex-direction:column;
  gap:18px;
}

.contact-benefit-item{
  display:flex;
  align-items:center;
  gap:16px;

  padding:18px 20px;
  border-radius:18px;

  background:var(--glass);
  border:1px solid var(--border);
}

.contact-benefit-item i{
  width:52px;
  height:52px;

  display:flex;
  align-items:center;
  justify-content:center;

  border-radius:14px;

  background:var(--gold);
  color:var(--bg);

  font-size:18px;
  flex-shrink:0;
}

/* hover */
.contact-benefit-item:hover i{
  transform:translateY(-2px);
  transition:0.3s ease;
}

/* =======================================
FORM
======================================= */

.contact-label{
  display:block;
  margin-bottom:10px;

  color:var(--text);
  font-size:15px;
  font-weight:600;
}

.contact-input{
  width:100%;
  height:58px;

  border-radius:16px;
  border:1px solid var(--border);

  background:var(--glass);

  padding:14px 18px;

  color:var(--white);
  font-size:15px;

  outline:none;
  transition:0.35s ease;
}

textarea.contact-input{
  height:auto;
  min-height:140px;
  resize:none;
}

.contact-input::placeholder{
  color:var(--text-light);
}

.contact-input:focus{
  border-color:var(--gold);
  box-shadow:0 0 0 3px rgba(212,164,55,0.15);
}


select.contact-input{
  appearance:none;
  -webkit-appearance:none;
  -moz-appearance:none;

  cursor:pointer;

  /* keep same theme but force consistency */
  background:var(--glass) !important;
  color:var(--white) !important;

  padding-right:45px;

  /* custom arrow */
  background-image:
    linear-gradient(45deg, transparent 50%, var(--gold) 50%),
    linear-gradient(135deg, var(--gold) 50%, transparent 50%);

  background-position:
    calc(100% - 22px) 50%,
    calc(100% - 16px) 50%;

  background-size:6px 6px;
  background-repeat:no-repeat;
}

/* FIX for Firefox / Chrome weird default opacity */
select.contact-input option{
  background:var(--bg2);
  color:var(--white);
}

/* IMPORTANT: removes white flash on open in some browsers */
select.contact-input:focus{
  background:rgba(255,255,255,0.06);
}


/* =======================================
BUTTON
======================================= */

.contact-submit-btn{
  width:60%;
  border:none;
  outline:none;

  padding:16px 36px;

  border-radius:14px;

  background:linear-gradient(135deg,var(--gold),var(--gold2));
  color:var(--bg);

  font-size:15px;
  font-weight:700;

  transition:0.4s ease;
}

.contact-submit-btn:hover{
  transform:translateY(-3px);
  box-shadow:0 18px 35px rgba(212,164,55,0.25);
}

/* =======================================
LOCATION
======================================= */

.contact-location-section{
  padding:110px 0;
  background:var(--bg);
}

.contact-location-card{
  background:var(--card);
  border:1px solid var(--border);

  padding:40px;
  border-radius:22px;

  transition:0.3s ease;
}

.contact-location-card:hover{
  transform:translateY(-6px);
}

.contact-location-card i{
  width:65px;
  height:65px;

  display:flex;
  align-items:center;
  justify-content:center;

  border-radius:16px;

  background:var(--gold);
  color:var(--bg);

  font-size:22px;

  margin-bottom:20px;
}

.contact-location-card h5{
  color:var(--white);
  font-size:22px;
  margin-bottom:14px;
}

.contact-location-card p{
  color:var(--text);
  line-height:1.8;
}

/* =======================================
MAP
======================================= */

.contact-map-wrapper{
  border-radius:28px;
  overflow:hidden;
  box-shadow:var(--shadow);
}

.contact-map-wrapper iframe{
  width:100%;
  height:500px;
  border:0;
}



/* ========================================
RESPONSIVE
======================================== */

@media(max-width:1199px){

  .contact-hero-content h1{
    font-size:58px;
  }

  .contact-location-section h2{
    font-size:48px;
  }

}

@media(max-width:991px){

  .contact-hero-section{
    padding:160px 0 90px;
  }

  .contact-hero-content h1{
    font-size:48px;
  }

  .contact-info-card,
  .contact-form-card{
    padding:40px 30px;
  }

  .contact-location-section h2{
    font-size:42px;
  }

}

@media(max-width:767px){

  .contact-hero-section{
    padding:145px 0 80px;
  }

  .contact-hero-content h1{
    font-size:38px;
  }

  .contact-hero-content p{
    font-size:16px;
    line-height:1.8;
  }

  .contact-info-card h3,
  .contact-form-card h3{
    font-size:30px;
  }

  .contact-location-section h2{
    font-size:34px;
  }

  .contact-location-card{
    padding:34px 24px;
  }

  .contact-map-wrapper iframe{
    height:380px;
  }

}

@media(max-width:575px){

  .contact-hero-content h1{
    font-size:32px;
  }

  .contact-info-card,
  .contact-form-card{
    padding:30px 22px;
    border-radius:22px;
  }

  .contact-benefit-item{
    padding:16px;
  }

  .contact-benefit-item span{
    font-size:15px;
  }

  .contact-location-section h2{
    font-size:28px;
  }

  .contact-location-card h5{
    font-size:22px;
  }

  .contact-submit-btn{
    width:100%;
  }

}
.whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 60px;
  height: 60px;
  background: #25D366; /* WhatsApp green */
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  z-index: 9999;
  box-shadow: 0 10px 25px rgba(0,0,0,0.3);
  transition: 0.3s ease;
  text-decoration: none;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  background: #1ebe5d;
}

.enquiry-cta{
    max-width:700px;
    margin:70px auto 0;
    padding:45px 30px;

    text-align:center;

    background:rgba(255,255,255,0.03);
    border:1px solid rgba(212,175,55,0.25);
    border-radius:24px;

    backdrop-filter:blur(10px);

    box-shadow:
    0 15px 40px rgba(0,0,0,0.4),
    0 0 30px rgba(212,175,55,0.08);
}

.cta-tag{
    display:inline-block;
    padding:8px 18px;
    border-radius:30px;

    background:rgba(212,175,55,0.12);
    border:1px solid rgba(212,175,55,0.35);

    color:#d4af37;
    font-size:13px;
    font-weight:600;
    letter-spacing:1px;
    text-transform:uppercase;

    margin-bottom:18px;
}

.enquiry-cta h3{
    color:#fff;
    font-size:32px;
    margin-bottom:15px;
}

.enquiry-cta p{
    color:#cfcfcf;
    max-width:550px;
    margin:0 auto 28px;
}

.enquiry-btn{
    display:inline-flex;
    align-items:center;
    gap:10px;

    padding:16px 38px;

    background:linear-gradient(
    135deg,
    #d4af37,
    #f7d774
    );

    color:#111;
    text-decoration:none;

    border-radius:50px;
    font-weight:700;

    box-shadow:
    0 10px 25px rgba(212,175,55,0.35);

    transition:0.35s ease;
}

.enquiry-btn:hover{
    transform:translateY(-5px);
    color:#111;

    box-shadow:
    0 18px 35px rgba(212,175,55,0.45);
}
.service-outcomes,
.why-reachus,
.process-section,
.portfolio-section,
.cta-section{
    padding:100px 0;
    background:var(--bg);
}

.outcome-card,
.why-card,
.process-card,
.portfolio-card{
    background:var(--card);
    border:1px solid var(--border);
    border-radius:24px;
    padding:35px;
    height:100%;
    transition:.4s;
}

.outcome-card:hover,
.why-card:hover,
.process-card:hover,
.portfolio-card:hover{
    transform:translateY(-8px);
    border-color:var(--gold);
}

.outcome-card h4,
.why-card h4,
.process-card h4,
.portfolio-card h4{
    color:var(--white);
    margin-bottom:15px;
}

.outcome-card p,
.why-card p,
.process-card p,
.portfolio-card p{
    color:var(--text);
    line-height:1.8;
}

.section-heading{
    text-align:center;
    margin-bottom:60px;
}

.section-heading h2{
    color:var(--white);
    margin-bottom:15px;
}

.section-heading p{
    color:var(--text-light);
    max-width:700px;
    margin:auto;
}

.process-number{
    width:60px;
    height:60px;
    border-radius:50%;
    background:linear-gradient(135deg,var(--gold),var(--gold3));
    color:#000;
    font-weight:700;
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:20px;
}

.portfolio-img img{
    width:100%;
    border-radius:18px;
    margin-bottom:20px;
}

.cta-box{
    background:linear-gradient(
    135deg,
    rgba(212,164,55,.08),
    rgba(212,164,55,.02));
    border:1px solid var(--border);
    border-radius:30px;
    padding:70px;
    text-align:center;
}

.cta-box h2{
    color:var(--white);
    margin-bottom:20px;
}

.cta-box p{
    color:var(--text);
    max-width:700px;
    margin:0 auto 30px;
}

.cta-buttons{
    display:flex;
    gap:20px;
    justify-content:center;
    flex-wrap:wrap;
}

@media(max-width:991px){

.service-outcomes,
.why-reachus,
.process-section,
.portfolio-section,
.cta-section{
    padding:80px 0;
}

.cta-box{
    padding:50px 30px;
}

}

@media(max-width:576px){

.section-heading{
    margin-bottom:40px;
}

.outcome-card,
.why-card,
.process-card,
.portfolio-card{
    padding:25px;
}

.cta-box{
    padding:40px 20px;
}

}

/* faq session */

.faq-section{
    padding:120px 0;
    background:#050505;
}

.faq-heading{
    max-width:850px;
    margin:0 auto 60px;
}

.faq-badge{
    display:inline-block;
    padding:10px 18px;
    border:1px solid rgba(255,255,255,0.1);
    border-radius:50px;
    color:#c6a972;
    font-size:14px;
    margin-bottom:20px;
}

.faq-heading h2{
    color:#fff;
    font-size:52px;
    margin-bottom:20px;
}



.faq-heading p{
    color: #bdbdbd;
    line-height: 1.8;
    font-size: 18px;

    max-width: 750px;
    margin: 0 auto;

    text-align: center;

    word-break: normal;
    overflow-wrap: break-word;
}

.faq-wrapper{
    max-width:900px;
    margin:0 auto;
}

.faq-item{
    border:1px solid rgba(255,255,255,0.08);
    border-radius:16px;
    background:#0c0c0c;
    margin-bottom:20px;
    overflow:hidden;
}

.faq-question{
    width:100%;
    background:none;
    border:none;
    color:#fff;
    padding:24px 30px;
    text-align:left;
    font-size:20px;
    font-weight:600;
    display:flex;
    justify-content:space-between;
    align-items:center;
    cursor:pointer;
}

.faq-question span{
    color:#c6a972;
    font-size:28px;
    flex-shrink:0;
}

.faq-answer{
    display:none;
    padding:0 30px 25px;
}

.faq-answer p{
    color:#bdbdbd;
    line-height:1.9;
    margin:0;
}

.faq-item.active .faq-answer{
    display:block;
}

@media(max-width:991px){

.faq-section{
    padding:90px 0;
}

.faq-heading h2{
    font-size:42px;
}

.faq-question{
    font-size:18px;
}

}

@media(max-width:767px){

.faq-section{
    padding:70px 0;
}

.faq-heading h2{
    font-size:32px;
}

.faq-heading p{
    font-size:16px;
}

.faq-question{
    font-size:16px;
    padding:20px;
}

.faq-answer{
    padding:0 20px 20px;
}

.faq-question span{
    font-size:24px;
}

}
 h1, h2 {
  max-width: 60ch;
  text-wrap: balance;
} 
.whts-btn {
  display: inline-block;
  background-color: #25D366; /* WhatsApp green */
  color: #fff;
  padding: 12px 22px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.whts-btn:hover {
  background-color: #1ebe5d;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(37, 211, 102, 0.4);
}

.whts-btn:active {
  transform: scale(0.97);
}
/* MODAL BACKDROP */
.modal-overlay{
  position: fixed;
  top:0;
  left:0;
  width:100%;
  height:100%;
  background: rgba(0,0,0,0.75);
  display:none;
  justify-content:center;
  align-items:center;
  z-index:9999;
}

/* MODAL BOX */
.modal-box{
  background:#111;
  padding:30px;
  width:90%;
  max-width:450px;
  border-radius:12px;
  position:relative;
  box-shadow:0 10px 40px rgba(0,0,0,0.6);
}

/* CLOSE BUTTON */
.close-btn{
  position:absolute;
  right:15px;
  top:10px;
  font-size:26px;
  cursor:pointer;
  color:#fff;
}

/* FORM */
.modal-box input,
.modal-box textarea{
  width:100%;
  margin:10px 0;
  padding:12px;
  border-radius:8px;
  border:1px solid rgba(255,255,255,0.2);
  background:#000;
  color:#fff;
}

.modal-box button{
  width:100%;
  padding:12px;
  background: linear-gradient(135deg,var(--gold),var(--gold3));
  color:#000;
  border:none;
  border-radius:8px;
  font-weight:600;
  cursor:pointer;
}
.modal-overlay{
  display:none;
  position:fixed;
  top:0;
  left:0;
  width:100%;
  height:100%;
  background:rgba(0,0,0,0.75);
  justify-content:center;
  align-items:center;
  z-index:9999;
}
/*================================
    TESTIMONIAL SECTION
================================*/

.testimonial-area{
    position: relative;
    padding: 100px 0;
    background: #050505;
    overflow: hidden;
}

.testimonial-area::before{
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    left: -220px;
    top: -220px;
    border-radius: 50%;
    background: rgba(212,164,55,.08);
    filter: blur(120px);
}

.testimonial-area::after{
    content: "";
    position: absolute;
    width: 450px;
    height: 450px;
    right: -180px;
    bottom: -180px;
    border-radius: 50%;
    background: rgba(212,164,55,.06);
    filter: blur(120px);
}

/*========================
SECTION TITLE
========================*/

.test-title{
    text-align:center;
    margin-bottom:70px;
}

.test-title span{
    color:#d4a437;
    letter-spacing:4px;
    text-transform:uppercase;
    font-size:14px;
    font-weight:600;
}

/* .test-title h2{
    color:#fff;
    
} */

.test-title h2 span{
  
font-size:42px;
    margin:15px 0;
    font-family:'Playfair Display',serif;
}

.test-title p{
    color:#bdbdbd;
    font-size:17px;
}

/*========================
CARD
========================*/

.testimonial-card{

    position:relative;

    display:flex;

    align-items:stretch;

    background:rgba(255,255,255,.04);

    backdrop-filter:blur(20px);

    border:1px solid rgba(212,164,55,.18);

    border-radius:30px;

    overflow:hidden;

    transition:.45s;

    min-height:650px;

}

.testimonial-card:hover{

    transform:translateY(-10px);

    box-shadow:0 30px 80px rgba(212,164,55,.16);

    border-color:#d4a437;

}

/* Gold glow */

.testimonial-card::before{

    content:"";

    position:absolute;

    inset:0;

    background:linear-gradient(
    135deg,
    rgba(212,164,55,.12),
    transparent 35%);

    opacity:0;

    transition:.4s;

}

.testimonial-card:hover::before{

    opacity:1;

}

/*========================
LEFT PANEL
========================*/

.testimonial-left{

    width:320px;

    padding:60px 40px;

    text-align:center;

    position:relative;

    z-index:2;

}

.testimonial-logo{

    width:170px;

    height:170px;

    margin:auto;

    background:#fff;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    border:5px solid #d4a437;

    overflow:hidden;

    box-shadow:
    0 0 35px rgba(212,164,55,.35);

}

.testimonial-logo img{
    width: 100%;
    height: 100%;
    object-fit: contain; 
    border-radius: 50%;  
}



.testimonial-left h3{

    margin-top:35px;

    color:#fff;

    font-size:34px;

    font-family:'Playfair Display',serif;

}

.stars{

    margin:30px 0;

    color:#FFD700;

    font-size:24px;

    letter-spacing:5px;

}

.client-info{

    display:flex;

    align-items:center;

    justify-content:center;

    margin-top:40px;

    gap:15px;

}

.client-info i{

    font-size:48px;

    color:#d4a437;

}

.client-info h5{

    color:#fff;

    margin-bottom:5px;

    font-size:18px;

}

.client-info span{

    color:#d4a437;

    font-size:15px;

}

/*========================
DIVIDER
========================*/

.testimonial-divider{

    width:1px;

    background:
    linear-gradient(
    transparent,
    rgba(212,164,55,.45),
    transparent);

    position:relative;

}

.testimonial-divider::after{

    content:"";

    position:absolute;

    width:10px;

    height:10px;

    border-radius:50%;

    background:#d4a437;

    top:50%;

    left:-4px;

    transform:translateY(-50%);

    box-shadow:0 0 20px #d4a437;

}

/*========================
RIGHT PANEL
========================*/

.testimonial-right{

    flex:1;
  
    padding: 40px 60px 60px;  


    position:relative;

    display:flex;

    flex-direction:column;

    justify-content:center;

}

/* .quote-top{

    position:absolute;

    left:50px;

    top:20px;

    font-size:150px;

    color:rgba(212,164,55,.15);

    font-family:Georgia,serif;

    line-height:1;

}

.quote-bottom{

    position:absolute;

    right:50px;

    bottom:20px;

    font-size:150px;

    color:rgba(212,164,55,.15);

    font-family:Georgia,serif;

    line-height:1;

} */

.testimonial-content{

    position:relative;

    z-index:2;

}

.testimonial-content p{

    color:#e8e8e8;

    font-size:21px;

    line-height:2.1;

    margin-bottom:35px;

}

.testimonial-content{
    position: relative;
    color: #e8e8e8;
    font-size: 20px;
    line-height: 2;
}

.quote-top{
    display: block;
    font-size: 80px;
    color: rgba(212,164,55,.25);
    line-height: .7;
    margin-bottom: -20px; /* Gap kuraykkunnu */
}

.quote-bottom{
    display: block;
    text-align: right;
    font-size: 80px;
    color: rgba(212,164,55,.25);
    line-height: .7;
    margin-top: -10px;
}
/*==================================
    PREMIUM BORDER ANIMATION
==================================*/

.testimonial-card::after{
    content:"";
    position:absolute;
    inset:0;
    border-radius:30px;
    padding:1px;
    background:linear-gradient(
        135deg,
        rgba(212,164,55,.15),
        rgba(255,215,0,.8),
        rgba(212,164,55,.15)
    );
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite:xor;
    mask-composite:exclude;
    pointer-events:none;
    opacity:.6;
}

/*==================================
        HOVER EFFECTS
==================================*/

.testimonial-logo{
    transition:.5s;
}

.testimonial-card:hover .testimonial-logo{
    transform:scale(1.08) rotate(3deg);
    box-shadow:
        0 0 25px rgba(212,164,55,.45),
        0 0 60px rgba(212,164,55,.25);
}

.testimonial-left h3{
    transition:.4s;
}

.testimonial-card:hover .testimonial-left h3{
    color:#f4d06f;
}

.stars i{
    transition:.3s;
}

.testimonial-card:hover .stars i{
    transform:translateY(-4px);
}

/*==================================
        SWIPER
==================================*/

.testimonial-slider{
    padding:20px 0 80px;
}

.swiper-slide{
    opacity:.4;
    transition:.4s;
}

.swiper-slide-active{
    opacity:1;
}

/*==================================
        PAGINATION
==================================*/

.swiper-pagination{
    bottom:0 !important;
}

.swiper-pagination-bullet{
    width:12px;
    height:12px;
    background:#777;
    opacity:1;
    transition:.3s;
}

.swiper-pagination-bullet-active{
    width:34px;
    border-radius:30px;
    background:#d4a437;
}

/*==================================
        ARROWS
==================================*/

.swiper-button-next,
.swiper-button-prev{

    width:65px;
    height:65px;

    border-radius:50%;

    background:rgba(255,255,255,.05);

    backdrop-filter:blur(15px);

    border:1px solid rgba(212,164,55,.35);

    transition:.4s;
}

.swiper-button-next::after,
.swiper-button-prev::after{

    font-size:22px;
    font-weight:bold;
    color:#d4a437;
}

.swiper-button-next:hover,
.swiper-button-prev:hover{

    background:#d4a437;
}

.swiper-button-next:hover::after,
.swiper-button-prev:hover::after{

    color:#000;
}

/*==================================
        MOBILE
==================================*/

@media(max-width:991px){

.testimonial-card{

    display:block;

}

.testimonial-left{

    width:100%;
    padding:50px 30px;

}

.testimonial-divider{

    width:100%;
    height:1px;

}

.testimonial-divider::after{

    left:50%;
    top:-4px;

}

.testimonial-right{

    padding:45px 30px;

}

.quote-top{

    left:20px;
    top:10px;
    font-size:100px;

}

.quote-bottom{

    right:20px;
    bottom:10px;
    font-size:100px;

}

.testimonial-content p{

    font-size:17px;
    line-height:1.9;

}

.section-title h2{

    font-size:38px;

}

}

@media(max-width:576px){

.section-title h2{

    font-size:30px;

}

.testimonial-logo{

    width:120px;
    height:120px;

}

.testimonial-left h3{

    font-size:26px;

}

.stars{

    font-size:18px;

}

.client-info{

    flex-direction:column;

}

.testimonial-content p{

    font-size:15px;
    line-height:1.8;

}

.swiper-button-next,
.swiper-button-prev{

    display:none;

}

}

.business-hub-section{
    padding:100px 0;
}

.business-hub-image{
    overflow:hidden;
    border-radius:22px;
}

.business-hub-image img{
    width:100%;
    height:620px;
    object-fit:cover;
    border-radius:22px;
    transition:.5s;
}

.business-hub-image:hover img{
    transform:scale(1.05);
}

.business-hub-content h3{
    font-size:34px;
    font-weight:700;
    margin-bottom:25px;
    color:#111;
    line-height:1.3;
}

.business-hub-content p{
    font-size:16px;
    line-height:1.9;
    color:#cfcfcf;
    margin-bottom:20px;
    text-align:justify;
}

@media(max-width:991px){

.business-hub-section{
    padding:70px 0;
}

.business-hub-image img{
    height:420px;
}

.business-hub-content h3{
    font-size:28px;
}

}

@media(max-width:767px){

.business-hub-image img{
    height:300px;
}

.business-hub-content h3{
    font-size:24px;
}

.business-hub-content p{
    font-size:15px;
}

}