/* =========================
   GLOBAL VARIABLES & RESET
========================= */
:root {
    --primary: #111111;
    --accent: #E09F1A;
    --accent-dark: #E09F1A;
    --background: #f8f8f5;
    --white: #ffffff;
    --text: #1c1c1c;
    --muted: #6d6d6d;
    --border: #e7e5df;
    --shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
    --radius: 18px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "DM Sans", sans-serif;
    color: var(--text);
    background-color: var(--background);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    width: min(1180px, 90%);
    margin: auto;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    width: 100%;
    display: block;
    object-fit: cover;
}

.section {
    padding: 110px 0;
}

.section-tag {
    display: inline-block;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--accent-dark);
    margin-bottom: 15px;
}

.section-heading {
    max-width: 720px;
    margin-bottom: 55px;
}

.section-heading h2,
.about-content h2,
.customer-content h2,
.contact h2 {
    font-family: "Montserrat", sans-serif;
    font-size: clamp(34px, 5vw, 55px);
    line-height: 1.1;
    margin-bottom: 20px;
}

h2 span,
h1 span {
    color: var(--accent-dark);
}

.section-heading p {
    color: black;
    font-size:18px;
    max-width: 650px;
}

/* =========================
   BUTTONS
========================= */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 25px;
    border-radius: 8px;
    font-weight: 700;
    border: 1px solid transparent;
    transition: 0.3s ease;
}

.primary-btn {
    background: var(--accent);
    color: white;
}

.primary-btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.secondary-btn {
    border-color: #222;
    background: rgba(255, 255, 255, 0.5);
}

.secondary-btn:hover {
    background: white;
}

/* =========================
   NAVBAR
========================= */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: black;
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-container {
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    width: 150px;
    height: auto;
}

nav {
    display: flex;
    gap: 32px;
}

nav a {
    color: white;
    font-size: 17px;
    font-weight: 600;
    transition: 0.3s;
}

nav a:hover {
    color: var(--accent);
}

.nav-btn {
    padding: 12px 22px;
    background: var(--accent);
    color: var(--primary);
    border-radius: 8px;
    font-weight: 700;
    font-size: 14px;
    transition: 0.3s;
}

.nav-btn:hover {
    background: var(--accent-dark);
    color: white;
}

.menu-btn {
    display: none;
    width: 44px;
    height: 44px;
    border: none;
    background: transparent;
    color: white;
    font-size: 30px;
    line-height: 1;
    cursor: pointer;
    padding: 0;
    align-items: center;
    justify-content: center;
}

/* =========================
   HERO
========================= */
.hero {
    min-height: 760px;
    padding-top: 100px;
    position: relative;
    display: flex;
    align-items: center;
    background: linear-gradient(
            110deg,
            rgba(248, 248, 245, 0.98),
            rgba(248, 248, 245, 0.8)
        ),
        url("images/dj-1.jpg");
    background-size: cover;
    background-position: center;
}

.hero-content {
    position: relative;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 70px;
    align-items: center;
}

.tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 25px;
    color: var(--accent-dark);
}

.hero h1 {
    font-family: "Montserrat", sans-serif;
    /* font-size: clamp(45px, 7vw, 82px); */
    font-size: 50px;
    line-height: 1.28;
    max-width: 800px;
    margin-bottom: 30px;
}


/* =========================================
   CUSTOMER VIDEO CARD (ORIGINAL / NO ROTATE)
========================================= */
.customer-video-card {
    position: relative;
    width: 100%;
    height: 480px;
    border-radius: 24px;
    overflow: hidden;
    background: #000000;
    border: 2px solid rgba(229, 184, 66, 0.25);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Video: Original Orientation & Aspect Ratio */
.customer-video-card video {
    width: 100%;
    height: 100%;
    object-fit: cover; /* முழு கார்டையும் நிரப்ப cover; வெட்டப்படாமல் முழு வீடியோ தெரிய வேண்டும் என்றால் contain வைக்கலாம் */
    display: block;
}

/* Play Icon Overlay */
.customer-video-card .video-play-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.35);
    z-index: 2;
    transition: all 0.3s ease;
    pointer-events: none;
}

.customer-video-card .video-play-overlay i {
    font-size: 65px;
    color: var(--gold-primary, #FFD036);
    filter: drop-shadow(0 4px 15px rgba(0, 0, 0, 0.7));
    transition: transform 0.3s ease;
}

.customer-video-card:hover .video-play-overlay i {
    transform: scale(1.12);
}

/* Video Play ஆகும்போது Overlay மறைய */
.customer-video-card.playing .video-play-overlay {
    opacity: 0;
    visibility: hidden;
}

/* Customer Badge */
.customer-video-card .customer-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    z-index: 3;
    transition: opacity 0.3s ease;
}

.customer-video-card.playing .customer-badge {
    opacity: 0.3;
}
.ggg{
    padding: 0px 40px;
}
/* Responsive */
@media (max-width: 768px) {
    .customer-video-card {
        height: 340px;
    }

    .customer-video-card .video-play-overlay i {
        font-size: 50px;
    }
}
/* =========================
   FLOATING CALL BUTTON
========================= */
.call-float {
    position: fixed;
    right: 35px;
    bottom: 160px; /* WhatsApp பட்டனுக்கு மேலே வைக்கப்பட்டுள்ளது */
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #FFE259 0%, #FFA751 50%, #D4AF37 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    z-index: 9999;
    box-shadow: 0 8px 25px rgba(229, 184, 66, 0.45);
    transition: all 0.3s ease;
    animation: pulse-gold 2s infinite;
    text-decoration: none;
}

.call-float:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 12px 30px rgba(229, 184, 66, 0.65);
    color: white;
}

/* Tooltip on Desktop */
.call-tooltip {
    position: absolute;
    right: 72px;
    background: #111111;
    color: #ffffff;
    font-size: 12px;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 6px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s ease;
    border: 1px solid rgba(229, 184, 66, 0.3);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.call-float:hover .call-tooltip {
    opacity: 1;
    visibility: visible;
}

/* Soft Gold Pulse Animation */
@keyframes pulse-gold {
    0% {
        box-shadow: 0 0 0 0 rgba(229, 184, 66, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(229, 184, 66, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(229, 184, 66, 0);
    }
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .call-float {
        width: 52px;
        height: 52px;
        right: 18px;
        bottom: 80px; /* மொபைலில் WhatsApp பட்டனுக்கு மேலே */
        font-size: 22px;
    }

    .call-tooltip {
        display: none;
    }
}
.hero-text p {
    max-width: 620px;
    color: black;
    font-size: 18px;
   
    margin-bottom: 35px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.hero-card {
    background: rgba(255, 255, 255, 0.78);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.9);
    padding: 50px 35px;
    border-radius: 25px;
    text-align: center;
    box-shadow: var(--shadow);
    animation: floating 4s ease-in-out infinite;
}

.music-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 25px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: var(--primary);
    color: white;
    font-size: 38px;
}

.hero-card h3 {
    font-family: "Montserrat", sans-serif;
    font-size: 23px;
    margin-bottom: 10px;
}

.hero-card p {
    color: var(--muted);
}

@keyframes floating {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px);
    }
}

/* =========================
   HERO IMAGE SLIDER
========================= */
.hero-slider {
    position: relative;
    width: 100%;
    height: 480px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: rgba(0, 0, 0, 0.3) 0px 19px 38px, rgba(0, 0, 0, 0.22) 0px 15px 12px;
    border: 5px solid rgb(245, 242, 242);
    background: #111;
}

.hero-slider .slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transform: scale(1.05);
    transition: opacity 1s ease-in-out, transform 1.2s ease-in-out;
}

.hero-slider .slide.active {
    opacity: 1;
    transform: scale(1);
}

/* Mobile Responsive */
@media (max-width: 900px) {
    .hero-slider {
        max-width: 500px;
        height: 380px;
        margin: 20px auto 0;
    }
}

@media (max-width: 600px) {
    .hero-slider {
        height: 300px;
    }
    .nav-container{
        height:95px;
    }
}
/* =========================
   HERO LOAD ANIMATIONS
========================= */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(40px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

/* Text Element Stagger Animation */
.hero-text .tag {
    opacity: 0;
    animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: 0.2s;
}

.hero-text h1 {
    opacity: 0;
    animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: 0.4s;
}

.hero-text p {
    opacity: 0;
    animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: 0.6s;
}

.hero-buttons {
    opacity: 0;
    animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: 0.8s;
}

/* Slider Fade & Zoom Animation */
.hero-slider {
    opacity: 0;
    animation: fadeInRight 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: 0.5s;
}
/* =========================
   STATS
========================= */
.stats {
    background: var(--primary);
    color: white;
    padding: 55px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.stat {
    text-align: center;
    border-right: 1px solid rgba(255, 255, 255, 0.15);
}

.stat:last-child {
    border: none;
}

.stat h2 {
    font-family: "Montserrat", sans-serif;
    font-size: 40px;
    color: var(--accent);
}

.stat p {
    color: #ddd;
}
/* =========================
   ABOUT SECTION ENHANCED
========================= */
.about {
    background: #F9F9F5;
    color: black;
    position: relative;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 70px;
    align-items: center;
}

/* Image Wrapper & Floating Badge */
.about-image-wrapper {
    position: relative;
}

.about-image {
    width: 100%;
    height: 540px;
    border-radius: 24px;
    overflow: hidden;
    border: 2px solid rgb(253, 253, 253);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.founder-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.about-image-wrapper:hover .founder-image {
    transform: scale(1.03);
}

.about-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: #18181c;
    border: 1px solid var(--accent);
    padding: 14px 22px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.about-badge i {
    font-size: 28px;
    color: var(--accent);
}

.about-badge strong {
    display: block;
    font-size: 15px;
    color: #fff;
    font-family: "Montserrat", sans-serif;
}

.about-badge p {
    font-size: 15px;
    color: rgb(181, 181, 181);
    margin: 0;
}

/* About Content Typography */
.about-lead {
    font-size: 17px;
    line-height: 1.7;
    color: #e0e0e0;
    margin-bottom: 15px;
    font-weight: 500;
}

.about-content p {
    color: black;
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 25px;
    text-align: justify;
}

.about-content strong {
    color: #a87515;
}

/* Feature Badges */
.about-features {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.feature-item {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 10px 18px;
    border-radius: 30px;
    font-size: 18px;
    font-weight: 600;
    color: #a87515;
}

.feature-item i {
    color: var(--accent);
    font-size: 18px;
}

/* Founders Section */
.founders {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.founder-card {
    display: flex;
    align-items: center;
    gap: 15px;
    background: #18181c;
    padding: 14px 18px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.founder-card:hover {
    transform: translateY(-4px);
    border-color: rgba(229, 184, 66, 0.4);
}

.founder-photo {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--accent);
    flex-shrink: 0;
}

.founder-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.founder-info h4 {
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    color: #fff;
    margin-bottom: 2px;
}

.founder-info p {
    font-size: 12px;
    color: var(--accent);
    margin: 0;
    font-weight: 500;
}

/* Responsive */
@media (max-width: 900px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .about-image {
        height: 420px;
    }

    .about-badge {
        right: 10px;
        bottom: -15px;
    }
}

@media (max-width: 600px) {
    .about-image {
        height: 320px;
    }

    .founders {
        grid-template-columns: 1fr;
    }

    .about-badge {
        padding: 10px 16px;
    }
}

/* =========================
   SERVICES
========================= */
.services {
    background: #f1f0eb;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.service-card {
    background: white;
    padding: 35px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    transition: 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow);
}

.service-icon {
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    background: #f4ead4;
    color: var(--accent-dark);
    border-radius: 12px;
    font-size: 25px;
    margin-bottom: 25px;
}

.service-card h3 {
    font-family: "Montserrat", sans-serif;
    margin-bottom: 10px;
}

.service-card p {
    color: var(--muted);
    font-size: 16px;
}

/* =========================
   PACKAGES
========================= */
.package-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    align-items: stretch;
}

.package-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: 22px;
    padding: 35px;
    position: relative;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.04);
    display: flex;
    flex-direction: column;
}

.package-card.featured {
    border: 2px solid var(--accent);
    transform: translateY(-12px);
}

.popular {
    position: absolute;
    top: 0;
    right: 25px;
    background: var(--accent);
    color: var(--primary);
    padding: 8px 14px;
    border-radius: 0 0 8px 8px;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1px;
}

.package-header {
    border-bottom: 1px solid var(--border);
    padding-bottom: 25px;
    margin-bottom: 25px;
}

.package-icon {
    font-size: 32px;
}

.package-header h3 {
    font-family: "Montserrat", sans-serif;
    margin-top: 10px;
}

.price {
    font-family: "Montserrat", sans-serif;
    font-size: 34px;
    margin-top: 10px;
}

.price small {
    font-size: 16px;
}

.package-section {
    margin-bottom: 25px;
}

.package-section h4 {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
    color: var(--accent-dark);
}

.package-section ul {
    list-style: none;
}

.package-section li {
    padding: 5px 0;
    color: var(--muted);
    font-size: 14px;
}

.package-section li::before {
    content: "✓";
    color: var(--accent-dark);
    font-weight: 700;
    margin-right: 8px;
}

.package-btn {
    display: block;
    text-align: center;
    padding: 14px;
    border-radius: 8px;
    background: var(--primary);
    color: white;
    font-weight: 700;
    margin-top: auto;
    transition: 0.3s;
}

.package-btn:hover {
    background: var(--accent);
    color: var(--primary);
}

/* =========================
   STATS SECTION & ICONS
========================= */
.stats {
    background: #0d0d0d;
    color: white;
    padding: 60px 0;
    border-top: 1px solid rgba(229, 184, 66, 0.2);
    border-bottom: 1px solid rgba(229, 184, 66, 0.2);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.stat {
    text-align: center;
    border-right: 1px solid rgba(255, 255, 255, 0.12);
    padding: 10px 15px;
}

.stat:last-child {
    border: none;
}

.stat-icon {
    font-size: 32px;
    margin-bottom: 12px;
    background: linear-gradient(135deg, #FFE259 0%, #FFA751 50%, #D4AF37 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    transition: transform 0.3s ease;
}

.stat:hover .stat-icon {
    transform: translateY(-5px) scale(1.1);
}

.stat h2 {
    font-family: "Montserrat", sans-serif;
    font-size: 42px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 6px;
}

.stat p {
    color: #b0b0b0;
    font-size: 15px;
    font-weight: 500;
}

/* Mobile & Tablet */
@media (max-width: 900px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        row-gap: 35px;
    }

    .stat:nth-child(2) {
        border-right: none;
    }
}

@media (max-width: 600px) {
    .stat {
        border: none;
    }
    .stat h2 {
        font-size: 34px;
    }
    .stat-icon {
        font-size: 28px;
    }
}
.c1{
    font-size:22px !important;
    color:white !important;
}
/* =========================
   HAPPY CUSTOMERS
========================= */
.customers {
    background: #eeece5;
}

.customer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.customer-image {
    position: relative;
    border-radius: 25px;
    overflow: hidden;
    min-height: 450px;
    background: #ddd;
}

.customer-image img {
    height: 450px;
}

.customer-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: white;
    padding: 14px 20px;
    border-radius: 10px;
    font-weight: 700;
    box-shadow: var(--shadow);
}

.customer-badge i {
    color: #d62828;
    margin-right: 8px;
}

.customer-content p {
    color: var(--muted);
    margin-bottom: 25px;
}

.customer-points {
    display: grid;
    gap: 15px;
}

.customer-points div {
    font-weight: 600;
}

.customer-points i {
    color: var(--accent-dark);
    margin-right: 10px;
}

/* =========================
   GALLERY
========================= */
.gallery {
    background: white;
}

.gallery-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: 250px 250px;
    gap: 15px;
}

.gallery-item {
    overflow: hidden;
    border-radius: 15px;
}

.gallery-item img {
    height: 100%;
    transition: 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.06);
}

.gallery-item.large {
    grid-row: span 2;
}

/* =========================
   CTA
========================= */
.cta {
    background: var(--primary);
    color: white;
    padding: 110px 0;
    text-align: center;
}

.cta .section-tag {
    color: var(--accent);
}

.cta h2 {
    font-family: "Montserrat", sans-serif;
    font-size: clamp(38px, 6vw, 65px);
    line-height: 1.05;
    margin-bottom: 20px;
}

.cta h2 span {
    color: var(--accent);
}

.cta p {
    color: #ccc;
    margin-bottom: 30px;
}

/* =========================
   CONTACT
========================= */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.contact-details {
    display: grid;
    gap: 20px;
    margin-top: 25px;
}

.contact-details > div {
    display: flex;
    gap: 15px;
    align-items: center;
}

.contact-details i {
    width: 45px;
    height: 45px;
    display: grid;
    place-items: center;
    background: #eee8d9;
    color: var(--accent-dark);
    border-radius: 10px;
    font-size: 20px;
}

.contact-details p {
    color: var(--muted);
    margin: 0;
}

.contact-form {
    background: white;
    padding: 35px;
    border-radius: 20px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    display: grid;
    gap: 15px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid var(--border);
    border-radius: 8px;
    font-family: inherit;
    outline: none;
    background: #fafafa;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    border-color: var(--accent);
}

/* =========================
   FOOTER
========================= */
/* =========================
   SIMPLE FOOTER
========================= */
.simple-footer {
    background: #080808;
    border-top: 1px solid rgba(229, 184, 66, 0.15);
    padding: 30px 0;
}

.footer-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

/* =========================
   GALLERY BUTTON
========================= */
.gallery-action {
    text-align: center;
    margin-top: 45px;
}

.gallery-btn {
    padding: 14px 30px;
    font-size: 15px;
    border-radius: 30px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

@media (max-width: 600px) {
    .gallery-action {
        margin-top: 30px;
    }
    
    .gallery-btn {
        width: 100%;
        font-size: 14px;
        padding: 14px 20px;
    }
}
/* =========================
   FLOATING WHATSAPP BUTTON
========================= */
.whatsapp-float {
    position: fixed;
    right: 35px;
    bottom: 75px;
    width: 60px;
    height: 60px;
    background: #25d366;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    z-index: 9999;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.45);
    transition: all 0.3s ease;
    animation: pulse-green 2s infinite;
    text-decoration: none;
}

.whatsapp-float:hover {
    background: #20ba5a;
    color: #ffffff;
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 12px 30px rgba(37, 211, 102, 0.6);
}

/* Tooltip Badge on Hover */
.whatsapp-tooltip {
    position: absolute;
    right: 72px;
    background: #111111;
    color: #ffffff;
    font-size: 12px;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 6px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
}

/* Pulse Ripple Animation */
@keyframes pulse-green {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Mobile View Adjustments */
@media (max-width: 768px) {
    .whatsapp-float {
        width: 52px;
        height: 52px;
        right: 18px;
        bottom: 18px;
        font-size: 27px;
    }

    .whatsapp-tooltip {
        display: none; /* மொபைலில் டூல்டிப் தேவையில்லை */
    }
}
.copyright {
    color: #888888;
    font-size: 15px;
    margin: 0;
}

.copyright strong {
    color: var(--accent);
}

.social-links {
    display: flex;
    align-items: center;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #ffffff;
    display: grid;
    place-items: center;
    font-size: 17px;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--accent);
    color: #000000;
    border-color: var(--accent);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(229, 184, 66, 0.3);
}

/* Mobile Responsive */
@media (max-width: 600px) {
    .footer-content {
        flex-direction: column-reverse;
        justify-content: center;
        text-align: center;
        gap: 15px;
    }
    
    .copyright {
        font-size: 14px;
    }
}

/* =========================
   RESPONSIVE / MEDIA QUERIES
========================= */
@media (max-width: 900px) {
    .section {
        padding: 75px 0;
    }

    .nav-btn {
        display: none;
    }

    .menu-btn {
        display: flex;
        color:#E09F1A;
    }

    nav {
        position: absolute;
        top: 90px;
        left: 0;
        width: 100%;
        background: #111111;
        display: none;
        flex-direction: column;
        padding: 20px 5%;
        gap: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    nav.active {
        display: flex;
    }

    nav a {
        padding: 12px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    nav a:last-child {
        border-bottom: none;
    }

    .hero-content,
    .about-grid,
    .customer-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero {
        min-height: auto;
        padding: 130px 0 70px;
    }

    .hero-card {
        max-width: 500px;
        margin: auto;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .package-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: auto;
    }

    .package-card.featured {
        transform: none;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        row-gap: 30px;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .hero h1 {
        font-size: 38px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }

    .stat {
        border: none;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    .gallery-item.large {
        grid-row: auto;
        height: 250px;
    }

    .gallery-item {
        height: 200px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .contact-form {
        padding: 20px;
    }

    .logo-img {
        width: 120px;
    }
}

/* =========================
   ADVANCED GALLERY & TABS
========================= */
.gallery-section {
    background: #f1f0eb;
    color: black;
}

.text-center {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

/* Tabs */
.gallery-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
}
/* =========================
   CLEAN SERVICES GRID
========================= */
.services-section {
    background: #0f0f12;
    color: #ffffff;
    padding: 90px 0;
}

.text-center {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.services-solution-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 45px;
}

.service-item-card {
    background: #17171d;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 30px 24px;
    display: flex;
    align-items: center;
    gap: 18px;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.service-item-card:hover {
    transform: translateY(-5px);
    border-color: rgba(229, 184, 66, 0.45);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
}

.service-icon-box {
    width: 52px;
    height: 52px;
    min-width: 52px;
    border-radius: 12px;
    background: rgba(229, 184, 66, 0.1);
    border: 1px solid rgba(229, 184, 66, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease, color 0.3s ease;
}

.service-icon-box i {
    font-size: 24px;
    color: var(--accent, #e5b842);
}

.service-item-card:hover .service-icon-box {
    background: var(--accent, #e5b842);
}

.service-item-card:hover .service-icon-box i {
    color: #0d0d0f;
}

.service-item-card h3 {
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
    line-height: 1.4;
}

/* Tablet */
@media (max-width: 992px) {
    .services-solution-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
    }
}

/* Mobile */
@media (max-width: 600px) {
    .services-section {
        padding: 60px 0;
    }

    .services-solution-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .service-item-card {
        padding: 20px 18px;
    }

    .service-item-card h3 {
        font-size: 15px;
    }
}
.text-light{
    color:#ffffff !important;
}


/* =========================
   EVENTS COVERED SECTION
========================= */
.events-covered-section {
    background: #0b0b0d;
    color: #ffffff;
    padding: 90px 0;
}

.events-coverage-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 45px;
}

.event-coverage-card {
    background: #141418;
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 16px;
    padding: 26px 20px;
    display: flex;
    align-items: center;
    gap: 16px;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.event-coverage-card:hover {
    transform: translateY(-5px);
    border-color: rgba(229, 184, 66, 0.45);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.45);
}

.event-icon-box {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: 12px;
    background: rgba(229, 184, 66, 0.1);
    border: 1px solid rgba(229, 184, 66, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.event-icon-box i {
    font-size: 22px;
    color: var(--accent, #e5b842);
    transition: color 0.3s ease;
}

.event-coverage-card:hover .event-icon-box {
    background: var(--accent, #e5b842);
}

.event-coverage-card:hover .event-icon-box i {
    color: #0b0b0d;
}

.event-coverage-card h3 {
    font-family: "Montserrat", sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
    line-height: 1.4;
}

/* Tablet (2 per row) */
@media (max-width: 992px) {
    .events-coverage-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
    }
}

/* Mobile (1 per row) */
@media (max-width: 600px) {
    .events-covered-section {
        padding: 60px 0;
    }

    .events-coverage-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .event-coverage-card {
        padding: 18px 16px;
    }

    .event-coverage-card h3 {
        font-size: 14.5px;
    }
}
/* =========================
   SERVICES SOLUTIONS EXPANDABLE CARDS
========================= */
.services-section {
    background: #0f0f12;
    color: #ffffff;
    padding: 90px 0;
}

.text-center {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.services-solution-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 45px;
}

.service-item-card {
    background: #17171d;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    transition: all 0.35s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.service-icon-box {
    width: 50px;
    height: 50px;
    min-width: 50px;
    border-radius: 12px;
    background: rgba(229, 184, 66, 0.1);
    border: 1px solid rgba(229, 184, 66, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
    transition: all 0.35s ease;
}

.service-icon-box i {
    font-size: 22px;
    color: var(--accent, #e5b842);
    transition: color 0.35s ease;
}

.service-item-card h3 {
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
    line-height: 1.4;
    transition: color 0.3s ease;
}

/* Hidden Description Details */
.service-details {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, opacity 0.3s ease, margin-top 0.3s ease;
}

.service-details p {
    margin: 0;
    color: #a8a8af;
    font-size: 13.5px;
    line-height: 1.5;
}

/* Desktop Hover State */
@media (hover: hover) {
    .service-item-card:hover {
        transform: translateY(-6px);
        border-color: rgba(229, 184, 66, 0.45);
        box-shadow: 0 14px 30px rgba(0, 0, 0, 0.5);
        background: #1c1c23;
    }

    .service-item-card:hover .service-icon-box {
        background: var(--accent, #e5b842);
    }

    .service-item-card:hover .service-icon-box i {
        color: #0d0d0f;
    }

    .service-item-card:hover .service-details {
        max-height: 80px;
        opacity: 1;
        margin-top: 12px;
    }
}

/* Mobile Click / Active State */
.service-item-card.is-active {
    border-color: var(--accent, #e5b842);
    background: #1c1c23;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.45);
}

.service-item-card.is-active .service-icon-box {
    background: var(--accent, #e5b842);
}

.service-item-card.is-active .service-icon-box i {
    color: #0d0d0f;
}

.service-item-card.is-active .service-details {
    max-height: 80px;
    opacity: 1;
    margin-top: 12px;
}

/* Responsive Grid */
@media (max-width: 992px) {
    .services-solution-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
    }
}

@media (max-width: 600px) {
    .services-section {
        padding: 60px 0;
    }

    .services-solution-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .service-item-card {
        padding: 18px 20px;
    }
}
.tab-btn {
    background: black;
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #ffffff;
    padding: 12px 28px;
    border-radius: 30px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.tab-btn.active, .tab-btn:hover {
    background: var(--accent);
    color: #000000;
    border-color: var(--accent);
    box-shadow: 0 0 20px rgba(229, 184, 66, 0.4);
}

/* Tab Switching Visibility */
.gallery-tab-content {
    display: none;
}

.gallery-tab-content.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* 3 Items Per Row Grid */
.gallery-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.gallery-card {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    height: 280px;
    background: #18181c;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.img-card {
    cursor: pointer;
}

.gallery-card img,
.gallery-card video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.img-card:hover img {
    transform: scale(1.08);
}

/* Image Fullscreen Hover Icon */
.overlay-icon {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    color: var(--accent);
    font-size: 30px;
}

.img-card:hover .overlay-icon {
    opacity: 1;
}

/* Lightbox Modal */
.lightbox-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.92);
    backdrop-filter: blur(10px);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.lightbox-modal.show {
    display: flex;
    animation: fadeIn 0.3s ease;
}

.lightbox-modal img {
    max-width: 90vw;
    max-height: 85vh;
    border-radius: 12px;
    box-shadow: 0 0 35px rgba(229, 184, 66, 0.3);
    border: 2px solid var(--accent);
}

.lightbox-close {
    position: absolute;
    top: 25px;
    right: 35px;
    font-size: 45px;
    color: #ffffff;
    cursor: pointer;
    transition: color 0.3s;
}

.lightbox-close:hover {
    color: var(--accent);
}

/* Responsive Grid */
@media (max-width: 992px) {
    .gallery-grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .gallery-grid-3 {
        grid-template-columns: 1fr;
    }
    .gallery-card {
        height: 240px;
    }
}
.mt-5{
    margin-top: 50px;
}

/* =========================
   FAQ ACCORDION & CTA
========================= */
.faq-section {
    background: #fffffe;
    color: black;
    padding: 70px 0;
}

.faq-accordion-wrapper {
    max-width: 80%;
    margin: 0 auto 50px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.faq-card {
    background: #16161a;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-card:hover {
    border-color: rgba(229, 184, 66, 0.4);
}

.faq-card.active {
    border-color: var(--accent);
    background: #1a1a20;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

.faq-question {
    width: 100%;
    padding: 20px 24px;
    background: transparent;
    border: none;
    outline: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    cursor: pointer;
    text-align: left;
    color: #ffffff;
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
    font-weight: 600;
}

.faq-question span {
    display: flex;
    align-items: center;
    gap: 12px;
}

.faq-question span i {
    color: var(--accent);
    font-size: 18px;
    flex-shrink: 0;
}

.faq-arrow {
    font-size: 16px;
    color: var(--accent);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-card.active .faq-arrow {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s cubic-bezier(0, 1, 0, 1);
}

.faq-card.active .faq-answer {
    max-height: 300px;
    transition: max-height 0.4s ease-in-out;
}

.faq-answer p {
    padding: 0 24px 22px;
    color: #b3b3b3;
    font-size: 18px;
    line-height: 1.7;
    margin: 0;
}

/* FAQ Final CTA Banner */
.faq-cta-banner {
    max-width: 860px;
    margin: 40px auto 0;
    background: linear-gradient(145deg, #18181f 0%, #111115 100%);
    border: 1px solid rgba(229, 184, 66, 0.3);
    border-radius: 20px;
    padding: 45px 35px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
}

.faq-cta-banner h3 {
    font-family: "Montserrat", sans-serif;
    font-size: clamp(24px, 4vw, 34px);
    margin: 10px 0 12px;
    color: #ffffff;
}

.faq-cta-banner p {
    color: #a8a8a8;
    max-width: 620px;
    margin: 0 auto 25px;
    font-size: 15px;
}

.faq-cta-btns {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.faq-wa-btn {
    background: #25d366;
    color: #ffffff;
    border-color: #25d366;
}

.faq-wa-btn:hover {
    background: #1faa54;
    color: #ffffff;
}

/* Responsive */
@media (max-width: 768px) {
    .faq-section {
        padding: 70px 0;
    }

    .faq-question {
        padding: 19px 18px;
        font-size: 14px;
    }

    .faq-answer p {
        padding: 0 18px 18px;
        font-size: 13.5px;
    }

    .faq-cta-banner {
        padding: 30px 20px;
    }

    .faq-cta-btns .btn {
        width: 100%;
    }
}
/* =========================
   GALLERY VIDEO CARDS
========================= */
.gallery-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.gallery-card.video-card {
    position: relative;
    width: 100%;
    height: 320px;
    border-radius: 16px;
    overflow: hidden;
    background: #000;
    border: 1px solid rgba(255, 255, 255, 0.08);
    cursor: pointer;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.gallery-card.video-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 208, 54, 0.4);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

.gallery-card.video-card video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Play Icon Overlay */
.gallery-card.video-card .video-play-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.3);
    transition: opacity 0.3s ease;
    z-index: 2;
    pointer-events: none;
}

.gallery-card.video-card .video-play-overlay i {
    font-size: 52px;
    color: var(--gold-primary, #FFD036);
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.8));
    transition: transform 0.3s ease;
}

.gallery-card.video-card:hover .video-play-overlay i {
    transform: scale(1.1);
}

/* Play ஆகும்போது Overlay மறைய */
.gallery-card.video-card.playing .video-play-overlay {
    opacity: 0;
    visibility: hidden;
}

/* Responsive Grid */
@media (max-width: 992px) {
    .gallery-grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .gallery-grid-3 {
        grid-template-columns: 1fr;
    }
    .gallery-card.video-card {
        height: 260px;
    }
}