/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #0a2540; /* Professional Navy Blue */
    --secondary-color: #1a365d; /* Darker Navy Blue */
    --accent-color: #d4af37; /* Gold Accent */
    --light-color: #f8f9fa;
    --dark-color: #212529;
    --success-color: #4caf50;
    --danger-color: #f44336;
    --warning-color: #ff9800;
    --info-color: #2196f3;
    --gray-color: #6c757d;
    --light-gray: #e9ecef;
    --transition: all 0.3s ease;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 10px 20px rgba(0, 0, 0, 0.15);
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--dark-color);
    background-color: #fff;
    overflow-x: hidden;
    position: relative;
}

#particles-js {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    outline: none;
}

.primary-btn {
    background: var(--primary-color);
    color: white;
    border: 2px solid var(--primary-color);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.primary-btn:hover {
    background: transparent;
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.secondary-btn {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    transition: all 0.3s ease;
}

.secondary-btn:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.neon-btn {
    position: relative;
    animation: neon-btn-glow 4s infinite alternate;
    box-shadow: 
        0 0 2px var(--primary-color),
        0 0 4px var(--primary-color);
}

.neon-btn:hover {
    animation: none;
    box-shadow: 
        0 0 4px var(--primary-color),
        0 0 8px var(--primary-color),
        0 0 12px var(--accent-color);
    transform: translateY(-3px);
}

.neon-btn-outline {
    position: relative;
    animation: neon-outline-glow 4s infinite alternate;
    box-shadow: 
        0 0 2px var(--primary-color),
        0 0 4px var(--primary-color);
}

.neon-btn-outline:hover {
    animation: none;
    box-shadow: 
        0 0 4px var(--primary-color),
        0 0 8px var(--primary-color),
        0 0 12px var(--accent-color);
    transform: translateY(-3px);
}

@keyframes neon-btn-glow {
    0% {
        box-shadow: 
            0 0 2px var(--primary-color),
            0 0 4px var(--primary-color);
    }
    100% {
        box-shadow: 
            0 0 3px var(--primary-color),
            0 0 6px var(--primary-color);
    }
}

@keyframes neon-outline-glow {
    0% {
        box-shadow: 
            0 0 2px var(--primary-color),
            0 0 4px var(--primary-color);
    }
    100% {
        box-shadow: 
            0 0 3px var(--primary-color),
            0 0 6px var(--primary-color),
            0 0 8px var(--accent-color);
    }
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-title .underline {
    height: 4px;
    width: 80px;
    background: var(--primary-color);
    margin: 10px auto;
    border-radius: 2px;
}

.section-title p {
    font-size: 1.1rem;
    color: var(--gray-color);
    max-width: 600px;
    margin: 0 auto;
}

/* Header Styles */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 15px 0;
    transition: var(--transition);
}

header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.logo-text span {
    color: var(--accent-color);
}

.neon-text {
    position: relative;
    animation: neon-pulse 3s infinite alternate;
    text-shadow: 
        0 0 2px var(--primary-color),
        0 0 4px var(--primary-color),
        0 0 6px var(--accent-color);
}

@keyframes neon-pulse {
    0% {
        text-shadow: 
            0 0 2px var(--primary-color),
            0 0 4px var(--primary-color),
            0 0 6px var(--accent-color);
    }
    100% {
        text-shadow: 
            0 0 1px var(--primary-color),
            0 0 3px var(--primary-color),
            0 0 4px var(--accent-color);
    }
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 30px;
}

.nav-links a {
    text-decoration: none;
    color: var(--dark-color);
    font-weight: 500;
    font-size: 1.1rem;
    transition: var(--transition);
    position: relative;
}

.nav-links a:hover {
    color: var(--primary-color);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
}

.nav-links a:hover::after {
    width: 100%;
}

.burger {
    display: none;
    cursor: pointer;
}

.burger div {
    width: 25px;
    height: 3px;
    background: var(--dark-color);
    margin: 5px;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    background: linear-gradient(135deg, rgba(10, 37, 64, 0.05) 0%, rgba(26, 54, 93, 0.03) 100%);
    /* Navy blue gradient background */
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 10% 20%, rgba(212, 175, 55, 0.05) 0%, transparent 20%),
                radial-gradient(circle at 90% 80%, rgba(10, 37, 64, 0.05) 0%, transparent 20%);
    z-index: -1;
    animation: gradientShift 20s ease infinite;
}

@keyframes gradientShift {
    0% {
        background: radial-gradient(circle at 10% 20%, rgba(212, 175, 55, 0.05) 0%, transparent 20%),
                    radial-gradient(circle at 90% 80%, rgba(10, 37, 64, 0.05) 0%, transparent 20%);
    }
    50% {
        background: radial-gradient(circle at 80% 10%, rgba(212, 175, 55, 0.05) 0%, transparent 20%),
                    radial-gradient(circle at 20% 90%, rgba(10, 37, 64, 0.05) 0%, transparent 20%);
    }
    100% {
        background: radial-gradient(circle at 10% 20%, rgba(212, 175, 55, 0.05) 0%, transparent 20%),
                    radial-gradient(circle at 90% 80%, rgba(10, 37, 64, 0.05) 0%, transparent 20%);
    }
}

.hero .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.hero-content {
    flex: 1;
    padding-right: 30px;
}

.welcome-text {
    font-size: 1.2rem;
    color: var(--accent-color);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
    animation: fadeInDown 1s ease-out;
    font-style: italic;
}

.main-heading {
    font-family: 'Montserrat', sans-serif;
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 10px;
    color: var(--dark-color);
    animation: fadeInUp 1s ease-out 0.3s both;
    text-shadow: 
        0 0 1px var(--primary-color),
        0 0 3px var(--primary-color),
        0 0 4px var(--accent-color);

}

.sub-heading {
    font-size: 1.8rem;
    color: var(--gray-color);
    margin-bottom: 20px;
    font-weight: 600;
    animation: fadeInUp 1s ease-out 0.5s both;
}

.tagline {
    font-size: 1.2rem;
    color: var(--gray-color);
    margin-bottom: 20px;
    font-style: italic;
    animation: fadeInUp 1s ease-out 0.7s both;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--gray-color);
    margin-bottom: 30px;
    max-width: 600px;
    animation: fadeInUp 1s ease-out 0.9s both;
}

.neon-glow {
    position: relative;
    animation: neon-glow 4s infinite alternate;
}

@keyframes neon-glow {
    0% {
        text-shadow: 
            0 0 2px var(--primary-color),
            0 0 4px var(--primary-color);
    }
    100% {
        text-shadow: 
            0 0 3px var(--primary-color),
            0 0 6px var(--primary-color),
            0 0 8px var(--accent-color);
    }
}

.hero-btns {
    display: flex;
    gap: 20px;
}

.hero-image {
    flex: 1;
    text-align: center;
}

.hero-image img {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 20px;
    box-shadow: var(--shadow-hover);
    animation: float 8s ease-in-out infinite;
    object-fit: cover;
    margin: 0 auto;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0px);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* About Section */
.about {
    padding: 100px 0;
    background-color: var(--light-color);
}

.about-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.about-text {
    flex: 1;
}

.about-text p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    color: var(--gray-color);
}

.service-buttons {
    margin-top: 30px;
}

.service-buttons h3 {
    margin-bottom: 15px;
    font-weight: 600;
    color: var(--dark-color);
}

.service-buttons p {
    margin-bottom: 20px;
    color: var(--gray-color);
}

.buttons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.service-btn {
    display: inline-block;
    padding: 12px 20px;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 500;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid var(--primary-color);
}

.service-btn:hover {
    background: transparent;
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}



.about-image {
    flex: 1;
    text-align: center;
}

.about-image img {
    max-width: 100%;
    border-radius: 20px;
    box-shadow: var(--shadow-hover);
}

/* Services Section */
.services {
    padding: 100px 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s forwards;
}

.service-card:nth-child(1) {
    animation-delay: 0.1s;
}

.service-card:nth-child(2) {
    animation-delay: 0.2s;
}

.service-card:nth-child(3) {
    animation-delay: 0.3s;
}

.service-card:nth-child(4) {
    animation-delay: 0.4s;
}

.service-card:nth-child(5) {
    animation-delay: 0.5s;
}

.service-card:nth-child(6) {
    animation-delay: 0.6s;
}

.service-card:nth-child(7) {
    animation-delay: 0.7s;
}

.service-card:nth-child(8) {
    animation-delay: 0.8s;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.icon {
    width: 80px;
    height: 80px;
    background: rgba(10, 37, 64, 0.1); /* Light navy blue background */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    color: var(--primary-color); /* Navy blue icon */
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.service-card p {
    color: var(--gray-color);
    font-size: 1rem;
}

.order-btn {
    display: inline-block;
    padding: 8px 15px;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 20px;
    font-weight: 500;
    font-size: 0.9rem;
    margin-top: 15px;
    transition: all 0.3s ease;
    border: 2px solid var(--primary-color);
}

.order-btn:hover {
    background: transparent;
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

/* Portfolio Section */
.portfolio {
    padding: 100px 0;
    background-color: var(--light-color);
}

.portfolio-filter {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 40px;
}

.filter-btn {
    padding: 10px 25px;
    background: white;
    border: 2px solid var(--light-gray);
    border-radius: 30px;
    cursor: pointer;
    font-weight: 500;
    transition: var(--transition);
}

.filter-btn.active,
.filter-btn:hover {
    background: var(--primary-color); /* Navy blue background */
    color: white;
    border-color: var(--primary-color); /* Navy blue border */
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.portfolio-item {
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow);
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s forwards;
}

.portfolio-item:nth-child(1) {
    animation-delay: 0.1s;
}

.portfolio-item:nth-child(2) {
    animation-delay: 0.2s;
}

.portfolio-item:nth-child(3) {
    animation-delay: 0.3s;
}

.portfolio-item:nth-child(4) {
    animation-delay: 0.4s;
}

.portfolio-item:nth-child(5) {
    animation-delay: 0.5s;
}

.portfolio-item:nth-child(6) {
    animation-delay: 0.6s;
}

.portfolio-img {
    position: relative;
    overflow: hidden;
}

.portfolio-img img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: var(--transition);
    display: block;
}

.portfolio-item:hover .portfolio-img img {
    transform: scale(1.05);
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 37, 64, 0.8); /* Navy blue overlay */
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.portfolio-item:hover .overlay {
    opacity: 1;
}

.portfolio-info {
    text-align: center;
    padding: 20px;
    transform: translateY(20px);
    transition: var(--transition);
    color: white;
}

.portfolio-item:hover .portfolio-info {
    transform: translateY(0);
}

.portfolio-info h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.portfolio-info p {
    font-size: 1rem;
}

/* Contact Section */
.contact {
    padding: 100px 0;
}

.contact-container {
    display: flex;
    gap: 50px;
}

.contact-info {
    flex: 1;
    text-align: left;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
    width: 100%;
}

.icon {
    width: 60px;
    height: 60px;
    background: rgba(10, 37, 64, 0.1); /* Light navy blue background */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary-color); /* Navy blue icon */
    margin-right: 20px;
    flex-shrink: 0;
}

.contact-item .details {
    flex: 1;
}

.contact-item .details h3 {
    font-size: 1.3rem;
    margin-bottom: 5px;
    text-align: left;
    width: 100%;
}

.contact-item .details p {
    font-size: 1.1rem;
    color: var(--gray-color);
    text-align: left;
    width: 100%;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 30px;
    justify-content: flex-start;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: var(--light-color);
    border-radius: 50%;
    color: var(--primary-color);
    font-size: 1.3rem;
    transition: var(--transition);
    text-decoration: none;
}

.social-links a:hover {
    background: var(--accent-color); /* Gold background on hover */
    color: white;
    transform: translateY(-5px);
    border-color: var(--accent-color); /* Gold border on hover */
}

.contact-buttons {
    display: flex;
    gap: 15px;
    margin-top: 30px;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.call-btn, .whatsapp-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 20px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: var(--transition);
    white-space: nowrap;
}

.call-btn i, .whatsapp-btn i {
    font-size: 1.2rem;
}

.call-btn {
    background: var(--primary-color);
    color: white;
    border: 2px solid var(--primary-color);
}

.call-btn:hover {
    background: transparent;
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.whatsapp-btn {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.whatsapp-btn:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.whatsapp-btn:hover i {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

.contact-form {
    flex: 1;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid var(--light-gray);
    border-radius: 10px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--primary-color); /* Navy blue border on focus */
    outline: none;
    box-shadow: 0 0 0 3px rgba(10, 37, 64, 0.2); /* Navy blue shadow */
}

/* Footer */
footer {
    background: var(--dark-color);
    color: white;
    padding: 70px 0 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
}

.footer-logo h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.footer-logo h2 span {
    color: var(--accent-color);
}

.footer-logo p {
    color: var(--light-gray);
}

.footer-links ul {
    display: flex;
    list-style: none;
}

.footer-links li {
    margin-left: 25px;
}

.footer-links a {
    color: var(--light-gray);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--accent-color);
}

.footer-contact-buttons {
    display: flex;
    justify-content: flex-start;
    gap: 15px;
    margin: 20px 0;
}

.footer-contact-buttons .call-btn,
.footer-contact-buttons .whatsapp-btn {
    padding: 8px 15px;
    font-size: 0.9rem;
}

.copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--light-gray);
    font-size: 0.9rem;
}

/* Responsive Design */
@media screen and (max-width: 992px) {
    .hero .container {
        flex-direction: column-reverse;
        text-align: center;
    }
    
    .contact-buttons {
        justify-content: center;
    }
    
    .footer-contact-buttons {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .hero-content {
        padding-right: 0;
        margin-top: 50px;
    }
    
    .hero-btns {
        justify-content: center;
    }
    
    .about-content {
        flex-direction: column;
    }
    
    .contact-container {
        flex-direction: column;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-links ul {
        margin-top: 30px;
        justify-content: center;
    }
    
    .footer-links li {
        margin: 0 15px;
    }
    
    .hero-image img {
        max-width: 350px;
        margin: 0 auto;
    }
}

@media screen and (max-width: 768px) {
    .nav-links {
        position: fixed;
        right: -100%;
        top: 70px;
        height: calc(100vh - 70px);
        width: 70%;
        background: var(--light-color); /* Light background */
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding-top: 50px;
        transition: var(--transition);
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    }
    
    .contact-buttons {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .call-btn, .whatsapp-btn {
        width: 100%;
        max-width: 250px;
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .nav-links li {
        margin: 20px 0;
    }
    
    .burger {
        display: block;
    }
    
    .burger.toggle .line1 {
        transform: rotate(-45deg) translate(-5px, 6px);
    }
    
    .burger.toggle .line2 {
        opacity: 0;
    }
    
    .burger.toggle .line3 {
        transform: rotate(45deg) translate(-5px, -6px);
    }
    
    .hero-content h1 {
        font-size: 2.8rem;
    }
    
    .hero-content h2 {
        font-size: 1.5rem;
    }
    
    .section-title h2 {
        font-size: 2rem;
    }
    
    .hero-image img {
        max-width: 300px;
    }
}

@media screen and (max-width: 576px) {
    .hero-btns {
        flex-direction: column;
        gap: 15px;
    }
    
    .btn {
        width: 100%;
    }
    
    .portfolio-filter {
        flex-direction: column;
        align-items: center;
    }
    
    .filter-btn {
        width: 80%;
    }
    
    .hero-image img {
        max-width: 250px;
    }
}

/* Floating Contact Buttons */
.floating-contact-buttons {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 1000;
}

.floating-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    text-decoration: none;
    font-size: 1.2rem;
    transition: var(--transition);
    box-shadow: var(--shadow-hover);
}

.floating-btn.call-btn {
    background: var(--primary-color);
    color: white;
    border: 2px solid var(--primary-color);
}

.floating-btn.whatsapp-btn {
    background: #25D366; /* WhatsApp green */
    color: white;
    border: 2px solid #25D366;
}

.floating-btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.floating-btn.call-btn:hover {
    background: transparent;
    color: var(--primary-color);
}

.floating-btn.whatsapp-btn:hover {
    background: transparent;
    color: #25D366;
}

/* Hide original contact buttons on mobile when floating buttons are visible */
@media screen and (max-width: 768px) {
    .contact-buttons,
    .footer-contact-buttons {
        display: none;
    }
}