/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Outfit:wght@300;400;500;600;700;800&display=swap');

:root {
    --primary-color: #0c4da2;
    --secondary-color: #007bff;
    --accent-color: #38b6ff;
    --text-color: #2b2d42;
    --text-muted: #6c757d;
    --bg-light: #f8fbff;
    --white: #ffffff;
    --dark: #1a1a1a;
    --success: #28a745;
    --error: #dc3545;
    --card-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    --header-height: 80px;
    --transition: all 0.3s ease;
}

/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-color);
    background-color: var(--bg-light);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    color: var(--dark);
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

button,
.btn {
    cursor: pointer;
    border: none;
    outline: none;
    font-family: inherit;
    font-weight: 600;
    padding: 12px 28px;
    border-radius: 8px;
    transition: var(--transition);
    display: inline-block;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(12, 77, 162, 0.3);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
}

.brand-aishwi {
    color: #1e6bd6 !important;
    font-weight: inherit;
}


/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 15px;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--accent-color);
    border-radius: 2px;
}

/* Header */
header {
    height: var(--header-height);
    background: transparent;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    display: flex;
    align-items: center;
    transition: var(--transition);
}

header.sticky {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    height: 70px;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.brand-logo {
    display: flex;
    align-items: center;
    background: transparent;
    text-decoration: none;
}

.brand-logo-img {
    height: 60px;
    width: auto;
    object-fit: contain;
    background: transparent;
    transition: transform 0.3s ease, filter 0.3s ease;
    display: block;
}

.brand-logo-img:hover {
    transform: scale(1.08);
    filter: drop-shadow(0 4px 10px rgba(56, 182, 255, 0.4));
    cursor: pointer;
}

@media (max-width: 768px) {
    .brand-logo-img {
        height: 44px;
    }
}




.mission-vision-card {
    height: 350px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
}

.mission-vision-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@media (max-width: 768px) {
    .mission-vision-card {
        height: 250px;
        order: 2;
    }
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}


.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    font-size: 1rem;
    font-weight: 500;
    color: var(--dark);
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary-color);
}

.hamburger {
    display: none;
    cursor: pointer;
}

.hamburger div {
    width: 25px;
    height: 3px;
    background-color: var(--dark);
    margin: 5px;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, rgba(12, 77, 162, 0.05) 0%, rgba(56, 182, 255, 0.05) 100%);
    position: relative;
    padding-top: var(--header-height);
}

.hero-flex {
    display: flex;
    align-items: center;
    gap: 60px;
    justify-content: space-between;
}

.hero-left {
    flex: 1;
    max-width: 600px;
}

.hero h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 25px;
    color: var(--dark);
}

.hero-line-1 {
    display: inline-block;
    opacity: 0;
    animation: slideDownFade 1s ease forwards;
}

@keyframes slideDownFade {
    from {
        transform: translateY(-30px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.hero-typing {
    color: var(--primary-color);
    position: relative;
    display: inline-block;
    min-height: 1.2em;
    vertical-align: bottom;
}

.hero-typing::after {
    content: '|';
    position: absolute;
    right: -10px;
    animation: blink 0.7s infinite;
    color: var(--primary-color);
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }
}


.hero p {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    line-height: 1.8;
}

.hero-btns {
    display: flex;
    gap: 20px;
}

.hero-right {
    flex: 0 0 350px;
    display: flex;
    justify-content: center;
}

.award-showcase {
    text-align: center;
    transition: var(--transition);
}

.award-img {
    max-width: 280px;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.1));
    transition: transform 0.4s ease;
}

.award-showcase:hover .award-img {
    transform: translateY(-10px);
}

.award-caption {
    margin-top: 20px;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
}

.award-title {
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.award-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 0 !important;
}


/* Stats Section */
.stats {
    background: var(--primary-color);
    color: var(--white);
    padding: 60px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

.stat-item h3 {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 5px;
}

.stat-item p {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Service Cards */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.service-card,
.leader-card {
    background: var(--white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: var(--card-shadow);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
}

.leader-card {
    text-align: center;
    justify-content: center;
    min-height: 200px;
}

.leader-card h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: var(--dark);
}

.leader-card p.designation {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.leadership-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .leadership-grid {
        grid-template-columns: 1fr;
    }
}

.service-card:hover,
.leader-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-color);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: rgba(56, 182, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    font-size: 24px;
    color: var(--primary-color);
}

.service-card h3 {
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.service-card p {
    flex-grow: 1;
    margin-bottom: 20px;
    color: var(--text-muted);
}

.btn-sm {
    padding: 8px 20px;
    font-size: 0.9rem;
    align-self: flex-start;
}


.service-card ul {
    margin-top: 15px;
}

.service-card ul li {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.service-card ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

/* Footer */
footer {
    background: var(--dark);
    color: var(--white);
    padding: 80px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 50px;
    margin-bottom: 50px;
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: var(--transition);
}

.footer-social a img {
    width: 20px;
    height: 20px;
    filter: invert(1);
    /* Make black SVG white */
}

.footer-social a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(56, 182, 255, 0.3);
}


.footer-logo {
    display: inline-block;
    margin-bottom: 25px;
    background: transparent;
    text-decoration: none;
}

.footer-logo img {
    height: 55px;
    width: auto;
    object-fit: contain;
    background: transparent;
    transition: transform 0.3s ease, filter 0.3s ease;
    display: block;
}

.footer-logo img:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 4px 8px rgba(56, 182, 255, 0.3));
}

.footer-description {
    color: #e0e0e0;
    margin-bottom: 25px;
    font-weight: 500;
    line-height: 1.8;
    padding-left: 20px;
    border-left: 3px solid var(--primary-color);
    background: rgba(255, 255, 255, 0.03);
    padding: 15px 20px;
    border-radius: 0 8px 8px 0;
}

.footer-description span.highlight {
    color: var(--accent-color);
    font-weight: 700;
}

@media (max-width: 768px) {
    .footer-logo img {
        height: 40px;
    }

    .footer-about {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer-description {
        border-left: none;
        border-top: 3px solid var(--primary-color);
        border-radius: 0 0 8px 8px;
    }
}


.footer-links h4 {
    color: var(--white);
    margin-bottom: 25px;
}

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links ul li a {
    color: #b0b0b0;
}

.footer-links ul li a:hover {
    color: var(--accent-color);
}

.footer-contact h4 {
    color: var(--white);
    margin-bottom: 25px;
}

.footer-contact p {
    color: #b0b0b0;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-contact a {
    color: #b0b0b0;
    transition: var(--transition);
}

.footer-contact a:hover {
    color: var(--accent-color);
}

.footer-contact address {
    font-style: normal;
    color: #b0b0b0;
    line-height: 1.6;
    margin-top: 20px;
}

.footer-contact h5 {
    color: var(--white);
    margin-top: 25px;
    margin-bottom: 12px;
    font-size: 1rem;
}


.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: #b0b0b0;
    font-size: 0.9rem;
}

/* Contact Section Redesign */
.contact-section {
    padding: 80px 0;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.8s ease forwards;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 0;
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
}

.contact-info {
    padding: 60px;
    background: linear-gradient(135deg, #f2f7ff 0%, #e9f1ff 100%);
    display: flex;
    flex-direction: column;
}

.contact-info h2 {
    font-size: 2.2rem;
    margin-bottom: 10px;
    position: relative;
    display: inline-block;
}

.contact-info h2::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 2px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 40px;
    padding: 15px;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-item:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.6);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.icon-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    flex-shrink: 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.icon-blue {
    background: #e0eeff;
    color: #1e6bd6;
}

.icon-green {
    background: #e6ffed;
    color: #28a745;
}

.icon-orange {
    background: #fff5e6;
    color: #fd7e14;
}

.icon-red {
    background: #ffebeb;
    color: #dc3545;
}

.contact-text h4 {
    margin-bottom: 5px;
    font-size: 1.1rem;
    color: var(--dark);
}

.contact-text p,
.contact-text address {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
    font-style: normal;
}

.contact-text a {
    color: var(--text-muted);
    transition: var(--transition);
}

.contact-text a:hover {
    color: var(--primary-color);
}

.contact-form-wrapper {
    padding: 60px;
    background: var(--white);
}

.contact-form-wrapper h2 {
    margin-bottom: 30px;
    font-size: 2rem;
}

.error-msg {
    color: var(--error);
    font-size: 0.85rem;
    margin-top: 5px;
    display: none;
}

.success-message {
    background-color: #d4edda;
    color: #155724;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
    display: none;
}


.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--dark);
    font-size: 0.95rem;
}

.form-control {
    width: 100%;
    padding: 14px 20px;
    border: 2px solid #edf2f7;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #f8fafc;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(30, 107, 214, 0.1);
}

#contactForm .btn-primary {
    width: 100%;
    padding: 16px;
    font-size: 1.1rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, #1557b0 100%);
    border: none;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(30, 107, 214, 0.2);
    transition: all 0.3s ease;
}

#contactForm .btn-primary:hover {
    transform: scale(1.02);
    box-shadow: 0 12px 25px rgba(30, 107, 214, 0.3);
}

@media (max-width: 992px) {
    .contact-container {
        grid-template-columns: 1fr;
    }

    .contact-info,
    .contact-form-wrapper {
        padding: 40px 30px;
    }
}

/* Mobile Responsive */
@media (max-width: 992px) {
    .brand-logo-img {
        height: 44px;
    }

    .hero-flex {
        flex-direction: column;
        text-align: center;
        gap: 50px;
    }

    .hero-left {
        max-width: 100%;
    }

    .hero-btns {
        justify-content: center;
    }

    .hero h1 {
        font-size: 2.8rem;
    }

    .hero-right {
        flex: 1;
        width: 100%;
    }

    .award-img {
        max-width: 200px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .contact-container {
        grid-template-columns: 1fr;
    }
}


@media (max-width: 768px) {
    header {
        background: var(--white);
    }

    .nav-links {
        position: fixed;
        right: -100%;
        top: var(--header-height);
        flex-direction: column;
        background: var(--white);
        width: 100%;
        text-align: center;
        padding: 40px 0;
        box-shadow: 0 10px 10px rgba(0, 0, 0, 0.05);
        transition: 0.5s;
    }

    .nav-links.active {
        right: 0;
    }

    .hamburger {
        display: block;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        /* Fixed narrow lines by using single column */
        gap: 20px;
    }

    section {
        padding: 60px 0;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    /* Global Container Mobile Padding */
    .container {
        padding: 0 16px !important;
    }

    /* About Section Mobile Styles */
    .about-section {
        padding: 40px 0;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .about-section h2,
    .section-header h2 {
        font-size: 24px;
        text-align: left !important;
        margin-bottom: 20px;
    }

    .about-section p,
    .section-header p {
        font-size: 16px;
        line-height: 1.7;
        text-align: left !important;
        word-break: normal;
        margin-top: 15px !important;
        width: 100%;
    }

    /* Leadership & Cards Mobile Alignment */
    .leader-card,
    .service-card {
        text-align: left;
        padding: 30px 20px;
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }
}

/* Workplace Carousel */
.carousel-section {
    padding: 80px 0;
    background: var(--white);
}

.carousel-container {
    overflow-x: auto;
    overflow-y: hidden;
    position: relative;
    width: 100%;
    cursor: grab;
    scrollbar-width: none;
    /* Firefox */
    -ms-overflow-style: none;
    /* IE and Edge */
}

.carousel-container::-webkit-scrollbar {
    display: none;
    /* Chrome, Safari, Opera */
}

.carousel-container:active {
    cursor: grabbing;
}

.carousel-track {
    display: flex;
    flex-wrap: nowrap;
    /* Force single row */
    gap: 16px;
    padding: 20px 0;
    transition: transform 0.1s linear;
    will-change: transform;
}

.carousel-card {
    flex: 0 0 auto;
    /* Prevent shrinking/growing */
    height: 220px;
    /* Fixed height */
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
    transition: var(--transition);
}

.carousel-card img {
    height: 100%;
    width: auto;
    /* Auto width based on aspect ratio */
    display: block;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.carousel-card:hover {
    transform: translateY(-5px);
}

.carousel-card:hover img {
    transform: scale(1.05);
}

/* Partners Section */
.partners-section {
    padding: 80px 0;
    background: var(--white);
    overflow: hidden;
}

.partners-container {
    mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
    overflow: hidden;
    padding: 20px 0;
}

.partners-scroll {
    display: flex;
    gap: 60px;
    width: max-content;
    animation: scroll 40s linear infinite;
}

.partners-scroll:hover {
    animation-play-state: paused;
}

.partner-logo {
    flex: 0 0 auto;
}

.partner-logo img {
    height: 70px;
    width: auto;
    object-fit: contain;
    filter: grayscale(100%) opacity(0.7);
    transition: var(--transition);
}

.partner-logo img:hover {
    filter: grayscale(0%) opacity(1);
    transform: scale(1.1);
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@media (max-width: 768px) {
    .partner-logo img {
        height: 45px;
    }

    .partners-scroll {
        gap: 40px;
        animation-duration: 25s;
    }

    .partners-container {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
    }

    .partner-logo {
        scroll-snap-align: start;
    }

    .partners-container::-webkit-scrollbar {
        display: none;
    }
}


/* Why Corecellent Section */
.why-corecellent-section {
    padding: 60px 20px;
    text-align: center;
    background: var(--white);
}

.why-corecellent-content {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.why-corecellent-section h2 {
    font-size: 2.8rem;
    font-weight: bold;
    margin-bottom: 12px;
    color: var(--dark);
}

.corecellent-tagline {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 900px;
    margin: 0 auto 30px auto;
    line-height: 1.5;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.award-highlight {
    background: #eef5fc;
    width: 100%;
    max-width: 600px;
    margin: 0 auto 32px auto;
    padding: 24px 20px;
    border-radius: 12px;
    border-top: 4px solid var(--primary-color);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.award-highlight p {
    margin: 8px 0;
    font-size: 1rem;
    color: #222;
}

.video-showcase {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    padding-top: 10px;
}

.video-card {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: #000;
    aspect-ratio: 16/9;
}

.video-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
    .why-corecellent-section h2 {
        font-size: 2.2rem;
    }

    .corecellent-tagline {
        font-size: 1rem;
        line-height: 1.4;
    }

    .award-highlight {
        padding: 20px 15px;
    }
}

/* Splash Screen */
#splash-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.8s;
}

#splash-screen.fade-out {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.splash-content {
    position: relative;
    width: 180px;
    height: 180px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.splash-ring-svg {
    position: absolute;
    width: 112%;
    height: 112%;
    transform: rotate(-90deg);
}

.splash-ring-circle {
    fill: none;
    stroke: #1e6bd6;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-dasharray: 301.59;
    /* 2 * PI * 48 */
    stroke-dashoffset: 301.59;
    filter: drop-shadow(0 0 10px rgba(30, 107, 214, 0.6));
    animation: drawRing 1s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes drawRing {
    to {
        stroke-dashoffset: 0;
    }
}

.splash-inner-circle {
    width: 100%;
    height: 100%;
    background: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    opacity: 0;
    transform: scale(0.7);
    animation: splashInnerReveal 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) 0.3s forwards;
    padding: 20px;
}

@keyframes splashInnerReveal {
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.splash-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 50%;
    /* Perfect circular mask */
    opacity: 0;
    transform: scale(0.9);
    animation: splashLogoFade 0.6s ease 0.6s forwards;
}

@keyframes splashLogoFade {
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    right: 24px;
    bottom: 24px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    animation: waPulse 3s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

.whatsapp-float img {
    width: 32px;
    height: 32px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

@keyframes waPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

@media (max-width: 480px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        right: 15px;
        bottom: 15px;
    }

    .whatsapp-float img {
        width: 26px;
        height: 26px;
    }
}