.elementor-4967 .elementor-element.elementor-element-69419f8{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}:root{--page-title-display:none;}/* Start custom CSS for html, class: .elementor-element-20a9df4 */@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700;900&display=swap');

:root{
  --jo-primary:#3a3937;
  --jo-primary-dark:#2d2c2a;
  --jo-primary-light:#4b4946;

  --jo-accent:#d8d0c4;
  --jo-accent-dark:#c7beb2;
  --jo-accent-light:#ece7df;

  --jo-bg:#f5f3ef;
  --jo-card:#ffffff;

  --jo-text:#2f2f2f;
  --jo-muted:#6d6d6d;

  --jo-border:rgba(0,0,0,0.07);

  --font-main:'Roboto',sans-serif;
  --font-display:'Roboto',sans-serif;
}

*{
  box-sizing:border-box;
  margin:0;
  padding:0;
}

html{
  scroll-behavior:smooth;
}

body{
  font-family:var(--font-main);
  color:var(--jo-text);
  background:var(--jo-bg);
  line-height:1.7;
  font-weight:400;
  overflow-x:hidden;
}

/* =========================
   HERO SECTION
========================= */

.jo-hero{
  background:#3a3937;
  padding:100px 40px 110px;
  position:relative;
  overflow:hidden;
  text-align:center;
}

.jo-hero::before{
  content:'';
  position:absolute;
  right:-120px;
  bottom:-120px;
  width:420px;
  height:420px;
  border-radius:50%;
  background:rgba(255,255,255,0.04);
}

.jo-hero::after{
  content:'';
  position:absolute;
  left:-80px;
  top:-80px;
  width:280px;
  height:280px;
  border-radius:50%;
  background:rgba(255,255,255,0.03);
}

.jo-hero-badge{
  display:inline-block;
  background:#242424;
  color:#fff;
  font-size:12px;
  font-weight:600;
  letter-spacing:1px;
  text-transform:uppercase;
  padding:8px 18px;
  border-radius:40px;
  margin-bottom:24px;
  position:relative;
  z-index:2;
}

.jo-hero h1{
  font-family:var(--font-display);
  font-size:clamp(38px,6vw,68px);
  font-weight:900;
  color:#fff;
  line-height:1.1;
  margin-bottom:22px;
  position:relative;
  z-index:2;
}

.jo-hero h1 span{
  color:#d7cec0;
}

.jo-hero p{
  color:rgba(255,255,255,0.82);
  font-size:17px;
  max-width:760px;
  margin:0 auto 40px;
  line-height:1.8;
  position:relative;
  z-index:2;
}

/* =========================
   BUTTONS
========================= */

.jo-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:15px 34px;
  border-radius:999px;
  text-decoration:none;
  font-size:15px;
  font-weight:500;
  transition:all .3s ease;
}

.jo-btn-primary{
  background:#e5ddd2;
  color:#2f2f2f;
  border:1px solid #d7cec0;
}

.jo-btn-primary:hover{
  background:#d7cec0;
  transform:translateY(-2px);
}

.jo-btn-outline{
  background:transparent;
  color:#fff;
  border:1px solid rgba(255,255,255,0.45);
  margin-left:14px;
}

.jo-btn-outline:hover{
  background:rgba(255,255,255,0.08);
  border-color:#fff;
  transform:translateY(-2px);
}

/* =========================
   INTRO STRIP
========================= */

.jo-intro{
  background:#2f2f2f;
  padding:26px 30px;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:18px;
  flex-wrap:wrap;
}

.jo-intro-stat{
  display:flex;
  align-items:center;
  gap:10px;
  color:#fff;
}

.jo-intro-stat .num{
  font-size:30px;
  font-weight:700;
}

.jo-intro-stat .label{
  font-size:13px;
  color:rgba(255,255,255,0.75);
  line-height:1.4;
}

.jo-divider-dot{
  width:5px;
  height:5px;
  border-radius:50%;
  background:rgba(255,255,255,0.3);
}

/* =========================
   SECTIONS
========================= */

.jo-section{
  max-width:1200px;
  margin:0 auto;
  padding:90px 40px;
}

.jo-section-full{
  padding:90px 40px;
}

.jo-services-bg{
  background:#ece8e1;
}

.jo-section-label{
  display:inline-flex;
  align-items:center;
  gap:10px;
  font-size:12px;
  font-weight:700;
  letter-spacing:1.5px;
  text-transform:uppercase;
  color:#8f8577;
  margin-bottom:16px;
}

.jo-section-label::before{
  content:'';
  width:28px;
  height:2px;
  background:#c7beb2;
}

.jo-section-title{
  font-size:clamp(32px,4vw,54px);
  font-weight:800;
  line-height:1.15;
  color:#2f2f2f;
  margin-bottom:18px;
}

.jo-section-title span{
  color:#b8aea0;
}

.jo-section-sub{
  font-size:16px;
  color:var(--jo-muted);
  line-height:1.9;
  max-width:700px;
}

/* =========================
   GRIDS
========================= */

.jo-grid-2{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:70px;
  align-items:center;
}

.jo-grid-3{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
  gap:28px;
  margin-top:55px;
}

/* =========================
   CARDS
========================= */

.jo-service-card{
  background:var(--jo-card);
  border-radius:24px;
  padding:36px 30px;
  border:1px solid rgba(0,0,0,0.06);
  box-shadow:0 4px 14px rgba(0,0,0,0.03);
  transition:all .3s ease;
}

.jo-service-card:hover{
  transform:translateY(-6px);
  box-shadow:0 14px 30px rgba(0,0,0,0.06);
}

.jo-service-icon{
  width:62px;
  height:62px;
  border-radius:18px;
  background:#2f2f2f;
  display:flex;
  align-items:center;
  justify-content:center;
  margin-bottom:22px;
}

.jo-service-icon svg{
  width:28px;
  height:28px;
  stroke:#fff;
  fill:none;
  stroke-width:1.8;
}

.jo-service-card h3{
  font-size:22px;
  font-weight:700;
  color:#2f2f2f;
  margin-bottom:12px;
}

.jo-service-card p{
  font-size:15px;
  color:#6c6c6c;
  line-height:1.8;
  margin-bottom:18px;
}

.jo-service-tag{
  display:inline-block;
  background:#f3efe8;
  color:#5d5d5d;
  border-radius:999px;
  padding:6px 14px;
  font-size:12px;
  margin:4px 4px 0 0;
}

/* =========================
   BENEFITS
========================= */

.jo-benefit-item{
  display:flex;
  gap:18px;
  align-items:flex-start;
  padding:22px;
  border-radius:20px;
  background:#fff;
  border:1px solid rgba(0,0,0,0.06);
  margin-bottom:18px;
  transition:all .3s ease;
}

.jo-benefit-item:hover{
  transform:translateY(-3px);
  box-shadow:0 10px 24px rgba(0,0,0,0.05);
}

.jo-benefit-icon-wrap{
  width:52px;
  height:52px;
  border-radius:16px;
  background:#2f2f2f;
  display:flex;
  align-items:center;
  justify-content:center;
  flex-shrink:0;
}

.jo-benefit-icon-wrap svg{
  width:22px;
  height:22px;
  stroke:#fff;
  fill:none;
}

.jo-benefit-item h4{
  font-size:18px;
  font-weight:700;
  margin-bottom:6px;
  color:#2f2f2f;
}

.jo-benefit-item p{
  font-size:14px;
  color:#6e6e6e;
  line-height:1.8;
}

/* =========================
   DARK FEATURE BOX
========================= */

.jo-purple-box{
  background:#3a3937;
  border-radius:28px;
  padding:50px 38px;
  color:#fff;
  position:relative;
  overflow:hidden;
}

.jo-purple-box::before{
  content:'';
  position:absolute;
  right:-80px;
  bottom:-80px;
  width:220px;
  height:220px;
  border-radius:50%;
  background:rgba(255,255,255,0.04);
}

.jo-purple-box h3{
  font-size:38px;
  font-weight:800;
  line-height:1.2;
  margin-bottom:16px;
  position:relative;
  z-index:2;
}

.jo-purple-box h3 span{
  color:#d7cec0;
}

.jo-purple-box p{
  color:rgba(255,255,255,0.78);
  line-height:1.9;
  margin-bottom:28px;
  position:relative;
  z-index:2;
}

.jo-stat-row{
  display:flex;
  justify-content:space-between;
  gap:20px;
  border-top:1px solid rgba(255,255,255,0.1);
  margin-top:28px;
  padding-top:24px;
}

.jo-stat-item .big{
  display:block;
  font-size:32px;
  font-weight:800;
  color:#e5ddd2;
}

.jo-stat-item .small{
  display:block;
  font-size:12px;
  color:rgba(255,255,255,0.7);
  margin-top:4px;
}

/* =========================
   PROCESS
========================= */

.jo-process-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(180px,1fr));
  gap:24px;
  margin-top:60px;
}

.jo-process-step{
  text-align:center;
}

.jo-process-num{
  width:64px;
  height:64px;
  border-radius:50%;
  background:#2f2f2f;
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  margin:0 auto 18px;
  font-weight:700;
  font-size:20px;
}

.jo-process-step h4{
  font-size:17px;
  font-weight:700;
  margin-bottom:10px;
  color:#2f2f2f;
}

.jo-process-step p{
  font-size:14px;
  color:#6d6d6d;
  line-height:1.8;
}

/* =========================
   TABLE
========================= */

.jo-compare-table{
  width:100%;
  border-collapse:collapse;
  margin-top:45px;
  overflow:hidden;
  border-radius:18px;
}

.jo-compare-table th{
  background:#2f2f2f;
  color:#fff;
  padding:18px 20px;
  text-align:left;
  font-size:15px;
}

.jo-compare-table td{
  background:#fff;
  padding:16px 20px;
  border-bottom:1px solid rgba(0,0,0,0.06);
  color:#555;
}

.jo-compare-table tr:nth-child(even) td{
  background:#f7f5f1;
}

.jo-compare-table .highlight{
  color:#2f2f2f;
  font-weight:600;
}

/* =========================
   FAQ
========================= */

.jo-faq-item{
  background:#fff;
  border-radius:18px;
  border:1px solid rgba(0,0,0,0.06);
  margin-bottom:16px;
  overflow:hidden;
}

.jo-faq-q{
  padding:22px 24px;
  font-size:17px;
  font-weight:600;
  color:#2f2f2f;
  display:flex;
  justify-content:space-between;
  align-items:center;
}

.jo-faq-q span{
  color:#b8aea0;
  font-size:24px;
}

.jo-faq-a{
  padding:0 24px 24px;
  color:#6d6d6d;
  line-height:1.8;
  font-size:15px;
}

/* =========================
   CTA
========================= */

.jo-cta{
  background:#3a3937;
  padding:90px 40px;
  text-align:center;
  position:relative;
  overflow:hidden;
}

.jo-cta::before{
  content:'';
  position:absolute;
  width:500px;
  height:500px;
  border-radius:50%;
  background:rgba(255,255,255,0.03);
  left:50%;
  top:-220px;
  transform:translateX(-50%);
}

.jo-cta h2{
  color:#fff;
  font-size:clamp(34px,4vw,56px);
  font-weight:800;
  margin-bottom:18px;
  position:relative;
  z-index:2;
}

.jo-cta h2 span{
  color:#d8d0c4;
}

.jo-cta p{
  max-width:700px;
  margin:0 auto 38px;
  color:rgba(255,255,255,0.82);
  line-height:1.9;
  position:relative;
  z-index:2;
}

.jo-contact-strip{
  display:flex;
  justify-content:center;
  gap:26px;
  flex-wrap:wrap;
  margin-top:40px;
  padding-top:30px;
  border-top:1px solid rgba(255,255,255,0.1);
  position:relative;
  z-index:2;
}

.jo-contact-item{
  display:flex;
  align-items:center;
  gap:10px;
  color:rgba(255,255,255,0.85);
  text-decoration:none;
  font-size:14px;
}

.jo-contact-item svg{
  width:18px;
  height:18px;
  stroke:#d8d0c4;
  fill:none;
}

/* =========================
   LOCATIONS
========================= */

.jo-location-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(170px,1fr));
  gap:16px;
  margin-top:50px;
}

.jo-location-pill{
  border:1px solid rgba(0,0,0,0.06);
  border-radius:16px;
  padding:18px;
  text-align:center;
  text-decoration:none;
  transition:all .3s ease;
}

.jo-location-pill:hover{
  background:#2f2f2f;
}

.jo-location-pill:hover p{
  color:#fff;
}

.jo-location-pill p{
  font-size:14px;
  font-weight:600;
  color:#fff;
}



.udyog-vihar-bg{
    background-image: url('https://justoffice.co.in/wp-content/uploads/2026/05/udyog.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: inline-block;
    padding: 15px 25px;
    border-radius: 10px;
    color: #fff;
    text-decoration: none;
}

.mg-road-bg{
    background-image: url('https://justoffice.co.in/wp-content/uploads/2026/05/mg-.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.golf-course-road-bg{
    background-image: url('https://justoffice.co.in/wp-content/uploads/2026/05/golf-c-768x531-1.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.golf-course-extension-road-bg{
    background-image: url('https://justoffice.co.in/wp-content/uploads/2026/05/Golf-Course-Extension-Road-768x531-1.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}


.sohna-road-bg{
    background-image: url('https://justoffice.co.in/wp-content/uploads/2026/05/Sohna-Road-2-1.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 101px;
}

.sector-44-bg{
    background-image: url('https://justoffice.co.in/wp-content/uploads/2026/05/sec-44.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 101px;
}

.dlf-bg{
    background-image: url('https://justoffice.co.in/wp-content/uploads/2026/05/New-Project-2026-05-08T142500.849.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 101px;
}

.sec-39-bg{
    background-image: url('https://justoffice.co.in/wp-content/uploads/2026/05/New-Project-2026-05-08T143150.853.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 101px;
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:992px){

  .jo-grid-2{
    grid-template-columns:1fr;
    gap:50px;
  }

  .jo-section,
  .jo-section-full{
    padding:70px 24px;
  }

  .jo-hero{
    padding:80px 24px 90px;
  }
}

@media(max-width:768px){

  .jo-btn-outline{
    margin-left:0;
    margin-top:12px;
  }

  .jo-hero h1{
    font-size:44px;
  }

  .jo-section-title{
    font-size:38px;
  }

  .jo-purple-box{
    padding:38px 28px;
  }

  .jo-stat-row{
    flex-direction:column;
    text-align:center;
  }
}

@media(max-width:480px){

  .jo-hero h1{
    font-size:36px;
  }

  .jo-section-title{
    font-size:32px;
  }

  .jo-btn{
    width:100%;
  }

  .jo-contact-strip{
    flex-direction:column;
    align-items:flex-start;
  }
}/* End custom CSS */


