﻿/*This All are utility CSS Start*/
.corporate-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 1s 0.6s forwards;
}

.corporate-divider-line {
    width: 300px;
    height: 2px;
    background-color: var(--Lakshya-brand-rich-gold);
}

.corporate-divider-icon {
    margin: 0 15px;
    color: var(--Lakshya-brand-rich-gold);
    font-size: 20px;
    animation: pulse-glow 2s infinite ease-in-out;
}

@keyframes pulse-glow {

    0%, 100% {
        transform: scale(1.5);
    }

    50% {
        transform: scale(0.7);
    }
}

.corporate-divider-small {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    animation: fadeIn 1s 0.6s forwards;
}

.corporate-divider-line-small {
    width: 77px;
    height: 2px;
    background-color: var(--Lakshya-brand-rich-gold);
}

.corporate-divider-icon-small {
    margin: 0 15px;
    color: var(--Lakshya-brand-rich-gold);
    font-size: 20px;
    animation: pulse-glow 2s infinite ease-in-out;
}

@keyframes pulse-glow {

    0%, 100% {
        transform: scale(1.5);
    }

    50% {
        transform: scale(0.7);
    }
}

.whatsapp-float {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 50;
}

.whatsapp-btn {
    background-color: #25d366;
    padding: 1rem;
    border-radius: 9999px;
    color: var(--Lakshya-brand-full-white);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

    .whatsapp-btn:hover {
        background-color: #169c47;
        box-shadow: 0 12px 20px rgba(0, 0, 0, 0.15);
    }

.whatsapp-icon {
    width: 1.5rem;
    height: 1.5rem;
}

.text-center {
    text-align: center;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.text-gold {
    color: var(--Lakshya-brand-rich-gold);
}

.text-gradient {
    background: var(--Lakshya-brand-rich-gold);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 16px 32px; 
    font-size: 16px;
    border-radius: 50px;
    font-family: var(--font-accent);
    font-weight: 600;
    transition: 0.3s ease;
    cursor: pointer;
    text-align: center;
    white-space: nowrap;
    border: none;
    outline: none;
    letter-spacing: 0.5px;
}

.btn-primary {
    background: var(--Lakshya-brand-rich-gold);
    color: var(--Lakshya-brand-full-white);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

    .btn-primary:hover {
        transform: translateY(-2px);
        box-shadow: 0 20px 25px rgba(0, 0, 0, 0.1);
    }

.btn-secondary {
    background: transparent;
    color: var(--Lakshya-brand-full-white);
    border: 2px solid var(--Lakshya-brand-full-white);
    backdrop-filter: blur(5px);
}

    .btn-secondary:hover {
        background: var(--Lakshya-brand-full-white);
        color: var(--Lakshya-brand-dark-navy);
    }

.section {
    padding: 4rem 0;
}

.corporate-section-header {
    text-align: center;
    margin-bottom: 15px;
    padding: 0 15px;
}

.corporate-section-tagline {
    font-size: 18px;
    color: var(--Lakshya-brand-rich-gold);
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 10px;
    opacity: 0;
    animation: fadeInUp 0.8s 0.2s forwards;
    font-family: var(--font-accent);
}

.corporate-section-title {
    font-size: 42px;
    font-weight: 700;
    color: var(--Lakshya-brand-dark-navy);
    margin-bottom: 10px;
    opacity: 0;
    animation: fadeInUp 0.8s 0.4s forwards;
    font-family: var(--font-primary);
}

    .corporate-section-title span {
        color: var(--Lakshya-brand-rich-gold);
        position: relative;
    }

        .corporate-section-title span::after {
            content: "";
            position: absolute;
            bottom: 4px;
            left: 0;
            width: 100%;
            height: 4px;
            background-color: rgb(212 160 23 / 26%);
            z-index: -1;
        }

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 992px) {
    .corporate-section-title {
        font-size: 38px;
    }

    .corporate-section-tagline {
        font-size: 16px;
        letter-spacing: 1.5px;
    }
}

@media (max-width: 768px) {
    .corporate-section-title {
        font-size: 32px;
    }

    .corporate-section-tagline {
        font-size: 15px;
        letter-spacing: 1px;
    }

    .corporate-divider {
        margin: 15px auto;
    }
}

@media (max-width: 576px) {
    .corporate-section-title {
        font-size: 28px;
        line-height: 1.3;
    }

    .corporate-section-tagline {
        font-size: 14px;
        letter-spacing: 0.5px;
    }

    .corporate-divider-icon {
        margin: 0 10px;
        font-size: 16px;
    }

    .corporate-section-title span::after {
        bottom: 2px;
        height: 3px;
    }
}

@media (max-width: 400px) {
    .corporate-section-title {
        font-size: 24px;
    }

    .corporate-section-tagline {
        font-size: 13px;
    }
}

/*This All are utility CSS END*/
