body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
    background-image: linear-gradient(135deg, rgba(245,245,245,0.72) 0%, rgba(255,255,255,0.72) 50%, rgba(238,241,247,0.72) 100%), url('assets/background1.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    position: relative;
    overflow-x: hidden;
    color: #333;
}

/* Welcome Page Styles */
.welcome-page-body {
    background: linear-gradient(135deg, rgba(30, 30, 80, 0.98) 0%, rgba(60, 40, 120, 0.98) 50%, rgba(40, 20, 100, 0.98) 100%), url('assets/background1.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.welcome-page-main {
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.welcome-section-full {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #ffffff;
    padding: 2rem;
}

.welcome-page-body::before {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.2);
    pointer-events: none;
    z-index: 0;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(255, 255, 255, 0.12);
    pointer-events: none;
    z-index: 0;
}

header,
main,
footer {
    position: relative;
    z-index: 1;
}

header {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(240, 240, 240, 0.96));
    color: #1a1a1a;
    padding: 0.75rem 5rem 2.4rem 5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

header h1,
header nav {
    position: relative;
    z-index: 1;
}

header nav {
    margin-top: 3rem;
}

header h1 {
    font-size: 2.2rem;
    margin: 0.2rem 0;
    text-shadow: 0 0 4px rgba(255, 255, 255, 0.65);
    animation: fadeIn 1s ease-in;
}

#logo {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(255, 255, 255, 0.85);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
}

.logo-text {
    width: 110px;
    max-width: 110px;
    font-weight: 700;
    color: #1a1a1a;
    font-size: 0.62rem;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    z-index: 1;
    pointer-events: none;
    text-align: center;
    background: rgba(255, 255, 255, 0.92);
    border-radius: 12px;
    padding: 0.3rem 0.4rem;
    box-shadow: inset 0 0 0 1px rgba(0,0,0,0.08);
}

.brand {
    position: absolute;
    top: 1rem;
    left: 2rem;
    transform: none;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    z-index: 2;
}

.logo-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 6px;
    width: 110px;
}

#header-image {
    width: 110px;
    height: 110px;
    transform: none;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(255, 255, 255, 0.85);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
}

#header-image:hover {
    transform: scale(1.05);
}

.header-logos-right {
    position: absolute;
    top: 1rem;
    right: 2rem;
    display: flex;
    gap: 12px;
    align-items: center;
    z-index: 2;
}

.header-logo-right {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(255, 255, 255, 0.85);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
    transition: transform 0.3s ease;
}

.header-logo-right:hover {
    transform: scale(1.05);
}

main {
    padding: 2rem;
    position: relative;
    z-index: 1;
    background: rgba(255, 255, 255, 0.45);
    margin: 2rem;
    border-radius: 10px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.05);
}

#player {
    border-radius: 10px;
    padding: 1.5rem;
    max-width: 500px;
    margin: 0 auto;
    background: rgba(248, 249, 250, 0.55);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
}

button {
    margin-right: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

button:hover {
    background: linear-gradient(135deg, #c0392b 0%, #a93226 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

header nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

header nav ul li {
    background: rgba(255, 255, 255, 0.45);
    height: 35px;
    margin: 0.3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

header nav ul li:hover {
    background: rgba(255, 255, 255, 0.65);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.06);
}

header nav ul li a {
    color: #1a1a1a;
    text-decoration: none;
    font-weight: bold;
    padding: 0 1rem;
    transition: color 0.3s ease;
}

header nav ul li a:hover {
    color: #e74c3c;
    text-decoration: none;
}

section {
    margin-bottom: 2rem;
    animation: slideIn 0.5s ease-out;
}

section h2 {
    color: #2c3e50;
    border-bottom: 2px solid #e74c3c;
    padding-bottom: 0.5rem;
    margin-bottom: 1rem;
}

form {
    max-width: 600px;
    margin: 0 auto;
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: bold;
    color: #2c3e50;
}

form input, form textarea, form select {
    width: 100%;
    padding: 0.75rem;
    margin-bottom: 1rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

form input:focus, form textarea:focus, form select:focus {
    outline: none;
    border-color: #e74c3c;
    box-shadow: 0 0 5px rgba(231, 76, 60, 0.5);
}

footer {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: #fff;
    text-align: center;
    padding: 1rem;
    position: relative;
    margin-top: 2rem;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.3);
}

footer p {
    margin: 0.5rem 0;
}

.social {
    list-style: none;
    padding: 0;
    display: flex;
    gap: 0.75rem;
    justify-content: center;
}

.social li {
    margin: 0;
}

.social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    text-decoration: none;
    transition: transform 0.18s ease, box-shadow 0.18s ease;
    box-shadow: 0 2px 6px rgba(0,0,0,0.12);
}

.social a .fab {
    font-size: 20px;
}

.social a.instagram {
    background: linear-gradient(45deg,#F58529,#DD2A7B,#8134AF);
    color: #fff;
}

.social a.facebook {
    background: #1877F2;
    color: #fff;
}

.social a.youtube {
    background: #FF0000;
    color: #fff;
}

.social a.whatsapp {
    background: #25D366;
    color: #fff;
}

.social a:hover {
    transform: scale(1.06);
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    opacity: 0.98;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes slideIn {
    from { opacity: 0; transform: translateX(-20px); }
    to { opacity: 1; transform: translateX(0); }
}

/* Responsive design */
@media (max-width: 768px) {
    header h1 {
        font-size: 1.2rem;
    }
    header nav ul {
        flex-direction: column;
    }
    header nav ul li {
        margin: 0.25rem 0;
    }
    main {
        margin: 1rem;
        padding: 1rem;
    }
    #logo {
        width: 90px;
        height: 90px;
        transform: none;
    }
    .logo-text {
        font-size: 0.72rem;
        max-width: 90px;
        text-align: center;
    }
    #header-image {
        width: 90px;
        height: 90px;
    }
    .brand {
        left: 1rem;
        transform: none;
        gap: 8px;
    }
    .logo-wrap {
        width: 90px;
    }
    #logo, #header-image {
        width: 90px;
        height: 90px;
    }
    header {
        min-height: 140px;
        padding: 0.85rem 4rem 0.85rem 4rem;
    }
}

.photo-grid,
.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1rem;
}

#product-details .photo-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.photo-card,
.video-card {
    background: rgba(255, 255, 255, 0.8);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}

.photo-card img,
.video-card video {
    width: 100%;
    display: block;
}

.photo-card img {
    height: auto;
}

.roadshow-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
}

.video-card p {
    margin: 0.75rem 0;
    text-align: center;
    color: #555;
    padding: 0 0.75rem 1rem;
}

/* equal smaller media cards for Wedding, Barrat, and Road Show */
.photo-grid,
.video-grid,
.roadshow-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
    justify-items: center;
}

.photo-card,
.video-card {
    width: 100%;
    max-width: 260px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}

.photo-card img,
.video-card video {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
}

.video-card p {
    margin: 0.75rem 0;
    text-align: center;
    color: #555;
    padding: 0 0.75rem 1rem;
}

form input, form textarea {
    width: 100%;
    padding: 0.5rem;
    margin-bottom: 1rem;
}

form button {
    padding: 0.5rem 1rem;
}

/* footer and social links */
footer {
    background: #333;
    color: #fff;
    text-align: center;
    padding: 1rem;
}

footer .social {
    list-style: none;
    padding: 0;
    margin: 0.5rem 0;
    display: flex;
    justify-content: center;
}

footer .social li {
    margin: 0 0.5rem;
}

footer .social a {
    color: #fff;
    text-decoration: none;
}

footer .social a:hover {
    text-decoration: underline;
}

/* generic button style */
a.button {
    display: inline-block;
    background: #333;
    color: #fff;
    padding: 0.5rem 1rem;
    text-decoration: none;
    border-radius: 3px;
}
a.button:hover {
    background: #555;
}

.review-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.2rem;
    margin: 1.5rem 0;
    justify-content: center;
}

.review-photo {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid rgba(220, 220, 220, 0.75);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    min-height: 400px;
    max-width: 420px;
    margin: 0 auto;
}

.review-photo img {
    width: 100%;
    max-height: 380px;
    object-fit: contain;
    display: block;
    padding: 0.35rem;
    background: #fff;
}

.review-caption {
    margin: 0.5rem 0 0.8rem;
    font-size: 0.88rem;
    color: #555;
    text-align: center;
    padding: 0 0.7rem;
}

.review-photo img:hover {
    transform: none;
    transition: none;
}

.review-photo img {
    cursor: pointer;
}

.image-modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.86);
    justify-content: center;
    align-items: center;
    z-index: 9999;
    padding: 1rem;
}

.image-modal.open {
    display: flex;
}

.image-modal-content {
    max-width: 95%;
    max-height: 95%;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    background: #fff;
    transform: scale(0.92);
    opacity: 0;
    transition: transform 0.25s ease-out, opacity 0.25s ease-out;
}

.image-modal.open .image-modal-content {
    transform: scale(1);
    opacity: 1;
}

.image-modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    color: #fff;
    font-size: 2.5rem;
    line-height: 1;
    cursor: pointer;
    user-select: none;
    z-index: 10000;
}

/* Sound image background */
.sound-image {
    background-image: url('https://source.unsplash.com/random/800x600/?audio');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    padding: 2rem;
    color: #fff;
}

/* Make all images responsive */
img {
    max-width: 100%;
    height: auto;
}

/* Make videos responsive */
video {
    max-width: 100%;
    height: auto;
}

/* Welcome Section */
.welcome-section {
    background: linear-gradient(135deg, rgba(30, 30, 80, 0.95) 0%, rgba(60, 40, 120, 0.95) 100%), url('assets/background1.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: #ffffff;
    padding: 4rem 2rem;
    text-align: center;
    border-bottom: 3px solid rgba(255, 215, 0, 0.8);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    margin-bottom: 2rem;
}

.welcome-content {
    max-width: 900px;
    margin: 0 auto;
    animation: slideInDown 0.8s ease;
}

.welcome-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin: 0 0 1rem 0;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.welcome-section h1,
.welcome-title {
    font-size: 3rem;
    font-weight: 700;
    margin: 0 0 1rem 0;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
    letter-spacing: 1px;
}

.welcome-tagline,
.welcome-section > .welcome-content > p:nth-of-type(1) {
    font-size: 1.6rem;
    margin: 0.5rem 0 1.5rem 0;
    color: rgba(255, 215, 0, 0.95);
    font-weight: 500;
}

.welcome-description {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.95);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.welcome-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #1a1a1a;
    padding: 1.1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
    border: 2px solid transparent;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.6);
    background: linear-gradient(135deg, #FFA500, #FFD700);
}

.cta-secondary {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.3), rgba(255, 165, 0, 0.3));
    color: #FFD700;
    border: 2px solid rgba(255, 215, 0, 0.8);
}

.cta-secondary:hover {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.5), rgba(255, 165, 0, 0.5));
    color: #FFFFFF;
}

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Gallery styles */
.photo-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    align-items: stretch;
    max-height: 400px;
    overflow-y: auto;
}

.photo-card {
    position: relative;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.08);
    aspect-ratio: 4 / 3;
    min-height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.photo-card.featured {
    transform: translateY(-20px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
}

.photo-card img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    display: block;
    transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
    background: #fff;
}

.photo-card.highlighted {
    transform: translateY(-5px);
    box-shadow: 0 18px 40px rgba(231, 76, 60, 0.25);
}

.photo-card img.highlighted,
.photo-grid .photo-card.highlighted img {
    transform: scale(1.03);
    box-shadow: 0 18px 35px rgba(231, 76, 60, 0.25);
}

.gallery-note {
    margin-top: 1rem;
    color: #555;
    font-size: 0.95rem;
    text-align: center;
}

/* Product Card Content Styling */
.product-card-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 1.5rem;
    width: 100%;
    height: 100%;
}

.product-card-content h3 {
    font-size: 1.25rem;
    color: #333;
    margin: 0 0 0.75rem 0;
    font-weight: 600;
    line-height: 1.3;
}

.product-card-content p {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
    line-height: 1.4;
}

@media (max-width: 992px) {
    .photo-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .photo-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@keyframes glowHighlight {
    0%, 100% { box-shadow: 0 10px 22px rgba(231, 76, 60, 0.12); }
    50% { box-shadow: 0 22px 40px rgba(231, 76, 60, 0.28); }
}

   
