:root {
            --primary-color: #1a365d;
            --secondary-color: #e53e3e;
            --accent-color: #f6ad55;
            --light-color: #f7fafc;
            --dark-color: #2d3748;
            --text-color: #4a5568;
            --border-radius: 15px;
            --transition: all 0.3s ease;
            --shadow-small: 0 4px 15px rgba(0, 0, 0, 0.1);
            --shadow-large: 0 20px 60px rgba(0, 0, 0, 0.2);
        }
        
        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        
        body {
            font-family: 'Open Sans', sans-serif;
            color: var(--text-color);
            line-height: 1.6;
            background: #f5f7fa;
            overflow-x: hidden;
        }
        
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Montserrat', sans-serif;
            font-weight: 700;
            color: var(--primary-color);
        }
        
        section {
            padding: 4rem 0;
        }
        
        /* Scroll Progress Bar */
        .progress-bar {
            position: fixed;
            top: 0;
            left: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--secondary-color), var(--accent-color));
            z-index: 9999;
            width: 0%;
            transition: width 0.1s ease;
        }
        
        /* Header */
        .hero-header {
            position: relative;
            height: 50vh;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--dark-color) 100%);
            overflow: hidden;
        }
        
        .hero-content {
            position: relative;
            z-index: 2;
            text-align: center;
            color: white;
        }
        
        .hero-logo {
            max-width: 400px;
            height: auto;
            margin-bottom: 1.5rem;
        }
        
        .hero-title {
            font-size: 3rem;
            font-weight: 900;
            color: white;
            margin: 1rem 0;
            letter-spacing: 2px;
            text-transform: uppercase;
        }
        
        .hero-subtitle {
            font-size: 1.3rem;
            opacity: 0.9;
        }
        
        /* Navigation */
        .sticky-nav {
            position: sticky;
            top: 0;
            z-index: 1000;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        }
        
        .top-bar {
            padding: 0.8rem 0;
        }
        
        .menu a {
            color: var(--primary-color);
            font-family: 'Montserrat', sans-serif;
            font-weight: 600;
            padding: 1rem 1.5rem;
            transition: var(--transition);
            text-transform: uppercase;
            font-size: 0.9rem;
            letter-spacing: 1px;
        }
        
        .menu a:hover,
        .menu a.active {
            color: var(--secondary-color);
        }
        
        .title-bar {
            background: var(--primary-color);
        }
        
        /* Section Title */
        .section-title {
            text-align: center;
            font-size: 2.5rem;
            font-weight: 900;
            margin-bottom: 3rem;
            position: relative;
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 4px;
            background: linear-gradient(90deg, var(--secondary-color), var(--accent-color));
            border-radius: 10px;
        }
        
        /* Team Intro */
        .team-intro {
            text-align: center;
            max-width: 900px;
            margin: 0 auto 3rem;
            padding: 2rem;
            background: white;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow-small);
        }
        
        .team-intro p {
            font-size: 1.1rem;
            line-height: 1.8;
            color: var(--text-color);
            margin-bottom: 1rem;
        }
        
        /* Team Grid - 4 cards across */
        .team-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 1rem;
            margin-top: 1rem;
        }
        
        /* Team Member Card */
        .team-member {
            background: white;
            border-radius: var(--border-radius);
            overflow: hidden;
            box-shadow: var(--shadow-small);
            transition: var(--transition);
        }
        
        .team-member:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-large);
        }
        
        .member-image-container {
            position: relative;
            height: 300px;
            overflow: hidden;
            background: var(--light-color);
        }
        
        .member-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition);
        }
        
        .team-member:hover .member-image {
            transform: scale(1.05);
        }
        
        .member-badge {
            position: absolute;
            top: 15px;
            right: 15px;
            background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
            color: white;
            padding: 0.4rem 0.8rem;
            border-radius: 20px;
            font-size: 0.75rem;
            font-weight: 700;
            text-transform: uppercase;
            z-index: 2;
        }
        
        .member-info {
            padding: 1.5rem;
        }
        
        .member-name {
            font-size: 1.3rem;
            font-weight: 800;
            margin-bottom: 0.5rem;
            color: var(--primary-color);
        }
        
        .member-role {
            color: var(--secondary-color);
            font-weight: 600;
            margin-bottom: 1rem;
            font-size: 0.95rem;
            text-transform: uppercase;
        }
        
        .member-strength,
        .member-contribution {
            display: flex;
            align-items: flex-start;
            margin-bottom: 1rem;
            padding: 0.8rem;
            background: var(--light-color);
            border-radius: 8px;
            font-size: 0.9rem;
        }
        
        .member-strength i,
        .member-contribution i {
            color: var(--accent-color);
            margin-right: 0.6rem;
            margin-top: 3px;
            font-size: 1rem;
        }
        
        /* Service Area Section */
        .service-area-section {
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--dark-color) 100%);
            position: relative;
            overflow: hidden;
        }
        
        .service-area-section .section-title {
            color: white;
        }
        
        .service-area-section .section-title::after {
            background: linear-gradient(90deg, var(--accent-color), white);
        }
        
        .service-area-section > .grid-container > p {
            color: white;
            font-size: 1.2rem;
            margin-bottom: 2rem;
            text-align: center;
        }
        
        .map-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 2rem;
            margin-top: 2rem;
        }
        
        .map-card {
            background: white;
            border-radius: var(--border-radius);
            overflow: hidden;
            box-shadow: var(--shadow-large);
            transition: var(--transition);
        }
        
        .map-card:hover {
            transform: translateY(-10px);
        }
        
        .map-title {
            background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
            color: white;
            padding: 1.2rem;
            text-align: center;
            font-size: 1.2rem;
            font-weight: 800;
            text-transform: uppercase;
        }
        
        .map-frame {
            width: 100%;
            height: 300px;
            border: none;
        }
        
        .map-info {
            padding: 1.2rem;
            background: #f8f9fa;
        }
        
        .map-info i {
            color: var(--accent-color);
            margin-right: 0.6rem;
        }
        
        .map-info p {
            display: flex;
            align-items: center;
            margin-bottom: 0.5rem;
            font-weight: 600;
            color: var(--dark-color);
        }
        
        /* CTA Section */
        .cta-section {
            background: linear-gradient(135deg, var(--secondary-color) 0%, var(--accent-color) 100%);
            color: white;
            text-align: center;
            padding: 5rem 0;
            position: relative;
            overflow: hidden;
        }
        
        .cta-section::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255,255,255,0.1) 1px, transparent 1px);
            background-size: 50px 50px;
            animation: backgroundMove 20s linear infinite;
        }
        
        @keyframes backgroundMove {
            0% { transform: translate(0, 0); }
            100% { transform: translate(50px, 50px); }
        }
        
        .cta-content {
            position: relative;
            z-index: 2;
        }
        
        .cta-title {
            font-size: 2.5rem;
            font-weight: 900;
            color: white;
            margin-bottom: 1rem;
        }
        
        .cta-subtitle {
            font-size: 1.2rem;
            margin-bottom: 2rem;
            opacity: 0.95;
        }
        
        .cta-buttons {
            display: flex;
            gap: 1.5rem;
            justify-content: center;
            flex-wrap: wrap;
        }
        
        .btn-cta {
            padding: 1rem 2.5rem;
            font-size: 1.1rem;
            font-weight: 700;
            border-radius: 50px;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: var(--transition);
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        }
        
        .btn-cta-primary {
            background: white;
            color: var(--secondary-color);
        }
        
        .btn-cta-primary:hover {
            background: var(--light-color);
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
        }
        
        .btn-cta-secondary {
            background: transparent;
            color: white;
            border: 3px solid white;
        }
        
        .btn-cta-secondary:hover {
            background: white;
            color: var(--secondary-color);
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
        }
        
        /* Footer */
        footer {
            background: var(--primary-color);
            color: white;
            padding: 3rem 0 1rem;
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }
        
        .footer-section h4 {
            color: white;
            font-size: 1.3rem;
            margin-bottom: 1rem;
            font-weight: 800;
        }
        
        .footer-section p,
        .footer-section a {
            color: rgba(255, 255, 255, 0.8);
            line-height: 1.8;
            text-decoration: none;
            transition: var(--transition);
        }
        
        .footer-section a:hover {
            color: var(--accent-color);
            padding-left: 5px;
        }
        
        .footer-section ul {
            list-style: none;
        }
        
        .footer-section ul li {
            margin-bottom: 0.5rem;
        }
        
        .footer-section ul li i {
            color: var(--accent-color);
            margin-right: 0.5rem;
            width: 20px;
        }
        
        .social-links {
            display: flex;
            gap: 1rem;
            margin-top: 1rem;
        }
        
        .social-links a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 45px;
            height: 45px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            transition: var(--transition);
        }
        
        .social-links a:hover {
            background: var(--accent-color);
            transform: translateY(-5px);
        }
        
        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 1.5rem;
            text-align: center;
            color: rgba(255, 255, 255, 0.7);
        }
        
        /* Responsive Design */
        @media screen and (max-width: 1200px) {
            .team-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }
        
        @media screen and (max-width: 768px) {
            .hero-title {
                font-size: 2rem;
            }
            
            .hero-subtitle {
                font-size: 1rem;
            }
            
            .section-title {
                font-size: 2rem;
            }
            
            .team-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 1.5rem;
            }
            
            .cta-title {
                font-size: 1.8rem;
            }
            
            .cta-buttons {
                flex-direction: column;
                align-items: center;
            }
            
            .btn-cta {
                width: 100%;
                max-width: 300px;
                justify-content: center;
            }
        }
        
        @media screen and (max-width: 480px) {
            .team-grid {
                grid-template-columns: 1fr;
            }
            
            .hero-title {
                font-size: 1.5rem;
            }
            
            .section-title {
                font-size: 1.5rem;
            }
        }
        
        /* Loading Animation */
        .loading {
            opacity: 0;
            transform: translateY(30px);
        }
        
        /* Back to Top Button */
        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            opacity: 0;
            visibility: hidden;
            transition: var(--transition);
            z-index: 1000;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
        }
        
        .back-to-top.show {
            opacity: 1;
            visibility: visible;
        }
        
        .back-to-top:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
        }