/* Custom CSS Variables */
:root {
    --bg: #071127;
    --blue-1: #0b6cf6;
    --blue-2: #3da1ff;
    --card: #0f2038;
    --glass: rgba(255, 255, 255, 0.04);
    --accent: #00ffd1;
    --soft: rgba(255, 255, 255, 0.06);
    --radius: 14px;
    --transition: 350ms cubic-bezier(.2, .9, .3, 1);
}

/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: white;
    background: linear-gradient(180deg, var(--bg), #071533 70%);
}

.main-body-content {
    height: 200vh;
    padding: 100px 40px 20px;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 15px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--card);
    backdrop-filter: blur(5px);
    transform: translateY(0);
    will-change: transform;
    transition: transform 0.35s ease;
    z-index: 9999;
    border-bottom: 1px solid var(--soft);
}

.logo img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    transition: transform 0.4s ease, filter 0.4s ease;
}

.logo:hover img {
    transform: rotate(10deg) scale(1.1);
    filter: drop-shadow(0 0 8px var(--accent));
}

.nav-links {
    display: flex;
    gap: 30px;
    list-style: none;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: white;
    font-weight: 500;
    padding: 5px 0;
    display: inline-block;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--accent);
}

.navbar--hidden {
    transform: translateY(-110%);
}

/* Dropdown (for Desktop) */
.has-dropdown {
    position: relative;
}

.dropdown-content {
    position: absolute;
    top: 35px;
    left: 0;
    background: var(--card);
    padding: 10px 0;
    border-radius: var(--radius);
    display: none;
    flex-direction: column;
    min-width: 250px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    animation: fadeSlide 0.3s ease forwards;
    z-index: 99999;
    border: 1px solid var(--soft);
}

.dropdown-content a {
    padding: 10px 20px;
    color: white;
    text-decoration: none;
    display: block;
    transition: background 0.3s;
    white-space: nowrap;
}

.dropdown-content a:hover {
    background: var(--soft);
    color: var(--accent);
}

.has-dropdown:hover .dropdown-content {
    display: flex;
}

@keyframes fadeSlide {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Nav Actions - Buttons container */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* Menu Buttons */
.top-menu-btn,
.menu-btn {
    cursor: pointer;
    background: none;
    border: none;
    color: white;
    font-size: 24px;
}

.menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 25px;
}

.menu-btn span {
    width: 100%;
    height: 2px;
    background: white;
    transition: 0.3s;
}

/* Fullscreen Top-Down Menu */
.fullscreen-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--card);
    display: block;
    /* Changed from flex to block */
    padding: 0;
    transform: translateY(-100%);
    transition: transform var(--transition);
    z-index: 10000;
    overflow-y: auto;
    /* This is the key fix for scrolling */
    -webkit-overflow-scrolling: touch;
}

.fullscreen-overlay.active {
    transform: translateY(0);
}

.close-fullscreen-btn {
    position: fixed;
    top: 20px;
    right: 30px;
    font-size: 40px;
    cursor: pointer;
    color: white;
    transition: color 0.3s;
    z-index: 10001;
    background: var(--card);
    padding: 5px;
    border-radius: 50%;
}

.fullscreen-content {
    padding-top: 80px;
    padding-bottom: 20px;
}

/* Image Slider Section */
.slider-section {
    position: relative;
    width: 100%;
    max-width: 800px;
    height: 400px;
    margin: 40px auto;
    overflow: hidden;
    border-radius: var(--radius);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.slider-container {
    display: flex;
    transition: transform 0.5s ease-in-out;
    height: 100%;
}

.slide {
    min-width: 100%;
    flex-shrink: 0;
    height: 100%;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* About Us Section */
.about-us-section,
.works-with-us-section {
    max-width: 1000px;
    margin: 60px auto;
    padding: 20px;
    background: var(--card);
    border-radius: var(--radius);
    border: 1px solid var(--soft);
}

.about-us-section h2,
.works-with-us-section h2 {
    font-size: 2.5em;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--accent);
    text-align: center;
}

.about-us-section p {
    font-size: 1.1em;
    line-height: 1.6;
    color: #CBD5E0;
}

/* Works with Us Section */
.works-with-us-section .links-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.work-link {
    text-decoration: none;
    color: white;
    background: var(--soft);
    padding: 12px 25px;
    border-radius: var(--radius);
    transition: background 0.3s, color 0.3s;
    font-weight: 500;
    border: 1px solid transparent;
}

.work-link:hover {
    background: var(--accent);
    color: var(--bg);
    border-color: var(--accent);
}

/* Sidebar from left MENU (New) */
.sidebar {
    position: fixed;
    top: 0;
    left: 0;
    width: 300px;
    height: 100%;
    background: var(--card);
    transform: translateX(-100%);
    transition: transform var(--transition);
    z-index: 9999;
    border-right: 1px solid var(--soft);
    padding: 20px;
    padding-top: 60px;
    overflow-y: auto;
}

.sidebar.active {
    transform: translateX(0);
}

.close-sidebar-btn {
    position: absolute;
    top: 15px;
    right: 25px;
    font-size: 30px;
    cursor: pointer;
    color: white;
    transition: color 0.3s;
}

.close-sidebar-btn:hover {
    color: var(--accent);
}

.sidebar-header {
    display: flex;
    align-items: center;
    background-color: var(--soft);
    border-radius: var(--radius);
    padding: 8px 12px;
    margin-bottom: 20px;
}

.search-bar {
    background: none;
    border: none;
    color: white;
    outline: none;
    width: 100%;
}

.search-icon {
    color: #bbb;
    margin-left: 10px;
}

mark {
    background-color: yellow;
    color: black;
}



.sidebar-nav-links {
    list-style: none;
    padding: 0;
}

.sidebar-nav-links li a {
    display: block;
    padding: 12px 15px;
    color: white;
    text-decoration: none;
    font-weight: 500;
    border-radius: var(--radius);
    transition: background-color 0.3s, color 0.3s;
}

.sidebar-nav-links li a:hover {
    background-color: var(--soft);
    color: var(--accent);
}

.sidebar-dropdown-content {
    list-style: none;
    padding-left: 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition);
    height: 100vh;
    /* full viewport height */
    overflow-y: auto;
    /* vertical scroll enable */
}

.sidebar-dropdown-content.show {
    max-height: 300px;
}

.sidebar-dropdown-content li a {
    padding: 8px 15px;
    font-size: 0.9em;
}

/* About Us Popup (Original) */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
    z-index: 10000;
}

.overlay.active {
    opacity: 1;
    visibility: visible;
}

.overlay-content {
    background: var(--card);
    border-radius: var(--radius);
    padding: 40px;
    max-width: 600px;
    text-align: center;
    position: relative;
    border: 1px solid var(--soft);
}

.close-btn {
    position: absolute;
    top: 15px;
    right: 25px;
    font-size: 30px;
    cursor: pointer;
    color: white;
    transition: color 0.3s;
}

.close-btn:hover {
    color: var(--accent);
}

/* Media Queries */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .nav-actions {
        display: flex;
    }

    .menu-btn {
        display: flex;
    }

    .top-menu-btn {
        display: none;
    }

    .navbar {
        justify-content: space-between;
    }

    .overlay-content {
        max-width: 90%;
        padding: 30px;
    }
}


/* ================= HERO SECTION ================= */
.phk-hero-section {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 500px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.phk-hero-slides {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.phk-hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s ease-in-out, transform 1s ease-in-out;
    transform: scale(1.1);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.phk-hero-slide.phk-active {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

.phk-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.55);
    z-index: 1;
}

.phk-hero-content {
    position: relative;
    z-index: 2;
    color: white;
    padding: 0 20px;
    max-width: 90%;
}

.phk-typing-text {
    font-size: 4em;
    font-weight: 700;
    margin-bottom: 30px;
    letter-spacing: 2px;
    color: var(--accent);
    overflow: hidden;
    border-right: 2px solid white;
    white-space: nowrap;
}

.phk-portfolio-btn {
    display: inline-block;
    padding: 15px 40px;
    font-size: 1.2em;
    font-weight: 600;
    text-decoration: none;
    color: var(--bg);
    background-color: var(--accent);
    border-radius: var(--radius);
    border: 2px solid var(--accent);
    transition: transform 0.3s ease-in-out, background-color 0.3s, color 0.3s;
    animation: phk-pulse 1.5s infinite;
}

.phk-portfolio-btn:hover {
    background-color: transparent;
    color: var(--accent);
    transform: scale(1.1);
}

@keyframes phk-pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(0, 255, 209, 0.7);
    }

    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 15px rgba(0, 255, 209, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(0, 255, 209, 0);
    }
}

/* ================= RESPONSIVE ================= */
@media (max-width: 1024px) {
    .phk-typing-text {
        font-size: 3em;
    }

    .phk-portfolio-btn {
        padding: 12px 30px;
        font-size: 1em;
    }
}

@media (max-width: 768px) {
    .phk-hero-section {
        height: 90vh;
    }

    .phk-typing-text {
        font-size: 2em;
    }

    .phk-portfolio-btn {
        padding: 10px 25px;
        font-size: 0.9em;
    }
}

@media (max-width: 480px) {
    .phk-hero-section {
        height: 80vh;
    }

    .phk-typing-text {
        font-size: 1.5em;
        letter-spacing: 1px;
    }

    .phk-portfolio-btn {
        padding: 8px 20px;
        font-size: 0.85em;
    }
}

/* ================================== */
/* BEFORE & AFTER COMPARISON SECTION */
/* ================================== */
.comparison-section {
    padding: 60px 20px;
    text-align: center;
    background: linear-gradient(180deg, var(--bg), #071533 70%);
}

.comparison-section h2 {
    font-size: 2.5em;
    font-weight: 600;
    margin-bottom: 30px;
    color: var(--accent);
}

.comparison-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding: 20px;
}

.comparison-box {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    background-color: var(--soft);
    display: flex;
    flex-direction: column;
}

.image-container {
    position: relative;
    width: 100%;
    height: 350px;
    overflow: hidden;
    touch-action: pan-y;
    
}

/* Images */
.before-image,
.after-image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.after-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    clip-path: inset(0 0 0 50%);
    transition: clip-path 0.12s ease-out;
    z-index: 5;
}

/* Vertical bar */
.slider-bar {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    background: var(--accent, #ff4d4d);
    cursor: ew-resize;
    z-index: 10;
    user-select: none;
    touch-action: none;
}

/* Circular draggable handle */
.slider-handle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #00ffd1;
    border: 3px solid white;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
    cursor: grab;
    z-index: 11;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg);
    font-weight: bold;
    transition: transform 0.15s ease;
}

/* Add arrow inside handle */
.slider-handle::before {
    content: '↔';
    font-size: 20px;
}

/* Dragging feedback */
.slider-handle:active {
    cursor: grabbing;
    transform: translate(-50%, -50%) scale(0.95);
}

.image-container.is-dragging .after-image {
    transition: none;
}

/* Labels */
.before-label,
.after-label {
    position: absolute;
    top: 15px;
    padding: 5px 10px;
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    font-size: 14px;
    font-weight: bold;
    border-radius: 5px;
    z-index: 12;
}

.before-label {
    left: 15px;
}

.after-label {
    right: 15px;
}

/* Text Section */
.comparison-text-section {
    padding: 20px;
    text-align: center;
}

.comparison-text-section h3 {
    font-size: 1.2em;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--accent);
}

.comparison-text-section p {
    font-size: 0.9em;
    color: #CBD5E0;
    line-height: 1.5;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .comparison-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .comparison-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .comparison-section h2 {
        font-size: 2em;
    }

    .comparison-text-section h3 {
        font-size: 1.1em;
    }
}

/* ================================== */
/* WHY CHOOSE US SECTION */
/* ================================== */

.why-choose-us-section {
    padding: 80px 20px;
    text-align: center;
    background: linear-gradient(180deg, var(--bg), #071533 70%);
}

.why-choose-us-section h2 {
    font-size: 2.5em;
    font-weight: 600;
    margin-bottom: 40px;
    color: white;
    letter-spacing: 1px;
}

.stats-container {
    display: flex;
    justify-content: space-around;
    align-items: center;
    max-width: 900px;
    margin: 0 auto;
    padding: 30px;
    background-color: var(--card);
    border-radius: var(--radius);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.stat-box {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 3em;
    font-weight: bold;
    color: var(--blue-1);
    margin-bottom: 5px;
}

.years-label {
    font-size: 0.6em;
    vertical-align: super;
    color: var(--blue-2);
}

.stat-label {
    display: block;
    font-size: 1em;
    color: #CBD5E0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .stats-container {
        flex-direction: column;
        gap: 40px;
        padding: 40px 20px;
    }

    .stat-number {
        font-size: 2.5em;
    }

    .why-choose-us-section h2 {
        font-size: 2em;
        margin-bottom: 30px;
    }
}

@media (max-width: 480px) {
    .stat-number {
        font-size: 2em;
    }
}


/* ================================== */
/* TESTIMONIALS SECTION */
/* ================================== */

.testimonials-section {
    padding: 80px 20px;
    text-align: center;
    background-color: var(--bg);
}

.testimonials-section h2 {
    font-size: 2.5em;
    font-weight: 600;
    margin-bottom: 50px;
    color: white;
    letter-spacing: 1px;
}

.testimonials-slider {
    max-width: 800px;
    margin: 30px auto;
    padding: 30px;
    background-color: var(--card);
    border-radius: var(--radius);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    position: relative;
    overflow: hidden;
    min-height: 400px;
}

.testimonial-slide {
    opacity: 0;
    visibility: hidden;
    position: absolute;
    top: 30px;
    left: 30px;
    right: 30px;
    transition: opacity 0.6s ease-in-out, visibility 0.6s ease-in-out;
}

.testimonial-slide.active {
    opacity: 1;
    visibility: visible;
    position: relative;
    top: auto;
    left: auto;
    right: auto;
}

.testimonial-header {
    position: relative;
    display: inline-block;
    margin-bottom: 20px;
}

.testimonial-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--accent);
}

.testimonial-text {
    font-size: 1.25em;
    line-height: 1.8;
    color: #CBD5E0;
    margin-bottom: 20px;
}

.testimonial-author {
    font-size: 1em;
    font-weight: bold;
    color: var(--accent);
    margin-bottom: 10px;
}

.testimonial-rating {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2px;
    color: gold;
    font-size: 1.2em;
    margin-bottom: 20px;
}

.slider-navigation {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
}

.prev-btn,
.next-btn {
    background: transparent;
    border: none;
    padding: 12px 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    color: #0b6cf6;
    font-weight: 600;
    transition: color 0.3s ease;
    user-select: none;
}

.prev-btn:hover,
.next-btn:hover {
    color: #0847c1;
}

/* Left arrow */
.prev-btn::before {
    content: "";
    display: inline-block;
    width: 8px;
    height: 8px;
    border-top: 2.5px solid currentColor;
    border-left: 2.5px solid currentColor;
    transform: rotate(-45deg);
    margin-right: 6px;
}

/* Right arrow */
.next-btn::after {
    content: "";
    display: inline-block;
    width: 8px;
    height: 8px;
    border-top: 2.5px solid currentColor;
    border-right: 2.5px solid currentColor;
    transform: rotate(45deg);
    margin-left: 6px;
}

.dots-container {
    display: flex;
    gap: 10px;
}

.dot {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: grey;
    opacity: 0.7;
    transition: opacity 0.3s ease;
    cursor: pointer;
}

.dot.active {
    opacity: 1;
    box-shadow: 0 0 8px 2px #0b6cf6;
}

.review-button-container {
    text-align: center;
    margin-top: 20px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .testimonials-section h2 {
        font-size: 2em;
        margin-bottom: 40px;
    }

    .testimonials-slider {
        padding: 20px;
        min-height: 350px;
    }

    .testimonial-text {
        font-size: 1.1em;
        line-height: 1.6;
    }

    .testimonial-author {
        font-size: 0.9em;
    }

    .testimonial-rating {
        font-size: 1.1em;
    }

    .testimonial-img {
        width: 70px;
        height: 70px;
    }
}


/* ================================== */
/* MAIN FOOTER */
/* ================================== */

.main-footer {
    background-color: #000;
    color: white;
    padding: 30px 20px 20px;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    padding-bottom: 20px;
}

.footer-column {
    flex: 1;
    min-width: 150px;
    margin: 10px;
}

.footer-column h3 {
    font-size: 1.2em;
    font-weight: 600;
    margin-bottom: 10px;
    color: white;
}

.footer-logo {
    color: var(--accent);
    font-size: 1.5em;
    font-weight: bold;
}

.footer-slogan {
    font-size: 0.9em;
    color: #CBD5E0;

}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links a {
    color: #CBD5E0;
    text-decoration: none;
    font-size: 0.9em;
    line-height: 2;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--accent);
}

.address-text {
    font-size: 0.9em;
    color: #CBD5E0;
    line-height: 1.8;
}

.address-text i {
    margin-right: 8px;
    color: var(--accent);
}

.footer-divider {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin: 0 20px 20px;
}

.footer-bottom {
    /* **Changes here** */
    display: flex;
    flex-direction: column;
    /* Stack icons and text vertically */
    justify-content: center;
    align-items: center;
    /* Center horizontally */
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    gap: 15px;
    /* Add space between elements */
}

.footer-socials {
    margin-bottom: 0;
    display: flex;
    gap: 15px;
}

.footer-socials a {
    color: white;
    font-size: 1.2em;
    transition: color 0.3s;
}

.footer-socials a:hover {
    color: var(--accent);
}

.copyright-text {
    font-size: 0.8em;
    color: #CBD5E0;
    margin-top: 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-column {
        min-width: 100%;
        margin: 10px 0;
    }

    .footer-column h3 {
        margin-bottom: 5px;
    }

    .footer-slogan {
        margin-bottom: 10px;
    }
}

/* ================================== */
/* WHATSAPP CHAT ICON */
/* ================================== */

.whatsapp-chat {
    position: fixed;
    bottom: 30px;
    right: -300px;
    /* Starts off-screen */
    display: flex;
    align-items: center;
    background-color: #00ffc8;
    /* Accent color from your theme */
    color: #071533;
    /* Text color */
    padding: 10px 15px;
    /* Compact padding */
    border-radius: 10px 0 0 10px;
    box-shadow: -2px 2px 5px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    transition: right 0.5s ease-in-out;
    cursor: pointer;
}

.whatsapp-chat:hover {
    background-color: #00e0b3;
}

.whatsapp-chat a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: inherit;
}

.whatsapp-icon {
    width: 35px;
    height: 35px;
    background-color: #25D366;
    /* Standard WhatsApp green */
    border-radius: 50%;
    color: white;
    font-size: 1.2em;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 10px;
}

.whatsapp-text {
    font-weight: bold;
    white-space: nowrap;
    font-size: 0.9em;
    display: flex;
    align-items: center;
}

.wh-typing {
    font-weight: normal;
    overflow: hidden;
    white-space: nowrap;
    margin-left: 5px;
    border-right: 2px solid #071533;
    animation: blink-caret 0.75s step-end infinite;
}

/* Cursor blink animation */
@keyframes blink-caret {

    from,
    to {
        border-color: transparent
    }

    50% {
        border-color: #071533;
    }
}

/* Slide-in animation */
@keyframes slideIn {
    from {
        right: -300px;
    }

    to {
        right: 30px;
    }
}

.whatsapp-chat.show {
    animation: slideIn 0.5s ease-in-out forwards;
}

/* Responsive adjustments for mobile */
@media (max-width: 768px) {
    .whatsapp-chat {
        bottom: 20px;
        padding: 8px 12px;
    }

    .whatsapp-icon {
        width: 30px;
        height: 30px;
        font-size: 1.1em;
        margin-right: 8px;
    }

    .whatsapp-text {
        font-size: 0.8em;
    }
}