/* about-header-section */
.about-header-section {
  display: flex;
  height: 100vh;
  padding-top: 70px;
}

.about-header-section-left {
  width: 60%;
  height: 100vh;
  background-image: url('./image/wall-img');
  background-size: 100% 150%;     /* Zoom out vertically to show top half */
  background-position: top;       /* Align image to top */
  background-repeat: no-repeat;
   background-size: cover;          /* ✅ Fully covers the area */   /* ✅ Keeps image centered */
}

.about-header-section-right {
  width: 40%;
  height: auto;
  padding: 0px 120px;
  padding-top: 200px;
}
.art{
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin: 0;
    font-weight: 200;
    color: #000;
    font-family: Barlow, sans-serif;
    padding: 10px 0px;
}
.about-head{
        font-family: Julius Sans One, sans-serif;
        text-transform: uppercase;
        font-weight: 300;
        color: #000;
        font-size: 55px;
        margin: 0;
        padding: 20px 0px;
}
.about-para.top{
    font-family: Barlow, sans-serif;
    font-size: 17px;
    letter-spacing: 1px;
    margin: 0;
    font-weight: 200;
    width: 80%;
    padding-top: 20px;
}

/* about-gallery-section */
.about-gallery-section{
 background-color: #ffffff;
  padding: 150px 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.about-gallery-section-head {
  font-size: 55px;
  text-align: center;
  position: relative;
  margin-bottom: 40px;
  font-weight: 300;
  width: 70%;
  font-family: Julius Sans One, sans-serif;
}

.about-gallery-section-head::after {
  content: "";
  display: block;
  width: 100px;
  height: 0.5px;
  background-color: rgba(0, 0, 0, .3); /* or your preferred color */
  margin: 40px auto 0 auto; /* centers the line */
}

/* image-section */
.image-section{
    display: flex;
    padding: 10px 80px;
    gap: 50px;
}
.image-section-left{
    width: 45%;
}
.image-section-right{
    width: 55%;
}
.image-hover-wrapper {
  position: relative;
  overflow: hidden;
  display: inline-block;
}

.wall-image {
  width: 100%;
  height: auto;
  transition: transform 0.5s ease;
  display: block;
}

.image-hover-wrapper::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.2); /* white transparency */
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}

.image-hover-wrapper:hover .wall-image {
  transform: scale(1.05); /* slight zoom */
}
.image-hover-wrapper:hover .wall {
  transform: scale(1.05); /* slight zoom */
}


.image-hover-wrapper:hover::after {
  opacity: 1;
}

.lorem{
    font-size: 20px;
    color: #000;
    margin: 0;
     font-family: Barlow, sans-serif;
     padding: 20px 0px;
     line-height: 28px;
}
.white-space{
    width: 100%;
    height: auto;
}
.image-grid{
    display: flex;
    gap: 50px;
}
.image-grid-left{
    width: 55%;
}
.image-grid-right{
    width: 45%;
}
.frames-wrap{
    width: 100%;
    height: 450px;
}
.wrap-img{
     width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.top-img-grid{
    padding-bottom: 50px;
}
.frame-hall{
    width:220px;
    height: 280px;
}
.image-hover-wrapper {
  position: relative;
  overflow: hidden;
  display: inline-block;
}

.image-hover-wrapper img {
  transition: transform 0.5s ease;
  display: block;
}

.image-hover-wrapper::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.2); /* white overlay */
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
  z-index: 1;
}

.image-hover-wrapper:hover img {
  transform: scale(1.05);
}

.image-hover-wrapper:hover::after {
  opacity: 1;
}

/* start-section */
.start-section{
    background-color: #F3F3F3;
  padding: 120px 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 30px;
}
.start-section-head {
  font-size: 56px;
  margin: 0;
  font-family: Julius Sans One, sans-serif;
  font-weight: 400;
  text-align: center;
  padding: 80px 0px;
}
/* scroll-image-section */
.scroll-image-grid{
  padding: 100px 0px;
  padding-top: 0;
  margin-top: 150px;
  background-color: #F3F3F3;
}
.scroll-image-section{
 position: relative;
  height: 80vh;
  padding-top: 20vh;
}
.baground-section{
   position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 0;
}

 .baground-img-wrapper{
  background-image: url(./image/wall-banner);
   background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 100%;
  width: 100%;
  will-change: transform;
  transition: transform 0.1s linear; 
 }
 .work-section{
   position: sticky;
  top: 0vh;
  width: 65%;
  margin-left: auto;
  background-color: #ffffff;
  padding: 60px 90px;
  z-index: 1;
  text-align: center;
 }
 .work-section-head{
  margin: 0;
  text-transform: uppercase;
  text-align: left;
  font-weight: 200;
  color: #000;
  font-size: 38px;
   font-family: Julius Sans One, sans-serif;
   line-height: 40px;
   padding: 20px 0px;
    position: relative;
 }
 .work-section-head::after {
  content: "";
  display: block;
  width: 100px;
  height: 0.5px;
  background-color: rgba(0, 0, 0, 0.3); /* or your preferred color */
  margin: 40px auto 0 auto; /* top margin, center horizontally */
}
.work-section-box{
  display: flex;
  gap: 50px;
  padding-bottom: 50px;
  padding-top: 30px;
}
.work-section-grid{
  width: 50%;
  text-align: left;
}
.work-btn{
  width: auto;
  padding: 20px 0px;
  border-radius: 5px;
   font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin: 0;
    font-weight: 200;
    color: white;
    font-family: Barlow, sans-serif;
    background-color: #000;
}