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

        body {
            font-family: 'Georgia', serif;
            line-height: 1.6;
            color: #2c3e50;
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            overflow-x: hidden;
        }

        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Scroll Animation Classes */
        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s ease;
        }

        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .slide-in-left {
            opacity: 0;
            transform: translateX(-50px);
            transition: all 0.8s ease;
        }

        .slide-in-left.visible {
            opacity: 1;
            transform: translateX(0);
        }

        .slide-in-right {
            opacity: 0;
            transform: translateX(50px);
            transition: all 0.8s ease;
        }

        .slide-in-right.visible {
            opacity: 1;
            transform: translateX(0);
        }

        .scale-in {
            opacity: 0;
            transform: scale(0.8);
            transition: all 0.8s ease;
        }

        .scale-in.visible {
            opacity: 1;
            transform: scale(1);
        }

        .stagger-1 { transition-delay: 0.1s; }
        .stagger-2 { transition-delay: 0.2s; }
        .stagger-3 { transition-delay: 0.3s; }

        /* Header */
        header {
            background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
            color: white;
            padding: 1rem 0;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            transition: all 0.3s ease;
        }

        .header-content {
            display: flex;
            flex-direction: row;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-size: 2rem;
            font-weight: bold;
            letter-spacing: -1px;
        }
        .logo a{
            color: #ecf0f1;
            text-decoration: none;
        }
        .logo a:hover{
            color: #fcf1c9;
        }
        .nav-menu {
            display: flex;
            list-style: none;
            gap: 1rem;
            margin: 0;
        }

        .nav-menu a {
            color: white;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            padding: 0.5rem 1rem;
            border-radius: 5px;
            position: relative;
        }

        .nav-menu a:hover {
            background: rgba(255,255,255,0.1);
            transform: translateY(-2px);
        }

        .nav-menu a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 50%;
            width: 0;
            height: 2px;
            background: #ecf0f1;
            transition: all 0.3s ease;
            transform: translateX(-50%);
        }

        .nav-menu a:hover::after {
            width: 80%;
        }

        .contact-info {
            font-size: 0.9rem;
            list-style: none;
        }

        .contact-info a {
            text-decoration: none;
            margin: 2px 0;
            color: #ecf0f1;
            transition: color 0.3s ease;
        }
        
        .contact-info a:hover {
            color: #fcf1c9;
        }
        
        /* Mobile menu */
        .mobile-menu-toggle {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.5rem;
            cursor: pointer;
            padding: 0.5rem;
        }
        /* Section Scroll Offset */
        section {
            scroll-margin-top: 100px; /* Adjust based on header height */
        }

        /* Smooth Scroll Behavior */
        html {
            scroll-behavior: smooth;
        }

        /* Hero Section */
        .hero {
            background: linear-gradient(135deg, #34495e 0%, #2c3e50 100%);
            color: white;
            padding: 4rem 0;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
            opacity: 0.3;
        }

        .hero-content {
            position: relative;
            z-index: 1;
        }

        .hero h1 {
            font-size: 3rem;
            margin-bottom: 1rem;
            font-weight: normal;
            letter-spacing: -1px;
            animation: heroTitleSlide 1s ease-out;
        }

        .hero .subtitle {
            font-size: 1.3rem;
            margin-bottom: 2rem;
            opacity: 0.9;
            font-style: italic;
            animation: heroSubtitleFade 1s ease-out 0.3s both;
        }

        .credentials {
            display: flex;
            justify-content: center;
            gap: 2rem;
            margin-top: 2rem;
            flex-wrap: wrap;
        }

        .credential {
            background: rgba(255,255,255,0.1);
            padding: 0.5rem 1rem;
            border-radius: 25px;
            border: 1px solid rgba(255,255,255,0.2);
            backdrop-filter: blur(10px);
            font-weight: 500;
            letter-spacing: 0.5px;
            animation: credentialPop 0.6s ease-out both;
        }

        .credential:nth-child(1) { animation-delay: 0.6s; }
        .credential:nth-child(2) { animation-delay: 0.7s; }
        .credential:nth-child(3) { animation-delay: 0.8s; }
        .credential:nth-child(4) { animation-delay: 0.9s; }

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

        @keyframes heroSubtitleFade {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 0.9;
                transform: translateY(0);
            }
        }

        @keyframes credentialPop {
            from {
                opacity: 0;
                transform: scale(0.8) translateY(20px);
            }
            to {
                opacity: 1;
                transform: scale(1) translateY(0);
            }
        }

        /* Services Section */
        .services {
            padding: 4rem 0;
            background: white;
        }

        .section-title {
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 3rem;
            color: #2c3e50;
            font-weight: normal;
            letter-spacing: -1px;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2rem;
            margin-top: 2rem;
        }

        .service-card {
            background: #f8f9fa;
            padding: 2rem;
            border-radius: 10px;
            border-left: 4px solid #2a5298;
            transition: all 0.3s ease;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
        }

        .service-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(0,0,0,0.1);
            background: #ffffff;
        }

        .service-card h3 {
            color: #2c3e50;
            margin-bottom: 1rem;
            font-size: 1.4rem;
            font-weight: 600;
        }

        .service-card ul {
            list-style: none;
            padding-left: 0;
        }

        .service-card li {
            margin-bottom: 0.5rem;
            padding-left: 1.5rem;
            position: relative;
            opacity: 0;
            transform: translateX(-10px);
            animation: listItemSlide 0.4s ease-out both;
        }

        .service-card.visible li:nth-child(1) { animation-delay: 0.1s; }
        .service-card.visible li:nth-child(2) { animation-delay: 0.2s; }
        .service-card.visible li:nth-child(3) { animation-delay: 0.3s; }
        .service-card.visible li:nth-child(4) { animation-delay: 0.4s; }
        .service-card.visible li:nth-child(5) { animation-delay: 0.5s; }
        .service-card.visible li:nth-child(6) { animation-delay: 0.6s; }

        @keyframes listItemSlide {
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .service-card li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: #27ae60;
            font-weight: bold;
        }

        /* About Section */
        .about {
            padding: 4rem 0;
            background: white;
        }

        .about-content {
            display: grid;
            grid-template-columns: 1fr 2fr;
            gap: 3rem;
            align-items: center;
        }

        .profile-section {
            text-align: center;
            background: #f8f9fa;
            padding: 2rem;
            border-radius: 15px;
            border: 2px solid #e9ecef;
        }

        .profile-image {
            object-fit: cover;
            object-position: 90% 0%;
            width: 200px;
            height: 200px;
            border-radius: 50%;
            margin: 0 auto 1.5rem;
            background: linear-gradient(135deg, #e9ecef 0%, #dee2e6 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 4rem;
            color: #6c757d;
            border: 4px solid #2a5298;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }

        .profile-name {
            font-size: 1.5rem;
            font-weight: bold;
            color: #2c3e50;
            margin-bottom: 0.5rem;
        }

        .profile-title {
            color: #6c757d;
            margin-bottom: 1.5rem;
            font-style: italic;
        }

        .certifications {
            background: #f8f9fa;
            padding: 2rem;
            border-radius: 10px;
            border: 2px solid #e9ecef;
            margin-top: 2rem;
        }

        .certifications h3 {
            color: #2c3e50;
            margin-bottom: 1.5rem;
            font-size: 1.4rem;
        }

        .cert-list {
            list-style: none;
        }

        .cert-list li {
            margin-bottom: 1rem;
            padding: 0.8rem;
            background: white;
            border-radius: 5px;
            border-left: 4px solid #27ae60;
            font-weight: 500;
            box-shadow: 0 2px 5px rgba(0,0,0,0.05);
            opacity: 0;
            transform: translateX(-20px);
            transition: all 0.6s ease;
        }

        .certifications.visible .cert-list li:nth-child(1) { transition-delay: 0.1s; }
        .certifications.visible .cert-list li:nth-child(2) { transition-delay: 0.2s; }
        .certifications.visible .cert-list li:nth-child(3) { transition-delay: 0.3s; }
        .certifications.visible .cert-list li:nth-child(4) { transition-delay: 0.4s; }
        .certifications.visible .cert-list li:nth-child(5) { transition-delay: 0.5s; }
        .certifications.visible .cert-list li:nth-child(6) { transition-delay: 0.6s; }

        .certifications.visible .cert-list li {
            opacity: 1;
            transform: translateX(0);
        }

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

        .about-text p {
            margin-bottom: 1.5rem;
        }

        /* Team Section */
        .team {
            padding: 4rem 0;
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
        }

        .team-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .team-member {
            background: white;
            padding: 2rem;
            border-radius: 15px;
            text-align: center;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
        }

        .team-member:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.15);
        }

        .team-photo {
            object-fit: cover;
            object-position: 90% 0%;
            width: 150px;
            height: 150px;
            border-radius: 50%;
            margin: 0 auto 1.5rem;
            background: linear-gradient(135deg, #e9ecef 0%, #dee2e6 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 3rem;
            color: #6c757d;
            border: 3px solid #2a5298;
        }

        .team-member h4 {
            color: #2c3e50;
            margin-bottom: 0.5rem;
            font-size: 1.3rem;
        }

        .team-member .role {
            color: #6c757d;
            margin-bottom: 1rem;
            font-style: italic;
        }

        .team-member p {
            font-size: 0.95rem;
            line-height: 1.6;
            color: #495057;
        }

        /* Consultation Section */
        .consultation {
            background: linear-gradient(135deg, #ecf0f1 0%, #bdc3c7 100%);
            padding: 4rem 0;
        }

        .form-container {
            max-width: 600px;
            margin: 0 auto;
            background: white;
            padding: 2.5rem;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }

        .form-group {
            margin-bottom: 1.5rem;
        }

        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 600;
            color: #2c3e50;
        }

        .form-group input,
        .form-group select,
        .form-group textarea {
            width: 100%;
            padding: 0.8rem;
            border: 2px solid #e0e0e0;
            border-radius: 5px;
            font-size: 1rem;
            transition: border-color 0.3s ease;
            font-family: inherit;
        }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: #2a5298;
            box-shadow: 0 0 0 3px rgba(42, 82, 152, 0.1);
        }

        .form-group textarea {
            resize: vertical;
            min-height: 120px;
        }

        .submit-btn {
            background: linear-gradient(135deg, #2a5298 0%, #1e3c72 100%);
            color: white;
            padding: 1rem 2rem;
            border: none;
            border-radius: 5px;
            font-size: 1.1rem;
            cursor: pointer;
            transition: all 0.3s ease;
            width: 100%;
            font-weight: 600;
            letter-spacing: 0.5px;
        }

        .submit-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(42, 82, 152, 0.3);
        }

        /* Footer */
        footer {
            background: #2c3e50;
            color: white;
            padding: 3rem 0 1rem;
            text-align: left;
        }

        .footer-nav {
            display: flex;
            justify-content: center;
            gap: 3rem;
            margin-bottom: 2rem;
            padding-bottom: 2rem;
            border-bottom: 1px solid #34495e;
        }

        .footer-nav a {
            color: #ecf0f1;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            padding: 0.5rem 1rem;
            border-radius: 5px;
        }

        .footer-nav a:hover {
            background: rgba(255,255,255,0.1);
            color: white;
            transform: translateY(-2px);
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }

        .footer-section h4 {
            margin-bottom: 1rem;
            color: #ecf0f1;
        }

        .footer-section a {
            text-decoration: none;
            color: #ecf0f1;
            transition: color 0.3s ease;
        }

        .footer-section a:hover {
            color: #fcf1c9;
        }

        .footer-section p {
            opacity: 0.8;
            line-height: 1.6;
        }

        .copyright {
            margin-top: 2rem; 
            padding-top: 2rem; 
            border-top: 1px solid #34495e; 
            opacity: 0.7;
            text-align: center;
        }

        .copyright a {
            text-decoration: none;
            color: #ecf0f1;
            transition: color 0.3s ease;
        }

        .copyright a:hover {
            color: #fcf1c9;
        }

       