/* Base Styles */
:root {
    --primary-color: #bb9600;
    --accent-color: #e74c3c;
    --text-color: #ffffff;
    --light-bg: #f5f5f5;
    --secondary-color: #9f8327;
    --background-color: #0A0A0A;
    --surface-color: #121212;
    --card-bg: #161616;
    --text-muted: #888888;
    --border-color: #2A2A2A;
    --nav-bg: rgba(10, 10, 10, 0.7);
    --gradient-1: linear-gradient(45deg, #D4AF37, #9f8327);
    --gradient-2: linear-gradient(to right, rgba(10, 10, 10, 0.9), rgba(18, 18, 18, 0.9));
    --smooth-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.1),
                    0 5px 15px -5px rgba(0, 0, 0, 0.05);
    --smooth-shadow-hover: 0 20px 40px -15px rgba(0, 0, 0, 0.15),
                          0 10px 25px -10px rgba(0, 0, 0, 0.08);
    --image-shadow: 0 15px 35px -15px rgba(0, 0, 0, 0.2),
                   0 8px 20px -8px rgba(0, 0, 0, 0.12);
    --shadow-color: rgba(0, 0, 0, 0.3);
    --card-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    --hover-shadow: 0 15px 40px rgba(212, 175, 55, 0.15);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent; /* Disable blue overlay */
}
a, button, img {
    -webkit-tap-highlight-color: transparent; /* Ensure no overlay on interactive elements */
}
a:active, button:active {
    outline: none; /* Prevent active outline */
    background: none; /* Remove background changes */
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--background-color);
    background-image: 
        linear-gradient(to bottom, rgba(10, 10, 10, 0.95), rgba(10, 10, 10, 0.95)),
        url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23232323' fill-opacity='0.2'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

/* Common Section Styles */
section {
    padding: 100px 0;
    position: relative;
}

section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(212, 175, 55, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--gradient-1);
    border-radius: 2px;
}

.section-header p {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    height: 65px;
    max-width: 1200px;
    padding: 0 40px;
    background: var(--nav-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 1000;
    border-radius: 50px;
    border: 1px solid rgba(212, 175, 55, 0.1);
    box-shadow: var(--smooth-shadow);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-toggle {
    display: none;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
    margin: 0;
    padding: 0;
    list-style: none;
}

/* Mobile Navigation */
@media (max-width: 768px) {
    .navbar {
        padding: 0 20px;
        top: 10px; /* Adjust top position */
        height: 60px; /* Reduce navbar height */
    }

    .nav-links {
        display: none;
        position: fixed;
        top: 80px; /* Adjust from navbar height + spacing */
        left: 5%;
        width: 90%;
        padding: 20px;
        background: rgba(10, 10, 10, 0.95);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        border-radius: 15px;
        flex-direction: column;
        gap: 15px;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        transition: all 0.3s ease;
        border: 1px solid rgba(212, 175, 55, 0.1);
        box-shadow: var(--smooth-shadow);
    }

    .nav-links.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        display: flex;
    }

    .nav-links a {
        width: 100%;
        text-align: center;
        padding: 12px;
        border-radius: 8px;
        font-size: 1rem;
    }

    .nav-links .cta-button {
        margin-top: 10px;
    }

    .nav-toggle {
        display: flex;
        flex-direction: column;
        gap: 6px;
        z-index: 100;
        padding: 10px;
        border-radius: 8px;
        transition: all 0.3s ease;
        background: transparent;
        border: none;
        position: relative;
        width: 35px;
        height: 30px;
    }

    .nav-toggle span {
        display: block;
        width: 25px;
        height: 2px;
        background-color: var(--primary-color);
        transition: all 0.3s ease;
        position: absolute;
        left: 5px;
        transform-origin: center;
    }

    .nav-toggle span:nth-child(1) {
        top: 8px;
    }

    .nav-toggle span:nth-child(2) {
        top: 14px;
    }

    .nav-toggle span:nth-child(3) {
        top: 20px;
    }

    .nav-toggle.active span:nth-child(1) {
        transform: translateY(6px) rotate(45deg);
    }

    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active span:nth-child(3) {
        transform: translateY(-6px) rotate(-45deg);
    }
}

@media (max-width: 768px) {
    .nav-toggle {
        display: block;
    }

    .nav-links {
        display: none;
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        background: var(--nav-bg);
        padding: 20px;
    }

    .nav-links.active {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
}


.nav-logo {
    padding: 10px 0;
    position: relative;
}

.nav-logo::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background: radial-gradient(
        circle,
        rgba(212, 175, 55, 0.2) 0%,
        rgba(212, 175, 55, 0.1) 45%,
        transparent 70%
    );
    filter: blur(8px);
    animation: glowPulse 2s ease-in-out infinite;
}

.nav-logo img {
    height: 30px;
    width: auto;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.nav-logo a {
    display: block;
    position: relative;
}

.nav-logo a:hover img {
    transform: scale(1.05);
}

.nav-logo a:hover::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 60px;
    background: radial-gradient(
        circle,
        rgba(212, 175, 55, 0.3) 0%,
        rgba(212, 175, 55, 0.15) 50%,
        transparent 75%
    );
    filter: blur(10px);
    animation: none;
    z-index: 0;
}

@keyframes glowPulse {
    0% {
        opacity: 0.5;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1.1);
    }
    100% {
        opacity: 0.5;
        transform: translate(-50%, -50%) scale(1);
    }
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-links a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding: 5px 0;
}

/* Modify the underline effect to exclude the CTA button */
.nav-links a:not(.cta-button)::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-1);
    transition: width 0.3s ease;
}

.nav-links a:not(.cta-button):hover::after {
    width: 100%;
}

.nav-links .cta-button {
    background: var(--gradient-1);
    color: var(--background-color);
    padding: 12px 25px;
    border-radius: 30px;
    transition: all 0.3s;
    border: none;
}

.nav-links .cta-button:hover {
    transform: translateY(-2px);
    box-shadow: var(--hover-shadow);
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(var(--gradient-2)),
                url('../assets/hero-bg.jpg') center/cover;
    display: flex;
    align-items: center;
    justify-content: flex-start; /* Changed from center to flex-start */
    text-align: left; /* Changed from center to left */
    position: relative;
    padding: 120px 20px;
    min-height: 100vh;
    background-position: center;
    background-size: cover;
}

@media (max-width: 768px) {
    .hero-content {
        text-align: center;
        margin: 0 auto;
    }

    .hero-buttons {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .hero {
        background: linear-gradient(var(--gradient-2)),
                    url('../assets/hero-mobile-bg.jpg') center/cover;
    }
}

.hero-content {
    max-width: 800px;
    padding: 0 20px;
    margin-left: 10%; /* Added margin from left */
}

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;
    background: linear-gradient(
        45deg,
        #D4AF37 0%,
        #FFE5A0 25%,
        #D4AF37 50%,
        #FFE5A0 75%,
        #D4AF37 100%
    );
    background-size: 200% auto;
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    animation: shine 8s linear infinite;
}

@keyframes shine {
    0% {
        background-position: 0% center;
    }
    100% {
        background-position: 200% center;
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
}

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

.hero-content p {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 40px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: flex-start; /* Changed from center to flex-start */
    margin-top: 40px;
}

.hero-btn {
    padding: 18px 35px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.hero-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.3) 50%, transparent 100%);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.hero-btn:hover::before {
    transform: translateX(100%);
   
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.5);
}

.hero-btn.primary {
    background: var(--gradient-1);
    color: var(--background-color);
    border: none;
}

.hero-btn.secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    position: relative;
    overflow: hidden;
}

.hero-btn.secondary::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    
    transform: rotate(45deg);
    animation: shine 3s infinite;
}

.hero-btn:hover {
    transform: translateY(-3px);
}

.hero-btn.primary:hover {
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
}

.hero-btn.secondary:hover {
    background: var(--gradient-1);
    color: var(--background-color);
    border-color: transparent;
}

.hero-btn i {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.hero-btn:hover i {
    transform: translateX(5px);
}

/* Services Section */
.services {
    background: var(--surface-color);
}

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

.service-card, .testimonial-card, .blog-card, .contact-card, .info-card {
    background: var(--card-bg);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: left;
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), 
                box-shadow 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.1);
    box-shadow: var(--smooth-shadow);
    position: relative;
    overflow: hidden;
}

.service-card:hover, .testimonial-card:hover, .blog-card:hover, .contact-card:hover, .info-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--smooth-shadow-hover);
}

.service-card::before, .testimonial-card::before, .blog-card::before, .contact-card::before, .info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(212, 175, 55, 0.03), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.service-card:hover::before, .testimonial-card:hover::before, .blog-card:hover::before, .contact-card:hover::before, .info-card:hover::before {
    transform: translateX(100%);
}

.service-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    display: inline-block;
    transition: transform 0.3s ease;
}

.service-card:hover i {
    transform: scale(1.1);
}

.service-card h3 {
    font-size: 1.5rem;
    color: var(--heading-color);
    margin-bottom: 15px;
    font-weight: 600;
}

.service-card p {
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 0;
    font-size: 1rem;
    text-align: left;
}

.service-list {
    list-style: none;
    padding: 0;
    margin: 15px 0 0 0;
}

.service-list li {
    color: var(--text-muted);
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
    font-size: 0.95rem;
}

.service-list li::before {
    content: '→';
    color: var(--primary-color);
    position: absolute;
    left: 0;
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.service-card:hover .service-list li::before {
    transform: translateX(3px);
}




/* Blog Section */
.blog {
    background: var(--background-color);
}

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

.blog-card {
    background: var(--card-bg);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: var(--hover-shadow);
}

.blog-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
}

.blog-card:hover .blog-image img {
    transform: scale(1.1);
    
}

.blog-content {
    padding: 30px;
}

.blog-content h3 {
    color: var(--text-color);
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.blog-content p {
    color: var(--text-muted);
    margin-bottom: 20px;
}



.hidden {
    display: none;
}


#read-more-btn {
    background: var(--gradient-1);
    color: var(--background-color);
    padding: 12px 25px;
    border-radius: 30px;
    transition: all 0.3s;
    border: none;
}

#read-more-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--hover-shadow);
}
.blog-link {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: color 0.3s ease;
}

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

.blog-link i {
    font-size: 0.8em;
    transition: transform 0.3s ease;
}

.blog-link:hover i {
    transform: translateX(3px);
}


/* About Us Section */
.about {
    padding: 100px 0;
    background: var(--background-color);
}

.about-content {
    display: flex;
    flex-direction: row;
    gap: 60px;
    align-items: center;
}

.about-image {
    flex: 1;
    order: 1; /* Places image on the left */
}

.about-text {
    flex: 1;
    order: 2; /* Places text on the right */
    padding-left: 30px;
    padding-right: 0;
}

.experience-badge {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: var(--primary-color);
    color: white;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    z-index: 10;
}

.experience-badge .years {
    font-size: 2.5rem;
    font-weight: 700;
    display: block;
    line-height: 1;
}

.experience-badge .text {
    font-size: 0.9rem;
    opacity: 0.9;
}


.about-specialties {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin: 30px 0;
}

.specialty-item {
    text-align: center;
    padding: 20px;
    background: var(--card-bg);
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.specialty-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--hover-shadow);
    background: var(--surface-color);
    border-color: var(--primary-color);
}

.specialty-item i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    transition: transform 0.3s ease;
}

.specialty-item:hover i {
    transform: scale(1.2);
    color: var(--primary-color);
}

.specialty-item h4 {
    margin: 10px 0;
    color: var(--text-color);
    transition: color 0.3s ease;
}

.specialty-item:hover h4 {
    color: var(--primary-color);
}

.specialty-item p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .about-content {
        flex-direction: column;
    }
     
    .about-image,
    .about-text {
        width: 100%;
        padding: 0;
        text-align: left; /* Change from center to left */
    }

    .about-image {
        order: 1;
        margin-bottom: 40px;
    }

    .about-text {
        order: 2;
    }

    /* Update feature cards alignment */
    .about-features {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        text-align: left; /* Change from center to left */
    }

    .feature {
        text-align: left; /* Change from center to left */
        padding: 30px 20px;
    }

    .highlight-text {
        text-align: left; /* Change from center to left */
    }

    .about-description p {
        text-align: left;
      }
}

.about-description {
    margin-top: 30px;
}

.highlight-text {
    font-size: 1.5rem;
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.feature {
    text-align: center;
    padding: 20px 20px;
    border-radius: 20px;
    background: var(--card-bg);
    backdrop-filter: blur(10px);
}

.feature .counter-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    font-family: 'Playfair Display', serif;
    display: block;
    margin: 15px 0 5px;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.feature p {
    color: var(--text-muted);
    font-size: 1rem;
}

.image-stack {
    position: relative;
    width: 100%;
    height: 500px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.img-main {
    width: 450px;
    height: 450px;
    object-fit: cover;
    border-radius: 20px;
    position: absolute;
    left: 0;
    z-index: 1;
    box-shadow: var(--image-shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.img-overlay {
    width: 380px;
    height: 380px;
    object-fit: cover;
    border-radius: 20px;
    position: absolute;
   right: -30px;
   bottom: -30px;
    z-index: 2;
    box-shadow: var(--image-shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.img-main:hover, .img-overlay:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

@media (max-width: 992px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-text {
        padding-right: 0;
    }

    .image-stack {
        height: 350px;
        margin: 0 auto;
        max-width: 350px;
        justify-content: center;
    }

    .img-main {
        width: 100%;
        height: 100%;
        position: relative;
        right: auto;
    }

    .img-overlay {
        display: none;
    }
}

@media (max-width: 576px) {
    .image-stack {
        height: 400px;
        margin: 0 auto;
        max-width: 100%;
    }

    .img-main {
        width: 280px;
        height: 280px;
        right: 20px;
    }

    .img-overlay {
        width: 200px;
        height: 200px;
        left: 20px;
    }
}

/* About Us Section Mobile Optimizations */
@media (max-width: 768px) {
    .about-content {
        flex-direction: column;
    }
    
    .about-image {
        display: none; /* Hide images on mobile */
    }

    .about-text {
        width: 100%;
        padding: 0;
        text-align: center;
    }

    .about-features {
        grid-template-columns: repeat(2, 1fr); /* Show only 2 cards per row */
        gap: 20px;
    }

    /* Hide the last two feature cards on mobile */
    .feature:nth-child(n+3) {
        display: none;
    }

    .feature {
        padding: 30px 20px;
    }

    .feature .counter-number {
        font-size: 2.2rem;
    }

    .feature p {
        font-size: 0.9rem;
    }

    .highlight-text {
        font-size: 1.3rem;
        margin-bottom: 15px;
    }
}

/* Even smaller screens */
@media (max-width: 480px) {
    .about-features {
        gap: 15px;
    }

    .feature {
        padding: 25px 15px;
    }

    .feature .counter-number {
        font-size: 2rem;
    }
}

/* Contact Section */
.contact {
    background: var(--background-color);
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 50%, rgba(212, 175, 55, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
    margin-top: 50px;
    position: relative;
}

@media (max-width: 768px) {
    .contact-wrapper {
        flex-direction: column;
        
        
    }

    .contact-info,
    .contact-form-wrapper {
        width: 100%;
    }

    .input-row {
        flex-direction: column;
    }

    .form-group {
        width: 100%;
        margin: 10px 0;
    }
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-card {
    background: var (--card-bg);
    border-radius: 20px;
    padding: 35px;
    display: flex;
    align-items: flex-start;
    gap: 25px;
    transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(212, 175, 55, 0.03), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.contact-card:hover::before {
    transform: translateX(100%);
}

.contact-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: var(--hover-shadow);
}

.icon-box {
    width: 60px;
    height: 60px;
    background: var(--gradient-1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--background-color);
    flex-shrink: 0;
}

.info-content h3 {
    color: var(--primary-color);
    margin-bottom: 12px;
    font-size: 1.3rem;
    font-weight: 600;
}

.info-content p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.6;
}

.social-connect {
    background: var(--card-bg);
    border-radius: 20px;
    padding: 35px;
    text-align: center;
    border: 1px solid var(--border-color);
    transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.social-connect:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: var(--hover-shadow);
}

.social-connect h3 {
    color: var(--primary-color);
    margin-bottom: 25px;
    font-size: 1.3rem;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social-icon {
    width: 50px;
    height: 50px;
    background: var(--surface-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-color);
    font-size: 1.2rem;
    transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.social-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-1);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.social-icon i {
    position: relative;
    z-index: 1;
    transition: color 0.3s ease;
}

.social-icon:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
}

.social-icon:hover::before {
    opacity: 1;
}

.social-icon:hover i {
    color: var(--background-color);
}

.contact-form-wrapper {
    background: var(--card-bg);
    border-radius: 25px;
    padding: 50px;
    border: 1px solid var(--border-color);
    transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.contact-form-wrapper:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.contact-form-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(212, 175, 55, 0.03), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.contact-form-wrapper:hover::before {
    transform: translateX(100%);
}

.form-header {
    text-align: center;
    margin-bottom: 40px;
}

.form-header h3 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 15px;
    font-family: 'Playfair Display', serif;
}

.form-header p {
    color: var(--text-muted);
    font-size: 1.1rem;
}

.input-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-bottom: 25px;
}

.form-group {
    margin-bottom: 25px;
    position: relative;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    color: var(--text-color);
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 15px;
    background: var(--surface-color);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    color: var (--text-color);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.1);
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}
.form-group select option {
    background: var(--surface-color);
    color: var(--text-color);
    padding: 10px;
}
.checkbox-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 30px;
}

.checkbox-wrapper input[type="checkbox"] {
    width: 20px;
    height: 20px;
    accent-color: var(--primary-color);
    cursor: pointer;
}

.checkbox-wrapper label {
    margin-bottom: 0;
    font-size: 0.95rem;
    color: var(--text-muted);
    cursor: pointer;
}

.submit-btn {
    width: 100%;
    padding: 18px;
    background: var(--gradient-1);
    color: var(--background-color);
    border: none;
    border-radius: 15px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    position: relative;
    overflow: hidden;
}

.submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.submit-btn:hover::before {
    transform: translateX(100%);
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--hover-shadow);
}

.submit-btn i {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.submit-btn:hover i {
    transform: translateX(5px);
}

/* Location Section */
.location {
    padding: 100px 0;
    background: var(--background-color);
}

.map-container {
    margin: 40px 0;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--smooth-shadow);
}

.map-container iframe {
    display: block;
    width: 100%;
    height: 350px;
    border: none;
}

.location-info {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.info-card {
    background: var(--card-bg);
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--smooth-shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--smooth-shadow-hover);
}

.info-card i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.info-card h3 {
    color: var(--heading-color);
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.info-card p {
    color: var(--text-muted);
    line-height: 1.6;
}

@media (max-width: 992px) {
    .location-info {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .location-info {
        grid-template-columns: 1fr;
    }
    
    .map-container {
        margin: 30px 0;
    }
    
    .map-container iframe {
        height: 350px;
    }
}

/* Footer */
.footer {
    background: var(--surface-color);
    padding: 50px 0 20px;
    border-top: 1px solid var(--border-color);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: left; /* Change from center to left */
    }

    .footer-brand,
    .footer-links,
    .footer-newsletter {
        text-align: left; /* Change from center to left */
    }

    .social-icons {
        justify-content: flex-start; /* Change from center to left */
    }

    .footer-newsletter input,
    .footer-newsletter button {
        width: 100%;
        max-width: 300px; /* Optional: limit width on mobile */
    }

    .footer-bottom {
        text-align: left; /* Change from center to left */
        padding-left: 20px; /* Add some padding */
    }
}

.footer-brand h3 {
    color: var(--primary-color);
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.footer-brand p {
    color: var(--text-muted);
    margin-bottom: 30px;
}

.footer-links h4 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 1.2rem;
}

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

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s ease;
    display: block;
    margin-bottom: 10px;
}

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

.footer-newsletter input {
    width: 100%;
    padding: 12px;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: var (--text-color);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.footer-newsletter button {
    width: 100%;
    padding: 12px;
    background: var (--gradient-1);
    color: var (--background-color);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.footer-newsletter button:hover {
    transform: translateY(-3px);
    box-shadow: var(--hover-shadow);
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    margin-top: 60px;
    border-top: 1px solid var(--border-color);
    color: var(--text-muted);
}

.footer .social-links a {
    color: #ffffff;  /* Makes the icons white */
    font-size: 1.5rem;
    margin-right: 15px;
    transition: opacity 0.3s ease;
}

.footer .social-links a:hover {
    opacity: 0.8;  /* Slightly fade on hover while maintaining white color */
}

/* Custom Cursor */
.custom-cursor {
    position: fixed;
    width: 20px; /* Set the width of the cursor */
    height: 20px; /* Set the height of the cursor */
    border-radius: 50%; /* Make it circular */
    background-color: rgba(255, 0, 0, 0.7); /* Customize the color */
    pointer-events: none; /* Prevent the cursor from interfering with clicks */
    transition: transform 0.1s ease; /* Smooth movement */
    z-index: 9999; /* Ensure it appears above other elements */
}

/* Hide cursor glow on mobile devices */
@media (max-width: 768px) {
    .cursor {
        display: none;
    }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .container {
        padding: 0 40px;
    }
    
    .hero-content h1 {
        font-size: 3.5rem;
    }
}

@media (max-width: 992px) {
    .navbar {
        padding: 15px 30px;
    }
    
    .nav-links {
        display: none;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-info {
        order: 2;
    }
    
    .contact-form-wrapper {
        order: 1;
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.8rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .service-card,
    .blog-card {
        padding: 30px 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .social-icons {
        justify-content: center;
    }
    
    .input-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .contact-form-wrapper {
        padding: 35px 25px;
    }
    
    .contact-card {
        padding: 25px;
    }
    
    .icon-box {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 20px;
    }
    
    .hero-content h1 {
        font-size: 2.2rem;
    }
    
    
    .filter-btn {
        width: 100%;
        text-align: center;
    }
    
    .social-icons {
        flex-wrap: wrap;
    }
    
    .social-icon {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
    
    .form-header h3 {
        font-size: 1.5rem;
    }
}





@media (max-width: 768px) {
    .nav-logo img {
        height: 40px;
    }
    
    .nav-logo::before {
        width: 60px;
        height: 60px;
    }
    
    .nav-logo a:hover::before {
        width: 65px;
        height: 65px;
    }
}


.youtube-section {
    padding: 100px 0;
    background: var(--background-color);
}

.youtube-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.video-card {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--smooth-shadow);
}

.video-card iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.youtube-cta {
    text-align: center;
    margin-top: 50px;
}

.youtube-cta .cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--gradient-1);
    color: var(--background-color);
    padding: 15px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.youtube-cta .cta-button:hover {
    transform: translateY(-2px);
    box-shadow: var(--hover-shadow);
}

.youtube-cta .cta-button i {
    font-size: 1.2rem;
}

@media (max-width: 768px) {
    .youtube-grid {
        grid-template-columns: 1fr;
    }
}

.loading-spinner {
    text-align: center;
    padding: 20px;
    color: var(--text-color);
}

.error {
    text-align: center;
    color: red;
    padding: 20px;
}

/* Responsive YouTube Section */
.youtube-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.video-card {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
}

.video-card iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Responsive Images */
img {
    max-width: 100%;
    height: auto;
}


/* Additional Mobile Optimizations */
@media (max-width: 480px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    .section-header p {
        font-size: 1rem;
    }

    .cta-button {
        width: 100%;
        text-align: center;
    }
}

/* Touch-friendly Elements */
@media (hover: none) {
    
    .service-card:hover,
    .blog-card:hover {
        transform: none;
    }

    button,
    a {
        padding: 12px 20px; /* Larger touch targets */
    }
}

/* Loading States */
.loading {
    opacity: 0.5;
    pointer-events: none;
}

/* Smooth Scrolling for iOS */
@supports (-webkit-overflow-scrolling: touch) {
    body {
        -webkit-overflow-scrolling: touch;
    }
}

/* Instagram Section Styles */
.instagram-section {
    padding: 80px 0;
    background: var(--background-color);
}

.instagram-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 25px;
    margin-top: 40px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
}

.insta-item {
    position: relative;
    aspect-ratio: 1; /* Makes it square */
    overflow: hidden;
    border-radius: 15px;
    box-shadow: var(--smooth-shadow);
    height: auto; /* Remove fixed height */
    width: 100%; /* Ensure full width */
}

.insta-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .instagram-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(3, 1fr);
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .instagram-grid {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(6, 1fr);
        gap: 15px;
    }
}

.instagram-cta {
    margin-top: 40px;
    text-align: center;
}

@media (max-width: 768px) {
    .instagram-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .instagram-grid {
        grid-template-columns: 1fr;
    }
}

/* Instagram Section Dark Mode and Rounded Corners */
.instagram-section {
    background-color: var(--background-color);
    padding: 4rem 0;
}

.instagram-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.insta-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.insta-item img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    transition: transform 0.3s ease;
    border-radius: 8px;
}

.insta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent, var(--color-primary-dark));
    opacity: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: opacity 0.3s ease;
}

.insta-item:hover .insta-overlay {
    opacity: 1;
}

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

.insta-overlay i {
    color: var(--color-light);
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.insta-overlay .likes {
    color: var(--color-light);
    font-size: 0.9rem;
}

.instagram-cta {
    text-align: center;
    margin-top: 2rem;
}

.instagram-cta .cta-button {
    background-color: var(--color-primary);
    color: var (--color-light);
    padding: 1rem 2rem;
    border-radius: 30px;
    text-decoration: none;
    transition: background-color 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.instagram-cta .cta-button:hover {
    background-color: var(--color-primary-dark);
}

.instagram-cta .cta-button i {
    font-size: 1.2rem;
}

@media (max-width: 768px) {
    .instagram-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .insta-item {
        height: 200px;
    }

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

@media (max-width: 480px) {
    .instagram-grid {
        grid-template-columns: 1fr;
    }
}



.instagram-cta .cta-button {
    display: inline-flex;
    align-items: center;
    padding: 12px 30px;
    font-size: 1.1rem;
    font-weight: 500;
    color: #fff;
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    border: none;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    gap: 10px;
}

.instagram-cta .cta-button i {
    font-size: 1.2rem;
}

.instagram-cta .cta-button:hover {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(220, 39, 67, 0.3);
}

/* Pre-Wedding Video Section */
.pre-wedding-video {
    padding: 100px 0;
    background: var(--background-color);
}

.featured-video-container {
    max-width: 1000px;
    margin: 0 auto;
    background: var(--card-bg);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--smooth-shadow);
    transition: transform 0.3s ease;
}

.featured-video-container:hover {
    transform: translateY(-5px);
    box-shadow: var(--smooth-shadow-hover);
}

#featured-video {
    width: 100%;
    display: block;
    border-radius: 20px 20px 0 0;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    pointer-events: none;
}

#featured-video::-webkit-media-controls-enclosure {
    pointer-events: all;
}

.video-info {
    padding: 30px;
    border-top: 1px solid var(--border-color);
}

.video-info h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.video-info p {
    color: var(--text-muted);
    margin-bottom: 20px;
    line-height: 1.6;
}

.video-metadata {
    display: flex;
    gap: 30px;
    color: var(--text-muted);
}

.video-metadata span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.video-metadata i {
    color: var(--primary-color);
}

@media (max-width: 768px) {
    .video-metadata {
        flex-direction: column;
        gap: 15px;
    }
    
    .video-info {
        padding: 20px;
    }
    
    .video-info h3 {
        font-size: 1.2rem;
    }
}

/* Add these new styles for the gallery page */

/* ...existing code... */

.gallery-hero {
    min-height: 60vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--primary-color);
    padding: 100px 0;
    font-family: serif;
}

.gallery-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8); /* Dark overlay */
    z-index: 1;
}

.gallery-hero .container {
    position: relative;
    z-index: 2;
}

.gallery-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(101, 101, 101, 0.3);
}

.gallery-hero p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
    .gallery-hero {
        min-height: 40vh;
        padding: 60px 0;
    }
    
    .gallery-hero h1 {
        font-size: 2.5rem;
    }
    
    .gallery-hero p {
        font-size: 1rem;
    }
}

.gallery-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin: 40px 0;
}

.filter-btn {
    padding: 10px 20px;
    border: none;
    color: white;
    background:var(--gradient-2);
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn.active {
    background: var(--gradient-1);
    color: white;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    padding: 20px 0;
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    aspect-ratio: 1;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    border-radius: 15px;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: none;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

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

.gallery-overlay h3 {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.gallery-overlay p {
    color: rgba(255,255,255,0.8);
    font-size: 0.9rem;
}

.load-more {
    text-align: center;
    margin-top: 40px;
}


/* Gallery Preview Section */
.gallery-preview {
    padding: 80px 0;
    background: var(--background-color);
    position: relative;
}

.gallery-cta {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
    flex-wrap: wrap;
}



.nav-gallery-btn {
    background: linear-gradient(45deg, #D4AF37, #bb9600);
    color: var(--background-color) !important;
    padding: 12px 25px;
    border-radius: 30px;
    transition: all 0.3s;
    border: none;
}

.nav-gallery-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--hover-shadow);
}

.gallery-btn {
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 500;
    text-decoration: none;
    color: var(--background-color);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    border: none;
    position: relative;
    overflow: hidden;
}

.gallery-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.gallery-btn:hover::before {
    transform: translateX(100%);
}

.gallery-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.gallery-btn.gradient-1 {
    background: linear-gradient(45deg, #D4AF37, #bb9600, #D4AF37);
    background-size: 200% auto;
    animation: gradient 3s linear infinite;
}

.gallery-btn.gradient-2 {
    background: linear-gradient(45deg, #FFD700, #FFA500, #FF8C00);
    background-size: 200% auto;
    animation: gradient 3s linear infinite;
}

.gallery-btn.gradient-3 {
    background: linear-gradient(45deg, #C5A969, #D4AF37, #C5A969);
    background-size: 200% auto;
    animation: gradient 3s linear infinite;
}

@keyframes gradient {
    0% {
        background-position: 0% center;
    }
    50% {
        background-position: 100% center;
    }
    100% {
        background-position: 0% center;
    }
}

@media (max-width: 768px) {
    .gallery-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .gallery-btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

/* Custom Load More Button Styles */
.load-more {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 40px auto;
    width: 100%;
}

.load-more .cta-button {
    margin: 0 auto;
    min-width: 200px;
    text-align: center;
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--background-color);
    background: linear-gradient(
        45deg,
        #D4AF37 0%,
        #FFE5A0 25%,
        #D4AF37 50%,
        #FFE5A0 75%,
        #D4AF37 100%
    );
    background-size: 200% auto;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    animation: shimmer 3s infinite linear;
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.2);
    transform-style: preserve-3d;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.load-more .cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        120deg,
        transparent 0%,
        rgba(255, 255, 255, 0.3) 50%,
        transparent 100%
    );
    transition: all 0.6s ease;
}

.load-more .cta-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
    background-position: right center;
}

.load-more .cta-button:hover::before {
    left: 100%;
}

.load-more .cta-button:active {
    transform: translateY(-1px) scale(0.98);
}

.load-more .cta-button i {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.load-more .cta-button:hover i {
    transform: translateX(5px) rotate(90deg);
}

@keyframes shimmer {
    0% {
        background-position: 0% center;
    }
    100% {
        background-position: 200% center;
    }
}

/* Responsive styles for load more button */
@media (max-width: 768px) {
    .load-more .cta-button {
        padding: 12px 30px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .load-more .cta-button {
        width: 90%;
        max-width: 280px;
    }
}

/* Gallery item hover effect */
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    border-radius: 15px;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

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


/* ...existing code... */

.nav-links .cta-button,
.contact-btn {
    background: var(--gradient-1);
    color: var(--background-color);
    padding: 12px 25px;
    border-radius: 30px;
    transition: all 0.3s;
    border: none;
    opacity: 1 !important; /* Force full opacity */
    position: relative;
    overflow: hidden;
    z-index: 1;
    -webkit-tap-highlight-color: transparent;
}

.nav-links .cta-button::before,
.contact-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-1);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.nav-links .cta-button:hover::before,
.nav-links .cta-button:active::before,
.contact-btn:hover::before,
.contact-btn:active::before {
    opacity: 1;
}

.nav-links .cta-button:hover,
.contact-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
}

/* Mobile specific styles */
@media (max-width: 768px) {
    .nav-links .cta-button,
    .contact-btn {
        background: var(--gradient-1);
        opacity: 1 !important;
        box-shadow: 0 0 15px rgba(212, 175, 55, 0.2);
        -webkit-tap-highlight-color: transparent;
    }

    .nav-links .cta-button:active,
    .contact-btn:active {
        transform: scale(0.98);
        box-shadow: 0 0 25px rgba(212, 175, 55, 0.5);
    }

    /* Add glow animation for mobile */
    .nav-links .cta-button,
    .contact-btn {
        animation: buttonGlow 2s infinite;
    }

    @keyframes buttonGlow {
        0% {
            box-shadow: 0 0 15px rgba(212, 175, 55, 0.2);
        }
        50% {
            box-shadow: 0 0 25px rgba(212, 175, 55, 0.4);
        }
        100% {
            box-shadow: 0 0 15px rgba(212, 175, 55, 0.2);
        }
    }

    /* Ensure active state maintains opacity */
    .nav-links.active .cta-button {
        opacity: 1 !important;
        background: var(--gradient-1);
    }
}

/* ...existing code... */

/* ...existing styles... */

.about-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.stat-item {
    background: var(--card-bg);
    padding: 40px 20px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: 1px solid rgba(212, 175, 55, 0.1);
    position: relative;
    overflow: hidden;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(212, 175, 55, 0.05), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.stat-item:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--hover-shadow);
}

.stat-item:hover::before {
    transform: translateX(100%);
}

.stat-icon {
    font-size: 2.8rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.stat-numbers .counter-number {
    font-size: 3.5rem;
    font-weight: 700;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: block;
    margin-bottom: 10px;
    font-family: 'Playfair Display', serif;
    line-height: 1;
}

.stat-numbers h4 {
    color: var(--text-muted);
    font-size: 1.1rem;
    font-weight: 500;
    margin-top: 5px;
}

@media (max-width: 992px) {
    .about-stats {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .about-stats {
        grid-template-columns: 1fr;
    }
    
    .stat-numbers .counter-number {
        font-size: 3rem;
    }
}

/* ...rest of existing styles... */

.gallery-item {
    display: none; /* Hide all items by default */
}

.gallery-item.visible {
    display: block; /* Show only visible items */
}

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

/* ...rest of existing styles... */

/* Base responsive styles */
@media screen and (max-width: 768px) {
    .container {
        padding: 0 15px;
    }

    /* Navigation */
    .navbar {
        padding: 10px;
    }

    .nav-toggle {
        display: block;
        cursor: pointer;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: rgba(0, 0, 0, 0.95);
        padding: 20px;
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-logo img {
        max-height: 50px;
    }

    /* Hero Section */
    .hero {
        min-height: 60vh;
    }

    .hero-content {
        margin: 0 !important;
        padding: 20px;
        text-align: center !important;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }

    /* About Section */
    .about-content {
        flex-direction: column;
        gap: 30px;
    }

    .image-stack {
        width: 100%;
        height: 300px;
    }

    .about-features {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    /* Services Section */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .service-card {
        padding: 20px;
    }

   

    .filter-btn {
        padding: 8px 15px;
        font-size: 14px;
    }

    /* Instagram Section */
    .instagram-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    /* Contact Section */
    .contact-wrapper {
        flex-direction: column;
        gap: 30px;
    }

    .contact-form-wrapper {
        padding: 20px;
    }

    .input-row {
        flex-direction: column;
    }

    .form-group {
        width: 100%;
    }

    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }

    /* Video Section */
    .featured-video-container {
        padding: 10px;
    }

    .video-info {
        padding: 15px;
    }

    .youtube-grid {
        grid-template-columns: 1fr;
    }

    /* Blog Section */
    .blog-grid {
        grid-template-columns: 1fr;
    }

    .blog-card {
        margin: 15px 0;
    }

    /* Gallery Preview */
    .gallery-cta {
        flex-direction: column;
        gap: 15px;
    }

    .gallery-btn {
        width: 100%;
    }

    /* Location Section */
    .location-info {
        grid-template-columns: 1fr;
        gap: 20px;
    }

   
}

/* Small mobile devices */
@media screen and (max-width: 480px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    .section-header p {
        font-size: 1rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .instagram-grid {
        grid-template-columns: 1fr;
    }

    .contact-card {
        padding: 15px;
    }

    .submit-btn {
        width: 100%;
    }
}

/* Tablet specific adjustments */
@media screen and (min-width: 769px) and (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

  

    .instagram-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ...existing code... */

.instagram-section .insta-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
}

.instagram-section .insta-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.instagram-section .insta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 15px;
}

/* Ensure border-radius works on mobile */
@media screen and (max-width: 768px) {
    .instagram-section .insta-item {
        border-radius: 12px;
        margin-bottom: 15px;
    }
    
    .instagram-section .insta-item img,
    .instagram-section .insta-overlay {
        border-radius: 12px;
    }
}

/* ...existing code... */

/* ...existing code... */

.developer-credit {
    text-align: center;
    margin-top: 10px;
    font-size: 0.9em;
    color: #888;
}

.developer-credit .fa-heart {
    color: #ff4646;
    animation: heartbeat 1.5s ease infinite;
}

@keyframes heartbeat {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

.instagram-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    border-radius: 50px;
    color: white;
    font-weight: 600;
    text-decoration: none;
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.instagram-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(220, 39, 67, 0.3);
}

.instagram-button i {
    font-size: 1.2em;
}

/* ...existing code... */

/* ...existing code... */

.insta-follow-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    border-radius: 50px;
    color: white;
    font-weight: 500;
    font-size: 0.9rem;
    text-decoration: none;
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    transition: all 0.3s ease;
    margin-bottom: 10px;
    width: fit-content;
}

.insta-follow-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(220, 39, 67, 0.3);
}

.insta-follow-btn i {
    font-size: 1rem;
}

.developer-credits {
    margin-top: 15px;
    text-align: center;
}

.developer-credits p {
    margin: 5px 0;
    color: var(--text-muted);
}

.developer-credits .fa-heart {
    color: #e25555;
    animation: heartbeat 1.5s ease-in-out infinite;
}

.dev-social a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

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

@keyframes heartbeat {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

@media (max-width: 768px) {
    .insta-follow-btn {
        width: 100%;
        justify-content: center;
    }
    
    .developer-credits {
        margin-top: 20px;
    }
}

/* ...existing code... */

/* ...existing code... */

.youtube-follow-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    border-radius: 50px;
    color: white;
    font-weight: 500;
    font-size: 0.9rem;
    text-decoration: none;
    background: linear-gradient(45deg, #FF0000, #CC0000);
    transition: all 0.3s ease;
    margin-top: 8px;
    width: fit-content;
}

.youtube-follow-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 0, 0, 0.3);
}

.youtube-follow-btn i {
    font-size: 1rem;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    margin-top: 50px;
    border-top: 1px solid var(--border-color);
}

.footer-copyright {
    color: var(--text-muted);
}

.developer-credits {
    text-align: right;
}

.developer-credits a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.developer-credits a:hover {
    color: var(--text-color);
}

@media (max-width: 768px) {
    .social-links {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
    }

    .insta-follow-btn,
    .youtube-follow-btn {
        width: 100%;
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .footer-copyright,
    .developer-credits {
        text-align: center;
    }
}

/* ...existing code... */

/* ...existing code... */
.footer-logo {
    max-width: 200px;
    height: auto;
    margin-bottom: 15px;
    transition: opacity 0.3s ease;
}

.footer-logo:hover {
    opacity: 0.8;
}
/* ...existing code... */

/* ...existing code... */

.glowing-heart {
    color: #ff3366;
    animation: heartbeat 1.5s ease-in-out infinite;
    text-shadow: 0 0 5px #ff3366,
                 0 0 10px #ff3366,
                 0 0 20px #ff3366,
                 0 0 30px #ff3366;
}

@keyframes heartbeat {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }
    50% {
        transform: scale(1.2);
        opacity: 1;
    }
    100% {
        transform: scale(1);
        opacity: 0.8;
    }
}

/* ...existing code... */

/* Custom Select Styling */
.form-group select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    width: 100%;
    padding: 15px;
    background: var(--surface-color);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    color: var(--text-color);
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    background-image: linear-gradient(45deg, transparent 50%, var(--primary-color) 50%),
                      linear-gradient(135deg, var(--primary-color) 50%, transparent 50%);
    background-position: calc(100% - 20px) calc(1em + 4px),
                         calc(100% - 15px) calc(1em + 4px);
    background-size: 5px 5px,
                    5px 5px;
    background-repeat: no-repeat;
}

.form-group select:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.1);
}

.form-group select:hover {
    border-color: var(--primary-color);
}

.form-group select option {
    background: var(--card-bg);
    color: var(--text-color);
    padding: 15px;
    font-size: 1rem;
}

.form-group select option:hover,
.form-group select option:focus,
.form-group select option:active,
.form-group select option:checked {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    color: var(--background-color);
}

/* Style for disabled option */
.form-group select option[disabled] {
    color: var(--text-muted);
}

/* Add subtle animation on focus */
.form-group select:focus {
    transform: translateY(-2px);
}

/* Mobile optimization */
@media (max-width: 768px) {
    .form-group select {
        padding: 12px;
        font-size: 0.95rem;
    }
    
    .form-group select option {
        padding: 12px;
    }
}

/* ...existing code... */



/* Add these new styles for the blog page */

/* ...existing code... */

.blog-more-btn {
    text-align: center;
    margin-top: 40px;
}

.blog-more-btn .cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 500;
    text-decoration: none;
    color: var(--background-color);
    background: linear-gradient(45deg, #FFD700, #FFA500, #FF8C00);
    background-size: 200% auto;
    animation: gradient 3s linear infinite;
    position: relative;
    overflow: hidden;
}

.blog-more-btn .cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.blog-more-btn .cta-button:hover::before {
    transform: translateX(100%);
}

.blog-more-btn .cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.blog-more-btn .cta-button i {
    transition: transform 0.3s ease;
}

.blog-more-btn .cta-button:hover i {
    transform: translateX(5px);
}

@media (max-width: 768px) {
    .blog-more-btn .cta-button {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

/* ...existing code... */


/* Floating Contact Button Styles */
#floating-contact-wrapper {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

#floating-contact-wrapper .floating-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary-color);
    border: none;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    color: var(--text-color);
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
}

#floating-contact-wrapper .floating-btn i {
    font-size: 20px;
    line-height: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}

#floating-contact-wrapper .floating-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

#floating-contact-wrapper .floating-btn.active {
    transform: rotate(135deg);
}

#floating-contact-wrapper .floating-content {
    position: absolute;
    bottom: 80px;
    right: 0;
    background: white;
    border-radius: 15px;
    padding: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    display: none;
    flex-direction: column;
    gap: 8px;
    min-width: 200px;
}

#floating-contact-wrapper .floating-content.active {
    display: flex;
}

#floating-contact-wrapper .contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    text-decoration: none;
    color: #333;
    border-radius: 8px;
    transition: all 0.3s ease;
}

#floating-contact-wrapper .contact-item i {
    font-size: 20px;
    width: 24px;
    text-align: center;
}

#floating-contact-wrapper .contact-item span {
    font-size: 14px;
    font-weight: 500;
}

#floating-contact-wrapper .contact-item:hover {
    background: #f5f5f5;
    transform: translateX(5px);
}

#floating-contact-wrapper .contact-item.whatsapp i {
    color: #25D366;
}

#floating-contact-wrapper .contact-item.youtube i {
    color: #FF0000;
}

#floating-contact-wrapper .contact-item.instagram i {
    color: #E4405F;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    #floating-contact-wrapper {
        bottom: 15px;
        right: 15px;
    }

    #floating-contact-wrapper .floating-btn {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }

    #floating-contact-wrapper .floating-content {
        bottom: 70px;
        min-width: 180px;
    }
}

.gallery-images {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 20px 0;
}

.gallery-image img {
    width: 300px;
    height: 300px;
    object-fit: cover;
    border-radius: 20px; /* Makes the image rounded */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-image img:hover {
    transform: scale(1.1); /* Slight zoom effect on hover */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Webkit Scrollbar Styles */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
    background-color: transparent;
}

::-webkit-scrollbar-track {
    background-color: rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: rgba(187, 150, 0, 0.3);
    border-radius: 10px;
    transition: background 0.3s ease;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(187, 150, 0, 0.5);
}

/* Firefox Scrollbar Styles */
* {
    scrollbar-width: thin;
    scrollbar-color: rgba(154, 154, 154, 0.3) rgba(0, 0, 0, 0.1);
}

/* Gallery Popup Styles */
.gallery-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.9);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    cursor: pointer;
}

.popup-content {
    position: relative;
    max-width: 90%;
    max-height: 90vh;
    margin: auto;
    cursor: default;
}

.popup-content {
    position: relative;
    width: 1000px; /* Fixed width */
    max-width: 90%;
    height: 90vh;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

#popupImage {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 15px;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
}

.popup-close {
    position: absolute;
    top: -40px;
    right: -40px;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 30px;
    cursor: pointer;
    z-index: 1001;
    transition: color 0.3s ease;
}

.popup-close:hover {
    color: #ccc;
}

.popup-nav {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    z-index: 1001;
    transition: all 0.3s ease;
    display: flex !important; /* Force display */
    align-items: center;
    justify-content: center;
    opacity: 0.7;
}

.popup-nav.prev {
    left: -80px; /* Fixed distance from left edge */
}

.popup-nav.next {
    right: -80px; /* Fixed distance from right edge */
}

.popup-nav:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    color: #fff;
    transform: translateY(-50%) scale(1.1);
    opacity: 1;
}

.popup-nav:active {
    transform: translateY(-50%) scale(0.95);
}


@media (max-width: 768px) {
    .popup-close {
        top: 10px;
        right: 10px;
    }
    
    .popup-nav {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
    
    .popup-nav.prev {
        left: 15px;
    }
    
    .popup-nav.next {
        right: 15px;
    }
}

.gallery-popup.active {
    display: flex;
}

.popup-content img {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 4px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.popup-close {
    position: absolute;
    top: -40px;
    right: -40px;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 30px;
    cursor: pointer;
    z-index: 1001;
    transition: color 0.3s ease;
}

.popup-close:hover {
    color: #ccc;
}

.popup-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    z-index: 1001;
    transition: all 0.3s ease;
    display: none;
}

.popup-nav:hover {
    color: #ccc;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.popup-nav.prev {
    left: -60px;
}

.popup-nav.next {
    right: -60px;
}

@media (max-width: 768px) {
    .popup-close {
        top: 10px;
        right: 10px;
    }
    
    .popup-nav {
        width: 30px;
        height: 30px;
        font-size: 20px;
    }
    
    .popup-nav.prev {
        left: 10px;
    }
    
    .popup-nav.next {
        right: 10px;
    }
}
