@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root {
    --primary-color: #EF891B;
    --font-family: "Poppins", sans-serif;
    --secondary-color: #23190C;
}

html {
    scroll-behavior: smooth;

}

body {
    font-family: var(--font-family);
    padding: 0;
    margin: 0;
    width: 100%;

}


.container {
    max-width: 1170px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
}

/* Navigation */

header {
    position: relative;
    overflow: visible;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;

}

.logo-img {
    height: 65px;
    z-index: 2;
    position: relative;
}


.half-circle-bg {
    position: absolute;
    top: -200px;
    left: 50%;
    transform: translateX(-50%);
    width: 317px;
    height: 317px;
    background-color: #C68947;
    border-radius: 50%;
    z-index: 0;

}

.half-circle-bg {
    opacity: 0;
    transform: translateX(-50%) scale(0.9);
    animation: circleShadow 0.6s ease-out forwards;
}

.logo-img {
    opacity: 0;
    transform: translateY(30px) scale(0.8);
    animation: logoRise 0.8s ease-out 0.4s forwards;
}

@keyframes circleShadow {
    to {
        opacity: 1;
        transform: translateX(-50%) scale(1);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    }
}

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


.logo-wrapper {
    position: relative;
    display: inline-block;
    z-index: 1;
}


.nav__links {
    display: flex;
    align-items: center;
}

nav .nav__link {
    text-decoration: none;
    list-style: none;
    color: #000;
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    margin-left: 44px;
    cursor: pointer;
    display: flex;
    gap: 20px;
}

.nav__link:hover {
    color: var(--primary-color);
}

.nav .toggle_btn {
    color: black;
    cursor: pointer;
    display: none;
}


.dropdown_menu {
    display: none;
    right: 2rem;
    height: 0;
    width: 300px;
    background: rgba(255, 255, 255, 0.5);
    overflow: hidden;
    transition: height 0.5s ease;
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border-radius: 10px;
    position: absolute;
    transform: translateZ(0);
    text-align: center;
    justify-content: center;
    z-index: 9999;

}



.dropdown_menu.open {
    height: 200px;
    display: block;

}

.dropdown_menu li {
    padding: 0.7rem;
    display: flex;
    align-items: center;
    justify-content: center;
    list-style: none;

}

.dropdown_menu li a {
    color: #23190C;
    text-decoration: none;
    display: block;
    text-align: center;
    width: 100%;
}

/* Style each individual link (not the whole .nav__link container) */
.nav__links a {
    position: relative;
    text-decoration: none;
    color: #000;
    font-weight: 500;
    font-size: 16px;
    margin-left: 44px;
    transition: color 0.3s ease;
}

.nav__links a:hover {
    color: var(--primary-color);
}

/* Underline effect on hover */
.nav__links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.nav__links a:hover::after {
    width: 100%;
}

/* Optional: Active link (e.g., current page) */
.nav__links a.active {
    color: var(--primary-color);
    font-weight: 600;
}

.nav__links a.active::after {
    width: 100%;
}

/* Apply same hover effect and underline to "Pagini" */
#paginiBtn {
    position: relative;
    color: #000;
    font-weight: 500;
    font-size: 16px;
    margin-left: 44px;
    cursor: pointer;
    transition: color 0.3s ease;
}

/* Hover color */
#paginiBtn:hover {
    color: var(--primary-color);
}

/* Underline effect like other nav links */
#paginiBtn::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

#paginiBtn:hover::after {
    width: 100%;
}


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

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



/* Hero Section */

.hero-wrapper {
    background-image: url("images/herobg.jpg");
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    position: relative;
    height: calc(900px);
    overflow: visible;
    width: 100%;

    will-change: transform;

}

#hero {
    margin-top: 150px;
    min-height: 100vh;

}

#hero h1 {
    font-family: var(--font-family);
    font-style: normal;
    font-weight: 800;
    font-size: 48px;
    color: #23190C;
    /* width: 866px; */
    margin-bottom: 43px;
}

#hero h1 .highlight {
    color: var(--primary-color);
}

#hero p {
    /* width: 707px; */
    font-family: var(--font-family);
    font-style: normal;
    font-weight: 400;
    color: #23190C;
    font-size: 20px;

}

#hero h1,
#hero p {
    width: 100%;
    max-width: 866px;
}

#hero .container {
    margin-top: 100px;
}

/* Primary Button */
#primary_action_btn {
    padding: 16px 32px;
    background-color: var(--primary-color);
    color: #F5F5F5;
    font-family: var(--font-family);
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    margin-top: 43px;
    margin-right: 33px;
    border: none;
    border-radius: 8px;
    transition: all 0.3s ease;
}

#primary_action_btn:hover {
    background-color: darken(var(--primary-color), 10%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    color: var(--secondary-color);
}

#primary_action_btn:active {
    transform: translateY(1px);
    box-shadow: none;
}

/* Secondary Button */
#secondary_action_btn {
    padding: 16px 32px;
    background: transparent;
    color: var(--secondary-color);
    font-family: var(--font-family);
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    border: 2px solid #000000;
    margin-top: 43px;
    cursor: pointer;
    border-radius: 8px;
    transition: all 0.3s ease;
}

#secondary_action_btn:hover {
    background-color: #000000;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

#secondary_action_btn:active {
    transform: translateY(1px);
    box-shadow: none;
}


/* Services Section */
.services {
    position: relative;
    margin-top: -95px;
    z-index: 3;

}

.services .container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    padding: 0 20px;

}

.services-wrapper {
    position: relative;
}

.scroll-arrow {
    display: none;
}

.service-card {
    position: relative;
    overflow: hidden;
    background: linear-gradient(114.37deg, #EFF0F2 0%, #FFFFFF 100%);
    display: flex;
    flex-direction: column;
    height: 249px;
    width: 100%;
    max-width: 370px;
    box-shadow: 13px 14px 13.1px -9px rgba(0, 0, 0, 0.27);
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease, filter 0.3s ease;
    border-radius: 8px;
    -webkit-tap-highlight-color: transparent;

}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 20px 20px 20px -10px rgba(0, 0, 0, 0.27);
    filter: brightness(1.05);
}

.service-card:active {
    transform: scale(0.98);
    filter: brightness(0.95);
}

.service-card.dark {
    background: #312D28;
    color: #F5F5F5;

}

.triangle-bg {
    position: absolute;
    top: 0;
    right: 0;
    width: 65%;
    height: 65%;
    padding-top: 22%;
    clip-path: polygon(100% 0%, 0% 0%, 100% 100%);
    z-index: 2;
    background-size: cover;
    background-position: center;

    will-change: transform;
}

.service-card.service-1 .triangle-bg {
    background-image: url('images/service-1.png');

}

.service-card.service-2 .triangle-bg {
    background-image: url('images/service-2.jpg');

}

.service-card.service-3 .triangle-bg {
    background-image: url('images/service-3.jpg');

}

.service-card.service-4 .triangle-bg {
    background-image: url('images/service-4.jpg');

}

.service-card.service-5 .triangle-bg {
    background-image: url('images/service-5.jpg');

}

.service-card.service-6 .triangle-bg {
    background-image: url('images/service-6.jpg');

}


.service-card-content {
    z-index: 2;
    position: relative;
    margin-right: 36px;
    margin-left: 36px;
    margin-top: 34px;
    margin-bottom: 48px;
}


.service-card h3 {
    margin: 0;
    font-size: 20px;
    font-weight: 600;
    margin-top: 18px;
    font-family: var(--font-family);
    font-style: normal;
}

.arrow-right {
    position: absolute;
    bottom: 20px;
    right: 27px;
    width: 40px;
    height: 16px;
    cursor: pointer;

}

/* about us */

.about-us {
    margin-top: 50px;
    padding-top: 80px;
    width: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='1599' height='268' viewBox='0 0 1599 268' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect width='1599' height='268' fill='%23f5f5f5'/%3E%3C/svg%3E");
    background-size: 100% auto;
    background-repeat: no-repeat;
    background-position: center top;

}

.about-us .container {
    display: flex;
    gap: 20px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

.content-section {
    width: 44.7%;

}

.image-section {
    width: 55.3%;

}

.image-section img {
    width: 100%;
    height: auto;
    box-shadow: -20px 20px 0px #EF891B;
    border-radius: 8px;
}


ul li .done-symbol {
    display: inline-block;
    width: 18px;
    height: 18px;
    background-image: url("data:image/svg+xml,%3Csvg width='18' height='18' viewBox='0 0 18 18' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7.6 13.2L14.65 6.15L13.25 4.75L7.6 10.4L4.75 7.55L3.35 8.95L7.6 13.2ZM0 18V0H18V18H0Z' fill='%23EF891B'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: contain;
    vertical-align: middle;
    margin-right: 8px;
    flex-shrink: 0;
}

ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.about-us .button a {
    text-decoration: none;
    padding: 14px 14px 14px 45px;
    color: #F5F5F5;
    background-color: var(--secondary-color);
    display: inline-block;
    margin-top: 32px;
    position: relative;
    font-family: var(--font-family, sans-serif);
    font-weight: 600;
    font-size: 16px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: background-color 0.3s ease;
}

.about-us .button a:hover {
    background-color: var(--primary-color);
}

.about-us .button a::before {
    content: '';
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' fill='white' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6.62 10.79a15.053 15.053 0 006.59 6.59l2.2-2.2a1 1 0 011.11-.21c1.21.49 2.53.76 3.88.76a1 1 0 011 1v3.5a1 1 0 01-1 1A17 17 0 013 5a1 1 0 011-1h3.5a1 1 0 011 1c0 1.35.26 2.67.76 3.88a1 1 0 01-.21 1.11l-2.2 2.2z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: contain;
}



.about-us .title h4 {
    font-family: var(--font-family);
    font-style: normal;
    font-weight: 500;
    font-size: 20px;
    color: var(--secondary-color);
    margin: 0;
}

.about-us .title h4 .highlight {
    color: var(--primary-color);
}

.about-us .content h2 {
    font-family: var(--font-family);
    font-style: normal;
    font-weight: 800;
    font-size: 36px;
    color: var(--secondary-color);
    margin-bottom: 41px;
}

.about-us .content ul li {
    font-family: var(--font-family);
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    color: var(--secondary-color);
    margin-bottom: 9px;

}

/* testimonials */

@import url(https://fonts.googleapis.com/css?family=Roboto:300,400);

.snip1533 {
    flex: 1 1 calc(33.33% - 20px);
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);
    color: #9e9e9e;
    font-family: 'Roboto', Arial, sans-serif;
    font-size: 16px;
    position: relative;
    text-align: center;
    background-color: #ffffff;
    border-radius: 5px;
    border-top: 5px solid #EF891B;
    margin: 35px 0 10px;
}

.snip1533 *,
.snip1533 *:before {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transition: all 0.1s ease-out;
    transition: all 0.1s ease-out;
}

.snip1533 figcaption {
    padding: 10% 7% 8%;
}



.snip1533 img.testimonial-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #ffffff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.25);
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
}

.snip1533 p {
    font-size: 16px;
}

.snip1533 h3 {
    color: #3c3c3c;
    font-size: 20px;
    font-weight: 300;
    line-height: 24px;
    margin: 10px 0 5px;
}

.snip1533 h4 {
    font-weight: 400;
    margin: 0;
    opacity: 0.5;
}

.snip1533 blockquote {
    font-style: italic;
    font-weight: 300;
    margin: 0 0 20px;
}

.testimonials-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 1170px;
    width: 100%;
    margin: 15px auto 0;
    padding: 0 20px;
    gap: 20px;

}

.testimonials-title {
    text-align: center;
    font-size: 32px;
    margin: 55px auto 20px;
    max-width: 1170px;
    padding: 0 20px;
}



/* Why choose section */

.why-choose-section {
    margin-top: 80px;
    padding-top: 20px;
    width: 100%;
    font-family: var(--font-family);
    box-sizing: border-box;
    overflow: hidden;
    background: none;
    z-index: 0;
    position: relative;
}

.bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(0.2px);
    transform: scale(1.05);
    z-index: -2;
}


.why-choose-container {
    max-width: 1170px;
    margin: 0 auto;
    padding: 0 15px;
}

.why-choose-header {
    text-align: center;
    margin-bottom: 30px;
}

.why-choose-title h2 {

    color: var(--primary-color);
    font-size: 30px;
    letter-spacing: 0;
    line-height: 32px;
    text-transform: uppercase;

}

.why-choose-title>p {
    color: white;
    line-height: 22px;
    max-width: 700px;
    margin: 0 auto 15px;
    font-size: 16px;
    font-weight: 400;
}



.title-border {
    background: var(--primary-color);
    border-radius: 2px;
    display: inline-block;
    height: 3px;
    position: relative;
    width: 50px;
}

.why-choose-content-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.why-choose-column {
    flex: 0 0 calc(33.333% - 20px);
    margin-bottom: 20px;
}

.center-column {
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-item {
    margin-bottom: 35px;
}

.service-container {
    display: flex;
    align-items: flex-start;
}

.service-icon {
    margin-right: 15px;
    flex-shrink: 0;
}

.service-icon .icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 2px solid white;
    border-radius: 100px;
    color: white;
    font-size: 28px;
    height: 70px;
    width: 70px;
    padding: 0;
}

.service-content h4 {
    color: var(--primary-color);
    font-size: 22px;
    letter-spacing: 0;
    line-height: 22px;
    margin: 0px 0 12px;
    text-transform: uppercase;

}

.service-content p {
    color: #ffffff;
    font-size: 15px;
    font-weight: 400;
    line-height: 24px;
    margin: 0;
}

/* contact section */

.contact-section {
    margin-top: 80px;
    padding: 40px 0;
    background-image: url("images/contact-bg.jpg");
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    position: relative;
    /* height: 100vh; */
    overflow: visible;
    width: 100%;

    will-change: transform;
}

.contact-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: space-between;
    align-items: flex-start;
}

.contact-form,
.contact-info {
    flex: 1 1 400px;
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.contact-form h2,
.contact-info h2 {
    margin-bottom: 20px;
    color: #23190C;
}

.contact-form label {
    display: block;
    margin-top: 15px;
    font-weight: bold;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    border-radius: 8px;
    border: 1px solid #ccc;
    resize: none;
}

.contact-form button {
    margin-top: 20px;
    padding: 10px 20px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
}

.contact-form button:hover {
    background: #cf710a;
}

.contact-info p {
    margin: 15px 0;
    font-size: 16px;
    color: #333;
}

.contact-info i {
    margin-right: 10px;
    color: var(--primary-color);
}

.footer {
    background-color: #ae7e44;
    color: #F5F5F5;
    padding: 40px 20px 20px;
    font-family: 'Arial', sans-serif;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
}

.footer-brand img {
    width: 120px;
    margin-bottom: 10px;
}

.footer-brand p {
    max-width: 250px;
    font-size: 0.95rem;
    line-height: 1.4;
}

.footer-links,
.footer-contact {
    min-width: 200px;
}

.footer-links h4,
.footer-contact h4 {
    margin-bottom: 10px;
    font-size: 1.1rem;
    color: var(--secondary-color);
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a,
.footer-contact p {
    color: #F5F5F5;
    text-decoration: none;
    font-size: 0.95rem;
}


.footer-bottom {
    text-align: center;
    padding-top: 20px;
    font-size: 0.85rem;
    border-top: 1px solid #444;
    margin-top: 20px;
}

.footer-links a {
    position: relative;
    color: #F5F5F5;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    left: 0;
    bottom: -2px;
    background-color: #F5F5F5;
    transition: width 0.3s ease;
}

.footer-links a:hover {
    color: #ffffff;
}

.footer-links a:hover::after {
    width: 100%;
}

.footer-contact p {
    transition: opacity 0.3s ease;
}

.footer-contact p:hover {
    opacity: 0.8;
}


/* Expanded service card */

.service-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: calc(var(--vh, 1vh) * 100);
    z-index: 1000;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.service-modal.active {
    opacity: 1;
    pointer-events: auto;
}

.modal-content {
    position: relative;
    width: 90%;
    max-width: 1200px;
    max-height: 100vh;
    background: linear-gradient(114.37deg, #EFF0F2 0%, #FFFFFF 100%);
    border-radius: 12px;
    padding: 60px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transform: translateY(20px);
    transition: transform 0.4s ease;
}

.service-modal.active .modal-content {
    transform: translateY(0);
}

.modal-content.dark {
    background: #312D28;
    color: #F5F5F5;
}

.modal-content.dark h3 {
    color: #F5F5F5;
}

.modal-content h3 {
    font-size: 36px;
    font-weight: 600;
    color: #23190C;
    position: relative;
    z-index: 3;
}

.modal-close-btn {
    position: absolute;
    top: 30px;
    right: 30px;
    background: rgba(255, 255, 255, 0.6);
    border: none;
    font-size: 36px;
    color: #23190C;
    cursor: pointer;
    z-index: 10;
    line-height: 1;
    padding: 4px 12px;
    border-radius: 6px;
    transition: background-color 0.3s ease;
}

.modal-close-btn:hover {
    background: rgba(255, 255, 255, 0.9);
    color: #EF891B;
}

.modal-content.dark .modal-close-btn {
    background: rgba(49, 45, 40, 0.6);
    color: #F5F5F5;
}

.modal-content.dark .modal-close-btn:hover {
    background: rgba(49, 45, 40, 0.9);
    color: #EF891B;
}


.modal-triangle-bg {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: auto;
    width: 60%;
    height: 100%;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    z-index: 2;

    will-change: transform;
}

.modal-triangle-bg.service-1 {
    background-image: url("images/service-1.png");
}


.modal-triangle-bg.service-2 {
    background-image: url("images/service-2.jpg");
}

.modal-triangle-bg.service-3 {
    background-image: url("images/service-3.jpg");
}

.modal-triangle-bg.service-4 {
    background-image: url("images/service-4.jpg");
}

.modal-triangle-bg.service-5 {
    background-image: url("images/service-5.jpg");
}

.modal-triangle-bg.service-6 {
    background-image: url("images/service-6.jpg");
}

.modal-details {
    width: 38%;
    padding-right: 40px;
    font-size: 18px;
    position: relative;
    z-index: 3;

}

.check-list {
    margin: 0;
    padding-left: 0;

}

.check-list li {
    position: relative;
    list-style: none;
    padding-left: 1.4rem;
    margin-bottom: 1rem;

}

.check-list li:before {
    content: '';
    display: block;
    position: absolute;
    left: 0;
    top: 2px;
    width: 5px;
    height: 11px;
    border-width: 0 2px 2px 0;
    border-style: solid;
    border-color: #00a8a8;
    transform-origin: bottom left;
    transform: rotate(45deg);
}

.modal-details {
    overflow-y: auto;
    max-height: 60vh;
    padding-right: 20px;
    scrollbar-width: thin;
    scrollbar-color: #00a8a8 transparent;
}

.modal-details::-webkit-scrollbar {
    width: 8px;
}

.modal-details::-webkit-scrollbar-thumb {
    background-color: #00a8a8;
    border-radius: 4px;
}

body.no-scroll {
    overflow: hidden;
    height: 100vh;
    padding-right: 15px;
}

body.no-scroll::-webkit-scrollbar {
    display: none;
}


.gallery-scroll {
    display: flex;
    overflow-x: auto;
    gap: 20px;
    padding: 20px 0;
    scroll-snap-type: x mandatory;
}

.gallery-scroll::-webkit-scrollbar {
    height: 10px;
}

.gallery-scroll::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 5px;
}

.gallery-scroll img {
    flex: 0 0 calc(50% - 10px);
    max-width: calc(50% - 10px);
    height: auto;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    scroll-snap-align: start;
    transition: transform 0.3s ease;
}

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

.gallery-title {
    margin-top: 50px;
    text-align: center;
    font-size: 32px;
}


.whatsapp-fixed {
    position: fixed;
    bottom: 5px;
    right: 20px;
    font-size: 60px;
    color: #25D366;
    z-index: 1000;
    transition: transform 0.3s ease, color 0.3s ease;
}

.whatsapp-fixed:hover {
    transform: scale(1.1);
    color: #1ebe5d;
}