body{
margin:0;
font-family:'Open Sans',sans-serif;
background:#f7f7f7;
padding-top:90px; 
}

/* NAVBAR */

.nav{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:20px 70px;
  background:white;
  box-shadow:0px 2px 10px rgba(0,0,0,0.05);

  position:fixed;   /* 🔥 important */
  top:0;
  left:0;
  width:100%;
  z-index:1000;
}

#dateTime{
  position: fixed;
  top: px;
  left: 25px;
  background: black;
  color: #fff;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 13px;
  font-family: 'Poppins', sans-serif;
  z-index: 2000;
}
/* 📱 MOBILE VIEW */
@media (max-width:768px){
  #dateTime{
    display: none;
  }
}
.logo{
display:flex;
align-items:center;
gap:10px;
font-weight:600;
font-size:18px;
}

.logo img{
height:300px;
width:auto;
min-width:120px;   /* force size */
object-fit:contain;
}

.nav{
  height:75px;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:20px;
}

.menu{
  display:flex;
  list-style:none;
  margin:0;
  padding:0;
}

.menu li{
margin:0 20px;
cursor:pointer;
transition:.3s;
}

.menu a{
text-decoration:none;
color:black;
font-weight:500;
}

.menu li:hover{
color:#C8A96A;
transform:translateY(-2px);
}

/* BUTTON */

.btn{
background:black;
color:white;
border:none;
padding:12px 28px;
border-radius:30px;
cursor:pointer;
transition:.4s;
}

.btn:hover{
background:#C8A96A;
transform:scale(1.05);
}

/* MENU ICON */

.menuIcon{
display:none;
font-size:30px;
cursor:pointer;
}

/* HOME */

.home{
display:flex;
align-items:center;
justify-content:space-between;
padding:90px;
position:relative;
}

.watermark{
position:absolute;
font-size:120px;
font-family:Montserrat;
color:rgba(0,0,0,0.04);
top:120px;
left:80px;
font-weight:bold;
pointer-events:none;
}

.homeText{
width:45%;
z-index:1;
}

.homeText h1{
font-size:55px;
font-family:Montserrat;
margin:0;
}

.homeText p{
color:#555;
line-height:28px;
margin-top:15px;
}

.buttons{
margin-top:35px;
}

.dark{
background:black;
color:white;
border:none;
padding:15px 35px;
border-radius:30px;
margin-right:15px;
cursor:pointer;
transition:.4s;
}

.dark:hover{
background:#C8A96A;
transform:translateY(-3px);
}

.light{
background:white;
border:1px solid black;
padding:15px 35px;
border-radius:30px;
cursor:pointer;
transition:.4s;
}

.light:hover{
background:black;
color:white;
transform:translateY(-3px);
}

/* HOME IMAGES */

.homeImages{
width:45%;
display:flex;
gap:25px;
z-index:1;
}

.homeImages img{
width:32%;
height:320px;
object-fit:cover;
border-radius:12px;
box-shadow:0px 15px 35px rgba(0,0,0,0.15);
transition:.5s;
}

.homeImages img:hover{
transform:translateY(-10px) scale(1.05);
}
/* MOBILE VIEW */
@media (max-width:768px){

.home{
flex-direction:column;
padding:40px 20px;
text-align:center;
}

.watermark{
font-size:60px;
top:80px;
left:20px;
}

.homeText{
width:100%;
}

.homeText h1{
font-size:32px;
}

.homeText p{
font-size:15px;
line-height:24px;
}

.buttons{
display:flex;
flex-direction:column;
gap:15px;
align-items:center;
}

.dark{
width:200px;
padding:12px;
margin-right:0;
}

.light{
width:200px;
padding:12px;
}

/* IMAGES MOBILE */

.homeImages{
width:100%;
margin-top:30px;
justify-content:center;
}

.homeImages img{
width:30%;
height:180px;
}

}

/* SMALL MOBILE */

@media (max-width:480px){

.homeText h1{
font-size:26px;
}

.watermark{
font-size:40px;
top:60px;
}

.homeImages{
flex-direction:column;
align-items:center;
}

.homeImages img{
width:90%;
height:200px;
}

.dark,.light{
width:90%;
}

}
@media (max-width:768px){

.homeImages img{
width:28%;      /* reduced from 32% */
height:160px;  /* reduced from 320px */
}

}

@media (max-width:480px){

.homeImages img{
width:60%;      /* reduced from 90% */
height:150px;
}

}
/* PRACTICE STRIP */

.practiceStrip{
background:#f5f5f5;
display:flex;
justify-content:center;
gap:15px;
padding:20px;
}

.stripBox{
background:white;
display:flex;
align-items:center;
gap:15px;
padding:15px 22px;
width:240px;
border:1px solid #ddd;
transition:.4s;
cursor:pointer;
}

.stripBox h4{
margin:0;
font-size:15px;
font-family:Montserrat;
}

.stripBox p{
margin:0;
font-size:12px;
color:#666;
}

.icon{
width:45px;
height:45px;
border:1px solid black;
display:flex;
align-items:center;
justify-content:center;
transition:.3s;
}

.icon svg{
stroke:black;
}

.stripBox:hover{
background:rgb(0, 0, 0);
color:rgb(255, 255, 255);
}

.stripBox:hover p{
color:#929191;
}

.stripBox:hover .icon{
border:1px solid white;
}

.stripBox:hover .icon svg{
stroke:white;
}

.active{
background:black;
color:rgb(0, 0, 0);
}
/* TABLET */
@media (max-width:768px){

.practiceStrip{
flex-wrap:wrap;
padding:15px;
gap:10px;
}

.stripBox{
width:45%;
padding:12px;
}

.icon{
width:40px;
height:40px;
}

.stripBox h4{
font-size:14px;
}

.stripBox p{
font-size:11px;
}

}

/* MOBILE */
@media (max-width:480px){

.practiceStrip{
flex-direction:column;
align-items:center;
padding:15px 10px;
}

.stripBox{
width:95%;
padding:12px 15px;
}

.icon{
width:38px;
height:38px;
}

.stripBox h4{
font-size:13px;
}

.stripBox p{
font-size:11px;
}

}
/* ABOUT */
.about{
padding:90px 10%;
background:#ffffff;
color:rgb(0, 0, 0);
}

.aboutContainer{
display:flex;
align-items:center;
gap:60px;
}

/* Images */

.aboutImages{
width:50%;
display:grid;
grid-template-columns:repeat(2,1fr);
gap:15px;
}

.aboutImages img{
width:100%;
height:170px;
object-fit:cover;
border-radius:12px;
transition:.4s;
}

.img1{
grid-column:span 2;
height:260px;
}

.aboutImages img:hover{
transform:scale(1.05);
}

/* Content */

.aboutContent{
width:50%;
}

.aboutContent h2{
font-size:42px;
font-family:'Playfair Display',serif;
margin-bottom:15px;
}

.aboutContent span{
color:#635843;
}

.aboutContent p{
font-family:Poppins;
color:#4b4949;
line-height:28px;
font-size:15px;
margin-bottom:15px;
}

/* Features */

.aboutFeatures{
display:grid;
grid-template-columns:repeat(2,1fr);
gap:12px;
margin:25px 0;
}

.feature{
background:rgba(255,255,255,0.05);
padding:12px;
border-radius:8px;
font-family:Poppins;
font-size:14px;
border-left:3px solid #656464;
}

/* Stats */

.aboutStats{
display:flex;
gap:25px;
margin:25px 0;
}

.statBox h3{
margin:0;
color:#000000;
font-size:26px;
font-family:Playfair Display;
}

.statBox p{
margin:0;
font-size:13px;
color:#838282;
font-family:Poppins;
}

/* Button */

.aboutBtn{
display:inline-block;
margin-top:10px;
padding:12px 28px;
background:#000000;
color:rgb(255, 255, 255);
text-decoration:none;
border-radius:6px;
font-family:Poppins;
transition:.3s;
}

.aboutBtn:hover{
background:white;
}

/* Responsive */

@media(max-width:992px){

.aboutContainer{
flex-direction:column;
}

.aboutImages{
width:100%;
}

.aboutContent{
width:100%;
}

}

@media(max-width:600px){

.about{
padding:60px 6%;
}

.aboutContent h2{
font-size:30px;
}

.aboutImages img{
height:140px;
}

.img1{
height:200px;
}

.aboutStats{
flex-direction:column;
gap:10px;
}

}
/* MOBILE VIEW */
@media (max-width:768px){

.about{
padding:50px 20px;
text-align:center;
}

.aboutContainer{
flex-direction:column;
gap:30px;
}

.aboutImages{
width:100%;
grid-template-columns:1fr;
}

.aboutImages img{
height:150px;
}

.img1{
grid-column:span 1;
height:180px;
}

.aboutContent{
width:100%;
}

.aboutContent h2{
font-size:28px;
}

.aboutContent p{
font-size:14px;
line-height:24px;
}

/* FEATURES */

.aboutFeatures{
grid-template-columns:1fr;
gap:10px;
}

.feature{
font-size:13px;
padding:10px;
}

/* STATS */

.aboutStats{
flex-direction:column;
align-items:center;
gap:15px;
}

.statBox h3{
font-size:22px;
}

.statBox p{
font-size:12px;
}

/* BUTTON */

.aboutBtn{
width:200px;
padding:10px;
}

}

/* SMALL MOBILE */

@media (max-width:480px){

.aboutContent h2{
font-size:24px;
}

.aboutImages img{
height:130px;
}

.img1{
height:160px;
}

.aboutBtn{
width:90%;
}

}
@media (max-width:768px){

.aboutStats{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:10px;
text-align:center;
}

.statBox h3{
font-size:20px;
}

.statBox p{
font-size:11px;
}

}
/* SERVICES */
.services{
padding:90px 10%;
background:#f4f4f4;
}

.servicesContainer{
display:flex;
gap:60px;
align-items:center;
}

/* Left */

.servicesLeft{
width:45%;
}

.servicesLeft h1{
font-family:'Libre Baskerville',serif;
font-size:48px;
line-height:60px;
margin-bottom:20px;
letter-spacing:1px;
}

.servicesLeft p{
font-family:Montserrat;
color:#555;
line-height:28px;
margin-bottom:25px;
}

.serviceBtn{
background:black;
color:white;
padding:14px 30px;
text-decoration:none;
font-family:Montserrat;
font-size:14px;
letter-spacing:1px;
transition:.3s;
}

.serviceBtn:hover{
background:#C8A96A;
}

/* Right */

.servicesRight{
width:55%;
display:grid;
grid-template-columns:repeat(2,1fr);
gap:20px;
}

.serviceCard{
background:white;
padding:25px;
border:1px solid #ddd;
transition:.3s;
}

.serviceCard h3{
font-family:'Libre Baskerville',serif;
font-size:18px;
margin-bottom:8px;
}

.serviceCard p{
font-family:Montserrat;
font-size:14px;
color:#666;
}

.serviceCard:hover{
background:black;
color:white;
transform:translateY(-6px);
}

.serviceCard:hover p{
color:#ddd;
}

.serviceCard.dark{
background:black;
color:white;
border-radius:1px;
border:1px solid #C8A96A;
box-shadow:0 10px 25px rgba(0,0,0,0.3);
}
.serviceCard.dark p{
color:#ccc;
}

/* Responsive */

@media(max-width:900px){

.servicesContainer{
flex-direction:column;
}

.servicesLeft{
width:100%;
}

.servicesRight{
width:100%;
}

}

@media(max-width:600px){

.servicesRight{
grid-template-columns:1fr;
}

.servicesLeft h1{
font-size:32px;
line-height:42px;
}

.services{
padding:60px 6%;
}

}
/* MOBILE VIEW */

@media (max-width:768px){

.services{
padding:50px 20px;
text-align:center;
}

.servicesContainer{
flex-direction:column;
gap:30px;
}

.servicesLeft{
width:100%;
}

.servicesLeft h1{
font-size:30px;
line-height:40px;
}

.servicesLeft p{
font-size:14px;
line-height:24px;
}

.serviceBtn{
display:inline-block;
width:200px;
padding:12px;
}

.servicesRight{
width:100%;
grid-template-columns:repeat(2,1fr);
gap:15px;
}

.serviceCard{
padding:18px;
}

.serviceCard h3{
font-size:16px;
}

.serviceCard p{
font-size:13px;
}

}

/* SMALL MOBILE */

@media (max-width:480px){

.servicesRight{
grid-template-columns:1fr;
}

.servicesLeft h1{
font-size:26px;
}

.serviceBtn{
width:90%;
}

.serviceCard{
padding:15px;
}

}
/* FOOTER */

.footer{
background:#0a0a0a;
color:#ccc;
padding:40px 8% 10px;
font-size:13px;
}

.footerGrid{
display:grid;
grid-template-columns:repeat(5,1fr);
gap:30px;
}

.footerBox h3{
color:white;
font-size:16px;
margin-bottom:12px;
font-family:Montserrat;
}

.footerImages{
display:grid;
grid-template-columns:repeat(2,1fr);
gap:6px;
}

.footerImages img{
width:100%;
height:55px;
object-fit:cover;
filter:grayscale(100%);
}

.footer ul{
list-style:none;
padding:0;
}

.footer ul li{
margin:6px 0;
cursor:pointer;
}

.social{
display:flex;
gap:10px;
}

.circle{
  width:34px;
  height:34px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  background:#222;
  font-size:16px;
  transition:0.3s;
  text-decoration:none;
}

.circle:link,
.circle:visited{
  text-decoration:none;
}

.whatsapp{ color:#25D366; }

.gmail i{
  color:#EA4335;
}

.circle:hover{
  transform: scale(1.1);
}

.footerBottom{
border-top:1px solid #222;
margin-top:25px;
padding-top:10px;
text-align:center;
font-size:12px;
color:#888;
}
/* TABLET */

@media (max-width:900px){

.footerGrid{
grid-template-columns:repeat(2,1fr);
gap:20px;
}

}

/* MOBILE */

@media (max-width:600px){

.footer{
padding:30px 20px 10px;
text-align:center;
}

.footerGrid{
grid-template-columns:1fr;
gap:25px;
}

.footerImages{
grid-template-columns:repeat(3,1fr);
}

.footerImages img{
height:50px;
}

.social{
justify-content:center;
}

.footerBox h3{
font-size:15px;
}

.footer ul li{
font-size:13px;
}

.footerBottom{
font-size:11px;
}

}
@media (max-width:600px){

.footerGrid{
grid-template-columns:repeat(2,1fr);
}

/* Make only first, second and last full width */

.footerBox:nth-child(1){
grid-column:1 / span 2;
text-align:center;
}

.footerBox:nth-child(2){
grid-column:1 / span 2;
}

.footerBox:nth-child(5){
grid-column:1 / span 2;
text-align:center;
}

/* Services left */
.footerBox:nth-child(3){
grid-column:1;
text-align:left;
}

/* Quick links right */
.footerBox:nth-child(4){
grid-column:2;
text-align:left;
}

}

/* MOBILE */

@media(max-width:900px){

.nav{
padding:15px 25px;
}

.menuIcon{
display:block;
}

.menu{
position:absolute;
top:70px;
left:0;
width:100%;
background:black;
flex-direction:column;
display:none;
text-align:left;
padding:20px;
}

.menu.active{
display:flex;
}

.menu li{
padding:14px;
border-bottom:1px solid #222;
}

.menu a{
color:white;
}

.menu li:hover{
background:#C8A96A;
}

.menu li:hover a{
color:black;
}

.btn{
display:none;
}

.home{
flex-direction:column;
padding:40px 20px;
text-align:center;
}

.homeText{
width:100%;
}

.homeImages{
width:100%;
margin-top:30px;
}

.homeImages img{
width:100%;
height:200px;
}

.practiceStrip{
flex-direction:column;
align-items:center;
}

.stripBox{
width:95%;
}

.aboutContainer{
flex-direction:column;
}

.aboutImageGroup,
.aboutContent{
width:100%;
text-align:center;
}

.serviceGrid{
grid-template-columns:1fr;
}

.footerGrid{
grid-template-columns:1fr;
text-align:center;
}

.social{
justify-content:center;
}

}


/* POPUP */

.popup{

position:fixed;

top:0;

left:0;

width:100%;

height:100%;

background:rgba(0,0,0,0.7);

display:none;

align-items:center;

justify-content:center;

z-index:2000;

}

/* CONTENT */

.popupContent{

background:white;

padding:35px;

width:400px;

border-radius:8px;

position:relative;

animation:popup .3s;

}

@keyframes popup{

from{transform:scale(.8);}

to{transform:scale(1);}

}

.popupContent h2{

margin-top:0;

font-family:Montserrat;

}

/* CLOSE */

.closeBtn{

position:absolute;

right:15px;

top:10px;

font-size:20px;

cursor:pointer;

}

/* FORM */

.popupContent input,
.popupContent select,
.popupContent textarea{

width:100%;

padding:10px;

margin:8px 0;

border:1px solid #ddd;

font-family:Open Sans;

}

.popupContent textarea{

height:90px;

resize:none;

}

.bookBtn{

width:100%;

background:black;

color:white;

border:none;

padding:12px;

cursor:pointer;

margin-top:10px;

transition:.3s;

}

.bookBtn:hover{

background:#C8A96A;

}

/* MOBILE */

@media(max-width:500px){

.popupContent{

width:90%;

}

}
