/* ================= GLOBAL ================= */

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

body{
  font-family: "Montserrat", sans-serif;
}

/* ================= HEADER ================= */

.main-header{
  background:#fff;
  padding:20px 20px;
  width:100%;
  position:relative;
  transition:.35s ease;
  z-index:999;
}

.container{
  max-width:1400px;
  margin:auto;
  display:flex;
  align-items:center;
  justify-content:space-between;
}

/* ================= LOGO ================= */

.logo img{
  height:100px;
  max-width:100%;
  transition:.3s;
}

/* ================= NAVIGATION ================= */

.nav{
  flex:1;
  display:flex;
  justify-content:center;
}

.menu{
  list-style:none;
  display:flex;
  gap:clamp(20px,2vw,38px);
}

.menu li{
  /*position:relative;*/
  position:static;
}

.menu a{
  text-decoration:none;
  color:#000;
  font-size:clamp(15px,1.2vw,18px);
  font-weight:500;
  transition:.3s;
}

.menu a:hover{
  color:#ff6a00;
}

/* ================= CTA BUTTON ================= */

.btn-consult{
  padding:20px 28px;
  border:2px solid #ff6a00;
  border-radius:50px;
  color:#ff6a00;
  font-weight:600;
  text-decoration:none;
  transition:.3s;
  font-size:clamp(14px,1vw,16px);
}

.btn-consult:hover{
  background:#ff6a00;
  color:#fff;
}

/* ================= MEGA MENU ================= */

.mega-menuP{
  position:absolute;
  top:100%;
  left:0;
  width:min(900px,90vw);
  background:#fff;
  padding:40px;
  box-shadow:0 20px 50px rgba(0,0,0,0.08);
  opacity:0;
  visibility:hidden;
  transform:translateY(20px);
  transition:.3s ease;
}

.has-megaP:hover .mega-menuP{
  opacity:1;
  visibility:visible;
  transform:translateY(0);
}

.mega-innerP{
  display:flex;
  flex-wrap:wrap;
  gap:40px;
}

.mega-menu{
  position:absolute;
  top:82%;
  left:0;
  width:99vw;
  background:#fff;
  padding:40px 0;
  box-shadow:0 20px 50px rgba(0,0,0,0.08);

  opacity:0;
  visibility:hidden;
  transform:translateY(20px);
  transition:.3s ease;
}

.has-mega:hover .mega-menu{
  opacity:1;
  visibility:visible;
  transform:translateY(0);
}

.mega-inner{
  max-width:1400px;
  margin:auto;
  display:flex;
  gap:40px;
  padding:0 20px;
}

.mega-col{
  min-width:180px;
  flex:1;
}

.mega-col h4{
  margin-bottom:20px;
  font-size: clamp(13px, 1.2vw, 16px);
}

.mega-col ul{
  list-style:none;
}

.mega-col ul li{
  margin-bottom:10px;
}

.mega-col ul li a{
  font-size: clamp(12px, 1.2vw, 15px);
  color:#444;
}

.mega-col ul li a:hover{
  color:#ff6a00;
}

/* ================= STICKY ================= */

.main-header.sticky{
  position:fixed;
  top:0;
  left:0;
  padding:12px 20px;
  box-shadow:0 10px 30px rgba(0,0,0,0.08);
  animation:slideDown .35s ease;
}

.main-header.sticky .logo img{
  height:55px;
}

body.header-fixed{
  padding-top:120px;
}

@keyframes slideDown{
  from{transform:translateY(-100%);}
  to{transform:translateY(0);}
}

/* ================= HAMBURGER ================= */

.hamburger{
  display:none;
  flex-direction:column;
  gap:6px;
  cursor:pointer;
}

.hamburger span{
  width:25px;
  height:3px;
  background:#000;
  transition:.3s;
}


/* Prevent scroll when menu open */


/* Hamburger base */
.hamburger{
  display:none;
  flex-direction:column;
  gap:6px;
  cursor:pointer;
  z-index:1001;
}

.hamburger span{
  width:25px;
  height:3px;
  background:#000;
  transition:.3s ease;
}

/* Show on mobile */
@media(max-width:992px){
  .hamburger{
    display:flex;
  }
}

/* Animate to Cross */
.hamburger.active span:nth-child(1){
  transform:rotate(45deg) translate(5px,5px);
}

.hamburger.active span:nth-child(2){
  opacity:0;
}

.hamburger.active span:nth-child(3){
  transform:rotate(-45deg) translate(6px,-6px);
}

/* ================= TABLET ================= */

@media(max-width:1200px){

  .container{
    padding:0 15px;
  }

}

/* ================= MOBILE ================= */

@media(max-width:992px){

  .nav{
    position:fixed;
    top:0;
    right:-100%;
    width:280px;
    height:100vh;
    background:#fff;
    flex-direction:column;
    justify-content:flex-start;
    padding:100px 30px;
    transition:.4s ease;
    box-shadow:-10px 0 30px rgba(0,0,0,.1);
     overflow-y:auto;                 /* FIX: allow scroll */
    -webkit-overflow-scrolling:touch; /* smooth scroll iOS */
  }

  .nav.active{
    right:0;
  }

  .menu{
    flex-direction:column;
    gap:25px;
  }

  .mega-menu{
    position:static;
    width:100%;
    padding:20px 0;
    box-shadow:none;
    opacity:1;
    visibility:visible;
    transform:none;
  }

  .mega-inner{
    flex-direction:column;
    gap:20px;
  }

  .cta{
    display:none;
  }

  .hamburger{
    display:flex;
  }

  .logo img{
    height:60px;
  }

}


@media(max-width:992px){

.has-mega > a{
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.has-mega > a::after{
    content:"+";
    font-size:20px;
    transition:.3s;
}

/* rotate icon when open */

.has-mega.active > a::after{
    content:"−";
}

/* accordion animation */

.mega-menu{
    max-height:0;
    overflow:hidden;
    transition:max-height .4s ease;
    padding:0;
}

.has-mega.active .mega-menu{
    max-height:200vh; /* enough height for content */
    padding:15px 0;
}

.mega-inner{
    flex-direction:column;
    gap:15px;
}

}

body.menu-open{
overflow:hidden;
}
/* ================================
   GLOBAL FIX
================================ */

.topfnt{
  font-size:clamp(22px,3vw,40px);
  font-weight:700;
}

/* ================================
   SECTION
================================ */

.sepia-section{
  background:#fff;
  padding:100px 20px;
  font-family: "Montserrat", sans-serif;
}

.sepia-container{
  max-width:1400px;
  margin:auto;
  display:grid;
  grid-template-columns:1.1fr 1fr 1fr;
  gap:20px;
}

/* ================================
   LEFT COLUMN
================================ */

.sepia-left{
  padding-right:30px;
}

.sepia-title{
  font-size:clamp(32px,4vw,48px);
  font-weight:700;
  line-height:1.5;
  letter-spacing:1px;
}

.sepia-arrow{
  margin-left:50px;
}

.sepia-arrow img{
  width:75px;
  max-width:100%;
}

.sepia-text{
  margin-top:22px;
  font-size:clamp(16px,1.2vw,18px);
  line-height:1.6;
  max-width:500px;
}

/* ================================
   TEAM IMAGE
================================ */

.sepia-team{
  position:relative;
  margin-top:0px;
  overflow:hidden;
}

.sepia-team img{
  width:100%;
  height:auto;
  aspect-ratio:4/6.35;
  object-fit:cover;
  filter:grayscale(100%);
}

.sepia-overlay{
  position:absolute;
  bottom:45px;
  left:45px;
  color:#fff;
  font-size:clamp(25px,3vw,40px);
  font-weight:600;
}

/* ================================
   CENTER COLUMN
================================ */

.sepia-center-heading{
  font-size:clamp(20px,2.5vw,30px);
  margin-bottom:20px;
  line-height:1.3;
  font-weight:300;
}

.sepia-card{
  position:relative;
  overflow:hidden;
  margin-top:20px;
}

.sepia-card img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:.4s ease;
}

.sepia-card:hover img{
  transform:scale(1.05);
}

.sepia-card::after{
  /*content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(to top, rgba(0,0,0,.75), rgba(0,0,0,.2));*/

  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60%;
  background: linear-gradient(to top, rgba(0,0,0,1), rgba(0,0,0,0));
}

.sepia-card-contente{
  position:absolute;
  bottom:45px;
  left:45px;
  color:#fff;
  font-size:clamp(20px,2vw,25px);
  font-weight:500;
  z-index:2;
}

.sepia-card-content{
  position:absolute;
  bottom:45px;
  left:45px;
  color:#fff;
  font-size:clamp(25px,3vw,40px);
  font-weight:600;
  z-index:2;
}

/* REMOVE FIXED HEIGHTS */

.sepia-mid{
  aspect-ratio:4/5;
}

.sepia-latest{
  aspect-ratio: 1 / 1.5;
}
.sepia-feature{
  aspect-ratio: 3 / 5;
}
.sepia-small{
      aspect-ratio: 4.5 / 5.04;
}

.sepia-midnow {
    aspect-ratio: 8 / 4.9;
}


.sepia-small-realestste{
  aspect-ratio: 4.7 / 5;
}

/* ================================
   SUBSCRIBE
================================ */

.sepia-subscribe{
  background:#ff6a00;
 padding: 35px 85px 35px 35px;
  color:#fff;
  margin-top:20px;
}

.sepia-subscribe p{
  font-size:clamp(18px,2vw,25px);
}

.sepia-sub-box{
  display:flex;
  margin-top:18px;
  gap:0px;
}

.sepia-sub-box input{
  flex:1;
  padding:25px;
  border:none;
  font-size:14.9px;
}

.sepia-sub-box button{
  background:#fff;
  border:none;
  padding:0 20px;
  cursor:pointer;
}

/* ================================
   RIGHT HEADING
================================ */

.sepia-latest h3{
  font-size:clamp(25px,3vw,40px);
  font-weight:600;
}

/* ================================
   SLIDER
================================ */

#logoSlide{
  transition:opacity .5s ease;
}

.m3m-slider{
  background:#fff;
  text-align:center;
  position:relative;
  margin:20px 0 0px;
}

.m3m-slide img{
  max-width:400px;
  width:100%;
  opacity:.8;
  transition:.4s ease;
  filter:grayscale(100%);
}

.m3m-arrow{
  background:transparent;
  border:none;
  font-size:28px;
  color:#c0c0c0;
  cursor:pointer;
  position:absolute;
  top:50%;
  transform:translateY(-50%);
}

.m3m-arrow.left{ left:-10px; }
.m3m-arrow.right{ right:-10px; }

.m3m-arrow:hover{
  color:#999;
}

/* ================================
   TABLET
================================ */

@media(max-width:1200px){

  .sepia-container{
    grid-template-columns:1fr 1fr;
  }

  .sepia-left{
    grid-column:1 / -1;
  }

}

/* ================================
   MOBILE
================================ */

@media(max-width:768px){

  .sepia-section{
    padding:60px 15px;
  }

  .sepia-container{
    grid-template-columns:1fr;
  }

  .sepia-left{
    padding-right:0;
  }

  .sepia-text{
    max-width:100%;
  }

.sepia-sub-box{
  display:flex;
  margin-top:18px;
  gap:0px;
}

.sepia-sub-box input{
  flex:1;
  padding:20px;
  border:none;
  font-size:14px;
}

.sepia-sub-box button{
  background:#fff;
  border:none;
  padding:0 5px;
  cursor:pointer;
}

  .m3m-arrow{
    font-size:22px;
  }

  .sepia-arrow img {
      width: 47px;
  }
  .m3m-slide img{
    max-width: 200px;
  }
  

}








/* ===== YOU GROW SECTION ===== */

.yougrow-section {
    background: #ffffff; 
    width: 100%;
    padding: 10px 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.yougrow-wrapper {
    text-align: center;
}

.yougrow-logo {
    width: 40%;     
    max-width:100%;
    opacity: 0.6; 
}


@media (max-width: 1200px) {
    .yougrow-section {
        padding: 130px 0;
    }
    .yougrow-logo {
        width: 360px;
    }
    .services-container {
        grid-template-columns: 1fr;
    }

    .services-right {
        grid-template-columns: 1fr 1fr;
    }

    .services-title {
        font-size: 48px;
    }
}

@media (max-width: 768px) {
    .yougrow-section {
        padding: 5px 0;
    }
    .yougrow-logo {
        width: 280px;
    }


  
}




.sepia-card-contents{
    position:absolute;
    bottom:50px;
    left:30px;
    color:#fff;
    font-size:30px;
    font-weight:600;
    z-index:2;

    display: grid;
    grid-template-columns: 2.9fr 1fr;
    gap: 20px;
  }
  .sepia-latestt h3 {
    font-size: 30px;
    font-weight: 600;
  }
  .n2-bottom-lines {
    position: absolute;
    bottom: 25px;
    left: 0;
    width: 100%;
    height: 3px;
    background: #ff6a00;
    z-index: 1;
}

@media (max-width: 768px) {
.services-label {
      font-size: 14px;
  }

  .sepia-card-contents{
    font-size: 25px;
    bottom: 45px;
    left: 45px;
  }

  .sepia-latestt h3 {
    font-size: 25px;
    font-weight: 600;
  }
  .mobnowar{height:60px!important;}
}
.clientele-section {
    background: #ffffff;
    padding: 90px 235px 100px;
}

.clientele-title {
    font-size: 52px;
    font-weight: 600;
    color: #ff6a00;
    margin-bottom: 70px;
    letter-spacing: 2px;
}

.clientele-logos {
    max-width: 100%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    column-gap: 10px;
    row-gap: 10px;
    align-items: center;
    justify-items: left;
}

.clientele-logos img {
    max-width: 170px;
    width: 100%;
    height: auto;
    object-fit: contain;
    transition: 0.3s ease;
}

.clientele-logos img:hover {
    transform: scale(1.05);
}



.n2-section {
    background: #ffffff;
    padding: 100px 60px;
}

.n2-wrapper {
    max-width: 1430px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.8fr;
    gap: 80px;
    align-items: start;
}

/* LEFT CONTENT */
.n2-content small {
    color: #ff6a00;
    font-size: 25px;
    letter-spacing: 2px;
    font-weight: 600;
}

.n2-title {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.1;
    margin: 10px 0 30px;
    align-items: center;
    gap: 25px;
}

.n2-title span {
  font-size: 56px;
    font-weight: 600;
    line-height: 1.4;
}

.n2-arrow {
    font-size: 60px;
    color: #ff6a00;
    font-weight: 300;
}

.n2-content p {
    font-size: 18px;
    margin-bottom: 20px;
    max-width: 100%;
    font-weight: 400;
    color: #000000;
    line-height: 1.5;
}

/* RIGHT IMAGE */
.n2-image {
    position: relative;
    overflow: hidden;
}

.n2-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Bottom orange line */
.n2-bottom-line {
    position: absolute;
    bottom: 25px;
    left: 0;
    width: 100%;
    height: 3px;
    background: #ff6a00;
}

/* Overlay text */
.n2-overlay-text {
    position: absolute;
    bottom: 50px;
    left: 45px;
    color: #fff;
    font-size: 38px;
    font-weight: 600;
    line-height: 1.2;
    max-width: 400px;
}



@media (max-width: 768px) {
  .n2-title span {
      font-size: 32px!important;
  }
  .n2-content p {
      font-size: 16px;
  }

}

.service-ctat {
    grid-column: span 1;
    color: #fff;
    font-size: 21px;
    line-height: 1.3;
    position: static;
}
.service-ctat span {
    color: #ff5a00;
    font-weight: 700;
}
.service-ctat .arrow {
    position: absolute;
    right: 20px;
    bottom: 20px;
}
/* ===== SECTION BASE ===== */
.services-section {
    background: #ffffff;
    padding: 120px 0;
    font-family: "Montserrat", sans-serif;
}

.services-container {
  width: 90%;
  max-width: 1400px;
  margin: auto;
  display: grid;
  grid-template-columns: 42% 54%;
  gap: 50px;
}
/* RIGHT GRID */

.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 600px 319px;
  gap: 20px;
}

/* HERO CARD */

.hero-card {
  grid-column: 1 / span 2;
  position: relative;
  overflow: hidden;
}

.hero-card img {
  width: 100%;
   height: 100%;
   object-fit: cover;
   transition: .4s ease;
}

.hero-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 40px;
  background: linear-gradient(to top, rgba(0,0,0,0.9), rgba(0,0,0,0));
  color: #fff;
}

/* SMALL CARD */

.small-card {
  position: relative;
  overflow: hidden;
}

.small-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}




/* RESPONSIVE */

@media (max-width: 1200px) {
  .services-container {
    grid-template-columns: 1fr;
  }
  .services-grid {
    margin-top: 60px;
  }
}

@media (max-width: 768px) {
  .section-title {
    font-size: 40px;
  }

  .services-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .hero-card {
    height: 350px;
  }

  .small-card {
    height: 280px;
    display:none;
  }
}

/* ===== LEFT CONTENT ===== */
.services-label {
    color: #ff5a00;
    font-size: 25px;
    letter-spacing: 2px;
    font-weight: 600;
}


/* ===== RIGHT GRID ===== */
.services-right {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 20px;
}

/* Tall card */
.tall {
    grid-row: span 2;
    position: relative;
    height: 600px;
}

/* Cards */
.service-card {
    position: relative;
    overflow: hidden;
    height: 290px;
    cursor: pointer;
}

.service-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    background: linear-gradient(to top, rgba(0,0,0,0.85), transparent);
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.card-overlay h3 {
    color: #fff;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.2;
}

.arrow {
    color: #ff5a00;
    font-size: 28px;
    font-weight: 700;
}

/* CTA */
.service-cta {
    grid-column: span 1;
    background: #000;
    color: #fff;
    padding: 30px;
    font-size: 15px;
    line-height: 1.6;
    position: relative;
}

.service-cta span {
    color: #ff5a00;
    font-weight: 700;
}

.service-cta .arrow {
    position: absolute;
    right: 20px;
    bottom: 20px;
}
/* Orange bottom line (only for main cards) */
.masonry-item.with-line::after{
    content:"";
    position:absolute;
    bottom:0;
    left:0;
    width:100%;
    height:4px;
    background:#f45c00;
}


@media (max-width: 768px) {

  .service-ctat {
      font-size: 18px;
  }

}

.sepia-footer{
  background:#ff6a00;
  padding:70px 12.5%;
  color:#fff;
}

.sepia-footer-top{
  display:flex;
  justify-content:space-between;
  gap:60px;
  flex-wrap:wrap;
}

.sepia-logo{
  font-size:38px;
  font-weight:700;
  margin-bottom:30px;
  font-family: "Montserrat", sans-serif;
}

.sepia-links{
  display:grid;
  grid-template-columns: repeat(2, 180px);
  gap:18px 60px;
}

.sepia-links a{
  text-decoration:none;
  color:#ffffff;
  font-family: "Montserrat", sans-serif;
}

.sepia-subscribe-footer{
  max-width:380px;
  padding: 0px 0px 0px 0px;
  color: #ffffff;
  margin-top: 20px;
}
.sepia-subscribe-footer h3{
  font-weight: 600;
  padding-bottom: 15px;
  font-family: "Montserrat", sans-serif;
}
.sepia-subscribe-footer p{
  color: #ffffff;
  font-size: 16px;
  font-family: "Montserrat", sans-serif;
}

.subscribe-box{
  display:flex;
  margin-top:15px;
}

.subscribe-box input{
  flex:1;
  padding:12px;
  border:1px solid #111;
  border-right:none;
  font-family: "Montserrat", sans-serif;
}

.subscribe-box button{
  padding:12px 20px;
  border:none;
  background:#ff6a00;
  color:#fff;
  cursor:pointer;
  font-family: "Montserrat", sans-serif;
}

.sepia-divider{
  margin:50px 0;
  border-top:1px solid #ffffff;
}

.sepia-footer-bottom{
  display:flex;
  justify-content:space-between;
  flex-wrap:wrap;
  gap:40px;
  font-family: "Montserrat", sans-serif;
}

.sepia-social{
  display:flex;
  gap:14px;
  margin-bottom:20px;
  font-family: "Montserrat", sans-serif;
}

.sepia-app-text{
  color: #000000bf;
  font-size: 14px;
  font-family: "Montserrat", sans-serif;
}
.sepia-social span{
  width:38px;
  height:38px;
  background:#ffffff;
  color:#ff6a00;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:14px;
  cursor:pointer;
  font-family: "Montserrat", sans-serif;
}

.sepia-social span:hover{
  background:#000;
  color:#ffffff;
}
.sepia-legal{
  display:flex;
  flex-wrap:wrap;
  gap:20px;
  font-size:14px;
  font-family: "Montserrat", sans-serif;
}

.sepia-legal a{
  text-decoration:none;
  color:#ffffff;
  font-family: "Montserrat", sans-serif;
}

.sepia-copy{
  margin-top:20px;
  font-size:13px;
  color:#fff;
  font-family: "Montserrat", sans-serif;
}

/* Responsive */



/* ===== RESPONSIVE ===== */

@media(max-width:900px){

  .sepia-links{
    grid-template-columns: repeat(2, 1fr);
  }

  .sepia-footer-bottom{
    flex-direction:column;
  }

  .subscribe-box{
    flex-direction:column;
  }

  .subscribe-box input{
    border-right:1px solid #111;
    margin-bottom:10px;
  }

  .subscribe-box button{
    width:100%;
  }

}


/* Responsive */



/* ===== RESPONSIVE ===== */

@media(max-width:900px){

  .sepia-footer-top{
    flex-direction:column;
  }

  .sepia-links{
    grid-template-columns: repeat(2, 1fr);
  }

  .sepia-footer-bottom{
    flex-direction:column;
  }

  .subscribe-box{
    flex-direction:column;
  }

  .subscribe-box input{
    border-right:1px solid #111;
    margin-bottom:10px;
  }

  .subscribe-box button{
    width:100%;
  }

}


/* Tablet */
@media (max-width: 1024px) {
    .clientele-logos {
        grid-template-columns: repeat(3, 1fr);
        row-gap: 60px;
        column-gap: 60px;
    }

    .clientele-title {
        font-size: 38px;
    }

    .n2-wrapper {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .n2-title {
        font-size: 42px;
    }

    .n2-overlay-text {
        font-size: 32px;
        left: 30px;
    }
}

/* Mobile */
@media (max-width: 600px) {
    .clientele-section {
        padding: 70px 20px;
    }

    .clientele-logos {
        grid-template-columns: repeat(5, 1fr);
        gap: 20px;
    }

    .clientele-title {
        font-size: 28px;
        margin-bottom: 40px;
    }

    .n2-section {
        padding: 70px 20px;
    }

    
    .n2-overlay-text {
        font-size: 18px;
        bottom: 45px;
        left: 45px;
        font-weight:300;
    }
}


/* Mobile */

@media(max-width:992px){
  .home-grid .container {
    grid-template-columns:1fr;
  }

  .big-title{
    font-size:36px;
  }
}




/* Real estate Page */


.btn-outline {
  display: inline-block;
  margin-top: 50px;
  padding: 30px 92px;
  font-size: 22px;
  text-transform: uppercase;
  border: 2px solid #ff6a00;
  border-radius: 50px;
  color: #ff6a00;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-outline2 {
    display: inline-block;
    margin-top: 50px;
    padding: 30px 60px;
    font-size: 22px;
    text-transform: uppercase;
    border: 2px solid #ff6a00;
    border-radius: 50px;
    color: #ff6a00;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-outline3 {
    display: inline-block;
    margin-top: 50px;
    padding: 30px 60px;
    font-size: 22px;
    text-transform: uppercase;
    border: 2px solid #ffffff;
    border-radius: 50px;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-outline3:hover {
  background: #ffffff;
  color: #ff6a00;
}
.btn-outline:hover {
  background: #ff6a00;
  color: #fff;
}

.btn-outline2:hover {
  background: #ff6a00;
  color: #fff;
}

.sepia-feature-realestate {
    aspect-ratio: 5 / 3;
}

.sepia-small-realestste2 {
    aspect-ratio: 7 / 5;
}

.sepia-card-newcontents{
    color: #ff6a00;
    font-size: 35px;
    font-weight: 700;
    text-align: right;
    padding: 40px;
    line-height: 1.5;
}

@media (max-width: 768px) {
  .sepia-small-realestste {
      aspect-ratio: 8 / 5;
  }

  .btn-outline2 {
    margin-top: 20px;
    padding: 20px 20px;
    font-size: 16px;
  }
  .btn-outline {
    margin-top: 20px;
    padding: 20px 20px;
    font-size: 16px;
  }
  .btn-outline3 {
    margin-top: 20px;
    padding: 20px 20px;
    font-size: 16px;
  }

  .sepia-card-newcontents {
    font-size: 22px;
  }

}

.sepia-bg {
    background: #ff6a00;
}

.services-label2 {
    color: #ffffff;
    font-size: 25px;
    letter-spacing: 2px;
    font-weight: 600;
}

.sepia-title2 {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: 1px;
    color: #ffffff;
}

.sepia-text2 {
    margin-top: 22px;
    font-size: clamp(16px, 1.2vw, 18px);
    line-height: 1.6;
    max-width: 500px;
    color: #ffffff;
}

.sepia-bg-white{background: #ffffff;
    position: relative;
    overflow: hidden;
    margin-top: 20px;
  }
.sepia-card-newcontentswhite {
    color: #ff6a00;
    font-size: 35px;
    font-weight: 700;
    text-align: left;
    padding: 38px;
    line-height: 1.5;
}

.sepia-feature-realestateorbg {
    aspect-ratio: 5 / 5;
}

.sepia-small-realestste3 {
    aspect-ratio: 5 / 5;
}

.sepia-feature-realestate3 {
    aspect-ratio: 4.6 / 3;
}

.sepia-subscribereal {
    background: #ff6a00;
    padding: 35px 37px 35px 35px;
    color: #fff;
    margin-top: 20px;
}

.sepia-subscribereal p {
    font-size: clamp(18px, 2vw, 25px);
}








/* ENQUIRY MODAL */

.model-gp{
padding-top:25px;
}

/* MODAL BACKGROUND */

.sepia-enquiry-modal{
display:none;
position:fixed;
inset:0;
background:rgba(0,0,0,0.65);
justify-content:center;
align-items:center;
z-index:9999;

padding:20px;              /* mobile spacing */
overflow-y:auto;           /* allow scroll */
}

/* MODAL BOX */

.sepia-modal-box{
background:#fff;
width:750px;
max-width:95%;
padding:35px;
border-radius:0;
position:relative;
animation:sepiaPopup .3s ease;
}

/* POPUP ANIMATION */

@keyframes sepiaPopup{
    from{transform:translateY(40px);opacity:0;}
    to{transform:translateY(0);opacity:1;}
}

.sepia-modal-box h2{
    margin-bottom:10px;
    font-size:22px;
    text-align:center;
}

.sepia-modal-box p{
    font-size:16px;
    margin-bottom:20px;
    text-align:center;
}

.sepia-modal-box .txtcl{
    width:100%;
    padding:12px;
    margin-bottom:12px;
    border:1px solid #ddd;
    border-radius:0;
    font-size:14px;
}

.sepia-submit-btn{
    width:100%;
    padding:12px;
    background:#ff6a00;
    border:none;
    color:#fff;
    font-weight:600;
    border-radius:0;
    cursor:pointer;
    margin-top:10px;
}

.sepia-close{
    position:absolute;
    top:12px;
    right:15px;
    font-size:22px;
    cursor:pointer;
}


/* ================= MOBILE ================= */

@media(max-width:768px){

.sepia-modal-box{
    padding:25px 20px;
    width:100%;
}

.sepia-modal-box h2{
    font-size:20px;
}

.sepia-modal-box p{
    font-size:14px;
}

.sepia-modal-box .txtcl{
    font-size:13px;
    padding:10px;
}

.sepia-submit-btn{
    padding:11px;
    font-size:14px;
}

.model-gp{
    padding-top:15px;
}

}

/* SMALL MOBILE */

@media(max-width:480px){

.sepia-modal-box{
    padding:20px 15px;
}

.sepia-modal-box h2{
    font-size:18px;
}

.sepia-modal-box p{
    font-size:13px;
}

}




.capabilities-section{
  background:#fff;
  padding:100px 20px;
  font-family: "Montserrat", sans-serif;
}

.capabilities-container{
    width:90%;
    max-width:1400px;
    margin:auto;
    display:flex;
    align-items: start;
    justify-content:space-between;
    gap:150px;
}

/* LEFT */
.cap-left{
    flex:1;
}

.cap-small-img{
  position: relative;
  overflow: hidden;
}

.cap-small-img img{
    width:100%;
    max-width:100%;
    height:auto;
    display:block;
    margin-bottom:60px;
}

.cap-small-img::after{
    content: "";
    position: absolute;
    bottom: 60px;
    left: 0;
    width: 100%;
    height: 60%;   /* adjust 50% / 60% as needed */
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.85),
        rgba(0, 0, 0, 0)
    );
    pointer-events: none;
}

.cap-label{
  color: #ff5a00;
  font-size: 25px;
  letter-spacing: 2px;
  font-weight: 600;
}

.cap-heading{
    display:flex;
    align-items:center;
    gap:20px;
    margin:10px 0 20px;
}

.cap-heading h2{
    font-size:clamp(32px,4vw,48px);
    font-weight:700;
    margin:0;
    color:#000;
}


.cap-arrow{
  margin-left:50px;
}

.cap-arrow img{
  width:55px;
  max-width:100%;
}

.cap-text{
  color:#333;
  margin-bottom:5px;
  margin-top:22px;
  font-size:clamp(16px,1.2vw,18px);
  line-height:1.6;
  max-width:100%;
}


/* RIGHT */
.cap-right{
    flex:1;
}

.cap-right img{
    width:100%;
    height:auto;
    display:block;
    filter:grayscale(100%);
}

/* ================= RESPONSIVE ================= */

@media(max-width:1024px){
    .cap-heading h2{
        font-size:44px;
    }
    .cap-arrow{
        font-size:44px;
    }
}

@media(max-width:768px){
  .capabilities-section {
      padding: 20px 20px;
  }
    .capabilities-container{
        flex-direction:column;
        gap:40px;
    }

    .cap-right{
        order:-1;
    }

    .cap-heading h2{
        font-size:36px;
    }

    .cap-arrow{
        font-size:36px;
    }

    .cap-text{
        max-width:100%;
    }


}


.industry-section{
    background:#fff;
   padding:100px 20px;
    font-family: "Montserrat", sans-serif;
}

.industry-container{
    width:90%;
    max-width:1400px;
    margin:auto;
    display:grid;
    grid-template-columns: repeat(3, 1fr);
    gap:80px 70px;
}

/* Item */
.industry-item{
    position:relative;
}

/* Faded arrow background */
.industry-item::after{
    content:"";
    position:absolute;
    right:-0px;
    top:0px;
    width:100%;
    height:100%;
    background:url('../images/sepia-arrow-420.png') no-repeat center;
    background-size:contain;
    opacity:0.05;
    pointer-events:none;
}

/* Label */
.industry-label{
    font-size:19px;
    font-weight:600;
    letter-spacing:1px;
    color:#000;
}

/* Heading */
.industry-item h3{
    font-size:25px;
    font-weight:700;
    color:#ff6a00;
    margin:10px 0 20px;
    line-height:1.3;
}

/* Paragraph */
.industry-item p{
    font-size:16px;
    line-height:1.7;
    color:#000;
    margin-bottom:12px;
}

/* ================= RESPONSIVE ================= */

@media(max-width:1100px){
    .industry-container{
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width:768px){
    .industry-container{
        grid-template-columns: 1fr;
        gap:50px;
    }

    .industry-item::after{
        display:none;
    }
}

.hrfdis{
  text-decoration: none;
}











.industries-section {
   background:#fff;
   padding:100px 20px;
    font-family: "Montserrat", sans-serif;
}

.container-industries {
    width:90%;
    max-width:1400px;
    margin:auto;
    display:grid;
}

/* LAYOUT */
.industries-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: start;
}

/* LEFT SIDE */
.industries-left .industries-label {
    color: #ff5a00;
    font-size: 25px;
    letter-spacing: 2px;
    font-weight: 600;
}

.industries-left h2 {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: 1px;
}
.industries-left .sepia-text {
    font-size: clamp(16px, 1.2vw, 18px);
    line-height: 1.6;
    margin-bottom: 20px;
    color: #000;
    max-width: 570px;
}

/* RIGHT GRID */
.industries-right {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.industry-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

/* CARD */
.industry-card {
    position: relative;
    overflow: hidden;
}

.industry-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* LARGE IMAGE HEIGHT */
.industry-card.large {
    height: 350px;
}

.industry-card:not(.large) {
    height: 180px;
}

/* OVERLAY */
.overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60%;
    background: linear-gradient(to top, rgba(0,0,0,0.9), rgba(0,0,0,0));
}

.overlay.dark {
    height: 70%;
}

/* TEXT */
.industry-card h3 {
    position: absolute;
    bottom: 20px;
    left: 25px;
    color: #fff;
    font-size: 32px;
    font-weight: 700;
    line-height: 1.2;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .industries-wrapper {
        grid-template-columns: 1fr;
    }

    .industries-left h2 {
        font-size: 36px;
    }

    .industry-card.large {
        height: 300px;
    }
}

@media (max-width: 600px) {
    .industry-row {
        grid-template-columns: 1fr;
    }

    .industry-card.large,
    .industry-card:not(.large) {
        height: 220px;
    }

    .industry-card h3 {
        font-size: 24px;
    }
}






 .about-section {
     background:#fff;
     padding:100px 20px;
     font-family: "Montserrat", sans-serif;
  }

  .container-about {
      width:90%;
      max-width:1400px;
      margin:auto;
      display:grid;
  }

  .about-wrapper {
    display: grid;
    grid-template-columns: 1.1fr 1.3fr;
    gap: 60px;
    align-items: start;
  }

  /* LEFT */
  .about-left .about-label{
      color: #ff5a00;
      font-size: 25px;
      letter-spacing: 2px;
      font-weight: 600;
  }

  .about-left h2 {
     font-size:clamp(32px,4vw,48px);
      font-weight:700;
      margin:0;
      color:#000;
  }



  /* RIGHT GRID */
  .about-right {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
  }

  .about-col {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  /* CARD */
  .about-card {
    position: relative;
    overflow: hidden;
    height: 100%;
  }

  .about-card.tall {
    height: 100%;
  }
  .pdtop{
      padding-top: 30%;
  }

  .about-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 55%;
    background: linear-gradient(to top, rgba(0,0,0,0.9), rgba(0,0,0,0));
  }

  .card-text {
    position: absolute;
    bottom: 20px;
    left: 20px;
    color: #fff;
    font-weight: 700;
    font-size: 20px;
  }

  /* TAGLINE */
  .tagline {
    font-size: 18px;
    line-height: 1.6;
    color: #333;
  }

  /* QUOTE BOX */
  .about-quote {
    background: #000;
    color: #fff;
    padding: 25px;
    font-size: 14px;
  }

  .about-quote span {
    font-family: cursive;
    font-size: 22px;
    display: block;
    margin-bottom: 10px;
  }

  /* ORANGE BOX */
  .about-orange {
    background: #ff6a00;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 180px;
    font-weight: 700;
    font-size: 26px;
    text-align: center;
  }
  .aborimg{width: 50%}

  /* RESPONSIVE */
  @media (max-width: 1100px) {
    .about-wrapper {
      grid-template-columns: 1fr;
    }

    .about-right {
      grid-template-columns: 1fr 1fr;
    }
  }

  @media (max-width: 768px) {
    .about-right {
      grid-template-columns: 1fr;
    }

    .about-card{
      height: 350px;
    }

    .about-left h2 {
      font-size: 40px;
    }

    .aborimg{width: 30%}

    .about-card.tall {
      height: 100%;
    }
  }


.hq-section {
    margin-bottom: 0px;
  background: #ff6a00;
   padding:100px 20px;
  font-family: "Montserrat", sans-serif;
  color: #fff;
}

.container-cont {
    width:90%;
    max-width:1400px;
    margin:auto;
    display:grid;
}

/* LAYOUT */
.hq-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
}

/* LEFT */


.hq-sub {
  margin-bottom: 15px;
  font-size: 16px;
}

 .hq-left{   position: relative;}
.hq-left::after {
    content: "";
    position: absolute;
    top: 0px;
    width: 80%;
    height: 80%;
    background: url('../images/sepia arrow 420_w.png') no-repeat center;
    background-size: contain;
    opacity: 0.1;
    pointer-events: none;
}

.hq-left h3 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 5px;
}

.address {
  font-weight: 600;
  margin-bottom: 20px;
}

.description {
  font-size: 15px;
  line-height: 1.6;
  max-width: 420px;
  margin-bottom: 40px;
}

/* OFFICE IMAGE */
.office-img img {
  width: 100%;
  max-width: 350px;
  display: block;
}

/* MAP */
.map-box {
  border: 5px solid #000;
  display: grid;
}

.map-box img {
  width: 100%;
  display: block;
}
.map-box iframe {
  width: 100%;
}

/* RESPONSIVE */
@media (max-width: 1100px) {
  .hq-wrapper {
    grid-template-columns: 1fr;
  }

  .hq-left h2 {
    font-size: 48px;
  }

  .office-img img {
    max-width: 100%;
  }
}

@media (max-width: 600px) {
  .hq-left h2 {
    font-size: 40px;
  }

  .hq-section {
    padding: 70px 0;
  }
}
@media (max-width: 768px) {
    .map-box iframe {
      width: 100%;
      height: 250px;
    }
    .sepia-logo img {width: 50%}

}





.insights-label{
    color: #ff5a00;
    font-size: 25px;
    letter-spacing: 2px;
    font-weight: 600;
}


.insights-labelmg{
    color: #ff5a00;
    letter-spacing: 2px;
    position: absolute;
    bottom: 120px;
    left: 45px;
    font-size: clamp(20px, 2vw, 25px);
    font-weight: 500;
    z-index: 2;
}
.insights-labelmg2{
    color: #ff5a00;
    letter-spacing: 2px;
    position: absolute;
    bottom: 150px;
    left: 45px;
    font-size: clamp(20px, 2vw, 25px);
    font-weight: 500;
    z-index: 2;
}


.btn-outline5 {
    display: inline-block;
    margin-top: 50px;
    margin-bottom: 50px;
    padding: 30px 60px;
    font-size: 22px;
    text-transform: uppercase;
    border: 2px solid #ff6a00;
    border-radius: 50px;
    color: #ff6a00;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-outline5:hover {
  background: #ff6a00;
  color: #ffffff;
}

.sepia-insights {
    position: relative;
    overflow: hidden;
}

.sepia-insights img {
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 9.5;
    object-fit: cover;
    filter: grayscale(100%);
}

.sepia-insights::after {
    content: "";
    position: absolute;
    bottom: 0px;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0));
    pointer-events: none;
}

@media (max-width: 768px) {
  .btn-outline5 {
    margin-top: 20px;
    padding: 20px 20px;
    font-size: 16px;
  }

  .insights-label{
    font-size: 20px;

  }
  .sepia-insights img{
    aspect-ratio: 4 / 4;
  }

}



@media(max-width:768px){

section{
padding:60px 15px !important;
}

}

.contact-sepia {
     background:#fff;
      padding:100px 20px;
      font-family: "Montserrat", sans-serif;
    }

.container-contact {
    width:90%;
    max-width:1400px;
    margin:auto;
    display:flex;
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 150px;
  position: relative;
}

/* vertical divider */
.contact-wrapper::before {
  content: "";
  position: absolute;
  left: 61%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: #ff5a0021;
}

/* LEFT SIDE */
.contsmall-title {
   color: #ff5a00;
  font-size: 25px;
  letter-spacing: 2px;
  font-weight: 600;
}

.contact-left h2 {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: 1px;
}

.intro-text {
      margin-top: 22px;
    font-size: clamp(16px, 1.2vw, 18px);
    line-height: 1.6;
    max-width: 100%;
    font-weight: 500;
     margin-bottom: 25px;
}

.note-text {
  font-size: clamp(14px, 1.2vw, 17px);
  margin-bottom: 20px;
}

.divider {
  height: 1px;
  background: #ff5a0021;
  margin: 25px 0;
}

.required-text {
  font-size: clamp(14px, 1.2vw, 17px);
  margin-bottom: 20px;
}

/* FORM */
.radio-group {
  margin-bottom: 20px;
}

.radio-group p {
  font-size: clamp(14px, 1.2vw, 16px);
  margin-bottom: 10px;
}

.radio-group label {
  display: inline-block;
  margin-right: 15px;
  margin-bottom: 8px;
   font-size: clamp(13px, 1.2vw, 15px);
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
 font-size: clamp(13px, 1.2vw, 15px);
  margin-bottom: 6px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #222;
  background: transparent;
  font-size: clamp(14px, 1.2vw, 17px);
}


/* RIGHT SIDE */
.right-title {
  color: #f05a00;
  font-size: clamp(16px, 1.2vw, 18px);
  margin-bottom: 25px;
  border-bottom: 2px solid #ffb07c;
  display: inline-block;
  padding-bottom: 5px;
}

.right-block {
  margin-bottom: 35px;
  padding-bottom: 20px;
  border-bottom: 2px solid #ffb07c;
}

.right-block h4 {
  font-size: clamp(16px, 1.2vw, 20px);
  margin-bottom: 10px;
}

.right-block .titletp {
  font-size: clamp(16px, 1.2vw, 17px);
  line-height: 1.4;
  margin-bottom: 8px;
  font-weight: 600;
}
.right-block p {
  font-size: clamp(14px, 1.2vw, 16px);
  line-height: 1.4;
  margin-bottom: 6px;
  color: #000;
}

/* CAPTCHA SECTION */
.captcha-group {
  margin-top: 20px;
}

.g-recaptcha {
  margin: 10px 0 15px;
}

.privacy-text {
  font-size: 13px;
  color: #555;
  line-height: 1.6;
  max-width: 600px;
}

/* SUBMIT BUTTON */
.submit-wrapper {
  margin-top: 25px;
}

.submit-btn {
  background: #f05a00;
  color: #fff;
  border: none;
  padding: 16px 60px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s ease;
}

.submit-btn:hover {
  background: #d94e00;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .contact-wrapper {
    grid-template-columns: 1fr;
  }

  .contact-wrapper::before {
    display: none;
  }
}

@media (max-width: 768px) {
  .contact-left h2 {
    font-size: 36px;
  }

  .contsmall-title {
     color: #ff5a00;
    font-size: 16px;
    letter-spacing: 2px;
    font-weight: 600;
  }

  .contact-left h2 {
      font-size: clamp(32px, 4vw, 48px);
      font-weight: 700;
      line-height: 1.5;
      letter-spacing: 1px;
  }
}


.sepia-feature-kb {
    aspect-ratio: 4.8 / 3;
}

.services-labelkb {
    color: #1e57a6;
    font-size: 25px;
    letter-spacing: 2px;
    font-weight: 600;
}

.sepia-titlekb {
    font-size: clamp(32px, 4vw, 50px);
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: 1px;
    color: #1e57a6;
}

.sepia-textkb {
    margin-top: 22px;
    font-size: clamp(16px, 1.2vw, 18px);
    line-height: 1.6;
    max-width: 500px;
    color: #1e57a6;
}



.kb-card{
    background:#1e57a6;
    display:flex;
    align-items:center;
    justify-content:center;
    margin-top: 20px;
}

.kb-card img{
    object-fit:contain;
    padding:0px;
    width: 100%;
}


.sepia-card-kb{
  position:relative;
  overflow:hidden;
  margin-top:20px;
}

.sepia-card-kb img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:.4s ease;
}

.sepia-card-kb:hover img{
  transform:scale(1.05);
}

.sepia-card-kb::after{
  background: none;
}

.kb-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 325px;
    width: 350px;
    height: 90px;
    background: #1e57a6;
    border-radius: 50px;
    text-decoration: none;
}

.kb-btn span {
    color: #fff;
    font-size: 30px;
}
@media (max-width: 768px) {

    .kb-btn {
      width: 180px;
      height: 60px;
      margin-top: 10px;
    }
}




.services-labelred {
    color: #e31b1b;
    font-size: 25px;
    letter-spacing: 2px;
    font-weight: 600;
}

.sepia-titlered {
    font-size: clamp(32px, 4vw, 50px);
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: 1px;
    color: #e31b1b;
}

.sepia-textred {
    margin-top: 22px;
    font-size: clamp(16px, 1.2vw, 18px);
    line-height: 1.6;
    max-width: 500px;
    color: #e31b1b;
}



.red-card{
    background:#e31b1b;
    display:flex;
    align-items:center;
    justify-content:center;
        margin-top: 20px;
}

.red-card img{
    object-fit:contain;
    padding:20px;
    width: 100%;
}


.sepia-card-red{
  position:relative;
  overflow:hidden;
  margin-top:20px;
}

.sepia-card-red img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:.4s ease;
}

.sepia-card-red:hover img{
  transform:scale(1.05);
}

.sepia-card-red::after{
  background: none;
}

.redbrik-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 325px;
    width: 350px;
    height: 90px;
    background: #e31b1b;
    border-radius: 50px;
    text-decoration: none;
}

.redbrik-btn span {
    color: #fff;
    font-size: 30px;
}
@media (max-width: 768px) {

    .redbrik-btn {
        width: 180px;
        height: 60px;
        margin-top: 10px;
    }
}



.client-section-Shri{
   background:#5a0011;
   padding:100px 20px;
   color:#fff;
   font-family: "Montserrat", sans-serif;
}

.client-container-Shri{
     width:90%;
    max-width:1400px;
    margin:auto;
    display:flex;
    gap:60px;
    align-items:flex-start;
}

/* LEFT */

.client-left-Shri{
    flex:1;
    max-width:442px;
}

.client-label-Shri{
    letter-spacing:2px;
    opacity:.9;
    font-size: 25px;
    font-weight: 600;
}

.client-title-Shri{
    margin:10px 0 25px;
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: 1px;
}

.client-left-Shri p{
    margin-bottom:20px;
    opacity:.9;
     margin-top: 22px;
    font-size: clamp(16px, 1.2vw, 18px);
    line-height: 1.6;
    max-width: 100%;
    font-weight: 500;
     margin-bottom: 25px;
}

/* BUTTON */

.client-btn-Shri{
    margin-top:350px;
    width:350px;
    height:90px;
    border-radius:50px;
    background:#eee;
    display:flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
}

.client-btn-Shri span{
    font-size:40px;
    color:#5a0011;
}

/* RIGHT GRID */

.client-right-Shri{
    flex:1.1;
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:20px;
}

.img-card-Shri:hover img{
  transform:scale(1.05);
}

.img-card-Shri{
    width:100%;
    height:100%;
    overflow:hidden;
}

.img-card-Shri img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.4s ease;
}

.logo-card-Shri{
    background:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
}

.logo-card-Shri img{
    object-fit:contain;
    padding:0px;
}

/* RESPONSIVE */

@media (max-width:1000px){

   .client-container-Shri{
       flex-direction:column;
   }

   .client-right-Shri{
       width:100%;
   }

}

@media (max-width:600px){

  .client-title-Shri{
      font-size:38px;
  }

  .client-right-Shri{
      grid-template-columns:1fr;
  }

  .img-card-Shri{
      height:220px;
  }

  .client-btn-Shri{
      width:180px;
      height:60px;
     margin-top:10px;
  }



}







.client-section-Sobti{
   background:#041541;
   padding:100px 20px;
   color:#fff;
   font-family: "Montserrat", sans-serif;
}

.client-container-Sobti{
     width:90%;
    max-width:1400px;
    margin:auto;
    display:flex;
    gap:60px;
    align-items:flex-start;
}

/* LEFT */

.client-left-Sobti{
    flex:1;
    max-width:442px;
}

.client-label-Sobti{
    letter-spacing:2px;
    opacity:.9;
    font-size: 25px;
    font-weight: 600;
}

.client-title-Sobti{
    margin:10px 0 25px;
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: 1px;
}

.client-left-Sobti p{
    margin-bottom:20px;
    opacity:.9;
     margin-top: 22px;
    font-size: clamp(16px, 1.2vw, 18px);
    line-height: 1.6;
    max-width: 100%;
    font-weight: 500;
     margin-bottom: 25px;
}

/* BUTTON */

.client-btn-Sobti{
    margin-top:350px;
    width:350px;
    height:90px;
    border-radius:50px;
    background:#eee;
    display:flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
}

.client-btn-Sobti span{
    font-size:40px;
    color:#041541;
}

/* RIGHT GRID */

.client-right-Sobti{
    flex:1.1;
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:20px;
}

.img-card-Sobti:hover img{
  transform:scale(1.05);
}

.img-card-Sobti{
    width:100%;
    height:100%;
    overflow:hidden;
}

.img-card-Sobti img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.4s ease;
}

.logo-card-Sobti{
    background:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
}

.logo-card-Sobti img{
    object-fit:contain;
    padding:0px;
    padding: 20px;
}

/* RESPONSIVE */

@media (max-width:1000px){

   .client-container-Sobti{
       flex-direction:column;
   }

   .client-right-Sobti{
       width:100%;
   }

}

@media (max-width:600px){

  .client-title-Sobti{
      font-size:38px;
  }

  .client-right-Sobti{
      grid-template-columns:1fr;
  }

  .img-card-Sobti{
      height:220px;
  }

  .client-btn-Sobti{
      width:180px;
      height:60px;
     margin-top:10px;
  }



}



.work-section {
   background:#fff;
   padding:100px 20px;
   font-family: "Montserrat", sans-serif;
}

.work-container {
  width:90%;
   max-width:1400px;
   margin:auto;
   display:grid;
}

.work-grid {
  display: grid;
  grid-template-columns: 1fr 0.75fr 0.75fr;
  column-gap: 20px;
  align-items: start;
}

/* LEFT */
.work-label {
  color: #ff5a00;
    font-size: 25px;
    letter-spacing: 2px;
    font-weight: 600;
}

.work-left h2 {
  font-size: clamp(32px, 4vw, 48px);
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: 1px;
   margin-bottom: 35px;
}

.text-block p {
  margin-top: 22px;
    font-size: clamp(16px, 1.2vw, 18px);
    line-height: 1.6;
    max-width: 100%;
    font-weight: 500;
    margin-bottom: 20px;
}



/* MIDDLE */
.middle-heading {
   font-size: clamp(18px, 2.5vw, 25px);
    margin-bottom: 20px;
    line-height: 1.3;
    font-weight: 400;
}

.image-square img {
  width: 100%;

  object-fit: cover;
}

/* RIGHT */
.work-right img {
  width: 100%;

  object-fit: cover;
}

/* RESPONSIVE */



@media (max-width: 768px) {

  .work-grid {
    grid-template-columns: 1fr;
    row-gap: 30px;
  }

  /* ORDER CONTROL FOR MOBILE */
  .work-left {
    order: 1;
  }

  .work-middle {
    order: 2;
  }

  .work-right {
    order: 3;
  }

  .work-left h2 {
    font-size: 36px;
  }

  .middle-heading {
    font-size: 18px;
  }

  .image-square img,
  .work-right img {
    width: 100%;
    height: auto;
  }

   .work-section {
      padding: 60px 15px;
   }
  .work-container {
     width:100%;
   }

   .client-section-Shri {
       padding: 60px 15px;
   }
   .client-container-Shri {
      width: 100%;
   }
   .client-section-Sobti {
       padding: 60px 15px;
   }

   .client-container-Sobti {
       width: 100%;
   }

   .industries-section {
       padding: 60px 15px;
   }
   .container-industries {
       width: 100%;
   }
   .about-section {
      padding: 60px 15px;
   }
   .container-about {
      width: 100%;
   }
   .pdtop {
       padding-top: 1%;
   }
   .contact-sepia {
      padding: 60px 15px;
   }
   .container-contact {
      width: 100%;
   }


}


.sepia-small-ppc{
  aspect-ratio: 4.3 / 5;
}

.sepia-xsmall-ppc {
    aspect-ratio: 12 / 5;
}

.sepia-feature--ppc {
    aspect-ratio: 4 / 3;
}

.sepia-small-ppc-x2{
  aspect-ratio: 6 / 5;
}

.sepia-latestt-ppc{
  aspect-ratio: 4 / 5;
}

.sepia-card-newcontents-ppc {
    color: #ff6a00;
    font-size: 28px;
    font-weight: 700;
    text-align: left;
    padding: 20px;
    line-height: 1.5;
}

.sepia-feature--ppc2 {
    aspect-ratio: 3.32 / 3;
}

.sepia-xsmall-ppc-5 {
    aspect-ratio: 9 / 5;
}

.sepia-card-newcontentswhitenew1 {
    color: #ff6a00;
    font-size: 35px;
    font-weight: 700;
    text-align: left;
    padding: 34px;
    line-height: 1.5;
}

.sepia-card-newcontentswhitenew {
    color: #ff6a00;
    font-size: 35px;
    font-weight: 700;
    text-align: left;
    padding: 86px;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .sepia-card-newcontents-ppc {
        font-size: 22px;
    }
}

.error{
  border:1px solid #ff6a00 !important;
}

.radio-error{
  outline:1px solid #ff6a00;
  padding:8px;
}


/* popup panel */
.industry-popup{
    position:absolute;
    bottom:-150%;
    left:0;
    width:100%;
    background:#ff6a00;
    color:#fff;
    padding:25px;
    transition:0.5s ease;
    z-index:3;
    font-size: 13px;
}

/* hover effect */
.industry-card:hover .industry-popup{
    bottom:0;
}

/* Right → Left movement */
@keyframes m3m-slider{
    0%{
        transform:translateX(0);
    }
    100%{
        transform:translateX(-50%);
    }
}




.form-row{
    display:flex;
    gap:20px;
    margin-top:20px;
}

.form-col{
    flex:1;
    display:flex;
    flex-direction:column;
    gap:15px;
}

.txtcl{
    width:100%;
    padding:12px;
    border:1px solid #ccc;
    border-radius:4px;
}

/* Mobile responsive */
@media (max-width:768px){

.form-row{
    flex-direction:inherit;
}

}



.media-mega-section{
  background:#fff;
  padding: 100px 20px 20px;
  font-family: "Montserrat", sans-serif;
}

.media-card{
  max-width:1400px;
  margin:auto;
  position:relative;
  border:2px solid #ff5a00;
  overflow:hidden;
}

.media-card img{
  width:100%;
  display:block;
  filter:grayscale(100%);
}

.play-btn{
  position:absolute;
  top:50%;
  left:50%;
  transform:translate(-60%,-40%);
  width:0;
  height:0;
  border-top:35px solid transparent;
  border-bottom:35px solid transparent;
  border-left:60px solid #ff5a00;
  cursor:pointer;
}

/* VIDEO MODAL */

.video-modal{
   display:none;
   position:fixed;
   top:0;
   left:0;
   width:100%;
   height:100%;
   background:rgba(0,0,0,0.85);
   z-index:9999;
   justify-content:center;
   align-items:center;
}

.video-wrapper{
   width:80%;
   max-width:900px;
   aspect-ratio:16/9;
}

.video-wrapper iframe{
   width:100%;
   height:100%;
}

.close-video{
   position:absolute;
   top:30px;
   right:40px;
   color:#fff;
   font-size:40px;
   cursor:pointer;
}
.socials-label {
    color: #ff6a00;
    font-size: 25px;
    letter-spacing: 2px;
    font-weight: 600;
}

.socials-title {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: 1px;
    color: #000000;
}

.socials-text {
    margin-top: 22px;
    font-size: clamp(16px, 1.2vw, 18px);
    line-height: 1.6;
    max-width: 500px;
    color: #333;
}

.sepia-small-social {
    aspect-ratio: 5.5 / 5;
}

.sepia-card-social {
    position: absolute;
    bottom: 50px;
    left: 30px;
    color: #fff;
    font-size: 30px;
    font-weight: 600;
    z-index: 2;
    display: grid;
    grid-template-columns: 2.9fr 1fr;
    gap: 80px;
}

@media (max-width: 768px) {
  .media-mega-section {
     padding: 60px 15px 15px;
   }
   .socials-label {
      font-size: 15px;
  }
  
  .sepia-card-newcontentswhite{
      font-size: 30px;
  }
}