* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root{
  --text-font: "Inter";
}

.float-btn {
  position: fixed;
  bottom: 20px;      /* distance from bottom of screen */
  right: 20px;        /* position on left side */
  width: 60px;       /* button size */
  height: 60px;
  background-color: #25D366; /* WhatsApp green */
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* WhatsApp icon styling */
.float-btn img {
  width: 35px
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 50px;
  position: relative;
  z-index: 1001;
}

.logo{
  height: 90px;
  width: 60px;
}

.logo img{
  height: 100%;
  width: 100%;
  object-fit: cover;
}

/* Center logo only on desktop */
@media screen and (min-width: 769px) {
  .header {
    grid-template-columns: 1fr auto 1fr; /* Left | Center | Right */
  }

  .socials {
    justify-self: start;
  }

  .logo {
    justify-self: center; /* stays centered */
  }

  .desktop-menu {
    justify-self: end;
  }
}


    .socials {
      display: flex;
      gap: 15px;
    }

    .logo {
      font-size: 25px;
      font-family: "Inter";
      font-weight: bold;
    }

    .desktop-menu a {
      margin-left: 20px;
      text-decoration: none;
      color: black;
      font-family: "Inter";
      font-weight: 300;
      font-size: 13px;
    }

    .socials img{
      width: 20px;
    }

    /* Hamburger hidden on desktop */
    .ham-menu {
      display: none;
      flex-direction: column;
      cursor: pointer;
      gap: 5px;
      z-index: 1002;
    }
    .ham-menu span {
      height: 3px;
      width: 25px;
      background: black;
      border-radius: 2px;
      transition: 0.3s;
    }

    /* Mobile menu (hidden by default) */
    .mobile-menu {
      display: flex;
      flex-direction: column;
      position: fixed;
      top: 0;
      right: -100%;
      width: 250px;
      height: 100%;
      background: rgba(242, 232, 229  , 1);
      padding: 80px 20px;
      transition: right 0.3s ease-in-out;
      z-index: 1000;
    }
    .mobile-menu a {
      margin: 15px 0;
      text-decoration: none;
      color: black;
      font-size: 18px;
      font-family: "Inter";
      font-size: 15px;
    }
    .mobile-menu.active {
      right: 0;
    }

    /* Hamburger animation when active */
    .ham-menu.active span:nth-child(1) {
      transform: rotate(45deg) translate(5px, 5px);
      background: white;
    }
    .ham-menu.active span:nth-child(2) {
      opacity: 0;
    }
    .ham-menu.active span:nth-child(3) {
      transform: rotate(-45deg) translate(5px, -5px);
      background: white;
    }

    /* Responsive */
    @media screen and (max-width: 768px) {
      .desktop-menu {
        display: none;
      }
      .ham-menu {
        display: flex;
      }
      .socials {
        display: none;
      }
      .header{
        padding: 10px 30px;
      }
    }



    /* HERO SECTION */


.hero-section{
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 5px 30px;
}

.hero-section > div{
    height: 530px;
    width: 1200px;
    position: relative;
}

.hero-section img{
    width: 100%;
    height: 100%;
    object-fit: cover;
   border-radius: 30px;
}

.hero-text{
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  color: #fff;
  z-index: 1;
  gap: 70px;
  padding: 40px 40px;
  font-family: "Inter";
}

.hero-text h1{
  text-transform: uppercase;
  font-size: 65px;
  max-width: 600px;
}

.hero-text p{
  font-size: 15px;
  max-width: 400px;
  line-height: 25px;
  font-weight: 300;
}

.session-button a{
  background-color: #673858;
  padding: 10px 30px;
  color: rgb(230, 230, 230);
  border-radius: 30px;
  font-size: 12px;
  text-decoration: none;
  border: 1px solid white;
}

@media screen and (max-width:768px){
    .hero-section{
        padding: 5px 30px;
    }

    .hero-text{
      gap: 45px !important;
    }

    .hero-text h1{
      font-size: 45px !important;
    }

    .hero-text p{
      font-size: 13px !important;
    }
}

.quotes{
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.quotes > div{
    max-width: 480px;
}

.quotes p{
    text-transform: uppercase;
    font-size: 12px;
    font-family: "Inter";
    font-weight: 300;
    margin-bottom: 20px;
}

.quotes h2{
    font-family: "Instrument Serif";
    font-weight: 300;
    font-size: 35px;
    margin-bottom: 20px;
}

.quotes a{
    display: inline-block;
    font-family: "Inter";
    font-weight: 300;
    font-size: 12px;
    text-transform: uppercase;
    color: black;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
}

.quotes a:hover{
    transform: scale(1.1);
}


@media screen and (max-width:768px) {
    .quotes h2{
        font-size: 30px;
    }    

    .quotes{
        padding: 50px 30px;
    }

}



/* ABOUT DESIGNER SECTION */

.about{
  padding: 50px 5px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%; 
  height: 100vh;      /* stretch to full width */
  max-width: 1200px; /* optional: limit max width */
  gap: 30px;         /* space between text and image */
    background-color: rgba(242, 232, 229  , 0.5);
    border-radius: 30px;
    padding: 35px 10px;
    padding-left: 30px;
    padding-right: 30px;
}




.about-text{
  display: flex;
  flex-direction: column;
  text-align: left;
  justify-content: flex-start;
  max-width: 500px;
  gap: 40px;
}

.about-text h2{
  font-family: "Instrument Serif";
  font-size: 35px;
  font-weight: 300;
  text-transform: uppercase;
}

.stats{
  display: flex;
  flex-direction: row;
  gap: 60px;
}

.stats > div{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 10px 20px;
  border-radius: 20px;
  border: 0.5px solid #673858;
  box-shadow: 0 4px 10px #c099b3;
}

.stats p{
  text-transform: capitalize;
  font-size: 12px !important;
  color: #636363;
}



.about-text p{
  font-family: "Inter";
  font-size: 13px;
  font-weight: 300;
  line-height: 25px;
}

.about-img {
  width: 500px;
  height: 550px;
}

.about-img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 30px;
}

/* Overlay background */
.cert-lightbox-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  display: none;              /* hidden by default */
  align-items: center;
  justify-content: center;
  padding: 16px;
  z-index: 1000;
}

/* When open */
.cert-lightbox-overlay.is-open {
  display: flex;
}

/* Lightbox box */
.cert-lightbox {
  background: rgb(245, 243, 240);
  border-radius: 16px;        /* rounded corners */
  border: 2px solid #673858;  /* your requested color */
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  padding: 24px 20px 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
  position: relative;
}

/* Close button */
.cert-lightbox-close {
  position: absolute;
  top: 10px;
  right: 12px;
  background: transparent;
  border: none;
  font-size: 24px;
  font-weight: 500;
  cursor: pointer;
  line-height: 1;
}

/* Title & content */
.cert-lightbox h3 {
  font-size: 45px;
    font-family: "Instrument Serif";
    text-align: center;
    font-weight: 300;
    text-transform: capitalize;
    color: black;
    margin-bottom: 20px;
}

.cert-subtitle {
  margin: 10px;
    font-size: 11px;
    color: rgb(68, 68, 68);
    line-height: 1.4;
    font-family: var(--text-font);
}

.cert-list {
  margin: 0;
  padding-left: 18px;
  line-height: 1.6;
  font-size: 14px;
  color: #3a2d2d;
  font-weight: 600;
  font-family: var(--text-font);
}

.cert-list li{
  text-transform: capitalize;
}

.cert-list span{
  text-transform: uppercase;
}

/* Responsive: thoda compact mobile pe */
@media screen and (max-width: 600px) {
  .cert-lightbox {
    max-width: 100%;
    border-radius: 14px;
    padding: 18px 16px 16px;
  }

  .cert-lightbox h3 {
    font-size: 30px;
  }

  .cert-subtitle,
  .cert-list {
    font-size: 13px;
  }
}



@media screen and (max-width:768px) {
  .about-content{
    flex-direction: column;
    padding: 25px !important;
    height: auto;
  }  

  .about-text{
    gap: 20px;
  }
  .about-text h2{
    text-align: center;
    font-size: 32px;
  }

  .about-img{
    width: 275;
    height: 350px;
  }

  .about-text p {
    text-align: justify;
  }

  .about{
    padding: 45px 30px !important;
  }
  .session-button{
    margin-top: 20px;
  }
  .stats{
    display: grid;
      grid-template-columns: repeat(2, 1fr); /* 2 columns */
  grid-template-rows: repeat(2, auto);   /* 2 rows */
  gap: 16px;  
  margin-top: 20px ;
  }
  .stats h2{
    margin-bottom: 0 !important;
  }

  .stats p{
    font-size: 12px !important;
    text-align: center;
  }

}


/* VISIT US */

.visitus{
  padding: 10px 40px;
}

.visitus-div{
  display: flex;
  padding: 40px 40px;
  background-color: #F5F3F0;
  border-radius: 30px;
}

.visitus-text{
  display: flex;
  flex-direction: column;
  flex: 1 1 0;
  justify-content: center;
  align-items: flex-start;
  gap: 10px;
}


.visitus-text h2{
  font-family: "Instrument Serif";
  font-size: 35px;
  font-weight: 300;
  margin-bottom: 40px;
  text-transform: uppercase;
  margin-bottom: 15px !important;
}

.visitus-text h3{
  font-family: "Inter";
  font-weight: 400;
  text-transform: uppercase;
  font-size: 15px;
}

.visitus-text p{
  font-family: "Inter";
  font-weight: 300;
  font-size: 13px;
}

.visitus-text img{
  width: 20px;
  height: 20px;
}

.visitus-text > a > div{
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
}

.visitus-text a{
  color: #000;
  text-decoration: underline;
}

.whatsapp-icon img{
  height: 17px !important;
  width: 17px !important;
  margin-left: 2px;
}

.visitus-map{
  width: 600px;
}

.visitus-map img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 30px;
  box-shadow: 0 4px 10px #c099b3;
}

.visitus a{
  transition: all 0.3s ease-in-out;
}

.visitus a:hover{
  transform: scale(1.05);
}
@media screen and (max-width:768px){

  .visitus{
    padding:10px 30px;
  }
  .visitus-div{
    flex-direction: column;
    gap: 30px;
    padding:  30px;
  }

  .visitus-map {
    width: 255px;
    height: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
  }

}

/* Hide the cursor only on precise pointers (not touch) */


.cursor-label {
  position: fixed;
  left: 0; top: 0;
  transform: translate(12px, 12px); /* small offset from pointer */
  background: #673858;
  color: #fff;
  font-size: 12px;
  line-height: 1;
  padding: 10px;
  border-radius: 20px;
  pointer-events: none;
  opacity: 0;
  transition: opacity .12s ease;
  z-index: 9999;
  white-space: nowrap;
}
.cursor-label.visible { opacity: 1; }




/* TESTIMONAILS */

.testimonial{
  padding: 50px 30px;
}

.testimonial-div{
  display: flex;
  gap: 30px;
}

.testimonial-div2,
.testimonial-div5,
.testimonial-div6 {
  height: 500px;
    flex: 1; /* equal width for all */
    border-radius: 30px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.testimonial-div5 img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 30px;
}

.testimonial-divs{
  justify-content: center;
  display: flex;
  flex-direction: column;
  gap: 20px;
  border-radius: 30px;
  padding: 30px;
  flex: 1;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.testimonial h3{
  font-family: "Inter";
  font-weight: 600;
  font-size: 13px;
  line-height: 25px;
}

.testimonial h4{
  font-weight: 300;
  font-family: "Inter";
  font-size: 12px;
}

@media  screen and (max-width:768px) {
  .testimonial-div{
    flex-direction: column;
  }  

  .testimonial-div2, .testimonial-div6{
    flex-direction: row;
  }

  .testimonial-divs{
    padding: 30px 20px !important;
    gap: 10px !important;
  }

  .testimonial-divs h3{
    font-size: 12px !important;
  }
}



/* END IMG */

.hero-text.end{
  justify-content: center;
  align-items: center;
  text-align: center;
}

.hero-text.end h2{
  font-size: 35px;
  max-width: 500px;
}

.endimg{
  position: relative;
}

.endimg::after{
  content:"";
   background: rgba(255, 182, 193, 0.3);
     position: absolute;
  inset: 0;
  border-radius: 30px;
}

@media screen and (max-width:768px) {
  .endimg img{
    height: 500px !important ;
  }  
}





/* FOOTER */

.footer {
  color: #000;
  font-family: "Inter";
  font-size: 13px;
  font-weight: 300;
  line-height: 25px;
  padding: 50px 70px;
}

/* Top section layout */
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1200px;
  margin: 0 auto 30px auto;
  flex-wrap: wrap;
  gap: 30px;
}

/* Left: logo + address */
.footer-left {
  max-width: 600px;
}

.footer-socials {
  display: flex;
  gap: 5px;
  margin-top: 10px;
  justify-content: center;
  align-items: center;
}

.footer-socials a {
  font-size: 20px;
  color: #000;
  text-decoration: none;
  transition: all 0.3s ease-in-out
}

.footer-socials a img{
  width: 25px !important;
}



.footer-socials a:hover {
  transform: translateY(-10px);
}


.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
}

.footer-logo img {
  width: 140px;
  height: auto;
}

/* Right side: 3 columns */
.footer-right {
  display: flex;
  gap: 50px;
  flex-wrap: wrap;
}

.footer-column h4 {
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 10px;
}

.footer-column a,
.footer-column p {
  display: block;
  text-decoration: none;
  color: #673858;
  margin-bottom: 2px;
  font-weight: 400;
  transition: color 0.3s ease;
}

.footer-column a:hover {
  color: #666;
}

/* Bottom */
.footer-bottom {
  border-top: 1px solid #ddd;
  padding-top: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
  gap: 15px;
}

.footer-links a {
  margin-left: 20px;
  text-decoration: none;
  color: #000;
  font-size: 13px;
}

.footer-links a:hover {
  color: #666;
}

/* Mobile responsive */
@media (max-width: 768px) {
  .footer-top {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-right {
    justify-content: center;
    text-align: center;
    flex-direction: column-reverse;
    gap: 15px;

  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 10px;
    font-size: 10px;
  }

  .footer-links a {
    margin-left: 10px;
  }

  .footer-socials {
    align-items: center;
    justify-content: center;
  }

  .all-links{
    justify-content: center !important;
  }
}




/* Custom circle cursor */






/* contact form */

 .contact-section {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      align-items: flex-start;
      max-width: 1200px;
      margin: 50px auto;
      padding: 0 20px;
    }

    .contact-left{
      padding: 20px;
      box-sizing: border-box;
    }

    /* Left side info */
    .contact-left h2 {
      font-family: "Instrument Serif";
  font-size: 35px;
  font-weight: 300;
  text-align: center;
  text-transform: uppercase;
    }

    .contact-left p {
      font-size: 12px;
      color: black;
      font-family: "Inter";
      font-weight: 300;
      margin-bottom: 30px;
      line-height: 20px;
      text-align: center;
    }

    .contact-info{
      display: flex;
      gap: 140px;
    }

    .contact-info p {
      margin: 10px 0;
      font-size: 13px;
      font-family: "Inter";
      font-weight: 300;
    }

    .contact-info a {
      color: black;
      text-decoration: underline;
    }

    .contact-info span {
      display: block;
      font-weight: 600;
      margin-bottom: 3px;
    }
    /* Right side form */
  
  

    /* Divider */
    .divider {
      width: 1px;
      background: #ccc;
      margin: 0 20px;
    }



    /* Responsive */
    @media (max-width: 768px) {
      .contact-section {
        flex-direction: column;
        align-items: center;
        padding: 5px !important;
        margin: 0 20px;
      }


      .divider {
        display: none;
      }

      .contact-left, .contact-right {
        flex: 1 1 100%;
        padding: 10px 10px;
      }

      .contact-left-p{
        text-align: center;
      }

      .contact-left h2 {
        text-align: center;
      }

      .contact-info{
        padding: 0px 20px;
        flex-direction: column;
        gap: 10px;
      }
  }

  /* ANIMATIONS */

  .all-links.location img{
    position: relative;
    animation: float 2s ease-in-out infinite;
  }

  @keyframes float {
  0%, 100% {
    transform: translateY(0);   /* start & end at normal position */
  }
  50% {
    transform: translateY(-3px); /* move up by 15px */
  }
}

.all-links.phone img{
    display: inline-block;
  animation: shake 2s infinite; /* full cycle = shake + pause */
}

@keyframes shake {
  /* Start still */
  0%, 90%, 100% {
    transform: translate(0, 0) rotate(0);
  }

  /* Short burst of shake around 10%–30% of the animation */
  10% { transform: translate(-2px, 0) rotate(-5deg); }
  15% { transform: translate(2px, 0) rotate(5deg); }
  20% { transform: translate(-2px, 0) rotate(-5deg); }
  25% { transform: translate(2px, 0) rotate(5deg); }
  30% { transform: translate(0, 0) rotate(0); }
}

.shanj-work-heading{
    font-size: 55px;
    font-family: "Instrument Serif";
    text-align: center;
    font-weight: 300;
    text-transform: uppercase;
    color: black;
    margin-bottom: 20px;
}


/* grid */
.work-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 25px;     
  
  padding: 30px 60px;/* controls all spacing */
}

/* card */
.hero-card {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;      /* uniform heights */
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 0 10px #6738587f;
  margin: 0;                /* <<< remove big gaps */
}

/* image fills card */
.hero-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* pink box on image */
.overlay-box {
  position: absolute;
  left: 50%;
  bottom: 14px;             /* lift a bit from bottom */
  transform: translateX(-50%);
  width: 86%;               /* inset so corners show */
  background: #D7A6A5;
  padding: 16px 18px;
  border-radius: 20px;      /* all corners 20px */
  text-align: center;
  box-shadow: 0 3px 10px rgba(0,0,0,0.15);
}

/* tidy text */
.overlay-box h2 {
  margin: 0;
  font-size: 14px;
  color: #3a2d2d;
  font-weight: 600;
  font-family: var(--text-font);
  text-transform: uppercase;
}
.overlay-box p {
  margin: 6px 0 0;
  font-size: 10px;
  color: rgb(68, 68, 68);
  line-height: 1.4;
  font-family: var(--text-font);
}

/* responsive */
@media (max-width: 900px) {
  .work-grid { grid-template-columns: repeat(2, 1fr);
  padding: 30px; }
}
@media (max-width: 560px) {
  .work-grid { grid-template-columns: 1fr; }
}
