/* =============================================
   ROOT & GENERAL STYLES
   ============================================= */

:root {
    --primary-color: #00d2ff;
    --primary-dark: #0099cc;
    --secondary-color: #667eea;
    --dark-color: #0b132b;
    --dark-light: #1a1f3a;
    --text-color: #2c3e50;
    --text-light: #7f8c8d;
    --bg-light: #f8f9fa;
    --success-color: #25d366;
    --warning-color: #f1c40f;
    --danger-color: #e74c3c;
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
}

/* =============================================
   PAGE LOADER
   ============================================= */

.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0b132b 0%, #1a1f3a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    animation: fadeOut 0.6s ease-out 1.5s forwards;
}

.loader-content {
    text-align: center;
}

.loader-spinner {
    width: 50px;
    height: 50px;
    border: 3px solid rgba(0, 210, 255, 0.2);
    border-top: 3px solid var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 2rem;
}

.page-loader p {
    color: var(--primary-color);
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 2px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes fadeOut {
    0% {
        opacity: 1;
        visibility: visible;
    }
    100% {
        opacity: 0;
        visibility: hidden;
    }
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-color);
    background-color: #fff;
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
    position: relative;
}

/* Text Styles */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

.text-gradient {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* =============================================
   NAVBAR
   ============================================= */

.modern-navbar {
    background: rgba(11, 19, 43, 0.95) !important;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    padding: 1rem 0 !important;
    transition: all 0.3s ease;
}

.modern-navbar.scrolled {
    padding: 0.5rem 0 !important;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.navbar-toggler {
    border: none;
    padding: 0.5rem 0.75rem !important;
}

.navbar-toggler:focus {
    box-shadow: none;
    outline: none;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%2300d2ff' stroke-linecap='round' stroke-linejoin='round' stroke-width='2.5' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.brand-icon {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-right: 0.5rem;
    display: inline-block;
    animation: spin 4s linear infinite;
}

.brand-text {
    font-family: 'Poppins', sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    color: white;
}

.brand-highlight {
    color: var(--primary-color);
}

.navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.8) !important;
    font-weight: 500;
    margin: 0 0.5rem;
    transition: all 0.3s ease;
    position: relative;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary-color) !important;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 50%;
    background: var(--primary-color);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 100%;
}

.btn-primary-custom {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white !important;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 210, 255, 0.3);
}

.btn-primary-custom:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 210, 255, 0.5);
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* =============================================
   HERO SECTION
   ============================================= */

.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(rgba(11, 19, 43, 0.7), rgba(11, 19, 43, 0.7)), 
                url('https://images.unsplash.com/photo-1504384308090-c894fdcc538d?q=80&w=1920&auto=format&fit=crop') center/cover no-repeat;
    overflow: hidden;
    padding: 100px 0 50px;
}


@keyframes twinkle {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 0.8; }
}

.hero-section::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 210, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    top: -100px;
    right: -150px;
    z-index: 0;
    animation: float 6s ease-in-out infinite;
}

.hero-section::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    bottom: -50px;
    left: -100px;
    z-index: 0;
    animation: float 8s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(30px); }
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    color: white;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
    max-width: 600px;
}

.hero-image {
    position: relative;
    height: 400px;
    display: none;
}

.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 1.5rem;
    color: white;
    text-align: center;
    animation: floating 3s ease-in-out infinite;
}

.floating-card i {
    font-size: 2rem;
    color: var(--primary-color);
    display: block;
    margin-bottom: 0.5rem;
}

.floating-card span {
    font-size: 0.9rem;
    display: block;
}

.card-1 {
    top: 0;
    right: 0;
    animation-delay: 0s;
}

.card-2 {
    top: 150px;
    left: 30px;
    animation-delay: 1s;
}

.card-3 {
    bottom: 20px;
    right: 50px;
    animation-delay: 2s;
}

@keyframes floating {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(20px); }
}

/* =============================================
   SECTION STYLES
   ============================================= */

.section-title {
    font-size: 2.8rem;
    color: var(--dark-color);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    bottom: -10px;
    left: 0;
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 500px;
}

/* =============================================
   SERVICES SECTION
   ============================================= */

.services-section {
    background: white;
}

.service-card {
    background: white;
    border-radius: 15px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.05);
    height: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 210, 255, 0.15);
    border-color: var(--primary-color);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
}

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.service-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.service-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.service-link:hover {
    transform: translateX(5px);
}

/* =============================================
   ABOUT SECTION
   ============================================= */

.about-section {
    background: white;
}

.about-image {
    position: relative;
    height: 400px;
}

.about-card {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 20px;
    padding: 2rem;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.about-card h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.about-card p {
    font-size: 1.1rem;
    line-height: 1.8;
}

.feature-box {
    text-align: center;
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.feature-box:hover {
    background: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.feature-box i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    display: block;
}

.feature-box h5 {
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.feature-box p {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* =============================================
   PORTFOLIO SECTION
   ============================================= */

.portfolio-section {
    background: white;
}

.portfolio-card {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.portfolio-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.portfolio-image {
    width: 100%;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: white;
    transition: all 0.3s ease;
}

.portfolio-card:hover .portfolio-image {
    transform: scale(1.05);
}

.portfolio-content {
    padding: 1.5rem;
}

.portfolio-content h4 {
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.portfolio-content p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.portfolio-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.portfolio-link:hover {
    transform: translateX(5px);
}

/* =============================================
   TESTIMONIALS SECTION
   ============================================= */

.testimonials-section {
    background: linear-gradient(135deg, #f8f9fa, white);
}

.testimonial-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    border-left: 4px solid var(--primary-color);
    border-left-width: 0;
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--primary-color), var(--secondary-color));
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 210, 255, 0.15);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(0, 210, 255, 0.02));
}

.testimonial-card:hover::before {
    transform: scaleY(1);
}

.stars {
    color: var(--warning-color);
    font-size: 1.2rem;
    display: flex;
    gap: 0.3rem;
    transition: all 0.3s ease;
}

.testimonial-card:hover .stars {
    transform: scale(1.05);
    text-shadow: 0 0 10px rgba(241, 196, 15, 0.5);
}

.testimonial-text {
    color: var(--text-color);
    font-size: 1rem;
    font-style: italic;
    margin: 1rem 0;
    transition: all 0.3s ease;
    line-height: 1.7;
}

.testimonial-card:hover .testimonial-text {
    color: var(--dark-color);
}

.testimonial-author {
    color: var(--text-light);
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.testimonial-card:hover .testimonial-author {
    color: var(--dark-color);
}

.testimonial-author strong {
    color: var(--dark-color);
    display: block;
    margin-bottom: 0.2rem;
    transition: all 0.3s ease;
}

.testimonial-card:hover .testimonial-author strong {
    color: var(--primary-color);
}

.testimonial-author span {
    display: block;
    font-size: 0.85rem;
}

/* =============================================
   TECHNOLOGY SECTION
   ============================================= */

.tech-section {
    background: linear-gradient(135deg, white 0%, #f8f9fa 100%);
}

.tech-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.05);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.tech-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.tech-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 210, 255, 0.15);
    border-color: var(--primary-color);
}

.tech-card:hover::before {
    transform: scaleX(1);
}

.tech-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, rgba(0, 210, 255, 0.1), rgba(102, 126, 234, 0.1));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.tech-card:hover .tech-icon {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    transform: scale(1.1) rotate(-5deg);
}

.tech-card h5 {
    color: var(--dark-color);
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.tech-card p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin: 0;
}

/* =============================================
   FAQ SECTION
   ============================================= */

.faq-section {
    background: white;
}

.accordion-custom .accordion-item {
    border: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    margin-bottom: 1rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

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

.accordion-custom .accordion-button {
    background: white;
    color: var(--dark-color);
    font-weight: 600;
    border: none;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.accordion-custom .accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, rgba(0, 210, 255, 0.1), rgba(102, 126, 234, 0.1));
    color: var(--primary-color);
    box-shadow: none;
}

.accordion-custom .accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%2300d2ff' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
}

.accordion-custom .accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%2300d2ff' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
}

.accordion-custom .accordion-body {
    padding: 1.5rem;
    color: var(--text-color);
    background: white;
    border: none;
}

/* =============================================
   CONTACT SECTION
   ============================================= */

.contact-section {
    background: white;
}

.contact-info-box {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border-radius: 20px;
    padding: 2.5rem;
}

.contact-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.contact-item h6 {
    font-weight: 600;
    margin-bottom: 0.3rem;
}

.contact-item a,
.contact-item p {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    margin: 0;
}

.contact-item a:hover {
    color: white;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
}

.contact-form {
    background: white;
}

.contact-form .form-control {
    border: 2px solid #e9ecef;
    border-radius: 10px;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.contact-form .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(0, 210, 255, 0.25);
}

.contact-form button {
    border-radius: 10px;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
}

/* =============================================
   FLOATING BUTTONS
   ============================================= */

.floating-buttons {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 999;
    max-width: calc(100% - 60px);
}

.float-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.float-btn:hover {
    transform: scale(1.15) translateY(-5px);
}

.btn-phone {
    background: #007bff;
}

.btn-phone:hover {
    background: #0056b3;
}

.btn-whatsapp {
    background: #25d366;
}

.btn-whatsapp:hover {
    background: #1ebd59;
}

/* =============================================
   FOOTER
   ============================================= */

.footer {
    background: var(--dark-color);
    color: rgba(255, 255, 255, 0.8);
}

.footer h5 {
    color: white;
    margin-bottom: 1rem;
}

.footer p {
    margin: 0;
    font-size: 0.95rem;
}

.footer-links {
    list-style: none;
    padding: 0;
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-color);
    padding-left: 0.5rem;
}

.footer .social-links {
    gap: 1rem;
}

.footer .social-link {
    background: rgba(255, 255, 255, 0.1);
    border: none;
}

.footer .social-link:hover {
    background: var(--primary-color);
    color: white;
}

/* =============================================
   RESPONSIVE
   ============================================= */

@media (max-width: 768px) {
    /* Disable animations on mobile for performance */
    * {
        animation-duration: 0.3s !important;
    }
    .brand-icon {
        animation: spin 4s linear infinite !important;
    }

    .hero-section {
        min-height: 70vh;
    }

    .hero-section {
        min-height: 70vh;
    }

    .hero-section::before,
    .hero-section::after {
        display: none;
    }

    .hero-title {
        font-size: 1.8rem;
        margin-bottom: 1rem;
        line-height: 1.3;
    }

    .hero-subtitle {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }

    .btn-primary-custom.btn-lg,
    .btn-outline-light.btn-lg {
        padding: 0.6rem 1.2rem;
        font-size: 0.85rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .section-subtitle {
        font-size: 0.9rem;
    }

    .service-card {
        padding: 1.2rem 0.8rem;
    }

    .tech-card {
        padding: 1.5rem;
    }

    .floating-buttons {
        bottom: 20px;
        right: 20px;
        gap: 10px;
    }

    .float-btn {
        width: 55px;
        height: 55px;
        font-size: 1.3rem;
    }

    .modern-navbar .navbar-collapse {
        align-items: flex-start;
        flex-direction: column;
        width: 100%;
        margin-top: 0.75rem;
    }

    .modern-navbar .navbar-nav {
        width: 100%;
        gap: 0;
    }

    .navbar-nav .nav-link {
        margin: 0.5rem 0;
        padding: 0.5rem 0 !important;
    }

    .modern-navbar .btn-primary-custom {
        margin-left: 0 !important;
        margin-top: 0.75rem;
        align-self: flex-start;
    }

    .btn-primary-custom {
        padding: 0.65rem 1.2rem;
        font-size: 0.9rem;
    }

    .contact-info-box {
        padding: 2rem 1.5rem;
        margin-bottom: 2rem;
    }

    .hero-image {
        display: none;
    }

    .tech-icon {
        width: 70px;
        height: 70px;
        font-size: 2rem;
    }

    .service-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }

    .page-loader p {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .hero-section {
        min-height: 65vh;
    }

    .hero-title {
        font-size: 1.6rem;
        margin-bottom: 0.8rem;
    }

    .hero-subtitle {
        font-size: 0.9rem;
        margin-bottom: 1.2rem;
    }

    .section-title {
        font-size: 1.4rem;
    }

    .section-subtitle {
        font-size: 0.95rem;
    }

    .service-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .tech-icon {
        width: 60px;
        height: 60px;
        font-size: 1.6rem;
    }

    .floating-buttons {
        bottom: 15px;
        right: 15px;
    }

    .float-btn {
        width: 50px;
        height: 50px;
        font-size: 1.1rem;
    }

    .navbar .container-fluid {
        padding-right: 1rem;
        padding-left: 1rem;
    }
}

/* =============================================
   ANIMATIONS
   ============================================= */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.animate-fade-in {
    animation: fadeInUp 0.6s ease-out;
}
