* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: inherit;
    font-family: 'Poppins', sans-serif;
}

body {
    width: 100%;
    height: 100%;
    color: #fff;
    position: relative;
}

body::-webkit-scrollbar {
    display: none;
}


main {
    width: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 1;

}
.work-w-u{
    width: 100%;
    background: #fff;
    border-radius: 0 0 10px 10px;
}

.header_wrap {
    max-width: 100%;
    height: 75px;
    background: #000;
    color: #fff;
}
.header_wrap-1{
    max-width: 100%;
    height: 75px;
    background: #fff;
    color: #000;
}

/* navigation menu  */

.navbar {
    max-width: 1300px;
    height: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo{
    text-decoration: none;
    cursor: pointer;
}
.menu_bar{
    display: flex;
    align-items: center;
    gap: 250px;
}

.primary-nav ul {
    display: flex;
    gap: 50px;
}
ul li{
    list-style: none;

}
li a{
    font-family:'poppins',sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #fff;
    text-decoration: none;
}
.primary-1 a{
    font-family:'poppins',sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #000;
}

.logo_icon{
    width: 35px;
}
.contact{
    display: flex;
    justify-content: center;
    align-items: center;
    background: #fff;
    color: #000;
    font-weight: 600;
    border-radius: 30px;
    padding: 0 30px;
    height: 45px;
    cursor: pointer;
}
.contact-1{
    display: flex;
    justify-content: center;
    align-items: center;
    background: #000;
    color: #fff;
    font-weight: 600;
    border-radius: 30px;
    padding: 0 30px;
    height: 45px;
    cursor: pointer;
}

/* media querry  */



/* end of navigation  */


.wrapper {
    max-width: 100%;
    height: 100vh;
    background-image: url(../images/bg.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    display: flex;
    align-content: center;
    justify-content: center;
}


.hero_content {
    margin-top: 10rem;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 8rem;
}

.h-title {
    text-transform: uppercase;
    font-size: 155px;
    font-weight: 700;
    line-height: 50px;
    letter-spacing: -0.2rem;
    columns: #fff;
}
.upper{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3.5rem;

}

.sub-h-txt{
    max-width: 1300px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-transform: uppercase;
    font-size: 16px;
    font-weight: 600;
    color: #929292;
}

.below {
    max-width: 1300px;
    width: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
}

.about_tag {
    width: 350px;
    font-size: 20px;
    font-weight: 500;
    line-height: 1.1;
}

.year_tag {
    margin-right: 12rem;
    font-weight: 700;
    font-size: 50px;
    color: #929292;
}

.scroll {
    font-weight: 500;
    font-size: 15px;
    margin-bottom: 1.5rem;
}
.section_works {
    width: 100%;
    background: #fff;
}
.section_w_1{
    max-width: 1300px;
    width: 100%;
    height: auto; 
    margin: 0 auto;
    display: flex;
    justify-content: center;
    gap: 10em;
    flex-wrap: wrap; 
    padding: 20px;
}

.selected_work {
    display: flex;
    flex-direction: column;
    gap: 40px;
    width: 100%;
}

.work_select {
    font-family: 'Inter Tight', sans-serif;
    height: 80px;
    font-size: 50px; 
    font-weight: 700;
    color: #000;
}

.wrap_work_ui {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.seg_ui {
    width: 100%; 
    height: 542px;
    background: #000;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 108%; 
    align-items: flex-end;
    transition: background-size 300ms;
    overflow: hidden;
    position: relative;
    border-radius: 4px;
    cursor: pointer;
}

.seg_ui:hover {
    background-size: 110%;
}

.seg_ui::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.0); 
    transition: background 300ms;
    z-index: 1;
}

.seg_ui:hover::after {
    background: rgba(0, 0, 0, 0.3); /* Dark overlay on hover */
}

.details_ui {
    font-family: 'Inter Tight', sans-serif;
    font-size: 1.75em; 
    font-weight: 600;
    color: #fff;
    margin-bottom: 20px;
    margin-left: 50px;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 2;
}

.seg_1 {
    background-image: url(../images/bbrand_photography-15052024-0005.jpeg);
}

.seg_2 {
    background-image: url(../images/bbrand_photography-15052024-0003.jpeg);
}

.seg_3 {
    background-image: url(../images/bbrand_photography-15052024-0011.jpeg);
}
.all-work{
    width: 150px; 
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000;
    color: #fff;
    font-weight: 500;
    border-radius: 30px;
    font-size: 15px;
    cursor: pointer;
}

.about_section{
   width: 100%;
   background: #fff;

}
.about_section {
    width: 100%;
    background: #fff;
    padding: 40px 0;
}

.about-section-1 {
    max-width: 1300px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    border-radius: 8px;
}

.about_wrap {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.upper_about {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 15px;
    color: #000;
}

.about_p {
    font-family: 'Inter Tight', sans-serif;
    font-size: 50px;
    font-weight: 700;
    color: #000;
}

.lower_about {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    position: relative;
}

.work_2ger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    position: absolute;
    z-index: 2;
    text-align: center;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.lets_work {
    width: 90%;
    margin: 0 auto;
    padding: 10px;
}

.lets_work p {
    font-family: 'Inter Tight';
    font-size: 4vw;
    font-weight: 400;
    color: #fff;
    line-height: 1.2;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.7);
    margin: 0;
}

.img_about {
    width: 100%;
    height: 0;
    padding-bottom: 40.91%;
    background: url(../images/bbrand_photography-15052024-0004.jpeg) no-repeat center center/cover;
    background-size: cover;
    border-radius: 4px;
    position: relative;
}

.img_about::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    border-radius: 4px;
}

.work_tag {
    margin: 20px auto;
    font-family: 'Poppins', sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 10px 20px;
    max-width: 290px;
    height: 45px;
    border-radius: 8px;
    background: #000;
    color: #fff;
    text-transform: uppercase;
    font-size: 14px;
}

.indicator-1 {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #d64770;
}

.lower_archieve {
    width: 100%;
    display: flex;
    justify-content: space-around;
    padding: 20px 0;
    background-color: #f8f8f8;
    margin-top: 20px;
    border-radius: 0 0 8px 8px;
}

.arch {
    text-align: center;
    flex: 1;
    padding: 20px;
    transition: transform 0.3s ease;
}

.arch:hover {
    transform: scale(1.05);
}

.arch span {
    font-size: 2.5em;
    color: #333;
    font-weight: bold;
}

.arch p {
    color: #777;
    margin: 10px 0 0;
    font-size: 1em;
}

@media (max-width: 768px) {
    .about_p {
        font-size: 40px;
    }

    .lets_work p {
        font-size: 7vw;
    }

    .work_tag {
        font-size: 12px;
        height: 40px;
    }

    .lower_archieve {
        flex-direction: column;
        padding: 10px 0;
    }

    .arch {
        margin-bottom: 20px;
    }
}

.album_section{
  width: 100%;
  background: #fff;  
}
.album-section-1{
    max-width: 1300px;
    margin: 0 auto;
    width: 100%;
    display: flex;
    flex-direction: column;
    padding: 20px;
}
.upper_album_section{
    width: 1300px;
    margin: auto auto;;
    display: flex;
    gap: 15px;
    flex-direction: column;
    color: #000;
}

.p-portfolio{
    font-family: 'Inter Tight', sans-serif;
    height: 80px;
    font-size: 55px; 
    font-weight: 700;
    color: #000;

}
.container {
    max-width: 1300px;
    margin: 0 auto;
    width: 100%;
}

.slider-wrapper {
    position: relative;
}

.slider-wrapper .slide-button {
    position: absolute;
    top: 50%;
    outline: none;
    border: none;
    height: 50px;
    width: 50px;
    z-index: 5;
    color: #fff;
    display: flex;
    cursor: pointer;
    font-size: 2.2rem;
    background: #000;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transform: translateY(-50%);
}

.slider-wrapper .slide-button:hover {
    background: #404040;
}

.slider-wrapper .slide-button#prev-slide {
    left: -25px;
    display: none;
}

.slider-wrapper .slide-button#next-slide {
    right: -25px;
}

.slider-wrapper .image-list {
    display: grid;
    grid-template-columns: repeat(10, 1fr);
    gap: 18px;
    font-size: 0;
    list-style: none;
    margin-bottom: 30px;
    overflow-x: auto;
    scrollbar-width: none;
}

.slider-wrapper .image-list::-webkit-scrollbar {
    display: none;
}

.slider-wrapper .image-list .image-item {
    width: 325px;
    height: 400px;
    object-fit: cover;
}

.container .slider-scrollbar {
    height: 24px;
    width: 100%;
    display: flex;
    align-items: center;
}

.slider-scrollbar .scrollbar-track {
    background: #ccc;
    width: 100%;
    height: 2px;
    display: flex;
    align-items: center;
    border-radius: 4px;
    position: relative;
}

.slider-scrollbar:hover .scrollbar-track {
    height: 4px;
}

.slider-scrollbar .scrollbar-thumb {
    position: absolute;
    background: #000;
    top: 0;
    bottom: 0;
    width: 50%;
    height: 100%;
    cursor: grab;
    border-radius: inherit;
}

.slider-scrollbar .scrollbar-thumb:active {
    cursor: grabbing;
    height: 8px;
    top: -2px;
}

.slider-scrollbar .scrollbar-thumb::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: -10px;
    bottom: -10px;
}

@media only screen and (max-width: 1023px) {
    .slider-wrapper .slide-button {
        display: none !important;
    }

    .slider-wrapper .image-list {
        gap: 10px;
        margin-bottom: 15px;
        scroll-snap-type: x mandatory;
    }

    .slider-wrapper .image-list .image-item {
        width: 280px;
        height: 380px;
    }

    .slider-scrollbar .scrollbar-thumb {
        width: 20%;
    }
}
.package_section{
    max-width: 100%;
    background: #fff;
    color: #000;
    width: 100%;
    height: 780px;
    margin: 0 auto;
    padding: 20px;


}
.upper-row{
    max-width: 1300px;
    margin: 0 auto;
    padding: 20px;
}
.lower-row{
    max-width: 1300px;
    margin: 0 auto;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); 
    gap: 20px;
}
.pack{
    width: 100%;
    height: 550px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    border:1px solid #E0EAEC;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}
.pack:hover {
    transform: translateY(-10px);
}
.silver-pack{
    background: #f8f8f8; 
    color: #000; 

}
.gold-pack{
    background: #ffe8cc;;
    color: #000;
}
.diamond-pack{
    background: #f0f0f0;
    color: #000;
}


.p-title{
    font-family: 'Inter Tight', sans-serif;
    font-size: 18px; 
    font-weight: 600; 
}
.p-price{
    font-family: 'poppins', sans-serif;
    height: 30px;
    font-size: 24px;
    font-weight: 600;
}
.pck-wrap{
    width: 250px;
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 20px;

}
i{
    font-size: 18px;
    color: #0A6847;
}
.p-benefits span{
    font-size: 16px;
    font-weight: normal;
}
.p-benefits ul{
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.p-benefits li{
    width: 100%;
    display: flex;
    align-items: center;
    gap: 12px;
}
.tanz-pack{
    background: #CAF4FF;
}
.book-now{
    width: 150px;
    margin-bottom: 30px;
    height: 50px;
    text-transform: capitalize;
    background: #333;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 400;
    cursor: pointer;
    transition: background-color 0.3s;

}

.book-now:hover{
    background: #555;
}
/* Large Screens */
@media (min-width: 1200px) {
    .pack {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Medium Screens */
@media (max-width: 1199px) and (min-width: 768px) {
    .packages {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Small Screens */
@media (max-width: 767px) {
    .packages {
        grid-template-columns: 1fr;
    }
}

/* Extra Small Screens */
@media (max-width: 480px) {
    h2 {
        font-size: 1.2em;
    }
    .price {
        font-size: 1em;
    }
    .btn {
        padding: 8px 16px;
    }
}


.footer_wrap{
    width: 100%;
    height: 450px;
    margin: 0 auto;
    background: #000;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 120px;
    position: sticky;
    bottom: 0;
    z-index: 0;

}
.wrapp_section_f{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}
.upper_f_row h1{
    font-size: 50px;
    font-weight: 400;
}
.mail-p{
    font-size: 45px;
    font-weight: 400;
    color: #979797;
    text-decoration: none;
}


.lower_f_row {
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px; /* Optional: Ensures the row doesn’t exceed a certain width */
    padding: 20px; /* Optional: Adds padding inside the container */
}

.col {
    width: 300px;
    height: 120px;
}

.col ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
}


.col ul a {
    font-size: 16px;
    font-weight: 500;
    text-decoration: none; /* Optional: Removes underline from links */
    color: inherit; /* Optional: Inherits color from parent */
}

.cpryt{
    font-size: 14px;
    font-weight: 500;
    color: #929292;
}


.indicator {
    background: #fff;
    border-radius: 100%;
    width: 15px;
    height: 15px;
    animation: blink 1.5s infinite;
}

@keyframes blink {
    0%, 100% {
        background-color: #fff;
    }
    50% {
        background-color: #000;
    }
}
.packgs{ 
    font-family: 'Inter Tight', sans-serif;
    height: 80px;
    font-size: 50px; 
    font-weight: 600;
}


.work-wrapper{
    max-width: 1300px;
    margin: 0 auto;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #fff;
    gap: 100px;
    margin-bottom: 70px;
}
.upper_work_cont{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.select-wrk{
    display: inline;
    font-size: 200px;
    text-transform: uppercase;
    color: #000;
    font-family: 'Inter Tight', sans-serif;
    height: 190px;
    font-weight: 700;
  
}
.lower_work_cont{
    max-width: 1300px;
    margin: 0 auto;
  
}
.small-image-item {
    width: 110%;
    display: block;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    transition: transform 1000ms;
}

.wsgu-section {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0.8rem;
    grid-template-columns: repeat(auto-fit, minmax(20rem, 1fr));
    max-width: 100%;
    width: 70rem;
}

figure {
    margin: 0;
    position: relative;
    overflow: hidden;
}

figure::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200%;
    height: 200%;
    background: rgba(0, 0, 0, 0.5);
    transform-origin: center;
    opacity: 0;
    transform: scale(2);
    transition: opacity 300ms;
}

figcaption {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 1rem;
    color: white;
    font-size: 1.2rem;
    z-index: 2;
    opacity: 0;
    transition: opacity 600ms, transform 600ms;
}

a:is(:hover, :focus) figure::after {
    opacity: 1;
}

a:is(:hover, :focus) figcaption {
    opacity: 1;
    transition: opacity 600ms;
}

@media (prefers-reduced-motion: no-preference) {
    figcaption {
        transform: translate3d(0, 2rem, 0);
    }
    
    figure::after {
        border-radius: 50%;
        opacity: 1;
        transform: scale(0);
        transition: transform 900ms;
    }
    
    a:is(:hover, :focus) figure::after {
        transform: scale(2.5);
    }

    a:is(:hover, :focus) figcaption {
        opacity: 1;
        transform: translate3d(0, 0, 0);
        transition: opacity 600ms 400ms, transform 600ms 400ms;
    }

    a:is(:hover, :focus) img {
        transform: scale(1.2);
    }
}
.gallery-image {
    padding: 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }

  .img-box {
    box-sizing: content-box;
    margin: 10px;
    height: 500px;
    width: 400px;
    overflow: hidden;
    display: inline-block;
    color: white;
    position: relative;
    background-color: white;
  }

  .img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.0);
    transition: transform 0.4s ease;
  }

  .transparent-box {
    height: 100%;
    width: 100%;
    background-color: rgba(0, 0, 0, 0);
    position: absolute;
    top: 0;
    left: 0;
    transition: background-color 0.3s ease;
  }

  .caption {
    position: absolute;
    bottom: 5px;
    left: 20px;
    opacity: 0.0;
    transition: transform 0.3s ease, opacity 0.3s ease;
  }

  .img-box:hover img {
    transform: scale(1.1);
  }

  .img-box:hover .transparent-box {
    background-color: rgba(0, 0, 0, 0.5);
  }

  .img-box:hover .caption {
    transform: translateY(-20px);
    opacity: 1.0;
  }

  .img-box:hover {
    cursor: pointer;
  }

  .caption > p:nth-child(2) {
    font-size: 0.8em;
  }

  .opacity-low {
    opacity: 0.5;
  }
.about_wrap_1{
    width: 100%;
    height: 100vh;
    background: #000;
    margin: 0 auto;
    padding: 20px;

}






















/* Media Queries for responsiveness */
@media (max-width: 768px) {
    .work_select {
        font-size: 2.5em;
    }
    .details_ui {
        font-size: 1.5em;
        margin-left: 10px;
    }
}

@media (max-width: 480px) {
    .work_select {
        font-size: 2em;
    }
    .details_ui {
        font-size: 1.25em;
        margin-left: 5px;
    }
    .section_works {
        gap: 1em; /* Reduce gap for small screens */
    }
}
