@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap');

/* --- Global Styles --- */
:root {
    --primary-color: #9f2fff;
    --primary-color-rgb: 159, 47, 255; /* RGB values for --primary-color */
    --secondary-color: #c1c1c1;
    --background-color: #121212;
    --surface-color: #1E1E1E;
    --text-color: #EAEAEA;
    --white: #ffffff;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    background-color: var(--background-color);
    color: var(--text-color);
}

.container {
    max-width: 1200px;
    margin: auto;
    padding: 0 2rem;
}

/* --- Header & Navbar --- */
.header {
    background-color: rgba(30, 30, 30, 0.5);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    z-index: 100;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
}

.nav-logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
}

.logo-img {
    height: 40px;
    object-fit: contain;
}

.nav-menu {
    display: flex;
    list-style: none;
}

.nav-item {
    margin-left: 2.5rem;
}

.nav-link {
    text-decoration: none;
    color: var(--secondary-color);
    font-weight: 400;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-color);
}

.hamburger {
    display: none;
    cursor: pointer;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    background-color: var(--text-color);
}

/* --- Hero Section --- */
.hero-section {
    color: var(--text-color);
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 1rem;
}

.hero-content h1 {
    font-size: 4.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    color: var(--secondary-color);
}

.cta-button {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 1rem 2.5rem;
    text-decoration: none;
    font-weight: 600;
    border-radius: 50px;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.cta-button:hover {
    background-color: #8e1ddb;
    transform: translateY(-3px);
}

/* --- Section Styles --- */
section {
    padding: 8rem 0;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

section.visible {
    opacity: 1;
    transform: translateY(0);
}

h1, h2 {
    text-align: center;
    font-size: 3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.section-intro {
    text-align: center;
    font-size: 1.1rem;
    color: var(--secondary-color);
    max-width: 600px;
    margin: 0 auto 4rem;
}

/* --- Our Work Section --- */
.work-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.work-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
}

.work-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.work-item:hover img {
    transform: scale(1.1);
}

.work-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(159, 47, 255, 0.9), transparent);
    color: var(--white);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2rem;
    opacity: 0;
    transform: translateY(100%);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.work-item:hover .work-overlay {
    opacity: 1;
    transform: translateY(0);
}

.work-overlay h3 {
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

/* --- Testimonials Section --- */
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: var(--surface-color);
    padding: 2.5rem;
    border-radius: 12px;
    border-left: 5px solid var(--primary-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.3);
}

.testimonial-card p {
    font-size: 1.1rem;
    color: var(--secondary-color);
}

.testimonial-card h4 {
    margin-top: 1.5rem;
    font-style: italic;
    color: var(--primary-color);
}

/* --- Team Section --- */
#team {
    padding-top: 10rem;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.team-member {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.4);
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    background: var(--surface-color);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2.5rem 1.5rem;
    text-align: center;
    perspective: 1000px; /* For 3D effects */
}

.team-member:hover {
    transform: translateY(-15px) rotateX(5deg) rotateY(5deg); /* More pronounced 3D rotation */
    box-shadow: 0 25px 50px rgba(0,0,0,0.6);
}

.team-member::before { /* Dynamic background element */
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(var(--primary-color-rgb), 0.1) 0%, transparent 70%);
    transition: transform 0.8s ease-out, opacity 0.8s ease-out;
    opacity: 0;
    z-index: 0;
}

.team-member:hover::before {
    transform: scale(1.2);
    opacity: 1;
}

.team-member img {
    width: 180px; /* Even larger image */
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1.5rem;
    border: 6px solid var(--primary-color); /* Thicker, more prominent border */
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), border-color 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 1;
}

.team-member:hover img {
    transform: scale(1.1) rotateZ(10deg); /* Zoom and rotate image */
    border-color: var(--secondary-color);
}

.team-member h3 {
    font-size: 2rem; /* Larger name */
    font-weight: 800; /* Bolder */
    margin-bottom: 0.3rem;
    color: var(--white);
    text-shadow: 0 0 10px rgba(var(--primary-color-rgb), 0.5); /* Subtle text shadow */
    z-index: 1;
}

.team-member p {
    font-size: 1.2rem; /* Larger designation */
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    z-index: 1;
}

.team-member .social-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem; /* More spacing */
    opacity: 0;
    transform: translateY(20px); /* Start further below */
    transition: opacity 0.5s ease-out 0.2s, transform 0.5s ease-out 0.2s; /* Delayed reveal */
    z-index: 1;
}

.team-member:hover .social-links {
    opacity: 1;
    transform: translateY(0);
}

.social-links a {
    color: var(--white); /* White icons for strong contrast */
    text-decoration: none;
    font-size: 1.8rem; /* Even larger icons */
    transition: color 0.3s ease, transform 0.3s ease;
}

.social-links a:hover {
    color: var(--primary-color);
    transform: scale(1.3) rotate(10deg); /* More dramatic pop and rotate */
}

/* --- Footer --- */
.footer {
    background-color: var(--surface-color);
    color: var(--secondary-color);
    padding: 4rem 0 2rem;
    margin-top: 6rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-col {
    text-align: left;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    text-decoration: none;
}

.footer-logo .nav-logo {
    font-size: 1.5rem;
}

.footer-bio {
    font-size: 0.9rem;
    line-height: 1.8;
}

.footer-col h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 1rem;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 0.5rem;
}

.footer-col ul li a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: var(--primary-color);
}

.footer-col p {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.footer-col p a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-col p a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
}

.footer-bottom-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.social-icons a {
    color: var(--secondary-color);
    font-size: 1.2rem;
    margin-right: 1.5rem;
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: var(--primary-color);
}

.footer-bottom p {
    font-size: 0.9rem;
}

/* --- Responsive Design --- */
@media(max-width: 992px) {
    .hero-content h1 {
        font-size: 3.5rem;
    }
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

@media(max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 0;
        flex-direction: column;
        justify-content: center;
        background-color: var(--surface-color);
        width: 100%;
        height: 100vh;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-item {
        margin: 2.5rem 0;
    }

    .hamburger {
        display: block;
        z-index: 101; /* Ensure it's above the nav menu */
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
        background-color: var(--primary-color);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
        background-color: var(--primary-color);
    }

    .hero-content h1 {
        font-size: 2.8rem;
    }
    .footer-bottom-grid {
        flex-direction: column;
        gap: 1rem;
    }
}




/* --- 3D Background Canvas --- */
#bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
}

/* --- Contact Page --- */
#contact-page {
    padding-top: 10rem;
}


.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-form-container,
.contact-info-container {
    background: var(--surface-color);
    padding: 3rem;
    border-radius: 12px;
}

.contact-form-container h3,
.contact-info-container h3 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.form-group {
    margin-bottom: 1.5rem;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 1rem;
    background: var(--background-color);
    border: 1px solid var(--surface-color);
    border-radius: 8px;
    color: var(--text-color);
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.contact-form textarea {
    min-height: 150px;
    resize: vertical;
}

.contact-info-item {
    margin-bottom: 2rem;
}

.contact-info-item h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.contact-info-item p {
    color: var(--secondary-color);
}

.contact-info-item p a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info-item p a:hover {
    color: var(--primary-color);
}

@media(max-width: 992px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
}

/* --- About Page --- */
#about-page {
    padding-top: 10rem;
}

.about-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: center;
}

.about-animation-container {
    width: 100%;
    height: 400px;
    background-color: rgba(30, 30, 30, 0.5);
    border-radius: 12px;
}

.about-logo {
    width: 100%;
    height: 100%;
    object-fit: contain; /* Use 'contain' to ensure the whole logo is visible */
    padding: 2rem; /* Add some padding around the logo */
}





.about-content-container h3 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.about-content-container p {
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
}

.about-content-container ul {
    list-style: none;
    padding-left: 0;
}

.about-content-container ul li {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
}

.about-content-container ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

@media(max-width: 992px) {
    .about-wrapper {
        grid-template-columns: 1fr;
    }
}

/* --- Services Page --- */
#services-page {
    padding-top: 10rem;
}

.services-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-link-wrapper {
    text-decoration: none;
}

.service-card-3d {
    background: var(--surface-color);
    border-radius: 12px;
    padding: 3rem 2rem;
    transform-style: preserve-3d;
    transition: transform 0.5s ease;
}

.service-card-content {
    transform: translateZ(20px);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    text-shadow: 0 0 15px var(--primary-color);
}

.service-card-3d h2 {
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--white);
    text-align: left; /* Override global text-align: center */
}

.service-card-3d p {
    color: var(--secondary-color);
}

/* --- Project Cards --- */
.project-link-wrapper {
    text-decoration: none;
}

.project-card-3d {
    background: var(--surface-color);
    border-radius: 12px;
    transform-style: preserve-3d;
    transition: transform 0.5s ease, box-shadow 0.3s ease;
    height: 100%;
    position: relative; /* Needed for absolute positioning of overlay */
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    display: flex; /* Use flexbox for internal layout */
    flex-direction: column; /* Stack image and content vertically */
}

.project-card-3d:hover {
    transform: translateY(-5px) rotateZ(1deg);
    box-shadow: 0 8px 16px rgba(0,0,0,0.3);
}

.project-card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 12px 12px 0 0;
    transition: transform 0.3s ease;
}

.project-card-3d:hover .project-card-image {
    transform: scale(1.05);
}

.project-card-content {
    padding: 1.5rem;
    position: relative;
    z-index: 2;
    background: var(--surface-color);
    border-radius: 0 0 12px 12px;
    flex-grow: 1; /* Allow content to take remaining space */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.project-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6); /* Darker, more neutral transparent background */
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    color: var(--white);
    display: flex;
    flex-direction: column; /* Allow multiple lines of text */
    justify-content: center;
    align-items: center;
    opacity: 0;
    transform: scale(0.8); /* Start smaller */
    transition: opacity 0.3s ease, transform 0.3s ease, backdrop-filter 0.3s ease;
    border-radius: 12px;
    z-index: 3; /* Ensure it's above content */
    text-align: center;
    padding: 1rem;
}

.project-card-3d:hover .project-card-overlay {
    opacity: 1;
    transform: scale(1);
}

.project-card-overlay p {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.project-card-content h3 {
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--primary-color); /* Changed to primary color */
}

.project-card-content p {
    color: var(--secondary-color); /* Changed to secondary color */
}

.project-card-overlay h3 {
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--white);
}

/* --- Team Section --- */
#team {
    padding-top: 10rem;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.team-member {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.4);
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    background: var(--surface-color);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2.5rem 1.5rem;
    text-align: center;
    perspective: 1000px; /* For 3D effects */
}

.team-member:hover {
    transform: translateY(-15px) rotateX(5deg) rotateY(5deg); /* More pronounced 3D rotation */
    box-shadow: 0 25px 50px rgba(0,0,0,0.6);
}

.team-member::before { /* Dynamic background element */
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(var(--primary-color-rgb), 0.1) 0%, transparent 70%);
    transition: transform 0.8s ease-out, opacity 0.8s ease-out;
    opacity: 0;
    z-index: 0;
}

.team-member:hover::before {
    transform: scale(1.2);
    opacity: 1;
}

.team-member img {
    width: 180px; /* Even larger image */
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1.5rem;
    border: 6px solid var(--primary-color); /* Thicker, more prominent border */
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), border-color 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 1;
}

.team-member:hover img {
    transform: scale(1.1) rotateZ(10deg); /* Zoom and rotate image */
    border-color: var(--secondary-color);
}

.team-member h3 {
    font-size: 2rem; /* Larger name */
    font-weight: 800; /* Bolder */
    margin-bottom: 0.3rem;
    color: var(--white);
    text-shadow: 0 0 10px rgba(var(--primary-color-rgb), 0.5); /* Subtle text shadow */
    z-index: 1;
}

.team-member p {
    font-size: 1.2rem; /* Larger designation */
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    z-index: 1;
}

.team-member .social-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem; /* More spacing */
    opacity: 0;
    transform: translateY(20px); /* Start further below */
    transition: opacity 0.5s ease-out 0.2s, transform 0.5s ease-out 0.2s; /* Delayed reveal */
    z-index: 1;
}

.team-member:hover .social-links {
    opacity: 1;
    transform: translateY(0);
}

.social-links a {
    color: var(--white); /* White icons for strong contrast */
    text-decoration: none;
    font-size: 1.8rem; /* Even larger icons */
    transition: color 0.3s ease, transform 0.3s ease;
}

.social-links a:hover {
    color: var(--primary-color);
    transform: scale(1.3) rotate(10deg); /* More dramatic pop and rotate */
}

/* --- Service Detail Page --- */
#service-detail-page {
    padding-top: 10rem;
}

.service-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: center;
}

.service-animation-container {
    width: 100%;
    height: 400px;
    background-color: rgba(30, 30, 30, 0.5);
    border-radius: 12px;
}

.project-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

.project-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: center;
}
.service-image {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures the image covers the container without distortion */
    border-radius: 12px; /* Matches the container's border-radius */
}


#service-canvas {
    width: 100% !important;
    height: 100% !important;
}

.service-content-container h3 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.service-content-container p {
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
}

.service-content-container ul {
    list-style: none;
    padding-left: 0;
}

.service-content-container ul li {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
}

.service-content-container ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

.project-content-container .cta-button {
    display: inline-block;
    margin-top: 1.5rem;
}

@media(max-width: 992px) {
    .service-wrapper {
        grid-template-columns: 1fr;
    }
}

/* --- FAQ Section --- */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
    border: 1px solid var(--surface-color);
    border-radius: 12px;
    overflow: hidden;
}

.faq-item {
    border-bottom: 1px solid var(--surface-color);
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-item h3 {
    font-size: 1.25rem;
    font-weight: 600;
    padding: 1.5rem;
    cursor: pointer;
    position: relative;
    color: var(--white);
    margin: 0;
}

.faq-item div[itemprop="acceptedAnswer"] {
    padding: 0 1.5rem 1.5rem;
    color: var(--secondary-color);
    margin: 0;
}


/* --- Project Detail Page --- */
#project-detail-page {
    padding-top: 10rem;
}















.project-animation-container {







    width: 100%;







    height: 400px;







    background-color: rgba(30, 30, 30, 0.5);







    border-radius: 12px;







}































#project-canvas {















    width: 100% !important;















    height: 100% !important;















}































/* --- Floating Buttons --- */
.floating-buttons {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 1000;
}

.floating-buttons a {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 24px;
    text-decoration: none;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    transition: transform 0.3s ease;
}

.floating-buttons a.whatsapp-button {
    background-color: #25D366;
}

.floating-buttons a.call-button {
    background-color: #34B7F1;
}

.floating-buttons a:hover {
    transform: scale(1.1);
}