* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, #0a0a2a 0%, #1a0b2e 50%, #0f0c3a 100%);
    color: #fff;
    overflow-x: hidden;
}

a{
    text-decoration: none;
}

/* ========== STICKY NAVBAR ========== */
.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1.2rem 2rem;
    transition: all 0.3s ease;
    background: transparent;
}

.navbar.scrolled {
    background: rgba(15, 15, 45, 0.75);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(138, 43, 226, 0.3);
    padding: 0.8rem 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.btn-outline-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: transparent;
    border: 2px solid #8b5cf6;
    padding: 1rem 2rem;
    border-radius: 50px;
    color: white;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: 0.3s;
    text-decoration: none;
    font-family: 'Inter', sans-serif;
}

.btn-outline-link:hover {
    background: rgba(139, 92, 246, 0.2);
    border-color: #c084fc;
    transform: translateY(-3px);
    color: white;
}

/* Logo Styling - Professional Logotype */
.logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

#logo-icon {
    height: 2.7rem;
    background: linear-gradient(135deg, #c084fc, #60a5fa);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-text h1 {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 800;
    background: linear-gradient(135deg, #f0f0ff, #c084fc);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    letter-spacing: -0.3px;
    line-height: 1.2;
}

.logo-text .tagline-small {
    font-size: 0.65rem;
    color: #a78bfa;
    letter-spacing: 1px;
    font-weight: 500;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s;
    position: relative;
}

.nav-links a:hover {
    color: #c084fc;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0%;
    height: 2px;
    background: linear-gradient(90deg, #a855f7, #3b82f6);
    transition: 0.3s;
}

.nav-links a:hover::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    font-size: 1.8rem;
    cursor: pointer;
}

/* ========== HERO SECTION ========== */
.hero {
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 2rem;
}

/* Animated Background */
.animated-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    background: radial-gradient(circle at 20% 50%, rgba(139, 92, 246, 0.15), transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(59, 130, 246, 0.15), transparent 50%);
    animation: pulseGlow 6s ease-in-out infinite alternate;
}

@keyframes pulseGlow {
    0% {
        opacity: 0.5;
        transform: scale(1);
    }
    100% {
        opacity: 1;
        transform: scale(1.05);
    }
}

/* 3D Canvas Container */
#canvas-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-text {
    animation: fadeInUp 1s ease;
}

.hero-text .badge {
    display: inline-block;
    background: rgba(139, 92, 246, 0.2);
    backdrop-filter: blur(8px);
    padding: 0.5rem 1rem;
    border-radius: 40px;
    font-size: 0.85rem;
    border: 1px solid rgba(168, 85, 247, 0.5);
    margin-bottom: 1.5rem;
}

.hero-text h1 {
    font-size: 3.8rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.gradient-text {
    background: linear-gradient(135deg, #c084fc, #60a5fa);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.tagline {
    font-size: 1.3rem;
    color: #cbd5e1;
    margin-bottom: 2rem;
    font-style: italic;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-outline {
    background: transparent;
    border: 2px solid #8b5cf6;
    padding: 1rem 2rem;
    border-radius: 50px;
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
    font-size: 1rem;
}

.btn-outline:hover {
    background: rgba(139, 92, 246, 0.2);
    border-color: #c084fc;
    transform: translateY(-3px);
}

/* Glassmorphism Card */
.hero-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    backdrop-filter: blur(12px);
    background: rgba(255, 255, 255, 0.05);
    border-radius: 2rem;
    padding: 1.5rem;
    border: 1px solid rgba(139, 92, 246, 0.3);
    animation: fadeInUp 1s ease 0.2s backwards;
}

.stat-item {
    text-align: center;
    padding: 1rem;
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: #c084fc;
}

.stat-label {
    font-size: 0.85rem;
    color: #94a3b8;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ========== SERVICES SECTION ========== */
.services {
    padding: 6rem 2rem;
    position: relative;
    z-index: 5;
}

.section-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #c084fc, #60a5fa);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 1rem;
}

.section-header p {
    color: #94a3b8;
    font-size: 1.1rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border-radius: 1.5rem;
    padding: 2rem;
    border: 1px solid rgba(139, 92, 246, 0.2);
    transition: all 0.4s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(139, 92, 246, 0.1), transparent);
    transition: left 0.6s ease;
}

.service-card:hover::before {
    left: 100%;
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: rgba(139, 92, 246, 0.6);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.service-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    display: inline-block;
    background: linear-gradient(135deg, #c084fc, #60a5fa);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #fff;
}

.service-card p {
    color: #94a3b8;
    line-height: 1.5;
    font-size: 0.95rem;
}

.service-number {
    position: absolute;
    bottom: 1rem;
    right: 1.5rem;
    font-size: 3rem;
    font-weight: 800;
    color: rgba(139, 92, 246, 0.15);
    pointer-events: none;
}

/* ========== PRODUCTS SECTION ========== */
.products {
    padding: 6rem 2rem;
    position: relative;
    z-index: 5;
    background: linear-gradient(180deg, transparent 0%, rgba(139, 92, 246, 0.05) 100%);
}

.products-header {
    text-align: center;
    margin-bottom: 4rem;
}

.products-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #c084fc, #60a5fa);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 1rem;
}

.products-header p {
    color: #94a3b8;
    font-size: 1.1rem;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.product-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border-radius: 1.5rem;
    overflow: hidden;
    border: 1px solid rgba(139, 92, 246, 0.2);
    transition: all 0.4s ease;
}

.product-card:hover {
    transform: translateY(-8px);
    border-color: rgba(139, 92, 246, 0.6);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.product-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
    position: relative;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-info {
    padding: 1.5rem;
}

.product-info h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #fff;
}

.product-info p {
    color: #94a3b8;
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.product-tag {
    display: inline-block;
    background: rgba(139, 92, 246, 0.2);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.75rem;
    color: #c084fc;
    border: 1px solid rgba(139, 92, 246, 0.3);
}

.view-all-container {
    text-align: center;
    margin-top: 2rem;
}

.btn-view-all {
    background: linear-gradient(135deg, #8b5cf6, #3b82f6);
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 50px;
    color: white;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.btn-view-all:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.5);
}

/* Scroll indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    animation: bounce 2s infinite;
    cursor: pointer;
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(10px); }
}

.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid #c084fc;
    border-radius: 20px;
    position: relative;
}
.mouse::before {
    content: '';
    width: 4px;
    height: 8px;
    background: #c084fc;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 10px;
    border-radius: 2px;
    animation: scrollWheel 1.5s infinite;
}
@keyframes scrollWheel {
    0% { opacity: 1; top: 10px; }
    80% { opacity: 0; top: 25px; }
    100% { opacity: 0; top: 25px; }
}

/* Responsive */
@media (max-width: 992px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .hero-text h1 {
        font-size: 2.5rem;
    }
    .hero-buttons {
        justify-content: center;
    }
    .hero-stats {
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }
    .nav-links {
        display: none;
        width: 100%;
        flex-direction: column;
        text-align: center;
        gap: 1rem;
        padding: 1rem 0;
        margin-top: 1rem;
    }
    .nav-links.active {
        display: flex;
    }
    .navbar {
        padding: 1rem;
    }
    .navbar.scrolled {
        padding: 0.8rem 1rem;
    }
    .hero-text h1 {
        font-size: 2rem;
    }
    .tagline {
        font-size: 1rem;
    }
    .logo-text h1 {
        font-size: 1.2rem;
    }
    .logo-icon {
        font-size: 1.6rem;
    }
    .services, .products {
        padding: 4rem 1rem;
    }
    .section-container {
        padding: 0 1rem;
    }
    .section-header h2, .products-header h2 {
        font-size: 2rem;
    }
    .services-grid, .products-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .product-image {
        height: 200px;
    }
}


/* ========== CLIENTS SECTION ========== */
.clients {
    padding: 4rem 2rem;
    position: relative;
    z-index: 5;
    overflow: hidden;
}

.clients-header {
    text-align: center;
    margin-bottom: 3rem;
}

.clients-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #c084fc, #60a5fa);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 1rem;
}

.clients-header p {
    color: #94a3b8;
    font-size: 1.1rem;
}

/* Marquee Container with Glassmorphism */
.marquee-container {
    width: 90%;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
    padding: 2rem 0;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(12px);
    border-radius: 2rem;
    border: 1px solid rgba(139, 92, 246, 0.3);
}

.marquee-track {
    display: flex;
    gap: 3rem;
    width: max-content;
    animation: marquee 30s linear infinite;
}

.marquee-container:hover .marquee-track {
    animation-play-state: paused;
}

.client-logo {
    width: 220px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.client-logo img {
    width: 100%;
    height: auto;
    max-height: 90px;
    object-fit: contain;
    filter: brightness(0) invert(1) opacity(0.8);
    transition: all 0.3s ease;
}

.client-logo:hover img {
    filter: brightness(0) invert(1) opacity(1);
    transform: scale(1.05);
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Fade edges */
.marquee-container::before,
.marquee-container::after {
    content: '';
    position: absolute;
    top: 0;
    width: 80px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
    border-radius: 2rem;
}

.marquee-container::before {
    left: 0;
    background: linear-gradient(90deg, #0a0a2a, transparent);
}

.marquee-container::after {
    right: 0;
    background: linear-gradient(-90deg, #0a0a2a, transparent);
}

@media (max-width: 768px) {
    .clients {
        padding: 3rem 1rem;
    }
    .clients-header h2 {
        font-size: 2rem;
    }
    .marquee-container {
        width: 95%;
        padding: 1.5rem 0;
    }
    .client-logo {
        width: 160px;
    }
    .client-logo img {
        max-height: 65px;
    }
    .marquee-container::before,
    .marquee-container::after {
        width: 40px;
    }
    .marquee-track {
        gap: 2rem;
    }
}


/* ========== CONTACT SECTION ========== */
/* ========== CONTACT SECTION ========== */
.contact {
    padding: 6rem 2rem;
    position: relative;
    z-index: 5;
}

.contact-header {
    text-align: center;
    margin-bottom: 4rem;
}

.contact-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #c084fc, #60a5fa);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 1rem;
}

.contact-header p {
    color: #94a3b8;
    font-size: 1.1rem;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* Left Side - Contact Info */
.contact-info {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border-radius: 1.5rem;
    padding: 2rem;
    border: 1px solid rgba(139, 92, 246, 0.2);
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
}

.info-icon {
    width: 50px;
    height: 50px;
    background: rgba(139, 92, 246, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: #c084fc;
    flex-shrink: 0;
}

.info-details h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #fff;
}

.info-details p {
    color: #94a3b8;
    line-height: 1.6;
    margin-bottom: 0.25rem;
    word-break: break-word;
}

.info-details a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.3s;
    word-break: break-all;
}

.info-details a:hover {
    color: #c084fc;
}

/* Right Side - Google Maps */
.contact-form {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border-radius: 1.5rem;
    padding: 2rem;
    border: 1px solid rgba(139, 92, 246, 0.2);
}

.map-container {
    width: 100%;
    height: 100%;
    min-height: 400px;
    border-radius: 1rem;
    overflow: hidden;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    min-height: 400px;
    border: none;
}

/* Responsive Contact Section */
@media (max-width: 992px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-info, .contact-form {
        padding: 1.5rem;
    }
}

@media (max-width: 768px) {
    .contact {
        padding: 4rem 1rem;
    }
    
    .contact-header h2 {
        font-size: 2rem;
    }
    
    .contact-header p {
        font-size: 0.9rem;
    }
    
    .contact-info, .contact-form {
        padding: 1.2rem;
    }
    
    .info-item {
        gap: 0.8rem;
        margin-bottom: 1.5rem;
    }
    
    .info-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .info-details h3 {
        font-size: 1rem;
    }
    
    .info-details p, .info-details a {
        font-size: 0.85rem;
        word-break: break-word;
    }
    
    .map-container {
        min-height: 250px;
    }
    
    .map-container iframe {
        min-height: 250px;
    }
}

@media (max-width: 480px) {
    .contact {
        padding: 3rem 0.8rem;
    }
    
    .contact-info, .contact-form {
        padding: 1rem;
    }
    
    .info-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .info-details {
        text-align: center;
    }
    
    .map-container {
        min-height: 200px;
    }
    
    .map-container iframe {
        min-height: 200px;
    }
}


/* ========== FOOTER SECTION ========== */
.footer {
    background: linear-gradient(180deg, rgba(15, 15, 45, 0.8) 0%, #0a0a1a 100%);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(139, 92, 246, 0.3);
    padding: 4rem 2rem 1rem;
    position: relative;
    z-index: 5;
    margin-top: 2rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

/* Footer Brand Section */
.footer-brand h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 800;
    background: linear-gradient(135deg, #f0f0ff, #c084fc);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 1rem;
}

.footer-brand p {
    color: #94a3b8;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.footer-tagline {
    font-style: italic;
    color: #c084fc;
    font-size: 0.9rem;
}

/* Quick Links */
.footer-links h4,
.footer-social h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #fff;
    position: relative;
    display: inline-block;
}

.footer-links h4::after,
.footer-social h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, #c084fc, #3b82f6);
}

.footer-links ul {
    list-style: none;
}

.footer-links ul li {
    margin-bottom: 0.8rem;
}

.footer-links ul li a {
    color: #94a3b8;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-links ul li a i {
    font-size: 0.8rem;
    color: #c084fc;
}

.footer-links ul li a:hover {
    color: #c084fc;
    transform: translateX(5px);
}

/* Social Icons */
.social-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
}

.social-icon {
    width: 45px;
    height: 45px;
    background: rgba(139, 92, 246, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(139, 92, 246, 0.3);
}

.social-icon a {
    color: #c084fc;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-icon:hover {
    transform: translateY(-5px);
    background: linear-gradient(135deg, #8b5cf6, #3b82f6);
    border-color: transparent;
}

.social-icon:hover a {
    color: #fff;
}

.contact-info-footer {
    margin-top: 1.5rem;
}

.contact-info-footer p {
    color: #94a3b8;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.contact-info-footer p i {
    color: #c084fc;
    width: 20px;
}

.contact-info-footer a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.3s;
}

.contact-info-footer a:hover {
    color: #c084fc;
}

/* Footer Bottom */
.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(139, 92, 246, 0.2);
}

.footer-bottom p {
    color: #64748b;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.developer {
    margin-top: 0.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.developer span {
    color: #64748b;
    font-size: 0.85rem;
}

.developer-links {
    display: flex;
    gap: 1rem;
}

.developer-links a {
    color: #64748b;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.developer-links a:hover {
    color: #c084fc;
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 768px) {
    .footer {
        padding: 3rem 1rem 1rem;
    }
    .footer-container {
        gap: 2rem;
    }
    .social-icons {
        justify-content: flex-start;
    }
    .developer {
        flex-direction: column;
        gap: 0.5rem;
    }
}


/* ========== FLOATING CONTACT BAR ========== */
/* ========== FLOATING CONTACT BAR ========== */
.floating-contact {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 999;
    background: linear-gradient(135deg, #8b5cf6, #3b82f6);
    backdrop-filter: blur(10px);
    border-radius: 60px;
    padding: 12px 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.floating-content {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
}

.floating-content i {
    font-size: 1.3rem;
    color: white;
}

.floating-number {
    font-size: 1.1rem;
    font-weight: 700;
    color: white;
    letter-spacing: 1px;
}

.floating-call-btn {
    background: rgba(255, 255, 255, 0.2);
    padding: 6px 16px;
    border-radius: 40px;
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.floating-call-btn:hover {
    background: white;
    color: #8b5cf6;
    transform: scale(1.05);
}

/* Hide bar when near footer */
.floating-contact.hide {
    opacity: 0;
    visibility: hidden;
}

/* Desktop Bounce Animation */
@keyframes floatBounce {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(-8px);
    }
}

.floating-contact {
    animation: floatBounce 2s ease-in-out infinite;
}

/* ========== RESPONSIVE FLOATING BAR ========== */
/* Tablet */
@media (max-width: 768px) {
    .floating-contact {
        padding: 10px 18px;
        bottom: 15px;
        width: 350px;
        animation: none; /* Remove bounce on mobile for better UX */
    }
    
    .floating-number {
        font-size: 0.9rem;
    }
    
    .floating-call-btn {
        padding: 4px 12px;
        font-size: 0.8rem;
    }
    
    .floating-content {
        gap: 8px;
    }
}

/* Mobile - Hide "Call Now" text, show only icon + number */
@media (max-width: 550px) {
    .floating-contact {
        padding: 8px 16px;
        width: 250px;
        bottom: 12px;
        border-radius: 50px;
    }
    
    .floating-number {
        font-size: 0.85rem;
        font-weight: 600;
    }
    
    /* Hide the "Call Now" text on small screens */
    .floating-call-btn span {
        display: none;
    }
    
    /* Keep only the icon */
    .floating-call-btn {
        padding: 6px 10px;
        background: rgba(255, 255, 255, 0.25);
    }
    
    .floating-call-btn i {
        margin: 0;
        font-size: 1rem;
    }
    
    .floating-content {
        gap: 6px;
    }
}

/* Very Small Devices - Show only icon + call icon */
@media (max-width: 400px) {
    .floating-contact {
        padding: 6px 14px;
        width: 200px;
        border-radius: 40px;
    }
    
    /* Hide the left phone icon */
    .floating-content > i:first-child {
        display: none;
    }
    
    .floating-number {
        font-size: 0.85rem;
        font-weight: 600;
    }
    
    /* Call button stays inline */
    .floating-call-btn {
        padding: 4px 10px;
        display: inline-flex;
        align-items: center;
        gap: 4px;
    }
    
    .floating-call-btn span {
        display: none; /* Show "Call Now" text briefly or keep hidden? */
        font-size: 0.7rem;
    }
    
    .floating-call-btn i {
        font-size: 0.85rem;
        margin: 0;
    }
    
    .floating-content {
        gap: 8px;
        flex-direction: row;
        flex-wrap: nowrap;
    }
}
