
        /* CEO Section */
.ceo-section {
  padding: 80px 8%;
  background: #fff;
  display: flex;
  justify-content: center;
}
.ceo-container {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 40px;
  align-items: center;
  max-width: 1200px;
  margin: auto;
}

.ceo-photo img {
  width: 100%;
  max-width: 300px;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.ceo-details h2 {
  font-size: 2.8rem;
  margin-bottom: 8px;
  color: #333;
}

.ceo-title {
  font-size: 1.2rem;
  color: #764ba2;
  font-weight: 600;
  margin-bottom: 1rem;
}

.ceo-bio {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #555;
  margin-bottom: 1.8rem;
}

.ceo-info-list {
  list-style: none;
  margin-bottom: 1.8rem;
}

.ceo-info-list li {
  margin-bottom: 0.6rem;
  font-size: 1rem;
  color: #444;
}

.ceo-info-list a {
  color: #667eea;
  text-decoration: none;
  font-weight: 600;
}

.btn-primary {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 14px 28px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
}

        .logo-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Logo image */
.logo-wrapper img {
  height: 88px;              /* adjust if needed */
  width: auto;
  object-fit: contain;

  /* Makes logo readable on light backgrounds */
  background: transparent;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.35));
}

/* Dark section support (optional) */
.dark .logo-wrapper img {
  filter: drop-shadow(0 2px 8px rgba(255,255,255,0.25));
}
        .service-image {
    height: 180px;
    width: 100px;
    overflow: hidden;
    border-radius: 12px 12px 0 0;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.1);
}

.service-content {
    padding: 2rem;
}

.service-card {
    padding: 0;
    background: #fff;
}

        .logo-img {
    width: 102px;
    height: 102px;
    object-fit: contain;
}

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
            line-height: 1.6;
            color: #333;
        }

        /* Header Styles */
        header {
            background: #f8f9fa;
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 5px rgba(0,0,0,0.05);
        }

        .container {
            max-width: 1300px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 1.5rem;
            font-weight: 600;
        }

        .logo-icon {
            width: 40px;
            height: 40px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: bold;
        }

        .logo-text {
            color: #764ba2;
            font-weight: bold;
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 2rem;
            align-items: center;
        }

        .nav-links a {
            text-decoration: none;
            color: #666;
            font-weight: 500;
            transition: color 0.3s;
        }

        .nav-links a:hover {
            color: #764ba2;
        }

        .btn-primary {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            padding: 0.75rem 1.5rem;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 600;
            transition: transform 0.3s, box-shadow 0.3s;
            border: none;
            cursor: pointer;
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
        }

        .btn-secondary {
            background: transparent;
            color: #764ba2;
            padding: 0.75rem 1.5rem;
            border: 2px solid #764ba2;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }

        .btn-secondary:hover {
            background: #764ba2;
            color: white;
        }

        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            font-size: 1.5rem;
            cursor: pointer;
        }

        /* Hero Section */
        .hero {
            background: linear-gradient(135deg, #f5f7fa 0%, #e9ecf1 100%);
            padding: 6rem 0;
            text-align: center;
        }

        .hero-badge {
            display: inline-block;
            background: rgba(102, 126, 234, 0.1);
            color: #764ba2;
            padding: 0.5rem 1.5rem;
            border-radius: 20px;
            margin-bottom: 2rem;
            font-weight: 500;
        }

        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 1.5rem;
            line-height: 1.2;
        }

        .hero h1 .highlight {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero p {
            font-size: 1.25rem;
            color: #666;
            max-width: 800px;
            margin: 0 auto 2.5rem;
            line-height: 1.8;
        }

        .hero-buttons {
            display: flex;
            gap: 1rem;
            justify-content: center;
            flex-wrap: wrap;
        }

        .stats {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 3rem;
            margin-top: 4rem;
        }

        .stat-item {
            text-align: center;
        }

        .stat-number {
            font-size: 3rem;
            font-weight: 700;
            color: #333;
            margin-bottom: 0.5rem;
        }

        .stat-label {
            color: #666;
            font-size: 1.1rem;
        }

        /* Services Section */
        .services {
            padding: 6rem 0;
            background: white;
        }

        .section-header {
            text-align: center;
            margin-bottom: 3rem;
        }

        .section-label {
            color: #764ba2;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 1rem;
        }

        .section-title {
            font-size: 2.5rem;
            margin-bottom: 1rem;
        }

        .section-title .highlight {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .section-description {
            color: #666;
            font-size: 1.1rem;
            max-width: 700px;
            margin: 0 auto;
        }

        .service-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .service-card {
            background: #f8f9fa;
            padding: 2.5rem;
            border-radius: 12px;
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .service-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }

        .service-icon {
            width: 60px;
            height: 60px;
            background: rgba(102, 126, 234, 0.1);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            color: #764ba2;
            font-size: 1.5rem;
        }

        .service-card h3 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            color: #333;
        }

        .service-card p {
            color: #666;
            margin-bottom: 1.5rem;
            line-height: 1.8;
        }

        .service-link {
            color: #764ba2;
            text-decoration: none;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }

        .service-link:hover {
            gap: 0.75rem;
        }

        /* About Section */
        .about {
            padding: 6rem 0;
            background: linear-gradient(135deg, #f5f7fa 0%, #e9ecf1 100%);
        }

        .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: start;
        }

        .about-text h2 {
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
            line-height: 1.2;
        }

        .about-text h2 .highlight {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .about-text p {
            color: #666;
            margin-bottom: 1.5rem;
            line-height: 1.8;
            font-size: 1.1rem;
        }

        .mission-box {
            background: rgba(102, 126, 234, 0.05);
            padding: 2rem;
            border-radius: 12px;
            border-left: 4px solid #764ba2;
            margin-top: 2rem;
        }

        .mission-box h3 {
            color: #333;
            margin-bottom: 1rem;
            font-size: 1.3rem;
        }

        .mission-box p {
            color: #666;
            margin: 0;
        }

        .values-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1.5rem;
        }

        .value-card {
            background: white;
            padding: 2rem;
            border-radius: 12px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
        }

        .value-icon {
            width: 50px;
            height: 50px;
            background: rgba(102, 126, 234, 0.1);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1rem;
            color: #764ba2;
            font-size: 1.3rem;
        }

        .value-card h3 {
            color: #333;
            margin-bottom: 0.5rem;
            font-size: 1.2rem;
        }

        .value-card p {
            color: #666;
            margin: 0;
            font-size: 0.95rem;
        }

        /* Projects Section */
        .projects {
            padding: 6rem 0;
            background: white;
        }

        .project-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .project-card {
            background: #f8f9fa;
            border-radius: 12px;
            overflow: hidden;
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .project-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.1);
        }

        .project-image {
            width: 100%;
            height: 250px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
        }

        .project-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .project-info {
            padding: 2rem;
        }

        .project-category {
            color: #764ba2;
            font-weight: 600;
            font-size: 0.9rem;
            margin-bottom: 0.5rem;
        }

        .project-info h3 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            color: #333;
        }

        .project-info p {
            color: #666;
            margin-bottom: 1.5rem;
            line-height: 1.6;
        }

        .tech-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
        }

        .tech-tag {
            background: white;
            padding: 0.4rem 1rem;
            border-radius: 20px;
            font-size: 0.85rem;
            color: #333;
            border: 1px solid #e0e0e0;
        }

        /* Contact Section */
        .contact {
            padding: 6rem 0;
            background: linear-gradient(135deg, #f5f7fa 0%, #e9ecf1 100%);
        }

        .contact-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            margin-top: 3rem;
        }

        .contact-info h2 {
            font-size: 2.5rem;
            margin-bottom: 1rem;
        }

        .contact-info h2 .highlight {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .contact-info > p {
            color: #666;
            margin-bottom: 2rem;
            line-height: 1.8;
        }

        .contact-details {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .contact-item {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .contact-item-icon {
            width: 50px;
            height: 50px;
            background: rgba(102, 126, 234, 0.1);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #764ba2;
            font-size: 1.2rem;
        }

        .contact-item-text h4 {
            font-size: 0.9rem;
            color: #666;
            margin-bottom: 0.25rem;
        }

        .contact-item-text p {
            color: #333;
            font-weight: 600;
            margin: 0;
        }

        .contact-form {
            background: white;
            padding: 2.5rem;
            border-radius: 12px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.05);
        }

        .form-group {
            margin-bottom: 1.5rem;
        }

        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            color: #333;
            font-weight: 600;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 0.875rem;
            border: 1px solid #e0e0e0;
            border-radius: 8px;
            font-family: inherit;
            font-size: 1rem;
            transition: border-color 0.3s;
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: #764ba2;
        }

        .form-group textarea {
            resize: vertical;
            min-height: 150px;
        }

        .submit-btn {
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
        }

        /* Footer */
        footer {
            background: #1a1a2e;
            color: white;
            padding: 3rem 0 1.5rem;
        }

        .footer-content {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 3rem;
            margin-bottom: 2rem;
        }

        .footer-logo {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 1.5rem;
            font-weight: 600;
            margin-bottom: 1rem;
        }

        .footer-logo-icon {
            width: 40px;
            height: 40px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: bold;
        }

        .footer-logo-text {
            color: #764ba2;
        }

        .footer-section h3 {
            margin-bottom: 1rem;
            color: white;
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 0.75rem;
        }

        .footer-links a {
            color: #aaa;
            text-decoration: none;
            transition: color 0.3s;
        }

        .footer-links a:hover {
            color: #764ba2;
        }

        .footer-bottom {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid #333;
            color: #aaa;
        }

        /* Responsive Design */
        @media (max-width: 968px) {
            .nav-links {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background: white;
                flex-direction: column;
                padding: 2rem;
                box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            }

            .nav-links.active {
                display: flex;
            }

            .mobile-menu-btn {
                display: block;
            }

            .hero h1 {
                font-size: 2.5rem;
            }

            .stats {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .about-content,
            .contact-content {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .values-grid {
                grid-template-columns: 1fr;
            }

            .footer-content {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 640px) {
            .container {
                padding: 0 1rem;
            }

            .hero {
                padding: 4rem 0;
            }

            .hero h1 {
                font-size: 2rem;
            }

            .hero p {
                font-size: 1rem;
            }

            .section-title {
                font-size: 2rem;
            }

            .project-grid {
                grid-template-columns: 1fr;
            }
        }

        /* Advanced Animations */
        @keyframes float {
            0%, 100% {
                transform: translateY(0px);
            }
            50% {
                transform: translateY(-10px);
            }
        }

        @keyframes gradientShift {
            0% {
                background-position: 0% 50%;
            }
            50% {
                background-position: 100% 50%;
            }
            100% {
                background-position: 0% 50%;
            }
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes pulse {
            0%, 100% {
                transform: scale(1);
            }
            50% {
                transform: scale(1.05);
            }
        }

        @keyframes shimmer {
            0% {
                background-position: -200% center;
            }
            100% {
                background-position: 200% center;
            }
        }

        @keyframes particleFloat {
            0% {
                transform: translateY(100vh) rotate(0deg);
                opacity: 0;
            }
            10% {
                opacity: 0.5;
            }
            90% {
                opacity: 0.5;
            }
            100% {
                transform: translateY(-100px) rotate(360deg);
                opacity: 0;
            }
        }

        /* Ripple effect */
        .ripple {
            position: absolute;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.5);
            transform: scale(0);
            animation: rippleEffect 0.6s ease-out;
            pointer-events: none;
        }

        @keyframes rippleEffect {
            to {
                transform: scale(4);
                opacity: 0;
            }
        }

        .btn-primary, .btn-secondary {
            position: relative;
            overflow: hidden;
        }

        /* Custom cursor */
        .custom-cursor {
            width: 40px;
            height: 40px;
            border: 2px solid #764ba2;
            border-radius: 50%;
            position: fixed;
            pointer-events: none;
            z-index: 9999;
            transition: all 0.2s ease;
            transform: translate(-50%, -50%);
            opacity: 0.5;
        }

        .cursor-dot {
            width: 8px;
            height: 8px;
            background: #764ba2;
            border-radius: 50%;
            position: fixed;
            pointer-events: none;
            z-index: 9999;
            transition: all 0.1s ease;
            transform: translate(-50%, -50%);
        }

        /* Particle animation */
        .particle {
            position: absolute;
            width: 4px;
            height: 4px;
            background: #764ba2;
            border-radius: 50%;
            bottom: 0;
            animation: particleFloat 5s linear infinite;
            pointer-events: none;
        }

        /* Enhanced card animations */
        .service-card, .project-card, .value-card {
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        /* Shimmer text effect */
        h1, h2, h3 {
            background-image: linear-gradient(90deg, 
                currentColor 0%, 
                currentColor 40%, 
                #764ba2 50%, 
                currentColor 60%, 
                currentColor 100%);
            background-size: 200% auto;
            background-clip: text;
            -webkit-background-clip: text;
            transition: background-position 0.5s ease;
        }

        /* Enhanced form animations */
        .form-group label {
            transition: all 0.3s ease;
        }

        .form-group input:focus,
        .form-group textarea:focus {
            box-shadow: 0 0 0 3px rgba(118, 75, 162, 0.1);
            transform: translateY(-2px);
        }

        /* Hover glow effect */
        .btn-primary:hover {
            box-shadow: 0 5px 25px rgba(102, 126, 234, 0.5),
                        0 0 30px rgba(118, 75, 162, 0.3);
        }

        .btn-secondary:hover {
            box-shadow: 0 5px 25px rgba(118, 75, 162, 0.3);
        }

        /* Service icon pulse on hover */
        .service-icon:hover, .value-icon:hover {
            animation: pulse 1s infinite;
        }

        /* Project card image zoom */
        .project-card:hover .project-image {
            transform: scale(1.05);
        }

        .project-image {
            transition: transform 0.5s ease;
        }

        /* Tech tag animation */
        .tech-tag {
            transition: all 0.3s ease;
        }

        .tech-tag:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            border-color: #764ba2;
            color: #764ba2;
        }

        /* Contact item animation */
        .contact-item {
            transition: all 0.3s ease;
        }

        .contact-item:hover {
            transform: translateX(10px);
        }

        .contact-item:hover .contact-item-icon {
            transform: scale(1.1) rotate(5deg);
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
        }

        .contact-item-icon {
            transition: all 0.3s ease;
        }

        /* Stat number animation ready */
        .stat-number {
            transition: all 0.3s ease;
        }
.hospital-footer {
  background: #2f363d;
  color: #fff;
  padding-top: 60px;
  position: relative;
  font-family: 'Segoe UI', sans-serif;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 50px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 15px;
}

.footer-brand img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
}

.footer-brand h2 {
  margin: 0;
  font-size: 22px;
}

.footer-brand span {
  font-size: 14px;
  opacity: 0.8;
}

.footer-text {
  margin: 20px 0;
  line-height: 1.7;
  color: #d1d1d1;
}

.footer-social a {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #3b4148;
  border-radius: 50%;
  margin-right: 10px;
  color: #fff;
  transition: 0.3s;
}

.footer-social a:hover {
  background: #00c37a;
}

.footer-box h3 {
  margin-bottom: 20px;
}

.footer-box ul {
  list-style: none;
  padding: 0;
}

.footer-box ul li {
  margin-bottom: 12px;
}

.footer-box ul li a {
  color: #d1d1d1;
  text-decoration: none;
}

.footer-box ul li a:hover {
  color: #00c37a;
}

.emergency-number {
  font-size: 20px;
  color: #00c37a;
  margin-bottom: 10px;
}

.emergency-text {
  color: #cfcfcf;
}

.footer-bottom {
  border-top: 1px solid #444;
  text-align: center;
  padding: 25px 15px;
  margin-top: 50px;
  font-size: 14px;
  color: #ccc;
}

.footer-bottom .heart {
  color: red;
}

.scroll-top {
  position: fixed;
  bottom: 25px;
  right: 25px;
  background: #00c37a;
  border: none;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  color: #fff;
  font-size: 18px;
  cursor: pointer;
}

.scroll-top:hover {
  background: #00a868;
}
/* Mobile First CEO Section */
/* Button */
.btn-primary {
  display: block;
  width: 100%;
  padding: 12px;
  background: #764ba2;
  color: #fff;
  text-align: center;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
}

.btn-primary:hover {
  background: #008c5a;
}
 
/* Responsive */
@media(max-width: 900px) {
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
    
  }

.ceo-section {
  padding: 50px 15px;
  background: #f8f9fb;
}

.ceo-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

/* CEO Image */
.ceo-photo img {
  width: 100%;
  max-width: 240px;
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

/* CEO Content */
.ceo-details {
  text-align: center;
}

.ceo-details h2 {
  font-size: 24px;
  margin-bottom: 6px;
}

.ceo-title {
  font-size: 15px;
  color: #764ba2;
  font-weight: 600;
  margin-bottom: 15px;
}

.ceo-bio {
  font-size: 14px;
  line-height: 1.7;
  color: #555;
  margin-bottom: 20px;
}

/* Info List */
.ceo-info-list {
  list-style: none;
  padding: 0;
  margin-bottom: 25px;
}

.ceo-info-list li {
  font-size: 14px;
  margin-bottom: 10px;
  color: #444;
}

.ceo-info-list strong {
  display: block;
  font-weight: 600;
  margin-bottom: 2px;
}

.ceo-info-list a {
  color: #764ba2;
  font-weight: 600;
  text-decoration: none;
}

  .footer-brand {
    justify-content: center;
  }
}
        /* Hero badge animation */
        .hero-badge {
            animation: fadeInUp 0.8s ease;
        }

        /* Service link arrow animation */
        .service-link {
            transition: all 0.3s ease;
        }

        /* Add smooth transitions to all interactive elements */
        * {
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        /* Override for elements that shouldn't transition */
        body, header, nav, .container {
            transition: none;
        }

        /* Loading animation for images */
        .project-image img {
            animation: fadeInUp 0.6s ease;
        }

        /* Stagger animation for grid items */
        .service-grid > *:nth-child(1) { animation-delay: 0.1s; }
        .service-grid > *:nth-child(2) { animation-delay: 0.2s; }
        .service-grid > *:nth-child(3) { animation-delay: 0.3s; }
        .service-grid > *:nth-child(4) { animation-delay: 0.4s; }

        .project-grid > *:nth-child(1) { animation-delay: 0.1s; }
        .project-grid > *:nth-child(2) { animation-delay: 0.2s; }
        .project-grid > *:nth-child(3) { animation-delay: 0.3s; }
        .project-grid > *:nth-child(4) { animation-delay: 0.4s; }
        .project-grid > *:nth-child(5) { animation-delay: 0.5s; }
        .project-grid > *:nth-child(6) { animation-delay: 0.6s; }
