.hero-text-1 {
    color: #ffffff;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.45);
}

.footer-btn {
    position: relative;
    display: inline-block;
    background: white;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 500;
    line-height: 1em;
    text-transform: capitalize;
    color: #6E297C;
    padding: 18px 55px 18px 30px;
    border: none;
    overflow: hidden;
    transition: all 0.4s ease-in-out;
    z-index: 0;
}

.btn-footer::before {
    content: '';
    position: absolute;
    top: 50%;
    right: 30px;
    width: 20px;
    height: 20px;
    background: url('../image/arrow-primary-1.svg') no-repeat;
    background-position: center center;
    background-size: cover;
    transform: translateY(-50%);
    transition: all 0.4s ease-in-out;
    z-index: 1;
}

.white-section {
    background-color: #ffffff;
}


/* Balloon Common */
.balloon {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    opacity: 0.9;
    animation: floatBalloon 5s ease-in-out infinite;
}

.balloon img {
    width: 100%;
    height: auto;
}

/* Left Balloon */
.balloon-left {
    left: 38%;
    animation-delay: 0s infinite;
}

/* Right Balloon */
.balloon-right {
    right: 38%;
    animation-delay: 1.5s infinite;
}

/* Floating animation */
@keyframes floatBalloon {
    0% {
        transform: translateY(-50%) translateY(0);
    }

    50% {
        transform: translateY(-50%) translateY(-20px);
    }

    100% {
        transform: translateY(-50%) translateY(0);
    }
}

/* mobile view */

@media (max-width: 768px) {

    .balloon {
        width: 40px;
        /* smaller size */
        top: 45%;
        /* better vertical balance */
        animation-duration: 4s;
        /* smoother on mobile */
    }

    .balloon-left {
        left: 20%;
    }

    .balloon-right {
        right: 20%;
    }
}

/* extra small mobile  */

@media (max-width: 480px) {

    .balloon {
        width: 60px;
        top: 50%;
    }

    .balloon-left {
        left: 9%;
    }

    .balloon-right {
        right: 9%;
    }
}


.cpy-clr {
    color: #ffffff;
}

.subhi {
    font-size: 30px;
    color: #6e297c;
    font-weight: 700;
}

.clr-prime {
    font-size: 60px;
    font-weight: 600;
    line-height: 1.1em;
    letter-spacing: -0.02em;
    margin-bottom: 0;
    cursor: none;
    color: #6e297c;
}

.location-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    /* vertical gap | horizontal gap */
    font-size: 14px;
    line-height: 1.6;
    color: #555;
}

.location-list span {
    white-space: nowrap;
    font-size: 16px;
    margin-bottom: 5px;
    font-weight: 500;
    line-height: 0.75em;
    color: var(--white-color);
}

.location-list span::after {
    content: "|";
    margin-left: 10px;
    color: #f6b2ff;
}

.fixcol {

    display: flex !important;
    justify-content: center !important;
}

.customfix {
    font-size: 20px;
    font-weight: 500;
    line-height: 1.4em;
    color: var(--white-color);
    margin-bottom: 20px;
}

.main-footer *::selection {
    background: #ffffff;
    /* white highlight */
    color: #6E297C;
    /* purple text */
}

.main-footer *::-moz-selection {
    background: #ffffff;
    color: #6E297C;
}

.contact-btn {
    position: relative;
    display: inline-block;
    background: #ffffff;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 500;
    line-height: 1em;
    text-transform: capitalize;
    color: #6e297c;
    padding: 18px 55px 18px 30px;
    border: none;
    overflow: hidden;
    transition: all 0.4s ease-in-out;
    z-index: 0;
}


.address-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    /* vertical gap | horizontal gap */
    font-size: 14px;
    line-height: 1.6;
    color: #555;
}

.address-list span {
    white-space: nowrap;
    font-size: 16px;
    margin-bottom: 5px;
    font-weight: 500;
    line-height: 0.75em;
    color: #1f2937;
}

.address-list span::after {
    content: "|";
    margin-left: 10px;
    color: #333333;
}

/* portfolio */

/* Section */
.gallery-section {
    padding: 80px 20px;
    background: #ffffff;
}

/* Mobile Optimized */
@media (max-width: 768px) {
    .gallery-section {
        padding: 30px 12px !important;
        /* minimal but breathable */
    }
}

/* Extra small phones */
@media (max-width: 480px) {
    .gallery-section {
        padding: 20px 10px !important;
        /* super compact */
    }
}

.container {
    max-width: 1200px;
    margin: auto;
}

/* Tabs */
.gallery-tabs {
    text-align: center;
    margin-bottom: 40px;
}

.tab-btn {
    background: transparent;
    border: 1px solid #ddd;
    padding: 10px 28px;
    margin: 6px;
    border-radius: 30px;
    cursor: pointer;
    font-size: 14px;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.tab-btn:hover,
.tab-btn.active {
    background: #6E297C;
    color: #fff;
    border-color: #7f1f92;
}

/* Gallery Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
}

/* Gallery Item */
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 14px;
    transform: scale(1);
    animation: fadeUp 0.6s ease forwards;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    display: block;
    transition: transform 0.6s ease;
}

.gallery-item:hover img {
    transform: scale(1.12);
}

/* Overlay */
.overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.overlay span {
    color: #fff;
    padding-bottom: 20px;
    font-size: 16px;
    letter-spacing: 1px;
}

.gallery-item:hover .overlay {
    opacity: 1;
}

/* Animation */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Hide items */
.gallery-item.hide {
    display: none;
}

/* Hover button */
/* Overlay layout update */
.overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.75), transparent);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
    opacity: 0;
    transition: opacity 0.4s ease;
    padding-bottom: 25px;
}

/* Text */
.overlay span {
    color: #fff;
    font-size: 16px;
    letter-spacing: 1px;
}

/* Enquiry Button */
.enquiry-btn {
    padding: 8px 22px;
    background: #6E297C;
    color: #fff;
    text-decoration: none;
    font-size: 13px;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.enquiry-btn:hover {
    background: #7f1f92;
    transform: translateY(-2px);
}

/* Show overlay */
.gallery-item:hover .overlay {
    opacity: 1;
}

/* add */
/* Section */
.gallery-section {
    padding: 80px 20px;
    background: #ffffff;
}

.container {
    max-width: 1200px;
    margin: auto;
}

/* Tabs */
.gallery-tabs {
    text-align: center;
    margin-bottom: 40px;
}

.tab-btn {
    background: transparent;
    border: 1px solid #ddd;
    padding: 10px 28px;
    margin: 6px;
    border-radius: 30px;
    cursor: pointer;
    font-size: 14px;
    letter-spacing: 1px;
    transition: 0.3s;
}

.tab-btn:hover,
.tab-btn.active {
    background: #6E297C;
    color: #fff;
    border-color: #7f1f92;
}

/* Gallery Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
}

/* Gallery Item */
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 14px;
    animation: fadeUp 0.6s ease forwards;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    display: block;
    transition: transform 0.6s ease;
}

.gallery-item:hover img {
    transform: scale(1.12);
}

/* Overlay */
.overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.75), transparent);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
    padding-bottom: 25px;
    opacity: 0;
    transition: 0.4s ease;
}

.gallery-item:hover .overlay {
    opacity: 1;
}

.overlay span {
    color: #fff;
    font-size: 16px;
    letter-spacing: 1px;
}

/* Enquiry Button */
.enquiry-btn {
    padding: 8px 22px;
    background: #6E297C;
    color: #fff;
    text-decoration: none;
    font-size: 13px;
    border-radius: 25px;
    transition: 0.3s;
}

.enquiry-btn:hover {
    background: #7f1f92;
    transform: translateY(-2px);
}

/* Hide items */
.gallery-item.hide {
    display: none;
}

/* Animation */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Tooltip */
/* WhatsApp Floating Button */
.whatsapp-float-left {
    position: fixed;
    width: 58px;
    height: 58px;
    bottom: 25px;
    left: 25px;
    background: #25D366;
    color: #fff;
    border-radius: 50%;
    font-size: 30px;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    z-index: 300;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    animation: whatsapp-pulse 2s infinite;
}

/* Tooltip */
.whatsapp-tooltip {
    position: absolute;
    left: 75px;
    background: #111;
    color: #fff;
    padding: 8px 14px;
    border-radius: 25px;
    font-size: 14px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transform: translateX(-10px);
    transition: all 0.3s ease;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
}

/* Tooltip arrow */
.whatsapp-tooltip::before {
    content: "";
    position: absolute;
    left: -6px;
    top: 50%;
    transform: translateY(-50%);
    border-width: 6px;
    border-style: solid;
    border-color: transparent #111 transparent transparent;
}

/* Show tooltip on hover */
.whatsapp-float-left:hover .whatsapp-tooltip {
    opacity: 1;
    transform: translateX(0);
}

/* Hover zoom */
.whatsapp-float-left:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(37, 211, 102, 0.6);
}

/* Pulse Animation */
@keyframes whatsapp-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
    }

    70% {
        box-shadow: 0 0 0 18px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Mobile */
@media (max-width: 768px) {
    .whatsapp-float-left {
        width: 52px;
        height: 52px;
        font-size: 26px;
        bottom: 20px;
        left: 20px;
    }

    .whatsapp-tooltip {
        font-size: 13px;
        padding: 6px 12px;
    }
}


/* floating whatapp */
/* WhatsApp Floating Button - Left */
.whatsapp-float-left {
    position: fixed;
    width: 58px;
    height: 58px;
    bottom: 25px;
    left: 25px;
    /* LEFT SIDE */
    background: #25D366;
    color: #fff;
    border-radius: 50%;
    font-size: 30px;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    z-index: 300;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    animation: whatsapp-pulse 2s infinite;
}

.whatsapp-float-left:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(37, 211, 102, 0.6);
    color: #fff;
}

/* Modern Tooltip */
.whatsapp-tooltip {
    position: absolute;
    left: 75px;
    background: #6E297C;
    color: #fff;
    padding: 10px 18px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.3px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transform: translateX(-12px) scale(0.95);
    transition: all 0.35s ease;
    box-shadow: 0 10px 28px rgba(110, 41, 124, 0.45);
}

/* Soft glow outline */
.whatsapp-tooltip::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 30px;
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.15);
}

/* Minimal arrow */
.whatsapp-tooltip::before {
    content: "";
    position: absolute;
    left: -7px;
    top: 50%;
    transform: translateY(-50%);
    border-width: 7px;
    border-style: solid;
    border-color: transparent #6E297C transparent transparent;
}

/* Smooth reveal */
.whatsapp-float-left:hover .whatsapp-tooltip {
    opacity: 1;
    transform: translateX(0) scale(1);
}

/* Pulse Animation */
@keyframes whatsapp-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
    }

    70% {
        box-shadow: 0 0 0 18px rgba(16, 214, 89, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .whatsapp-float-left {
        width: 52px;
        height: 52px;
        font-size: 26px;
        bottom: 20px;
        left: 20px;
    }
}



/* Floating Quote Button */
.quote-float {
    position: fixed;
    left: -48px;
    /* hide part of button */
    top: 50%;
    transform: translateY(-50%) rotate(-90deg);
    background: #6E297C;
    /* green (professional CTA) */
    color: #fff;
    padding: 14px 28px;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 0 0 10px 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
    z-index: 300;
    transition: all 0.35s ease;
}

/* Hover Effect */
.quote-float:hover {
    left: -50px;
    background: #6E297C;
    color: #fff;
}

/* Mobile Adjust */
@media (max-width: 768px) {
    .quote-float {
        padding: 12px 24px;
        font-size: 13px;
        left: -42px;
    }
}




/* ezhil chnages */


/* Parent */
.dropdown-mega {
    position: relative;
}

/* Mega menu */
.mega-menu {
    position: absolute;
    right: -200%;
    top: 105%;
    width: 800px;
    background: #fff;
    border-radius: 20px;

    /* animation setup */
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);

    display: flex;
    flex-direction: column;

    transition:
        opacity 0.5s ease,
        transform 0.5s ease,
        visibility 0.5s ease;

    gap: 10px;
    padding: 10px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    z-index: 1000;
}

/* ✅ DESKTOP ONLY hover */
@media (min-width: 769px) {
    .dropdown-mega:hover .mega-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
}

.menu-grid-clm {
    display: flex;
    gap: 20px;
}

/* Columns */
.mega-heading {
    font-weight: 600;
    margin-bottom: 6px;
    font-size: 26px !important;
}

.mega-column .mega-links a {
    display: block;
    font-weight: 600;
    padding: 8px 10px !important;
    border: 1px dotted #6e297c4f;
    border-radius: 10px;
    font-size: 14px !important;
    text-decoration: none;
    margin-bottom: 10px;
}

.mega-column .mega-links a:hover {
    box-shadow: 0 4px 8px rgba(110, 41, 124, 0.3);
}

.primary-color {
    color: #6E297C !important;
}


.service-items {
    background: #fff;
    border-radius: 10px;
    height: calc(100% - 30px);
    margin-bottom: 30px;
    padding: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
}


.service-item-content {
    text-align: center;

}


.about-mb {
    margin-top: 12px !important;
}

.section-ul-li {
    padding: 5px;
    text-align: left;

}

/* ================= MOBILE ================= */
@media (max-width: 768px) {

    .mega-menu {
        position: static;
        width: 100%;
        display: none;
        grid-template-columns: 1fr;
        padding: 0;
        box-shadow: none;
    }

    /* OPEN ONLY BY CLICK */
    .dropdown-mega.active .mega-menu {
        display: block;
    }

    .mega-column {
        border-bottom: 1px solid #ddd;
    }

    .mega-heading {
        padding: 14px;
        background: #f5f5f5;
        cursor: pointer;
        margin: 0;
    }

    .mega-links {
        display: none;
        padding: 10px 20px;
    }

    .mega-column.active .mega-links {
        display: block;
    }
}

.head-container {
    max-width: 1300px;
    width: 1300px !important;
    margin: 0 auto;
}

.img-bor {
    border-radius: 4.5px;
}


/* our products gallery */

.btn-products {
    position: relative;
    display: inline-block;
    background: #6E297C;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 400;
    line-height: 1em;
    text-transform: capitalize;
    color: white;
    padding: 18px 55px 18px 30px;
    border: none;
    overflow: hidden;
    transition: all 0.4s ease-in-out;
    z-index: 0;
}

.btn-products::before {
    content: '';
    position: absolute;
    top: 50%;
    right: 30px;
    width: 20px;
    height: 20px;
    background: url(../image/arrow-primary.svg) no-repeat;
    background-position: center center;
    background-size: cover;
    transform: translateY(-50%);
    transition: all 0.4s ease-in-out;
    z-index: 1;
}

/* Existing */
.navbar-brand {
    padding: 0;
    margin: 0;
}

/* New merged styles */
.brand-wrap {
    display: flex;
    align-items: center;
    text-decoration: none;
    position: relative;
    top: 8px;
}

/* Logo */
.brand-wrap img {
    width: 100px;
    height: auto;
}

/* Text wrapper */
.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
    position: relative;
    left: -4px;
}

/* Main heading */
.brand-text h2 {
    margin: 0;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 24px;
    font-weight: 600;
    letter-spacing: 0.85px;
    transform: scaleY(1.2);
    color: #1B3149;
}

/* Sub text */
.brand-text span {
    margin-top: 4px;
    font-family: 'poppins', sans-serif;
    font-size: 10px;
    letter-spacing: 0.5px;
    color: #6E297C;
    text-align: center;
    transform: scaleY(1.2);
    font-weight: 400;
}

/* corporate events */
/* Section */
.card-section {
    padding: 60px 20px;
}

/* Grid Layout */
.card-grid {
    max-width: 1100px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

/* Card */
.card {
    background: #ffffff;
    border-radius: 12px;
    padding: 15px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
}

.card img {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 15px;
}

.card h3 {
    font-size: 18px;
    margin-bottom: 8px;
    color: #222;
}

.card p {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
    line-height: 1.5;
}

/* Button */
.btn {
    display: inline-block;
    background: #6b2d7c;
    color: #fff;
    text-decoration: none;
    padding: 10px 18px;
    border-radius: 6px;
    font-size: 14px;
    transition: background 0.3s;
}

.btn:hover {
    background: #551f63;
}

/* Responsive */
@media (max-width: 768px) {
    .card-grid {
        grid-template-columns: 1fr;
    }
}

/* Responsive */
@media (max-width: 1370px) {
    .brand-text h2 {
        font-size: 18px !important;
        letter-spacing: -0.5px !important;
    }

}



/* header text */
.section-tle h1 {
    font-size: 40px;
    font-weight: 600;
    line-height: 1.1em;
    letter-spacing: -0.02em;
    margin-bottom: 0;
    cursor: none;
    text-shadow: 0 3px 8px rgba(0, 0, 0, 0.4);
}