/* =========================================================
   JS BUILDERS & REAL ESTATE — ABOUT PAGE
   Design direction: "Blueprint & Sandstone"
   Jodhpur sandstone warmth + architectural blueprint precision.
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,500;9..144,600;9..144,700;9..144,900&family=Poppins:wght@300;400;500;600;700;800&display=swap');

:root{
  --ink:        #1B2430;   /* deep charcoal navy — structure   */
  --ink-soft:   #3A4457;
  --sand:       #C9A24B;   /* sandstone gold — accent          */
  --sand-light: #E4C978;
  --brick:      #A24B32;   /* Jodhpur sandstone/brick — accent2*/
  --paper:      #F7F4EC;   /* warm off-white background        */
  --paper-dim:  #EFEAD e;
  --line:       rgba(27,36,48,0.12);
  --white:      #ffffff;

  --font-head: 'Fraunces', serif;
  --font-body: 'Poppins', sans-serif;

  --radius: 14px;
  --ease: cubic-bezier(.22,1,.36,1);
  --shadow-sm: 0 6px 18px rgba(27,36,48,0.08);
  --shadow-md: 0 16px 40px rgba(27,36,48,0.12);
  --shadow-lg: 0 24px 60px rgba(27,36,48,0.18);
}

*{ box-sizing: border-box; }

html{ scroll-behavior: smooth; }

body{
  margin:0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

.container{
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

img{ max-width: 100%; display:block; }

a{ text-decoration:none; color: inherit; }

ul{ list-style:none; margin:0; padding:0; }

::selection{ background: var(--sand); color: var(--ink); }

/* -------- scrollbar -------- */
::-webkit-scrollbar{ width:10px; }
::-webkit-scrollbar-track{ background: var(--paper); }
::-webkit-scrollbar-thumb{ background: var(--ink-soft); border-radius: 10px; }

/* =========================================================
   REVEAL / ENTRANCE ANIMATIONS (keyframes used across page)
   ========================================================= */
@keyframes fadeUp{
  from{ opacity:0; transform: translateY(28px); }
  to{ opacity:1; transform: translateY(0); }
}
@keyframes fadeIn{
  from{ opacity:0; } to{ opacity:1; }
}
@keyframes scaleIn{
  from{ opacity:0; transform: scale(.92); }
  to{ opacity:1; transform: scale(1); }
}
@keyframes drawLine{
  from{ width:0; } to{ width:56px; }
}
@keyframes floatY{
  0%,100%{ transform: translateY(0); }
  50%{ transform: translateY(-10px); }
}
@keyframes kenBurns{
  0%{ transform: scale(1) translate(0,0); }
  100%{ transform: scale(1.14) translate(-1%, -1%); }
}
@keyframes slideCycle{
  0%, 30%{ opacity:1; }
  33%, 100%{ opacity:0; }
}
@keyframes pulseRing{
  0%{ box-shadow: 0 0 0 0 rgba(162,75,50,0.45); }
  100%{ box-shadow: 0 0 0 18px rgba(162,75,50,0); }
}
@keyframes shimmer{
  0%{ background-position: -200% 0; }
  100%{ background-position: 200% 0; }
}
@keyframes bounceUp{
  0%,100%{ transform: translateY(0); }
  50%{ transform: translateY(-6px); }
}

@media (prefers-reduced-motion: reduce){
  *{ animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior:auto !important; }
}

/* =========================================================
   TOP BAR
   ========================================================= */
.top-bar{
  background: var(--ink);
  color: rgba(255,255,255,0.85);
  font-size: 0.82rem;
  letter-spacing: .2px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.top-bar .container{
  display:flex;
  justify-content: space-between;
  align-items:center;
  flex-wrap: wrap;
  gap: 6px 18px;
  padding-block: 9px;
}
.top-bar i{
  color: var(--sand);
  margin-right: 6px;
}
.top-bar > .container > div{
  display:flex;
  align-items:center;
  transition: color .25s var(--ease);
}
.top-left:hover, .top-center:hover, .top-right:hover{ color: var(--sand-light); }

/* =========================================================
   NAVBAR
   ========================================================= */
header{
  position:sticky ;
  top:0;
  z-index: 1000;
  background: rgba(247,244,236,0.85);
  backdrop-filter: blur(14px) saturate(160%);
  -webkit-backdrop-filter: blur(14px) saturate(160%);
  border-bottom: 1px solid var(--line);
  animation: fadeIn .6s var(--ease);
}
.navbar{
  display:flex;
  align-items:center;
  justify-content: space-between;
  padding-block: 14px;
}
/* .logo img{
  transition: transform .35s var(--ease); }*/

/* .logo:hover img{ transform: scale(1.045) rotate(-1deg); } */

.nav-links{
  display:flex;
  align-items:center;
  gap: 6px;
}
.nav-links li a{
  position:relative;
  display:inline-block;
  padding: 10px 18px;
  font-weight: 500;
  font-size: 0.96rem;
  color: var(--ink-soft);
  border-radius: 999px;
  transition: color .3s var(--ease), background .3s var(--ease);
}
.nav-links li a::after{
  content:"";
  position:absolute;
  left: 18px; right: 18px; bottom: 6px;
  height: 2px;
  background: var(--brick);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s var(--ease);
}
.nav-links li a:hover,
.nav-links li a.active{
  color: var(--ink);
  background: rgba(201,162,75,0.16);
}
.nav-links li a:hover::after,
.nav-links li a.active::after{ transform: scaleX(1); }

.menu-btn{
  display:none;
  font-size: 1.4rem;
  width: 46px; height:46px;
  align-items:center; justify-content:center;
  border-radius: 12px;
  background: var(--ink);
  color: var(--paper);
  cursor:pointer;
  transition: transform .25s var(--ease), background .25s var(--ease);
}
.menu-btn:hover{ background: var(--brick); transform: rotate(90deg); }

/* =========================================================
   HERO
   ========================================================= */
.about-hero{
  position: relative;
  min-height: 62vh;
  display:flex;
  align-items:center;
  overflow: hidden;
  isolation: isolate;
}
.hero-slider{
  position:absolute; inset:0;
  z-index:-2;
}
.slide{
  position:absolute; inset:0;
  background-size: cover;
  background-position: center;
  opacity:0;
  animation: slideCycle 15s infinite, kenBurns 15s infinite ease-in-out;
}
.slide:nth-child(1){
  background-image: linear-gradient(135deg, #2b3245, #1b2430 60%);
  animation-delay: 0s, 0s;
}
.slide:nth-child(2){
  background-image: linear-gradient(135deg, #4a3527, #1b2430 60%);
  animation-delay: 5s, 5s;
}
.slide:nth-child(3){
  background-image: linear-gradient(135deg, #5b451f, #1b2430 60%);
  animation-delay: 10s, 10s;
}
.slide.active{ opacity:1; }

.overlay{
  position:absolute; inset:0;
  z-index:-1;
  background:
    radial-gradient(circle at 15% 20%, rgba(201,162,75,0.16), transparent 45%),
    linear-gradient(180deg, rgba(27,36,48,0.55), rgba(27,36,48,0.82));
}
/* faint blueprint grid — the page's signature motif */
.about-hero::after{
  content:"";
  position:absolute; inset:0;
  z-index:-1;
  background-image:
    linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: radial-gradient(circle at 30% 40%, black, transparent 75%);
}

.hero-content{
  color: var(--paper);
  padding-block: 90px;
}
.hero-tag{
  display:inline-flex;
  align-items:center;
  gap:8px;
  font-size: .78rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--sand-light);
  padding: 8px 16px;
  border: 1px solid rgba(228,201,120,0.4);
  border-radius: 999px;
  background: rgba(228,201,120,0.08);
  animation: fadeUp .7s var(--ease) .1s both;
}
.hero-content h1{
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(2.1rem, 5vw, 3.6rem);
  line-height: 1.12;
  margin: 20px 0 18px;
  max-width: 14ch;
  animation: fadeUp .8s var(--ease) .25s both;
}
.hero-content p{
  max-width: 56ch;
  font-size: 1.02rem;
  line-height: 1.7;
  color: rgba(247,244,236,0.82);
  animation: fadeUp .8s var(--ease) .4s both;
}

/* =========================================================
   SECTION TAGS / TITLES (shared)
   ========================================================= */
.section-tag{
  display:inline-block;
  font-size: .76rem;
  letter-spacing: 2.2px;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--brick);
  position: relative;
  padding-bottom: 10px;
  margin-bottom: 6px;
}
.section-tag::after{
  content:"";
  position:absolute;
  left:0; bottom:0;
  height: 3px;
  background: var(--sand);
  border-radius: 3px;
  animation: drawLine 1s var(--ease) .2s both;
}
.section-title{
  font-family: var(--font-head);
  text-align:center;
  font-size: clamp(1.7rem, 3.4vw, 2.5rem);
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 48px;
  position: relative;
}
.section-title::after{
  content:"";
  display:block;
  width: 56px; height:4px;
  background: var(--brick);
  border-radius: 4px;
  margin: 16px auto 0;
}

/* =========================================================
   ABOUT COMPANY
   ========================================================= */
.about-company{ padding-block: 100px; }
.about-wrapper{
  display:grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 60px;
  align-items:center;
}
.about-image{
  position:relative;
  border-radius: var(--radius);
  overflow:hidden;
  box-shadow: var(--shadow-md);
  animation: scaleIn .8s var(--ease) both;
}
.about-image::before{
  content:"";
  position:absolute; inset:0;
  border: 10px solid var(--paper);
  outline: 1px solid var(--line);
  border-radius: var(--radius);
  z-index:2;
  pointer-events:none;
}
.about-image img{
  width:100%; height:100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  transition: transform .6s var(--ease);
}
.about-image:hover img{ transform: scale(1.08) rotate(.5deg); }

.about-content h2{
  font-family: var(--font-head);
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  font-weight: 700;
  margin: 4px 0 18px;
  line-height:1.25;
}
.about-content h3{
        margin-top: 22px;
  font-family: var(--font-head);
  font-style: italic;
  color: var(--brick);
  font-weight: 600;
}
.about-content p{
  color: var(--ink-soft);
  line-height: 1.8;
  margin-bottom: 14px;
}
.about-features{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin: 26px 0 32px;
}
.feature{
  display:flex;
  align-items:center;
  gap: 10px;
  font-weight: 500;
  font-size: .95rem;
  padding: 12px 14px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.feature i{
  color: var(--brick);
  font-size: 1.05rem;
}
.feature:hover{
  transform: translateY(-4px);
  box-shadow: var(--shadow-sm);
  border-color: var(--sand);
}

/* -------- buttons -------- */
.btn{
  position:relative;
  display:inline-flex;
  align-items:center;
  gap:10px;
  background: var(--ink);
  color: var(--paper);
  font-weight: 600;
  font-size: .95rem;
  padding: 15px 30px;
  border-radius: 999px;
  overflow: hidden;
  isolation: isolate;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), color .35s var(--ease);
  box-shadow: var(--shadow-sm);
}
.btn::before{
  content:"";
  position:absolute; inset:0;
  z-index:-1;
  background: linear-gradient(120deg, var(--brick), var(--sand));
  transform: translateX(-101%);
  transition: transform .45s var(--ease);
}
.btn::after{
  content:"\f061";
  font-family:"Font Awesome 6 Free";
  font-weight:900;
  font-size:.8rem;
  transform: translateX(-6px);
  opacity:0;
  transition: all .35s var(--ease);
}
.btn:hover{
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.btn:hover::before{ transform: translateX(0); }
.btn:hover::after{ transform: translateX(0); opacity:1; }
.btn:active{ transform: translateY(-1px) scale(.98); }

/* =========================================================
   COMPANY STATS
   ========================================================= */
.company-stats{
  padding-block: 70px;
  background: var(--ink);
  color: var(--paper);
  position: relative;
  overflow:hidden;
}
.company-stats::before{
  content:"";
  position:absolute; inset:0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 36px 36px;
}
.stats-grid{
  position:relative;
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.stat-box{
  text-align:center;
  padding: 30px 16px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  background: rgba(255,255,255,0.03);
  transition: transform .4s var(--ease), background .4s var(--ease), border-color .4s var(--ease);
}
.stat-box i{
  font-size: 1.9rem;
  color: var(--sand);
  margin-bottom: 12px;
  display:inline-block;
  animation: floatY 3.4s ease-in-out infinite;
}
.stat-box h2{
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin: 0 0 4px;
  background: linear-gradient(90deg, var(--sand-light), var(--sand));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.stat-box p{
  margin:0;
  font-size: .9rem;
  letter-spacing: .4px;
  color: rgba(247,244,236,0.7);
}
.stat-box:hover{
  transform: translateY(-8px);
  background: rgba(255,255,255,0.06);
  border-color: var(--sand);
}

/* =========================================================
   DIRECTOR SECTION
   ========================================================= */
.director-section{ padding-block: 100px; background: var(--paper-dim, #efeade); }
.director-wrapper{
  display:grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 60px;
  align-items:center;
}
.director-image{
  position:relative;
  border-radius: var(--radius);
  overflow:hidden;
  box-shadow: var(--shadow-md);
}
.director-image::after{
  content:"";
  position:absolute; inset:0;
  background: linear-gradient(180deg, transparent 60%, rgba(27,36,48,0.55));
}
.director-image img{
  width:100%;
  aspect-ratio: 4/5;
  object-fit:cover;
  transition: transform .6s var(--ease);
}
.director-image:hover img{ transform: scale(1.08); }

.director-content h2{
  font-family: var(--font-head);
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  font-weight:700;
  margin: 4px 0 18px;
}
.director-content p{
  color: var(--ink-soft);
  line-height:1.8;
  margin-bottom: 14px;
  position: relative;
  padding-left: 20px;
}
.director-content p::before{
  content:"\201C";
  position:absolute;
  left:-4px; top:-6px;
  font-family: var(--font-head);
  font-size: 2rem;
  color: var(--sand);
  line-height:1;
}
.director-content h3{
  margin-top: 22px;
  font-family: var(--font-head);
  font-style: italic;
  color: var(--brick);
  font-weight: 600;
}

/* =========================================================
   WHY CHOOSE US
   ========================================================= */
.why-choose{ padding-block: 100px; }
.choose-grid{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.choose-card{
  position:relative;
  padding: 34px 26px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  text-align:center;
  overflow:hidden;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s var(--ease);
}
.choose-card::before{
  content:"";
  position:absolute;
  top:-40%; left:-40%;
  width:180%; height:180%;
  background: radial-gradient(circle, rgba(201,162,75,0.14), transparent 60%);
  opacity:0;
  transition: opacity .4s var(--ease);
}
.choose-card i{
  font-size: 1.9rem;
  color: var(--brick);
  width: 64px; height:64px;
  display:flex; align-items:center; justify-content:center;
  margin: 0 auto 18px;
  background: rgba(162,75,50,0.09);
  border-radius: 50%;
  transition: transform .4s var(--ease), background .4s var(--ease);
}
.choose-card h3{
  font-family: var(--font-head);
  font-size: 1.15rem;
  margin: 0 0 10px;
}
.choose-card p{
  color: var(--ink-soft);
  font-size: .92rem;
  line-height: 1.65;
  margin:0;
}
.choose-card:hover{
  transform: translateY(-10px);
  box-shadow: var(--shadow-md);
  border-color: var(--sand);
}
.choose-card:hover::before{ opacity:1; }
.choose-card:hover i{
  transform: rotate(-8deg) scale(1.08);
  background: var(--brick);
  color: var(--paper);
}

/* =========================================================
   CTA SECTION
   ========================================================= */
.cta-section{
  margin: 0 24px 100px;
  padding: 70px 24px;
  text-align:center;
  border-radius: 24px;
  background: linear-gradient(120deg, var(--ink), #2c3648 60%, var(--ink));
  color: var(--paper);
  position: relative;
  overflow:hidden;
}
.cta-section::before{
  content:"";
  position:absolute; inset:0;
  background-image: linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
                     linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(circle at 50% 50%, black, transparent 80%);
}
.cta-section h2{
  position:relative;
  font-family: var(--font-head);
  font-size: clamp(1.7rem, 3.6vw, 2.6rem);
  margin: 0 0 14px;
}
.cta-section p{
  position:relative;
  max-width: 52ch;
  margin: 0 auto 30px;
  color: rgba(247,244,236,0.78);
}
.cta-section .btn{ position:relative; background: var(--sand); color: var(--ink); }
.cta-section .btn::before{ background: linear-gradient(120deg, var(--brick), var(--sand-light)); }
.cta-section .btn:hover{ color: var(--paper); }

/* =========================================================
   FOOTER
   ========================================================= */
footer{
  background: var(--ink);
  color: rgba(247,244,236,0.75);
  padding-top: 70px;
}
.footer-grid{
  display:grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
footer h3{
  font-family: var(--font-head);
  color: var(--paper);
  font-size: 1.2rem;
  margin: 0 0 18px;
}
footer p{ line-height: 1.75; font-size: .93rem; margin: 0 0 8px; }
footer ul li{ margin-bottom: 10px; }
footer ul li a{
  font-size: .93rem;
  position: relative;
  transition: color .3s var(--ease), padding-left .3s var(--ease);
}
footer ul li a::before{
  content:"\f105";
  font-family:"Font Awesome 6 Free";
  font-weight:900;
  margin-right: 8px;
  color: var(--sand);
  opacity:0;
  transition: opacity .3s var(--ease);
}
footer ul li a:hover{ color: var(--sand-light); padding-left: 4px; }
footer ul li a:hover::before{ opacity:1; }

.copyright{
  text-align:center;
  font-size: .82rem;
  padding: 22px 0;
  color: rgba(247,244,236,0.5);
}

/* =========================================================
   FLOATING BUTTONS
   ========================================================= */
.whatsapp-btn, .call-btn, #topBtn{
  position: fixed;
  right: 26px;
  width: 56px; height:56px;
  border-radius: 50%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size: 1.4rem;
  color: var(--paper);
  z-index: 999;
  border: none;
  cursor:pointer;
  box-shadow: var(--shadow-md);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.whatsapp-btn{
  bottom: 26px;
  background: #25D366;
  animation: pulseRing 2.2s infinite, floatY 3s ease-in-out infinite;
}
.call-btn{
  bottom: 94px;
  background: var(--brick);
  animation: floatY 3s ease-in-out infinite .3s;
}
.whatsapp-btn:hover, .call-btn:hover{
  transform: scale(1.1) translateY(-2px);
  box-shadow: var(--shadow-lg);
}

#topBtn{
  bottom: 162px;
  background: var(--ink);
  border: 1px solid rgba(255,255,255,0.15);
  opacity:0;
  visibility:hidden;
  transform: translateY(16px);
}
#topBtn.show{
  opacity:1;
  visibility:visible;
  transform: translateY(0);
}
#topBtn:hover{
  background: var(--sand);
  color: var(--ink);
  transform: translateY(-4px);
}

/* =========================================================
   RESPONSIVE — TABLET
   ========================================================= */
/* =========================================================
   RESPONSIVE — TABLET
   ========================================================= */
@media (max-width: 1024px){
  .about-/* =========================================================
   RESPONSIVE — SMALL MOBILE
========================================================= */

@media (max-width:480px){

.container{
    padding:0 16px;
}

header{
    padding:0;
}

.logo img{
    width:140px;
    height:auto;
}

.about-hero{
    min-height:48vh;
}

.hero-content{
    padding-block:55px;
}

.hero-tag{
    font-size:.70rem;
    padding:7px 14px;
}

.hero-content h1{
    font-size:1.9rem;
    line-height:1.25;
}

.hero-content p{
    font-size:15px;
    line-height:1.7;
}

.section-title,
.about-content h2,
.director-content h2{
    font-size:1.8rem;
}

.about-company,
.director-section,
.why-choose,
.company-stats{
    padding-block:60px;
}

.feature{
    font-size:14px;
    padding:10px 12px;
}

.stat-box,
.choose-card{
    padding:25px 18px;
}

.btn{
    width:100%;
    justify-content:center;
    padding:14px 20px;
}

.cta-section{
    margin:0 10px 70px;
    padding:45px 18px;
    border-radius:18px;
}

.cta-section h2{
    font-size:1.8rem;
}

.cta-section p{
    font-size:15px;
}

.whatsapp-btn,
.call-btn,
#topBtn{
    width:46px;
    height:46px;
    right:15px;
    font-size:18px;
}

.whatsapp-btn{
    bottom:18px;
}

.call-btn{
    bottom:74px;
}

#topBtn{
    bottom:130px;
}

}

/* Extra Small Phones */

@media (max-width:360px){

.hero-content h1{
    font-size:1.6rem;
}

.hero-content p{
    font-size:14px;
}

.section-title,
.about-content h2,
.director-content h2{
    font-size:1.5rem;
}

.nav-links{
    width:100%;
}

}