:root {
    --primary-color: #f8e3e7;
    --secondary-color: #d4a5a5;
    --dark-color: #5e4545;
    --theme-color: #C78665;
    --title-color: #666861;
    --body-color: #84847c;
    --smoke-color: #F8F7F4;
    --smoke-color2: #FFF4EF;
    --smoke-color3: #F5F5F6;
    --smoke-color4: #F4F4F4;
    --smoke-color5: #F0F2F4;
    --black-color: #202020;
    --gray-color: #303030;
    --white-color: #ffffff;
    --light-color: #9fa2ad;
    --yellow-color: #FFB539;
    --success-color: #28a745;
    --error-color: #dc3545;
    --border-color: #E3E3E3;
    --title-font: "EB Garamond", serif;
    --body-font: "Prompt", sans-serif;
    --icon-font: "Font Awesome 5 Free";
    --main-container: 1320px;
    --container-gutters: 24px;
    --section-space: 120px;
    --section-space-mobile: 80px;
    --section-title-space: 65px;
    --ripple-ani-duration: 5s;
    --highlight-color: #ff5e5e;
    --background-dark: white;
    --text-light: #f5f5f5;
    --glass-effect: rgba(255, 255, 255, 0.1);
    --transition-smooth: 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* body {
    font-family: var(--body-font) !important;
    color: var(--dark-color);
    position: relative;
} */


/*index about section*/
.icon-index {
    height: 90px;
    width: 90px;
    line-height: 90px;
    border-radius: 50%;
    background: rgba(153, 152, 152);
    display: inline-block;
    flex: none;
    text-align: center;
}



.about-section {
    display: flex;
    align-items: stretch;
}


/* Header Titles */
.page-header {
    text-align: center;
    padding: 40px 0 20px;
}

.page-header h2 {
    font-size: 2.5rem;
    font-weight: 400;
    margin-bottom: 10px;
    color: var(--dark-color);
}

.page-header h3 {
    font-family: 'Montserrat', sans-serif;
    color: var(--secondary-color);
}

.about-img-container {
    display: flex;
    align-items: center;

}

.section {
    padding: 80px 0;
    background-color: white;
}

.section-title {
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 30px;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 3px;
    background-color: var(--secondary-color);
}


/* First Section */
.about-section {
    padding: 20px 0 60px;
}

.about-img-container {
    display: flex;
    height: 100%;
    overflow: hidden;
}

.about-img {
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    object-fit: cover;
    width: 100%;
    height: 3670px;
    /* Fixed height */
    max-height: 80vh;
    /* Limit maximum height */
    opacity: 0;
    transform: translateX(-20px);
    transition: all 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.about-img.show {
    opacity: 1;
    transform: translateX(0);
}

.about-content {
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    opacity: 0;
    transform: translateX(20px);
    transition: all 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.1s;
}

.about-content.show {
    opacity: 1;
    transform: translateX(0);
    padding: 30px;
    text-align: justify;
}

.social-icons {
    margin-top: 30px;
    display: flex;
    gap: 15px;
}

.social-icons a {
    color: var(--dark-color);
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    color: var(--secondary-color);
    transform: translateY(-3px);
}

/* Section 2 - Counter with BG Image */
.stats-section {
    background-image: url('/assets/img/gallery/Picture\ 29.jpg');
    background-attachment: fixed;
    background-size: cover;
    background-position: top center;
    padding-top: 10%;
    padding: 5px 0;
    position: relative;
    height: 100%;
    max-height: 60% !important;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(248, 227, 231, 0.7);
    /* backdrop-filter: blur(2px); */
}

.stat-item {
    text-align: center;
    padding: 30px;
    background-color: rgba(255, 255, 255, 0.85);
    border-radius: 10px;
    margin: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 1;
}

.count {
    font-size: 3rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.count-title {
    font-size: 1.2rem;
    color: var(--dark-color);
}






.service-img-container {
    perspective: 1000px;
}


.service-img {
    width: 100%;

    height: calc(50% - 10px);
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    opacity: 0;
    transform: translateY(20px) rotateY(5deg);
    transition: all 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.service-img.show {
    opacity: 1;
    transform: translateY(0) rotateY(0);
}

.service-img:nth-child(1) {
    transition-delay: 0.1s;
}

.service-img:nth-child(2) {
    transition-delay: 0.3s;
}

.service-img:nth-child(3) {
    transition-delay: 0.5s;
}

.service-img:nth-child(4) {
    transition-delay: 0.7s;
}

.service-img:last-child {
    margin-bottom: 0;
}



/* Section 4 - Content Left, 1 Image Right */
.testimonial-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
    .about-content {
        padding: 20px 0;
    }

    .about-img {
        margin-bottom: 30px;
    }

    .service-img-container {
        margin-top: 30px;
    }

    .testimonial-img {
        margin-top: 30px;
        height: 400px;
    }
    .hide-on-mobile {
        display: none;
    }
}

@media (max-width: 767.98px) {
    .section {
        padding: 50px 0;
    }

    .stat-item {
        margin-bottom: 20px;
    }

    .stats-section {
        padding: 60px 0;
    }
    .hide-on-mobile {
        display: none;
    }
}


.main-menu .active>a {
    color: var(--theme-color);
    /* or your highlight color */
    font-weight: bold;
}

/* General Styles */
/* body {
    font-family: var(--body-font) !important;
    color: #333;
    background-color: #fef8f6;
    margin: 0;
} */

.section {
    padding: 60px 20px;
}




.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.sec-title {
    font-size: 2rem;
    /* margin-bottom: 20px; */
    color: #333;
    text-align: center;
    font-weight: 400;
    color: var(--title-color) !important;
    font-family: var(--title-font) !important;
}

.sec-text {
    line-height: 1.8;
    color: #666;
    margin-bottom: 20px;
    text-align: center;

    font-weight: 400;
    font-size: 12px;
    color: var(--title-color);
    font-family: var(--body-font) !important;
}


/* Animation Classes */
.title-anim {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUpIn 1s forwards;
    animation-delay: 0.3s;
}

.fade_left {
    opacity: 0;
    transform: translateX(30px);
    animation: fadeInLeft 1s forwards;
    animation-delay: 0.5s;
}

@keyframes fadeUpIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Slider Styles (unchanged) */
.hero-slider {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.slider-container {
    display: flex;
    height: 100%;
    transition: transform 0.5s ease-in-out;
}

.slide {
    min-width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
}

.slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
}

.slider-controls {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dot.active {
    background: #fff;
    transform: scale(1.2);
}

.slider-arrows {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    z-index: 10;
    padding: 0 15px;
}

.slider-arrow {
    background: rgba(255, 255, 255, 0.3);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.slider-arrow:hover {
    background: rgba(255, 255, 255, 0.6);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    padding-bottom: 5%;
}

/* Services Design*/


.service-section {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding: 20px;
    margin: 20px auto;
    max-width: 1200px;
    background-color: #f9f9f9;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.service-image {
    flex: 1;
    min-width: 200px;
    max-width: 300px;
    padding: 10px;
}

.service-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
}

.service-content {
    flex: 2;
    padding-left: 4%;

}



.sec-title {
    font-size: 1.8rem;
    color: #2c3e50;
    margin-bottom: 10px;
    text-align: left;
}

.service-description {
    font-size: 1rem;
    color: #555;
    margin-bottom: 15px;
}

@media (max-width: 768px) {
    .service-section {
        flex-direction: column;
        text-align: center;
    }

    .service-image {
        max-width: 100%;
    }

    .service-content {
        padding: 10px;
    }

    .sec-title {
        font-size: 1.5rem;
    }

    .service-description {
        font-size: 0.9rem;
    }
}

.see-more {
    color: #c9997f;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    font-size: clamp(14px, 3.5vw, 16px);
}

.see-more:after {
    content: "→";
    margin-left: 5px;
}

/* Gallery Section Styles */
.gallery-section {
    margin: 50px 0;
}

.gallery-title {
    text-align: center;
    color: #c9997f;
    margin-bottom: 30px;
    font-size: clamp(20px, 5vw, 24px);
    font-weight: 300;
}

.gallery-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 15px;
}

.gallery-item {
    flex: 0 0 calc(33.33% - 10px);
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.gallery-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.3s ease;
    margin-bottom: 10px;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-caption {
    text-align: center;
    padding: 15px;
    background-color: #f9f9f9;
    color: #666;
    text-transform: uppercase;
    font-size: clamp(12px, 3vw, 14px);
    letter-spacing: 2px;
}

/* Testimonial Slider Styles */
.testimonial-section {
    position: relative;
    padding: 60px 0;
    background-image: url('/assets/img/gallery/Picture\ 29.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    min-height: 400px;
    display: flex;
    align-items: center;
}

.testimonial-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.6);
}

.testimonial-container {
    position: relative;
    z-index: 2;
    max-width: 90%;
    margin: 0 auto;
    text-align: center;
    height: 100%;
}

.testimonial-slide {
    display: none;
    padding: 15px;
    margin-top: 20px;
    color: #fff;
    height: auto;
    max-height: 300px;
    overflow-y: auto;
}

.testimonial-slide.active {
    display: block;
}

.testimonial-quote {
    font-size: clamp(18px, 4.5vw, 22px);
    line-height: 1.6;
    margin-bottom: 15px;
    position: relative;
}

.testimonial-quote:before,
.testimonial-quote:after {
    content: '"';
    font-size: clamp(30px, 6vw, 40px);
    color: #c9997f;
}

.testimonial-author {
    font-style: italic;
    margin-top: 15px;
    color: #c9997f;
    font-size: clamp(14px, 3.5vw, 16px);
}

.testimonial-nav {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.testimonial-dot {
    height: 8px;
    width: 8px;
    margin: 0 4px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.testimonial-dot.active {
    background-color: #c9997f;
}

.testimonial-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
    color: #fff;
    background-color: rgba(201, 153, 127, 0.7);
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    cursor: pointer;
    z-index: 3;
}

.testimonial-prev {
    left: 10px;
}

.testimonial-next {
    right: 10px;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .service-section {
        flex-direction: column;
        align-items: stretch;
    }

    .service-image,
    .service-content {
        min-width: 100%;
        padding: 15px;
    }

    .gallery-item {
        flex: 0 0 calc(50% - 10px);
    }

    .testimonial-section {
        padding: 40px 0;
        min-height: 350px;
    }

}

@media (max-width: 768px) {
    .container {
        padding: 15px;
    }

    .service-section {
        margin: 30px 0;
    }

    .service-image,
    .service-content {
        padding: 10px;
    }

    .service-content p {
        line-height: 1.6;
    }

    .gallery-item {
        flex: 0 0 100%;
    }

    .gallery-item img {
        height: 250px;
    }

    .testimonial-container {
        max-width: 95%;
    }

    .testimonial-slide {
        padding: 10px;
        max-height: 250px;
    }

    .testimonial-quote {
        font-size: clamp(16px, 4vw, 18px);
    }

    .testimonial-arrow {
        width: 30px;
        height: 30px;
        font-size: 18px;
    }

    .testimonial-prev {
        left: 5px;
    }

    .testimonial-next {
        right: 5px;
    }
}

@media (max-width: 480px) {
    .page-title {
        margin: 20px 0;
    }

    .service-section {
        margin: 20px 0;
    }

    .service-image img {
        border-radius: 3px;
    }

    .service-content {
        padding: 10px 5px;
    }

    .gallery-section {
        margin: 30px 0;
    }

    .gallery-item img {
        height: 200px;
    }

    .gallery-caption {
        padding: 10px;
        font-size: 12px;
    }

    .testimonial-section {
        padding: 30px 0;
        min-height: 300px;
    }

    .testimonial-quote:before,
    .testimonial-quote:after {
        font-size: 30px;
    }

    .testimonial-nav {
        margin-top: 15px;
    }

    .testimonial-dot {
        height: 6px;
        width: 6px;
        margin: 0 3px;
    }
}

/*Gallery Design*/
/* * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Playfair Display', 'EB Garamond', 'Prompt', 'Arial', sans-serif;
        } */

.gallery-body {
    color: #fff;
    overflow-x: hidden;
}

.gallery-container {
    max-width: 1700px;
    margin: 0 auto;
    padding: 40px;
}

.gallery-header {
    text-align: center;
    padding: 0px 0 30px;
    margin-left: 38%;
}

.gallery-header h1 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #333;
    text-align: center;
    font-weight: 400;
    color: var(--title-color) !important;
    font-family: var(--title-font) !important;
}

.gallery-header p {
    line-height: 1.8;
    color: #666;
    margin-bottom: 20px;
    text-align: center;

    font-weight: 400;
    font-size: 1rem;
    color: var(--title-color);
    font-family: var(--body-font) !important;
}

.filter-tabs {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 0px;
    flex-wrap: wrap;
}

.filter-tab {
    background: transparent;
    color: var(--title-color);
    border: 2px solid #e0a95e;
    padding: 8px 10px;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.3s ease;
    font-size: 14px;
    border-radius: 25px;
    font-family: var(--body-font) !important;
}


.gallery-img {
    display: block;
    /* or your grid/flex settings */
}

.no-results-message {
    color: #999;
    font-style: italic;
}

.filter-tab::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: #e0a95e;
    transition: left 0.3s ease;
    z-index: -1;
}

.filter-tab:hover::before,
.filter-tab.active::before {
    left: 0;
}

.filter-tab:hover,
.filter-tab.active {
    color: #0a131f;
    transform: translateY(-2px);
    z-index: 1;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(145px, 3fr));
    grid-auto-rows: 200px;
    grid-auto-flow: dense;
    gap: 12px;

    padding: 15px;
}

.gallery-img {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.gallery-img.hidden {
    display: none;
}

.gallery-img {
    grid-column: span 1;
    grid-row: span 1;
    flex: 1 1 calc(33.33% - 10px);
    /* 3 per row with gap */
    max-width: calc(98.33% - 10px);
    overflow: hidden;

}

.gallery-img.landscape {
    grid-column: span 3;
    grid-row: span 2;
    position: relative;
    overflow: hidden;
}

.gallery-img.landscape img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;

}


.gallery-img.portrait {
    grid-column: span 3;
    grid-row: span 2;
    position: relative;
    overflow: hidden;
}

.gallery-img.square {
    grid-row: span 2.5;
    grid-column: span 1.5;
}

.gallery-img.featured {
    grid-column: span 1;
    grid-row: span 1;
}

.gallery-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease-in-out;
    aspect-ratio: 4 / 3;
    /* adjust as needed */

}

.overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.3);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.gallery-img:hover .overlay {
    opacity: 1;
}

.gallery-img:hover img {
    transform: scale(1.05);
}

.view-btn:hover {
    background-color: rgba(224, 169, 94, 1);
    transform: scale(1.1);
}

.view-btn i {
    margin: 0;
}

.lightbox {
    display: none;
    position: fixed;
    z-index: 1000;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    overflow: auto;
}

.lightbox-content {
    position: relative;
    width: 90%;
    max-width: 1200px;
    margin: 5% auto;
    animation: lightboxOpen 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.close-lightbox {
  position: absolute;
  top: -20px;
  right: 75px;
  font-size: 54px;
  color: #c78665;
  cursor: pointer;
  z-index: 10;

}
/* Mobile Responsive Styles */
@media (max-width: 768px) {
    .lightbox-content {
        width: 95%;
        margin: 10% auto;
        justify-content: center;
    }
    .lightbox {
        align-content: center;
    }
    .lightbox-img {
        max-width: 100%;
        height: auto;
    }
    .prev, .next {
        font-size: 24px;
        padding: 10px;
    }
    .close-lightbox {
        font-size: 58px !important; /* Increased size for X mark */
        padding: 10px;
        position: absolute;
        top: -60px !important; /* Moved slightly above the lightbox */
        right: 1px;
        width: auto;
        height: auto;
        line-height: 1;
        color: #c78665;
        cursor: pointer;
    }
    .image-counter {
        font-size: 14px;
    }
}

@keyframes lightboxOpen {
    from {
        transform: scale(0.8);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

.lightbox-img {
    width: auto;
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    display: block;
}

.image-counter {
    color: #fff;
    font-size: 14px;
    margin-top: 10px;
    font-family: 'Montserrat', sans-serif;
}



.close-lightbox:hover {
    color: #e0a95e;
}

.prev,
.next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: #fff;
    font-size: 40px;
    cursor: pointer;
    background-color: rgba(0, 0, 0, 0.5);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background-color 0.3s ease;
}

.prev:hover,
.next:hover {
    background-color: rgba(224, 169, 94, 0.8);
}

.prev {
    left: 10px;
}

.next {
    right: 10px;
}
 
/* Animation for filter */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


.gallery-container {
    padding: 0.5rem;
    width: 100%;
    max-width: 100%;
}

.gallery-img {
    position: relative;
    overflow: hidden;
}

.gallery-img img {
    width: 100%;
    height: auto;
    object-fit: cover;
    aspect-ratio: 4 / 3; /* Default for landscape */
}

.gallery-img.portrait img {
    aspect-ratio: 3 / 4; /* For portrait images */
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
}

.gallery-img:hover .overlay {
    opacity: 1;
}

.view-btn {
    background: #fff;
    border: none;
    border-radius: 50%;
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    font-size: 1rem;
}

.view-btn i {
    color: #333;
}

/* Adjustments for smaller screens */
@media (max-width: 576px) {
    .gallery-container {
        padding: 0.25rem;
    }
    .gallery-header{
        margin-left: 0px;
        text-align: center;
       
    }
    .row {
        --bs-gutter-x: 0.5rem; /* Reduce gutter for small screens */
    }
    .gallery-img img {
        width: 100%;
        max-width: 100%;
        height: auto;
        aspect-ratio: 4 / 3; /* Ensure aspect ratio is enforced */
    }
    .gallery-img.portrait img {
        aspect-ratio: 3 / 4;
    }
    .view-btn {
        width: 2rem;
        height: 2rem;
        font-size: 0.875rem;
    }
    .filter-tab {
        flex: 1 1 calc(33.33% - 10px); 
        font-size: 12px; 
        text-align: center;
        height: 45px;
        width: 80px;
    }
    .filter-tabs {
      
        /* margin-right: 130px; */
        margin-left: 10px;
    } 
   
}

@media (max-width: 360px) {
    .gallery-container {
        padding: 0.25rem;
    }
    .gallery-header{
        margin-left: 20px;
       
    }
    .view-btn {
        width: 1.75rem;
        height: 1.75rem;
        font-size: 0.75rem;
    }
    .filter-tab {
        flex: 1 1 calc(33.33% - 10px); /* 3 buttons per row with spacing */
        font-size: 12px; /* smaller text */
        height: 65px !important;
        width: 100px !important;
        align-content: center !important;
    }
   
}

/* Ensure 3 columns on large screens */
@media (min-width: 992px) {
    .gallery-img {
        flex: 0 0 33.333333%; /* Ensure exactly 3 columns */
        max-width: 33.333333%;
    }
}



.main-img-wrapper {
    position: relative;
    display: inline-block;
  }
  
  .about-img-1 {
    display: block;
    width: 100%;
    height: auto;
  }
  
  .circle-inside-img {
    position: absolute;
    top: 20px; /* Adjust vertically */
    left: 50%; /* Center horizontally */
    transform: translateX(-50%);
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 3px solid #fff;
    object-fit: cover;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    z-index: 2;
  }


@media (max-width: 767px) {

  .for-font{
    font-size: 10px !important;
  }
  
}





