 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            overflow-x: hidden;
            background: #0a0a0a;
            color: #fff;
        }

        /* Animated Background */
        .stars {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 0;
        }

        .star {
            position: absolute;
            width: 2px;
            height: 2px;
            background: white;
            border-radius: 50%;
            animation: twinkle 3s infinite;
        }

        @keyframes twinkle {
            0%, 100% { opacity: 0.3; }
            50% { opacity: 1; }
        }

        /* Scroll Animation Classes */
        .fade-in {
            opacity: 0;
            transform: translateY(50px);
            transition: opacity 0.8s ease-out, transform 0.8s ease-out;
        }

        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .slide-in-left {
            opacity: 0;
            transform: translateX(-100px);
            transition: opacity 0.8s ease-out, transform 0.8s ease-out;
        }

        .slide-in-left.visible {
            opacity: 1;
            transform: translateX(0);
        }

        .slide-in-right {
            opacity: 0;
            transform: translateX(100px);
            transition: opacity 0.8s ease-out, transform 0.8s ease-out;
        }

        .slide-in-right.visible {
            opacity: 1;
            transform: translateX(0);
        }

        .scale-in {
            opacity: 0;
            transform: scale(0.8);
            transition: opacity 0.8s ease-out, transform 0.8s ease-out;
        }

        .scale-in.visible {
            opacity: 1;
            transform: scale(1);
        }

        /* Navigation */
        nav {
            position: fixed;
            top: 0;
            width: 100%;
            padding: 20px 50px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 1000;
            background: rgba(10, 10, 10, 0.8);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .logo-container {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .logo {
            width: 50px;
            height: 50px;
            animation: float 3s ease-in-out infinite;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-10px); }
        }

        .company-name {
            font-size: 24px;
            font-weight: bold;
            background: linear-gradient(135deg, #8B5CF6, #FF6B35);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        nav ul {
            display: flex;
            gap: 30px;
            list-style: none;
        }

        nav a {
            color: #fff;
            text-decoration: none;
            transition: color 0.3s;
            font-weight: 500;
        }

        nav a:hover {
            color: #FF6B35;
        }

        /* Hero Section */
        .hero {
            position: relative;
            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding: 0 20px;
        }

        .hero-content {
            position: relative;
            z-index: 1;
            max-width: 900px;
        }

        .hero h1 {
            font-size: 72px;
            margin-bottom: 20px;
            background: linear-gradient(135deg, #8B5CF6, #FF6B35);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            animation: fadeInUp 1s ease-out;
        }

        .hero p {
            font-size: 24px;
            margin-bottom: 40px;
            color: #ccc;
            animation: fadeInUp 1s ease-out 0.2s both;
        }

        .cta-button {
            display: inline-block;
            padding: 18px 45px;
            background: linear-gradient(135deg, #8B5CF6, #FF6B35);
            color: white;
            text-decoration: none;
            border-radius: 50px;
            font-weight: bold;
            font-size: 18px;
            transition: transform 0.3s, box-shadow 0.3s;
            animation: fadeInUp 1s ease-out 0.4s both;
        }

        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(139, 92, 246, 0.5);
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Stats Section */
        .stats {
            position: relative;
            padding: 80px 50px;
            z-index: 1;
            background: rgba(139, 92, 246, 0.05);
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 40px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .stat-item {
            text-align: center;
        }

        .stat-number {
            font-size: 48px;
            font-weight: bold;
            background: linear-gradient(135deg, #8B5CF6, #FF6B35);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 10px;
        }

        .stat-label {
            color: #aaa;
            font-size: 18px;
        }

        /* Services Section */
        .services {
            position: relative;
            padding: 100px 50px;
            z-index: 1;
        }

        .section-title {
            text-align: center;
            font-size: 48px;
            margin-bottom: 60px;
            background: linear-gradient(135deg, #8B5CF6, #FF6B35);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            max-width: 1400px;
            margin: 0 auto;
        }

        .service-card {
            background: rgba(255, 255, 255, 0.03);
            padding: 40px;
            border-radius: 20px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            transition: transform 0.3s, box-shadow 0.3s, background 0.3s;
            cursor: pointer;
        }

        .service-card:hover {
            transform: translateY(-10px);
            background: rgba(139, 92, 246, 0.1);
            box-shadow: 0 20px 40px rgba(139, 92, 246, 0.3);
        }

        .service-icon {
            font-size: 48px;
            margin-bottom: 20px;
        }

        .service-card h3 {
            font-size: 24px;
            margin-bottom: 15px;
            color: #FF6B35;
        }

        .service-card p {
            color: #aaa;
            line-height: 1.6;
        }

        /* Technologies Section */
        .technologies {
            position: relative;
            padding: 100px 50px;
            z-index: 1;
            background: rgba(139, 92, 246, 0.05);
        }

        .tech-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            gap: 30px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .tech-item {
            background: rgba(255, 255, 255, 0.03);
            padding: 30px;
            border-radius: 15px;
            text-align: center;
            border: 1px solid rgba(255, 255, 255, 0.1);
            transition: transform 0.3s, background 0.3s;
        }

        .tech-item:hover {
            transform: translateY(-5px);
            background: rgba(255, 107, 53, 0.1);
        }

        .tech-icon {
            font-size: 40px;
            margin-bottom: 15px;
        }

        .tech-name {
            color: #ccc;
            font-weight: 500;
        }

        /* Why Choose Us Section */
        .why-us {
            position: relative;
            padding: 100px 50px;
            z-index: 1;
        }

        .why-us-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 40px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .why-item {
            text-align: center;
            padding: 30px;
        }

        .why-icon {
            font-size: 60px;
            margin-bottom: 20px;
            display: inline-block;
            animation: bounce 2s infinite;
        }

        @keyframes bounce {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
        }

        .why-item h3 {
            color: #8B5CF6;
            margin-bottom: 15px;
            font-size: 22px;
        }

        .why-item p {
            color: #aaa;
            line-height: 1.6;
        }

        /* Portfolio/Projects Section */
        .portfolio {
            position: relative;
            padding: 100px 50px;
            z-index: 1;
            background: rgba(139, 92, 246, 0.05);
        }

        .portfolio-grid {
            display: flex;
            overflow-x: auto;
            gap: 40px;
            max-width: 100%;
            padding: 20px;
            scroll-behavior: smooth;
            scrollbar-width: thin;
            scrollbar-color: #8B5CF6 rgba(255, 255, 255, 0.1);
        }

        .portfolio-grid::-webkit-scrollbar {
            height: 8px;
        }

        .portfolio-grid::-webkit-scrollbar-track {
            background: rgba(255, 255, 255, 0.1);
            border-radius: 10px;
        }

        .portfolio-grid::-webkit-scrollbar-thumb {
            background: linear-gradient(135deg, #8B5CF6, #FF6B35);
            border-radius: 10px;
        }

        .portfolio-item {
            min-width: 350px;
            flex-shrink: 0;
            background: rgba(255, 255, 255, 0.03);
            border-radius: 20px;
            overflow: hidden;
            border: 1px solid rgba(255, 255, 255, 0.1);
            transition: transform 0.3s, box-shadow 0.3s;
            animation: slideInFromRight 0.6s ease-out forwards;
        }

        @keyframes slideInFromRight {
            from {
                opacity: 0;
                transform: translateX(100px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .portfolio-item:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(139, 92, 246, 0.4);
        }

        .portfolio-image {
            width: 100%;
            height: 250px;
            background: linear-gradient(135deg, #8B5CF6, #FF6B35);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 80px;
        }

        .portfolio-content {
            padding: 30px;
        }

        .portfolio-content h3 {
            color: #FF6B35;
            margin-bottom: 15px;
            font-size: 22px;
        }

        .portfolio-content p {
            color: #aaa;
            line-height: 1.6;
            margin-bottom: 15px;
        }

        .portfolio-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }

        .tag {
            background: rgba(139, 92, 246, 0.2);
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 12px;
            color: #8B5CF6;
        }

        /* Process Timeline */
        .process {
            position: relative;
            padding: 100px 50px;
            z-index: 1;
        }

        .timeline {
            max-width: 1000px;
            margin: 0 auto;
            position: relative;
        }

        .timeline::before {
            content: '';
            position: absolute;
            left: 50%;
            top: 0;
            bottom: 0;
            width: 2px;
            background: linear-gradient(180deg, #8B5CF6, #FF6B35);
        }

        .timeline-item {
            position: relative;
            margin-bottom: 50px;
            width: 45%;
        }

        .timeline-item:nth-child(odd) {
            margin-left: 0;
        }

        .timeline-item:nth-child(even) {
            margin-left: 55%;
        }

        .timeline-content {
            background: rgba(255, 255, 255, 0.05);
            padding: 30px;
            border-radius: 15px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            position: relative;
        }

        .timeline-item::before {
            content: '';
            position: absolute;
            width: 20px;
            height: 20px;
            background: #FF6B35;
            border-radius: 50%;
            top: 20px;
        }

        .timeline-item:nth-child(odd)::before {
            right: -60px;
        }

        .timeline-item:nth-child(even)::before {
            left: -60px;
        }

        .timeline-content h3 {
            color: #8B5CF6;
            margin-bottom: 10px;
            font-size: 22px;
        }

        /* Testimonials Section */
        .testimonials {
            position: relative;
            padding: 100px 50px;
            z-index: 1;
            background: rgba(139, 92, 246, 0.05);
        }

        .testimonial-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .testimonial-card {
            background: rgba(255, 255, 255, 0.03);
            padding: 40px;
            border-radius: 20px;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .testimonial-text {
            color: #ccc;
            font-style: italic;
            margin-bottom: 20px;
            line-height: 1.8;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .author-avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: linear-gradient(135deg, #8B5CF6, #FF6B35);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
        }

        .author-info h4 {
            color: #FF6B35;
            margin-bottom: 5px;
        }

        .author-info p {
            color: #888;
            font-size: 14px;
        }

        /* Contact Section */
        .contact {
            position: relative;
            padding: 100px 50px;
            z-index: 1;
        }

        .contact-container {
            max-width: 800px;
            margin: 0 auto;
            background: rgba(255, 255, 255, 0.05);
            padding: 60px;
            border-radius: 20px;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .contact-info {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }

        .contact-item {
            display: flex;
            align-items: center;
            gap: 15px;
            padding: 20px;
            background: rgba(139, 92, 246, 0.1);
            border-radius: 10px;
            transition: transform 0.3s;
        }

     /* Default – mobile (right shift) */
.contact-item:hover {
    transform: translateX(10px);
}

/* Desktop – override for each item */
@media (min-width: 769px) {
    .call-item:hover {
        transform: translateX(-12px);   /* Moves LEFT */
    }
    .email-item:hover {
        transform: translateX(12px);    /* Moves RIGHT */
    }
}

        .contact-icon {
            font-size: 32px;
        }

        .contact-item a {
            color: #fff;
            text-decoration: none;
        }

        /* WhatsApp Floating Button */
        .whatsapp-float {
            position: fixed;
            width: 60px;
            height: 60px;
            bottom: 30px;
            right: 30px;
            background: #25D366;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 5px 20px rgba(37, 211, 102, 0.5);
            z-index: 1000;
            cursor: pointer;
            transition: transform 0.3s;
            animation: pulse 2s infinite;
        }

        .whatsapp-float:hover {
            transform: scale(1.1);
        }

        @keyframes pulse {
            0%, 100% { box-shadow: 0 5px 20px rgba(37, 211, 102, 0.5); }
            50% { box-shadow: 0 5px 30px rgba(37, 211, 102, 0.8); }
        }

        .whatsapp-float svg {
            width: 35px;
            height: 35px;
            fill: white;
        }

        /* Footer */
        footer {
            position: relative;
            text-align: center;
            padding: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: #888;
            z-index: 1;
        }

        /* Mobile Responsive */
        @media (max-width: 768px) {
            nav {
                padding: 15px 20px;
            }

            nav ul {
                display: none;
            }

            .hero h1 {
                font-size: 42px;
            }

            .hero p {
                font-size: 18px;
            }

            .services, .process, .contact, .stats, .technologies, .why-us, .portfolio, .testimonials {
                padding: 60px 20px;
            }

            .timeline::before {
                left: 20px;
            }

            .timeline-item {
                width: 100%;
                margin-left: 40px !important;
            }

            .timeline-item::before {
                left: -30px !important;
            }

            .contact-container {
                padding: 30px 20px;
            }
        }
        
        
        
        /* ====================== PORTFOLIO CAROUSEL ====================== */
.portfolio {
    position: relative;
    overflow: hidden;
    padding: 120px 50px 80px;
    background: linear-gradient(135deg, rgba(10,10,10,0.95), rgba(20,5,40,0.9));
}
/* ===== FIX 1: Portfolio Carousel – Mobile ===== */
.portfolio-carousel {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 20px;                /* reduced from 40px */
    padding: 30px 20px;       /* added horizontal padding */
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
}
.portfolio-carousel::-webkit-scrollbar { 
    display: none; 
}

.card-wrapper {
    min-width: 300px;         /* reduced from 360px */
    flex: 0 0 300px;          /* ensures exact width on mobile */
    scroll-snap-align: center;
}


.card {
    position: relative;
    width: 100%;
    height: 420px;
    transform-style: preserve-3d;
    transition: transform 0.7s cubic-bezier(0.23, 1, 0.32, 1);
    cursor: pointer;
}
.card-wrapper:hover .card {
    transform: rotateY(180deg);
}
.card-front, .card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 24px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    background: rgba(255,255,255,0.06);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.12);
}
.card-front {
    z-index: 2;
}
.card-back {
    transform: rotateY(180deg);
    background: rgba(139,92,246,0.15);
    border: 1px solid rgba(139,92,246,0.4);
}
.card-image {
    font-size: 86px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 20px rgba(139,92,246,0.6));
}
.card h3 {
    font-size: 24px;
    background: linear-gradient(135deg, #8B5CF6, #FF6B35);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 12px;
}
.card p {
    color: #ccc;
    font-size: 16px;
    line-height: 1.5;
}
.tech-stack {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-top: 15px;
}
.tech-stack .tag {
    background: rgba(255,107,53,0.2);
    color: #FF6B35;
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    border: 1px solid rgba(255,107,53,0.3);
    transition: all 0.3s;
}
.tech-stack .tag:hover {
    background: #FF6B35;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255,107,53,0.4);
}

/* Dots */
.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 30px;
}
.carousel-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    transition: all 0.4s;
    cursor: pointer;
}
.carousel-dots span.active {
    background: #FF6B35;
    box-shadow: 0 0 15px rgba(255,107,53,0.8);
    transform: scale(1.3);
}

/* Parallax tilt on mouse move (desktop only) */
@media (min-width: 992px) {
    .card-wrapper {
        transition: transform 0.2s;
    }
    .card-wrapper:hover {
        transform: translateZ(30px);
    }
}


/* for blogs and updated section of reviews in header

/* ====================== REVIEWS SECTION ====================== */
.reviews {
    padding: 100px 50px;
    background: rgba(139, 92, 246, 0.03);
    position: relative;
    overflow: hidden;
}
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}
.review-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
}
.review-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(139, 92, 246, 0.2);
    border-color: #8B5CF6;
}
.stars {
    color: #FFD700;
    font-size: 20px;
    margin-bottom: 15px;
    letter-spacing: 3px;
}
.review-card p {
    color: #ddd;
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.7;
}
.reviewer {
    display: flex;
    align-items: center;
    gap: 12px;
}
.avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #8B5CF6, #FF6B35);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 18px;
}
.reviewer h4 {
    color: #FF6B35;
    margin: 0;
}
.reviewer span {
    color: #aaa;
    font-size: 14px;
}

/* ====================== BLOG SECTION – WITH IMAGES ====================== */

.blog-title {
    font-size: 36px;
    font-weight: 700;
    background: linear-gradient(135deg, #8B5CF6, #FF6B35);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 0 0 12px 0;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease forwards;
    text-align: center;
}
.blog-subtitle {
    text-align: center;
    color: #aaa;
    font-size: 18px;
    margin: 0 0 50px 0;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease 0.2s forwards;
}

/* Blog Grid */
/* BLOG SECTION – PROPER SPACING & RESPONSIVE LAYOUT */
.blog-grid {
    display: grid;
    gap: 40px 32px;                    /* adds proper vertical AND horizontal spacing */
    padding: 0 20px;
    max-width: 1400px;
    margin: 0 auto;
    
    /* Desktop & Tablet: Horizontal multi-column layout */
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
}

/* Mobile: Force vertical single column with good spacing */
@media (max-width: 768px) {
    .blog-grid {
        grid-template-columns: 1fr;     /* one blog per row */
        gap: 48px 0;                    /* big vertical gap, no horizontal gap needed */
        padding: 0 16px;
    }
    
    /* Extra breathing room on very small screens */
    .blog-card {
        margin-bottom: 0;               /* removes any accidental double spacing */
    }
}

/* Optional: Nice 2-column layout on tablets only (768px – 1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px 28px;
    }
}

/* Ensure blog section itself has proper padding on mobile */
.blog {
    padding: 100px 20px 120px !important;
}

@media (max-width: 768px) {
    .blog {
        padding: 80px 0 100px !important;
    }
}

/* Blog Card */
.blog-card {
    display: block;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
    text-decoration: none;
    color: inherit;
    backdrop-filter: blur(12px);
}
.blog-card:hover {
    transform: translateY(-12px);
    background: rgba(139, 92, 246, 0.08);
    border-color: #8B5CF6;
    box-shadow: 0 20px 40px rgba(139, 92, 246, 0.2);
}

/* Image */
.post-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}
.post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.blog-card:hover .post-image img {
    transform: scale(1.08);
}

/* Content */
.post-preview {
    padding: 24px;
}
.post-preview h3 {
    background: linear-gradient(135deg, #8B5CF6, #FF6B35);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 0 0 12px;
    font-size: 20px;
    font-weight: 600;
}
.post-preview p {
    color: #ccc;
    font-size: 15px;
    line-height: 1.6;
    margin: 0 0 16px;
}
.read-more {
    color: #FF6B35;
    font-weight: 600;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.read-more::after {
    content: '→';
    font-weight: bold;
    transition: transform 0.3s ease;
}
.blog-card:hover .read-more::after {
    transform: translateX(4px);
}


/* LinkedIn CTA (same as before) */
/* ====================== LINKEDIN CTA – VISIBLE & PREMIUM ====================== */
.linkedin-cta {
    text-align: center;
    margin-top: 40px;
}

.linkedin-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #0A66C2;                    /* LinkedIn Blue */
    color: white !important;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    box-shadow: 
        0 6px 20px rgba(10, 102, 194, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.15) inset;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(10, 102, 194, 0.5);
    transition: all 0.35s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    overflow: hidden;
    z-index: 1;
}
.linkedin-btn svg {
    fill: white;
    transition: transform 0.3s ease;
}
.linkedin-btn::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(255, 255, 255, 0.2);
    opacity: 0;
    transition: opacity 0.35s;
    z-index: -1;
    border-radius: 50px;
}
.linkedin-btn:hover {
    background: #08529b;
    transform: translateY(-4px);
    box-shadow: 
        0 12px 30px rgba(10, 102, 194, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.25) inset;
    border-color: rgba(10, 102, 194, 0.8);
}
.linkedin-btn:hover::before {
    opacity: 1;
}
.linkedin-btn:hover svg {
    transform: scale(1.1);
}
.linkedin-btn:active {
    transform: translateY(-1px);
}


/* ====================== PROFESSIONAL FOOTER – TEXT-FIRST ====================== */

/* ====================== FOOTER – BALANCED & PROFESSIONAL ====================== */
/* ====================== FOOTER – TEXT LOGO + CENTERED ICONS ====================== */
footer {
    background: #111;
    color: #ccc;
    padding: 80px 20px 0;
    text-align: center;
}
.footer-container {
    display: flex;
    justify-content: center;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto 40px;
    flex-wrap: wrap;
}
.footer-col {
    flex: 1;
    min-width: 250px;
    text-align: center;
}

/* "Code Astra Labs" – Pure White */
.footer-logo-text {
    font-size: 22px;
    font-weight: 700;
    color: #ffffff !important;
    margin: 0 0 16px;
}

/* All Headings Same */
.footer-col h3 {
    font-size: 18px !important;
    color: #ffffff;
    margin: 0 0 20px;
    font-weight: 600;
}

.footer-desc {
    color: #aaa;
    font-size: 15px;
    line-height: 1.7;
    margin: 0 0 12px;
}
.footer-tagline {
    color: #FF6B35;
    font-size: 14px;
    font-style: italic;
}
.footer-contact a {
    color: #8B5CF6;
    text-decoration: none;
    margin-bottom: 5px
}
.footer-contact a:hover {
    color: #FF6B35;
}
.address { color: #ddd; font-weight: 500; margin-bottom:5px  }

/* Social Icons Centered */
.social-links {
    display: flex;
    justify-content: center;
    gap: 14px;
    margin-top: 10px;
}
.social-circle {
    width: 44px; height: 44px;
    background: #222; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    transition: 0.3s; border: 1px solid #333;
}
.social-circle svg { width: 18px; height: 18px; fill: #ccc; }
.social-circle:hover { transform: translateY(-3px); }
.social-circle.fb:hover   { background: #1877F2; border-color: #1877F2; }
.social-circle.x:hover    { background: #000; border-color: #000; }
.social-circle.li:hover   { background: #0A66C2; border-color: #0A66C2; }
.social-circle.ig:hover   { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); border-color: transparent; }
.social-circle:hover svg { fill: white; }

/* Bottom */
.footer-bottom {
    max-width: 1200px; margin: 0 auto; padding: 20px 0;
    border-top: 1px solid #222; display: flex; justify-content: center;
    flex-wrap: wrap; gap: 16px; font-size: 14px; color: #888;
}
.footer-nav {
    display: flex; gap: 24px; justify-content: center; flex-wrap: wrap;
}



.footer-nav a { color: #aaa; text-decoration: none; font-weight: 500; }
.footer-nav a:hover { color: #FF6B35; }
.copyright strong { color: #FF6B35; }

/* Mobile – Still Centered */
@media (max-width: 992px) {
    .footer-container { flex-direction: column; align-items: center; }
    .footer-col { text-align: center; }
}

/* ====================== SCHEDULE BUTTON – MATCHES SITE ====================== */

/* ====================== SCHEDULE BUTTON – FIXED HOVER ====================== */
.schedule-btn {
    display: inline-block;
    margin-top: 22px;
    background: #FF6B35;                    /* Solid bright orange */
    color: white !important;
    padding: 13px 34px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    box-shadow: 
        0 6px 20px rgba(255, 107, 53, 0.35),
        0 0 0 1px rgba(255, 255, 255, 0.1) inset;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 107, 53, 0.5);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32,

1);   /* Smooth bounce */
    position: relative;
    overflow: hidden;
    z-index: 1;
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}
.schedule-btn::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(255, 255, 255, 0.15);   /* Subtle white overlay */
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
    border-radius: 50px;
}
.schedule-btn:hover {
    transform: translateY(-5px);            /* Stronger lift */
    box-shadow: 
        0 15px 35px rgba(255, 107, 53, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.2) inset;
    border-color: rgba(255, 107, 53, 0.8);
}
.schedule-btn:hover::before {
    opacity: 1;                             /* Light flash on hover */
}
.schedule-btn:active {
    transform: translateY(-2px);
    transition: transform 0.1s;
}




/* ====================== FOOTER – ORANGE LINKS + SPACING ====================== */
.phone,
.email {
    margin: 3px 0 !important; /* Adds vertical space between lines */
    font-size: 15px;
}

 .phone a {
    color: #FF6B35 !important; /* Orange color */
    text-decoration: none;
    font-weight: 500;
}
 .email a {
    color: #FF6B35 !important; /* Orange color */
    text-decoration: none;
    font-weight: 500;
}

.phone a:hover {
    color: #FF8B60 !important; /* Lighter orange on hover */
    text-decoration: underline;
}

.email a:hover {
    color: #FF8B60 !important; /* Lighter orange on hover */
    text-decoration: underline;
}