
        /* Add this to your existing CSS file */

.form-message {
    margin: 15px 0;
    padding: 12px 15px;
    border-radius: 4px;
    font-size: 14px;
    transition: opacity 0.5s ease;
}

.form-message.success {
    background-color: #dff2bf;
    color: #4f8a10;
    border: 1px solid #b2df8a;
}

.form-message.error {
    background-color: #ffbaba;
    color: #d8000c;
    border: 1px solid #ffd2d2;
}

.form-message.info {
    background-color: #bde5f8;
    color: #00529b;
    border: 1px solid #a2d2ee;
}

/* Optional loading spinner */
.form-message.info::after {
    content: '...';
    display: inline-block;
    animation: loading-dots 1.5s infinite;
    margin-left: 3px;
}

@keyframes loading-dots {
    0%, 20% { content: '.'; }
    40% { content: '..'; }
    60%, 100% { content: '...'; }
}
        
        :root {
            --primary-color: #2563eb;
            --secondary-color: #1e40af;
            --accent-color: #3b82f6;
            --text-color: #333;
            --light-text: #f8fafc;
            --bg-light: #f8fafc;
            --bg-dark: #1e293b;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        body {
            color: var(--text-color);
            background-color: var(--bg-light);
            line-height: 1.6;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* Header Styles */
        header {
            background-color: var(--bg-dark);
            padding: 15px 0;
            position: sticky;
            top: 0;
            z-index: 100;

        }
        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            display: flex;
            align-items: center;
        }
        
        .logo img {
            height: 40px;
            margin-right: 10px;
            filter: brightness(1.2) contrast(1.2);
        }
        
        .logo h1 {
            color: var(--light-text);
            font-size: 24px;
            font-weight: 700;
        }
        
        .nav-links {
            display: flex;
            list-style: none;
        }
        
        .nav-links li {
            margin-left: 30px;
        }
        
        .nav-links a {
            color: var(--light-text);
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s;
        }
        
        .nav-links a:hover {
            color: var(--accent-color);
        }
        
        .mobile-menu {
            display: none;
            color: white;
            font-size: 24px;
            cursor: pointer;
        }
        
        /* Hero Section */
        .hero {
            background: linear-gradient(rgba(30, 41, 59, 0.8), rgba(30, 41, 59, 0.9)), url('/api/placeholder/1200/600') center/cover;
            height: 80vh;
            display: flex;
            align-items: center;
            text-align: center;
        }
        
        .hero-content {
            color: var(--light-text);
            max-width: 800px;
            margin: 0 auto;
        }
        
        .hero h2 {
            font-size: 3rem;
            margin-bottom: 20px;
        }
        
        .hero p {
            font-size: 1.2rem;
            margin-bottom: 30px;
        }
        
        .btn {
            display: inline-block;
            padding: 12px 30px;
            background-color: var(--primary-color);
            color: white;
            border: none;
            border-radius: 5px;
            font-size: 1rem;
            font-weight: 500;
            cursor: pointer;
            text-decoration: none;
            transition: background-color 0.3s;
        }
        
        .btn:hover {
            background-color: var(--secondary-color);
        }
        
        /* Services Section */
        .services {
            padding: 80px 0;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 60px;
        }
        
        .section-title h2 {
            font-size: 2.5rem;
            color: var(--primary-color);
            margin-bottom: 15px;
        }
        
        .section-title p {
            max-width: 600px;
            margin: 0 auto;
            color: #666;
        }
        
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .service-card {
            background-color: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s, box-shadow 0.3s;
        }
        
        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
        }
        
        .service-icon {
            height: 150px;
            background-color: var(--accent-color);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 3rem;
            color: white;
        }
        
        .service-content {
            padding: 25px;
        }
        
        .service-content h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
            color: var(--primary-color);
        }
        
        /* About Section */
        .about {
            padding: 80px 0;
            background-color: #f1f5f9;
        }
        
        .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            align-items: center;
        }
        
        .about-image {
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }
        
        .about-image img {
            width: 100%;
            height: auto;
            display: block;
        }
        
        .about-text h2 {
            font-size: 2rem;
            color: var(--primary-color);
            margin-bottom: 20px;
        }
        
        .about-text p {
            margin-bottom: 20px;
        }
        
        /* Latest Projects Section */
        .projects {
            padding: 80px 0;
        }
        
        .projects-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .project-card {
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
        
        .project-image {
            height: 200px;
            background-color: #ddd;
            position: relative;
            overflow: hidden;
        }
        
        .project-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }
        
        .project-card:hover .project-image img {
            transform: scale(1.1);
        }
        
        .project-content {
            padding: 20px;
        }
        
        .project-content h3 {
            font-size: 1.3rem;
            margin-bottom: 10px;
            color: var(--primary-color);
        }
        
        /* Testimonials Section */
        .testimonials {
            padding: 80px 0;
            background-color: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            text-align: center;
        }
        
        .testimonial-container {
            max-width: 800px;
            margin: 0 auto;
            position: relative;
        }
        
        .testimonial {
            padding: 30px;
            background-color: blue;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            margin: 20px 0;
            display: none;
        }
        
        .testimonial.active {
            display: block;
        }
        
        .testimonial-text {
            font-style: italic;
            margin-bottom: 20px;
            font-size: 1.1rem;
        }
        
        .testimonial-author {
            font-weight: 700;
            color: var(--primary-color);
        }
        
        .testimonial-nav {
            display: flex;
            justify-content: center;
            margin-top: 20px;
        }
        
        .testimonial-nav button {
            background-color: var(--primary-color);
            color: blue;
            border: none;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            cursor: pointer;
            margin: 0 5px;
            font-size: 1.2rem;
        }
        
        /* Contact Section */
        .contact {
            padding: 80px 0;
        }
        
        .contact-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
        }
        
        .contact-form {
            background-color: white;
            padding: 30px;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
        
        .form-group {
            margin-bottom: 20px;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 5px;
            font-weight: 500;
        }
        
        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 10px;
            border: 1px solid #ddd;
            border-radius: 4px;
            font-size: 1rem;
        }
        
        .form-group textarea {
            height: 150px;
        }
        
        .contact-info {
            color: var(--text-color);
        }
        
        .contact-info h3 {
            font-size: 1.5rem;
            margin-bottom: 20px;
            color: var(--primary-color);
        }
        
        .contact-item {
            display: flex;
            margin-bottom: 15px;
        }
        
        .contact-icon {
            min-width: 30px;
            color: var(--primary-color);
        }
        
        /* Footer */
        footer {
            background-color: var(--bg-dark);
            color: var(--light-text);
            padding: 50px 0 20px;
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
            margin-bottom: 30px;
        }
        
        .footer-column h3 {
            font-size: 1.2rem;
            margin-bottom: 20px;
            color: var(--accent-color);
        }
        
        .footer-links {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 10px;
        }
        
        .footer-links a {
            color: var(--light-text);
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .footer-links a:hover {
            color: var(--accent-color);
        }
        
        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 15px;
        }
        
        .social-links a {
            color: var(--light-text);
            font-size: 1.5rem;
            transition: color 0.3s;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.1);
        }
        
        .social-links a:hover {
            color: var(--accent-color);
            background-color: rgba(255, 255, 255, 0.2);
        }
        
        .footer-bottom {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        /* Responsive Styles */
        @media (max-width: 768px) {
            .nav-links {
                display: none;
                position: absolute;
                top: 70px;
                left: 0;
                width: 100%;
                background-color: var(--bg-dark);
                flex-direction: column;
                padding: 20px 0;
                text-align: center;
            }
            
            .nav-links.active {
                display: flex;
            }
            
            .nav-links li {
                margin: 10px 0;
            }
            
            .mobile-menu {
                display: block;
            }
            
            .hero h2 {
                font-size: 2rem;
            }
            
            .about-content,
            .contact-container {
                grid-template-columns: 1fr;
            }
            
            .about-image {
                order: 1;
            }
            
            .about-text {
                order: 2;
            }
        }
         /* Hero section base styling */
    .hero {
        height: 80vh;
        display: flex;
        align-items: center;
        text-align: center;
        position: relative;
        overflow: hidden;
    }
    
    /* Animated background with zoom effect */
    .animated-bg {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), 
                    url('healthcare.jpg') center/cover no-repeat;
        z-index: -2;
        animation: slowZoom 20s infinite alternate;
    }
    
    @keyframes slowZoom {
        0% {
            transform: scale(1);
        }
        100% {
            transform: scale(1.1);
        }
    }
    
    /* Floating particles overlay */
    .floating-particles {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: url('team.jpg');
        z-index: -1;
        animation: floatingParticles 60s linear infinite;
    }
    
    @keyframes floatingParticles {
        0% {
            background-position: 0 0;
        }
        100% {
            background-position: 1000px 500px;
        }
    }
    
    /* Content styling */
    .hero-content {
        position: relative;
        z-index: 1;
    }
    
    /* Animated title with text shadow effect */
    .animated-title {
        color: white;
        font-size: 3rem;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
        margin-bottom: 20px;
        opacity: 0;
        animation: fadeInUp 1.2s forwards 0.3s;
    }
    
    /* Fade-in paragraph text */
    .fade-in-text {
        color: white;
        font-size: 1.2rem;
        margin-bottom: 30px;
        text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
        opacity: 0;
        animation: fadeInUp 1.2s forwards 0.6s;
    }
    
    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(30px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    /* Button container with staggered appearance */
    .button-container {
        display: flex;
        justify-content: center;
        gap: 20px;
        margin-top: 30px;
        opacity: 0;
        animation: fadeIn 1s forwards 1s;
    }
    
    @keyframes fadeIn {
        from {
            opacity: 0;
        }
        to {
            opacity: 1;
        }
    }
    
    /* Basic button styling */
    .btn {
        display: inline-block;
        padding: 12px 30px;
        border-radius: 5px;
        font-size: 1rem;
        font-weight: 500;
        cursor: pointer;
        text-decoration: none;
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
        z-index: 1;
    }
    
    /* Primary button with pulse effect */
    .primary-btn {
        background-color: #2563eb;
        color: white;
        border: 2px solid #2563eb;
    }
    
    .primary-btn.pulse {
        animation: pulse 2s infinite;
    }
    
    @keyframes pulse {
        0% {
            box-shadow: 0 0 0 0 rgba(37, 99, 235, 0.7);
        }
        70% {
            box-shadow: 0 0 0 10px rgba(37, 99, 235, 0);
        }
        100% {
            box-shadow: 0 0 0 0 rgba(37, 99, 235, 0);
        }
    }
    
    .primary-btn:hover {
        background-color: #1d4ed8;
        transform: translateY(-3px);
        box-shadow: 0 6px 15px rgba(37, 99, 235, 0.3);
        animation: none;
    }
    
    /* Secondary button with floating effect */
    .secondary-btn {
        background-color: transparent;
        color: white;
        border: 2px solid white    }
    
        .secondary-btn:hover {
            background-color: rgba(255, 255, 255, 0.1);
            transform: translateY(-3px);
            box-shadow: 0 6px 15px rgba(255, 255, 255, 0.15);
            animation: none;
        }
        
        /* Button hover effect - shine animation */
        .btn:after {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(
                90deg,
                transparent,
                rgba(255, 255, 255, 0.2),
                transparent
            );
            z-index: -1;
            transition: all 0.6s;
        }
        
        .btn:hover:after {
            left: 100%;
        }
        
        /* Media query for responsive design */
        @media (max-width: 768px) {
            .animated-title {
                font-size: 2rem;
            }
            
            .button-container {
                flex-direction: column;
                align-items: center;
            }
            
            .btn {
                width: 80%;
                margin-bottom: 10px;
            }
            .logo {
                display: flex;
                align-items: center;
                font-family: Arial, sans-serif;
            }
            
            .logo img {
                height: 60px; /* Adjust based on your needs */
                margin-right: 0; /* No gap between image and text */
            }
            
            .logo-text {
                display: flex;
                flex-direction: column;
            }
            
            .logo h1 {
                color: #FF6700; /* Orange color similar to the Eagle1 logo */
                font-weight: bold;
                font-size: 28px;
                margin: 0;
                text-transform: uppercase;
                letter-spacing: 1px;
            }
            
            .tagline {
                background-color: #000;
                color: #fff;
                font-size: 12px;
                padding: 3px 10px;
                margin: 0;
                text-transform: uppercase;
                letter-spacing: 0.5px;
            }
        }
    
        /* Styling for Read More links */
        .read-more-link {
            display: inline-block;
            margin-top: 10px;
            color: #0066cc;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        
        .read-more-link:hover {
            color: #004080;
            text-decoration: underline;
        }
        
        /* Service Detail Sections */
        .service-detail-section {
            padding: 60px 0;
            display: none; /* Hidden by default */
        }
        
        .service-detail-section:target {
            display: block; /* Show when targeted */
        }
        
        .detail-content {
            background-color: #f9f9f9;
            padding: 30px;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        
        .detail-content h3 {
            margin-top: 20px;
            margin-bottom: 15px;
        }
        
        .detail-content ul {
            margin-bottom: 20px;
            padding-left: 20px;
        }
        
        .detail-content li {
            margin-bottom: 8px;
        }
        
        .back-to-services {
            display: inline-block;
            margin-top: 20px;
            padding: 8px 16px;
            background-color: #0066cc;
            color: white;
            text-decoration: none;
            border-radius: 4px;
            transition: all 0.3s ease;
        }
        
        .back-to-services:hover {
            background-color: #004080;
        }
 /* Back to top button */
        #backToTop {
            display: none;
            position: fixed;
            bottom: 20px;
            right: 20px;
            z-index: 99;
            background-color: #0066cc;
            color: white;
            border: none;
            border-radius: 50%;
            width: 50px;
            height: 50px;
            cursor: pointer;
            box-shadow: 0 2px 5px rgba(0,0,0,0.3);
            transition: background-color 0.3s;
        }
        
        #backToTop:hover {
            background-color: #0055aa;
        }
        
        /* Improved mobile menu */
        @media screen and (max-width: 768px) {
            .nav-links {
                display: none;
                position: absolute;
                top: 80px;
                left: 0;
                width: 100%;
                background-color: #fff;
                box-shadow: 0 5px 15px rgba(0,0,0,0.1);
                z-index: 100;
            }
            
            .nav-links.active {
                display: flex;
                flex-direction: column;
                align-items: center;
                padding: 20px 0;
            }
            
            .nav-links li {
                margin: 10px 0;
            }
            
            .mobile-menu {
                display: block;
                cursor: pointer;
                font-size: 24px;
                background: none;
                border: none;
                color: #333;
            }
        }
        
        /* Service details styling */
        .service-detail-section {
            display: none;
            padding: 60px 0;
            background-color: #f9f9f9;
        }
        
        .service-detail-section h2 {
            color: #0066cc;
            margin-bottom: 30px;
        }
        
        .detail-content {
            background-color: #fff;
            padding: 30px;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        
        .back-to-services {
            display: inline-block;
            margin-top: 20px;
            padding: 10px 20px;
            background-color: #0066cc;
            color: #fff;
            text-decoration: none;
            border-radius: 4px;
            transition: background-color 0.3s;
        }
        
        .back-to-services:hover {
            background-color: #0055aa;
        }
        
        /* Form validation styling */
        .form-group {
            margin-bottom: 15px;
            position: relative;
        }
        
        .error-message {
            color: #ff3333;
            font-size: 14px;
            margin-top: 5px;
        }
        
        /* Accessibility focus styles */
        a:focus, button:focus, input:focus {
            outline: 2px solid #0066cc;
            outline-offset: 2px;
        }