/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Satoshi-Regular', sans-serif;
    line-height: 1.6;
    color: #333;
}

.hero-content h1 {
    font-family: 'Satoshi-Bold', sans-serif;
}

.hero-content p {
    font-weight: 300;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Navbar styles */
.navbar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 15px 0;
    background-color: rgba(65, 69, 53, 0.2);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    flex: 0 0 auto;
}

.logo img {
    width: 150px;
    height: auto;
}

.nav-menu {
    display: flex;
    align-items: center;
}

.nav-items {
    display: flex;
    margin-right: 20px;
}

.nav-items a {
    color: #fff;
    text-decoration: none;
    margin: 0 15px;
    font-weight: 500;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.language-selector {
    margin-left: 20px;
    display: flex;
    align-items: center;
}

.language-selector select {
    background-color: transparent;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.5);
    padding: 5px 10px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.9rem;
}

.language-selector select option {
    background-color: #333;
    color: white;
}

.language-selector a {
    margin: 0 5px;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.language-selector a.active {
    opacity: 1;
}

.language-selector a:hover {
    opacity: 1;
}

.language-selector img {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: block;
}

/* Hero section and content positioning */
.hero {
    position: relative;
    overflow: hidden;
    height: 80vh; /* Changed from 100vh to 80vh */
}

/* Hero Slider styles */
.hero-splide {
    height: 100%;
    width: 100%;
}

.splide__track,
.splide__list {
    height: 100%;
}

.hero-slide {
    height: 80vh; /* Changed from 100vh to 80vh */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    align-items: center;
}

.hero-slide::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.hero-content {
    position: relative;
    left: 5%;
    max-width: 700px;
    padding: 40px;
    color: white;
    z-index: 10;
    background-color: rgba(65, 69, 53, 0.5);
    border-radius: 40px;
}

.hero-content h1 {
    font-size: 2.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 10px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

/* Progress bar for splide slider */
.splide__progress {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 50%;
    height: 4px;
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
    overflow: hidden;
}

.splide__progress__bar {
    height: 100%;
    background-color: #F2E3BC;
    transition: width 0.2s ease;
}

.cta-button {
    display: inline-block;
    padding: 12px 30px;
    background-color: #F2E3BC;
    color: #333;
    text-decoration: none;
    border-radius: 30px;
    font-weight: bold;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background-color: rgba(255, 255, 255, 0.9);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Section styles */
.section {
    padding: 20px 0;
}

.section h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 1.8rem;
    position: relative;
}

/* Fullscreen Image Gallery */
.gallery-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 9999;
    display: none;
    justify-content: center;
    align-items: center;
}

.gallery-overlay.active {
    display: flex !important; /* Important to override any other display properties */
}

.gallery-close {
    position: absolute;
    top: -40px;
    right: 0;
    color: white;
    font-size: 36px;
    cursor: pointer;
    z-index: 10001;
}

/* Make sure gallery controls are visible and clickable */
.gallery-controls {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    z-index: 10002; /* Ensure controls are above other elements */
}

.gallery-prev, .gallery-next {
    color: white;
    font-size: 36px;
    cursor: pointer;
    background-color: rgba(0, 0, 0, 0.5);
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    transition: background-color 0.3s ease;
}

.gallery-prev:hover, .gallery-next:hover {
    background-color: rgba(65, 69, 53, 0.8);
}

.gallery-container {
    position: relative;
    width: 90%;
    max-width: 1200px;
    height: 80%;
    display: flex;
    flex-direction: column;
}

.gallery-content {
    position: relative;
    width: 100%;
    height: calc(100% - 100px);
    display: flex;
    justify-content: center;
    align-items: center;
}

.gallery-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* Fix for gallery thumbnails */
.thumbnails-container {
    display: flex;
    overflow-x: auto;
    gap: 10px;
    padding: 5px 0;
    margin-bottom: 10px;
    scrollbar-width: thin;
    scrollbar-color: #414535 #f0f0f0;
}

.gallery-thumbnail-item {
    flex: 0 0 80px;
    height: 60px;
    border-radius: 4px;
    overflow: hidden;
    cursor: pointer;
    opacity: 0.7;
    border: 2px solid transparent;
    transition: all 0.2s ease;
    position: relative;
}

.gallery-thumbnail-item.active {
    opacity: 1;
    border: 2px solid #F2E3BC;
}

.gallery-thumbnail-item:hover {
    opacity: 0.9;
}

.gallery-thumbnail-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
}

/* Ensure gallery thumbnails in fullscreen gallery are also styled correctly */
.gallery-thumbnails {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 20px;
    max-height: 80px;
    overflow-y: auto;
    padding: 5px 0;
}

.gallery-thumbnail {
    width: 60px;
    height: 60px;
    object-fit: cover;
    margin: 0 5px;
    cursor: pointer;
    opacity: 0.6;
    transition: opacity 0.3s, border 0.3s ease;
    border: 2px solid transparent;
}

.gallery-thumbnail.active {
    opacity: 1;
    border: 2px solid white;
}

.gallery-thumbnail:hover {
    opacity: 0.9;
}

/* Footer styles */
footer {
    background-color: #333;
    color: #fff;
    padding: 20px 0;
    text-align: center;
}

/* Hamburger Menu */
.hamburger-menu {
    display: none;
    cursor: pointer;
    z-index: 1001;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: white;
    margin: 5px 0;
    transition: 0.4s;
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(65, 69, 53, 0.95);
    z-index: 2000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-menu img {
    width: 30px;
    height: auto;
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
}

.close-menu {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 40px;
    color: white;
    cursor: pointer;
}

.mobile-menu-items {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.mobile-menu-items a {
    color: white;
    font-size: 24px;
    margin: 15px 0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.mobile-language {
    margin-top: 30px;
    display: flex;
    align-items: center;
    color: white;
}

.mobile-language a {
    margin: 0 10px;
    font-size: 16px;
}

/* Contact Section Styles */
.contact-container {
    display: flex;
    justify-content: space-between;
    margin-top: 50px;
    gap: 40px;
}

.contact-info, .contact-form {
    flex: 1;
}

.contact-info {
    background-color: #f9f9f9;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.contact-item i {
    font-size: 20px;
    margin-right: 15px;
    color: #414535;
    width: 25px;
    text-align: center;
}

.social-media {
    display: flex;
    margin-top: 30px;
}

.social-media a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #414535;
    color: white;
    border-radius: 50%;
    margin-right: 15px;
    transition: all 0.3s ease;
}

.social-media a:hover {
    background-color: #F2E3BC;
    color: #333;
    transform: translateY(-3px);
}

.contact-form {
    display: flex;
    flex-direction: column;
}

.contact-form form {
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* Make the message textarea grow to fill available space */
.contact-form .form-group:nth-child(3) {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.contact-form .form-group:nth-child(3) textarea {
    flex-grow: 1;
    min-height: 200px; /* Increased minimum height */
}

/* Make submit button stick to bottom of form */
.contact-form .submit-button {
    margin-top: auto;
}

.contact-form form {
    display: flex;
    flex-direction: column;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: 'Satoshi-Regular', sans-serif;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #414535;
}

.form-group textarea {
    min-height: 300px;
    resize: vertical;
}
.form-message {
    margin-top: 15px;
    padding: 10px;
    border-radius: 5px;
    display: none;
}

.form-message.success {
    display: block;
    background-color: #dff0d8;
    color: #3c763d;
    border: 1px solid #d6e9c6;
}

.form-message.error {
    display: block;
    background-color: #f2dede;
    color: #a94442;
    border: 1px solid #ebccd1;
}

.form-message.info {
    display: block;
    background-color: #d9edf7;
    color: #31708f;
    border: 1px solid #bce8f1;
}


.submit-button {
    padding: 12px 30px;
    background-color: #F2E3BC;
    color: #333;
    border: none;
    border-radius: 30px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.submit-button:hover {
    background-color: #414535;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Responsive styles for contact section */
@media (max-width: 768px) {
    .contact-container {
        flex-direction: column;
    }
    
    .contact-info, .contact-form {
        width: 100%;
    }
    
    .submit-button {
        width: 100%;
        align-self: center;
    }
}

/* About Section Styles - Updated with two-row layout */
.about-section {
    position: relative;
    padding: 40px 0;
    background-color: #414535;
    color: #fff;
    overflow: hidden;
}

.about-section h2 {
    color: #fff;
}

/* Multiple leaf background images */
.background-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 10% 20%, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.05) 20%),
                      radial-gradient(circle at 80% 70%, rgba(242, 227, 188, 0.08) 0%, rgba(242, 227, 188, 0.08) 30%);
    z-index: 1;
}

.leaf-bg {
    position: absolute;
    background-image: url("../images/leaf.cbf8a3417697.webp");
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.15;
    z-index: 1;
    pointer-events: none;
}

.leaf-1 {
    top: -50px;
    right: -50px;
    width: 300px;
    height: 300px;
    transform: rotate(-50deg);
}

.leaf-2 {
    bottom: 50px;
    left: -80px;
    width: 250px;
    height: 250px;
    transform: rotate(120deg);
}

.leaf-3 {
    top: 40%;
    right: 10%;
    width: 180px;
    height: 180px;
    transform: rotate(30deg);
}

.leaf-4 {
    top: 30%;
    left: 5%;
    width: 200px;
    height: 200px;
    transform: rotate(-80deg);
}

.about-section .container {
    position: relative;
    z-index: 2;
}

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

.about-intro {
    margin-bottom: 40px;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #f8f8f8;
    text-align: center;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

/* Two-row layout for about section */
.about-rows {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.about-row {
    display: flex;
    gap: 40px;
    align-items: center;
}

/* First row has text-left, image-right */
.about-row.row-1 {
    flex-direction: row;
}

/* Second row has image-left, text-right */
.about-row.row-2 {
    flex-direction: row;
}

.about-text-col {
    flex: 1;
}

/* Equal image sizes in about section */
.about-image-col {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 350px; /* Set fixed height for consistency */
}

.about-image {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
    border: 10px solid #fff;
    width: 100%;
    max-width: 450px;
    height: 100%; /* Use full height */
    position: relative;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensure images cover the area without distortion */
    display: block;
    transition: transform 0.5s ease;
}

.about-image:hover img {
    transform: scale(1.03);
}

.about-paragraph {
    background: rgba(255, 255, 255, 0.1);
    padding: 25px;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
}

.about-paragraph::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 5px;
    background: #F2E3BC;
}

.about-subtitle {
    color: #F2E3BC;
    font-size: 1.4rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.about-paragraph p {
    color: #f8f8f8;
    line-height: 1.7;
    margin: 0;
}

/* CSS for mobile responsiveness */
@media (max-width: 992px) {
    .about-row.row-1, 
    .about-row.row-2 {
        flex-direction: column;
    }
    
    .about-image-col {
        order: 2; /* Always put images below text on mobile */
    }
    
    .about-text-col {
        order: 1; /* Always put text above images on mobile */
    }
    
    .about-image {
        width: 100%;
        max-width: 100%;
    }
}

@media (max-width: 1000px) {
    .about-section {
        padding: 30px 0;
    }

    .about-paragraph {
        padding: 20px;
    }
    
    .about-subtitle {
        font-size: 1.2rem;
    }
    
    .section-underline::before,
    .section-underline::after {
        width: 20px;
        left: -30px;
    }
    
    .section-underline::after {
        right: -30px;
        left: auto;
    }

    .about-section h2 {
        font-size: 1.5rem;
    }

    .nav-menu {
        display: none;
    }
    
    .hamburger-menu {
        display: block;
    }
    
    .hero-content {
        left: 0;
        right: 0;
        margin-left: auto;
        margin-right: auto;
        max-width: 90%;
        padding: 10px;
        margin-top: 50px;
    }
    
    .hero-content h1 {
        font-size: 1.3rem;
        text-align: center;
    }
    
    .hero-content p {
        font-size: 1rem;
        text-align: center;
    }
    
    .hero-content .cta-button {
        display: block;
        text-align: center;
        margin: 0 auto;
        max-width: 200px;
        padding: 3px;
    }
    
    .hero-slide {
        align-items: center;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-content {
        padding: 20px;
    }
    
    .hero-content h1 {
        font-size: 1.8rem;
    }
}

/* Projects Section */
#projects h2{
    color: #333;
}

/* Projects Accordion Styling */
.accordion-container {
    width: 100%;
    margin: 30px 0;
}

.accordion-item {
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    background-color: #fff;
}

.accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 20px;
    background-color: #414535;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #F2E3BC;
}

.accordion-header:hover {
    background-color: #F2E3BC;
    color:#000;
}

.accordion-header h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
}

.accordion-icon {
    font-size: 16px;
    transition: transform 0.3s ease;
}

.accordion-item.active .accordion-icon {
    transform: rotate(45deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.accordion-item.active .accordion-content {
    max-height: 2000px; /* Increased to accommodate larger content */
}

.product-details {
    padding: 20px;
}

.product-info {
    width: 100%;
}

.product-main-image {
    margin: 20px 0;
    text-align: center;
}

.product-main-image img {
    max-width: 100%;
    height: auto;
    border-radius: 6px;
    object-fit: cover;
    max-height: 300px;
}

.product-info ul {
    padding-left: 20px;
    margin-top: 0;
}

.product-info li {
    margin-bottom: 12px;
    line-height: 1.5;
}

/* Sub-Products Styling */
.sub-products-container {
    display: flex;
    margin-top: 30px;
    border-top: 1px solid #eee;
    padding-top: 20px;
}

.sub-product-tabs-container {
    width: 30%;
    padding-right: 20px;
}

.sub-product-tabs-container h4 {
    margin-bottom: 15px;
    color: #414535;
    font-weight: 600;
}

.sub-product-tabs {
    list-style-type: none;
    padding: 0;
    margin: 0;
    border-right: 1px solid #eee;
}

.sub-product-tab {
    padding: 12px 15px;
    background-color: #f8f8f8;
    border-left: 3px solid transparent;
    margin-bottom: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 4px;
    display: flex;
    align-items: center;
}

.sub-product-tab:hover {
    background-color: #f0f0f0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.sub-product-tab.active {
    background-color: #414535;
    border-left: 3px solid #F2E3BC;
    font-weight: bold;
    color: #fff;
}

.tab-title {
    display: block;
    font-size: 14px;
    transition: transform 0.2s ease;
}

.sub-product-tab:hover .tab-title {
    transform: translateX(3px);
}

.sub-product-tab.active .tab-title {
    transform: translateX(3px);
}

.sub-product-content {
    width: 70%;
    padding-left: 20px;
}

.sub-product-panel {
    display: none;
}

.sub-product-panel.active {
    display: block;
    animation: fadeIn 0.3s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Mobile view adjustments for sub-product tabs */
@media (max-width: 768px) {
    .sub-products-container {
        flex-direction: column;
    }
    
    .sub-product-tabs-container {
        width: 100%;
        padding-right: 0;
        margin-bottom: 20px;
    }
    
    .sub-product-tabs {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        border-right: none;
        border-bottom: 1px solid #eee;
        padding-bottom: 10px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: thin;
        flex-direction: column;
    }
    
    .sub-product-tab {
        flex: 0 0 auto;
        margin-right: 8px;
        margin-bottom: 0;
        white-space: nowrap;
        padding: 10px 15px;
        border-left: none;
        border-bottom: 3px solid transparent;
        min-width: 120px;
        justify-content: center;
    }
    
    .sub-product-tab.active {
        border-left: none;
        border-bottom: 3px solid #F2E3BC;
    }
    
    .sub-product-tab:hover .tab-title,
    .sub-product-tab.active .tab-title {
        transform: translateY(-2px);
    }
    
    .sub-product-content {
        width: 100%;
        padding-left: 0;
    }
    
    .main-gallery-image {
        height: 300px;
    }
}

/* For smaller screens, further optimize tab display */
@media (max-width: 480px) {
    .sub-product-tab {
        min-width: 100px;
        padding: 8px 12px;
        font-size: 13px;
    }
    
    .sub-product-tabs-container h4 {
        font-size: 16px;
    }
    
    .main-gallery-image {
        height: 250px;
    }
}

.sub-product-description {
    margin-bottom: 20px;
}

.sub-product-gallery {
    margin-top: 20px;
}

.main-gallery-image {
    width: 100%;
    height: 400px;
    margin-bottom: 15px;
    overflow: hidden;
    border-radius: 6px;
    background-color: #f9f9f9;
    display: flex;
    justify-content: center;
    align-items: center;
}

.main-gallery-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    cursor: pointer;
    transition: transform 0.3s ease;
}

/* Fix for gallery overlay to ensure it works properly */
.gallery-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 9999;
    display: none;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-overlay.active {
    display: flex;
    opacity: 1;
}

/* Footer styles */
.footer {
    background-color: #414535;
    color: #fff;
    padding: 40px 0 20px;
    margin-top: 60px;
}

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

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo img {
    width: 150px;
    height: auto;
    filter: brightness(0) invert(1);
}

.footer-social {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    color: #F2E3BC;
    border-radius: 50%;
    margin: 0 10px;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background-color: #F2E3BC;
    color: #414535;
    transform: translateY(-3px);
}

.footer-copyright {
    font-size: 0.9rem;
    opacity: 0.8;
}

.footer-copyright a {
    color: #F2E3BC;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.builder-credit {
    margin-top: 5px;
    font-size: 0.8rem;
    color: #F2E3BC;
}

.builder-credit a {
    color: #F2E3BC;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.builder-credit a:hover {
    color: #fff;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .footer {
        padding: 30px 0 15px;
    }
    
    .footer-social a {
        width: 35px;
        height: 35px;
        margin: 0 8px;
    }
}

/* Custom Loader Animation */
.loader-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease-out, visibility 0.5s ease-out;
  }
  
  .loader {
    height: 15px;
    aspect-ratio: 5;
    display: grid;
    animation: l36-0 2s infinite linear; 
  }
  
  .loader:before,
  .loader:after {
    content: "";
    grid-area: 1/1;
    height: inherit;
    --_g: no-repeat radial-gradient(farthest-side,#333 94%,#333);
    background:
      var(--_g) left,
      var(--_g) right;
    background-size: 15px 100%;
    background-repeat: no-repeat;
    animation: l36-1 1s infinite linear; 
  }
  
  .loader:after {
    margin-left: auto;
    --s:-1;
  }
  
  @keyframes l36-0 {
    0%,49.99% {transform: scaleY( 1)}
    50%,100%  {transform: scaleY(-1)}
  }
  
  @keyframes l36-1 {
    0%   {transform:translate(0                    ,calc(var(--s,1)*0px));aspect-ratio: 2.3}
    33%  {transform:translate(0                    ,calc(var(--s,1)*8px));aspect-ratio: 2.3}
    66%  {transform:translate(calc(var(--s,1)*19px),calc(var(--s,1)*8px));aspect-ratio: 3.7}
    100% {transform:translate(calc(var(--s,1)*19px),calc(var(--s,1)*0px));aspect-ratio: 3.7}
  }
  
  .loader-hidden {
    opacity: 0;
    visibility: hidden;
  }

  .instagram-feed{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
  }

  .instagram-feed .section-header{
    margin-bottom: 20px;
  }

  .whatsapp-button {
    margin-left: 15px;
}

.whatsapp-button a {
    display: flex;
    align-items: center;
    background-color: #25D366;
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s;
}

.whatsapp-button a:hover {
    background-color: #128C7E;
}

.whatsapp-button i {
    margin-right: 5px;
    font-size: 16px;
}

.mobile-whatsapp {
    margin-top: 15px;
}

.mobile-whatsapp a {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #25D366;
    color: white;
    padding: 10px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: bold;
}

.mobile-whatsapp i {
    margin-right: 5px;
    font-size: 18px;
}