/* Global CSS Variables */
        :root {
            /* Brand Colors */
            --primary-blue: #2563eb;
            --secondary-blue: #1d4ed8;
            --accent-orange: #ff8c42;
            --accent-orange-hover: #e67e22;
            --success-green: #10b981;
            --error-red: #ef4444;
            
            /* Neutral Colors */
            --white: #ffffff;
            --light-gray: #f8fafc;
            --medium-gray: #64748b;
            --dark-gray: #1e293b;
            --border-gray: #e2e8f0;
            
            /* Spacing Scale */
            --space-xs: 0.5rem;
            --space-sm: 1rem;
            --space-md: 1.5rem;
            --space-lg: 2rem;
            --space-xl: 3rem;
            --space-2xl: 4rem;
            --space-3xl: 5rem;
            
            /* Typography */
            --font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
            --font-size-xs: 0.75rem;
            --font-size-sm: 0.875rem;
            --font-size-base: 1rem;
            --font-size-lg: 1.125rem;
            --font-size-xl: 1.25rem;
            --font-size-2xl: 1.5rem;
            --font-size-3xl: 2rem;
            --font-size-4xl: 2.5rem;
            --font-size-5xl: 3rem;
            
            /* Design System */
            --border-radius: 0.5rem;
            --border-radius-lg: 1rem;
            --border-radius-full: 9999px;
            
            /* Shadows */
            --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
            --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
            --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
            --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
            
            /* Transitions */
            --transition-fast: 0.15s ease;
            --transition-base: 0.3s ease;
            --transition-slow: 0.5s ease;
        }

        /* CSS Reset */
        *, *::before, *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }

        body {
            font-family: var(--font-family);
            line-height: 1.6;
            color: var(--dark-gray);
            background-color: var(--light-gray);
            overflow-x: hidden;
        }

        /* Utility Classes */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 var(--space-sm);
        }

        .container-wide {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 var(--space-sm);
        }

        .text-center { text-align: center; }
        .text-left { text-align: left; }
        .text-right { text-align: right; }

        .sr-only {
            position: absolute;
            width: 1px;
            height: 1px;
            padding: 0;
            margin: -1px;
            overflow: hidden;
            clip: rect(0, 0, 0, 0);
            white-space: nowrap;
            border: 0;
        }

        /* Button Components */
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: var(--space-sm) var(--space-lg);
            border: 2px solid transparent;
            border-radius: var(--border-radius);
            font-size: var(--font-size-base);
            font-weight: 600;
            text-decoration: none;
            cursor: pointer;
            transition: all var(--transition-base);
            min-height: 44px; /* Touch target */
            gap: var(--space-xs);
        }

        .btn:focus {
            outline: 2px solid var(--primary-blue);
            outline-offset: 2px;
        }

        .btn-primary {
            background-color: var(--accent-orange);
            color: var(--white);
            border-color: var(--accent-orange);
        }

        .btn-primary:hover {
            background-color: var(--accent-orange-hover);
            border-color: var(--accent-orange-hover);
            transform: translateY(-2px);
            box-shadow: var(--shadow-lg);
        }

        .btn-secondary {
            background-color: rgba(255, 255, 255, 0.2);
            color: var(--white);
            border-color: rgba(255, 255, 255, 0.5);
            backdrop-filter: blur(10px);
        }

        .btn-secondary:hover {
            background-color: var(--white);
            color: var(--primary-blue);
            border-color: var(--white);
            transform: translateY(-2px);
            box-shadow: var(--shadow-lg);
        }

        .btn-large {
            padding: var(--space-md) var(--space-xl);
            font-size: var(--font-size-lg);
        }
        .abtn{
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: var(--space-sm) var(--space-lg);
            border: 2px solid transparent;
            border-radius: var(--border-radius);
            font-size: var(--font-size-base);
            font-weight: 600;
            text-decoration: none;
            cursor: pointer;
            transition: all var(--transition-base);
            min-height: 44px; /* Touch target */
            gap: var(--space-xs);
            background-color: rgba(211, 168, 59, 0.5);
            color: var(--white);
            border-color: rgba(255, 197, 37, 0.9);
            backdrop-filter: blur(10px);
        }
        .abtn:hover {
            background-color: var(--white);
            color: var(--primary-blue);
            border-color: var(--white);
            transform: translateY(-2px);
            box-shadow: var(--shadow-lg);
        }
  
        /* Typography */
        .heading-primary {
            font-size: var(--font-size-5xl);
            font-weight: 700;
            line-height: 1.1;
            margin-bottom: var(--space-md);
        }

        .heading-secondary {
            font-size: var(--font-size-3xl);
            font-weight: 600;
            line-height: 1.2;
            margin-bottom: var(--space-lg);
            color: var(--primary-blue);
            position: relative;
        }

        .heading-secondary::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 4px;
            background: linear-gradient(90deg, var(--accent-orange), var(--accent-orange-hover));
            border-radius: var(--border-radius-full);
        }

        .text-large {
            font-size: var(--font-size-lg);
            line-height: 1.7;
        }

        .text-muted {
            color: var(--medium-gray);
        }

        /* Header */
        .header {
            background: linear-gradient(135deg, rgba(255,255,255,0.95), rgba(248,250,252,0.95));
            backdrop-filter: blur(10px);
            box-shadow: 0 8px 25px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 1px solid rgba(44,85,48,0.1);
        }

        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: var(--space-sm) 0;
        }

        .header-left {
            display: flex;
            align-items: center;
            gap: var(--space-3xl);
        }

        .logo {
            display: flex;
            align-items: center;
            gap: var(--space-sm);
        }

        .logo h1 {
            font-size: var(--font-size-3xl);
            font-weight: 800;
            color: var(--primary-blue);
            white-space: nowrap;
            letter-spacing: -0.5px;
        }

        .logo-icon {
            width: 50px;
            height: 50px;
            border-radius: var(--border-radius);
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: var(--shadow-md);
            overflow: hidden;
        }

        .logo-icon img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        /* Navigation */
        .nav-toggle {
            display: none;
            background: none;
            border: none;
            font-size: var(--font-size-2xl);
            color: var(--primary-blue);
            cursor: pointer;
            padding: var(--space-xs);
            border-radius: var(--border-radius);
        }

        .nav-toggle:hover {
            background-color: var(--light-gray);
        }

        .main-nav {
            display: flex;
            gap: var(--space-md);
        }

        .nav-link {
            color: var(--dark-gray);
            text-decoration: none;
            font-weight: 600;
            padding: var(--space-sm) var(--space-md);
            border-radius: var(--border-radius-lg);
            transition: all var(--transition-base);
            position: relative;
            overflow: hidden;
        }

        .nav-link::before {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            width: 0;
            height: 3px;
            background: linear-gradient(90deg, var(--accent-orange), var(--accent-orange-hover));
            transition: all var(--transition-base);
            transform: translateX(-50%);
            border-radius: 2px;
        }

        .nav-link:hover,
        .nav-link.active {
            color: var(--primary-blue);
            background: linear-gradient(135deg, rgba(44,85,48,0.1), rgba(30,58,36,0.05));
            transform: translateY(-2px);
        }

        .nav-link:hover::before,
        .nav-link.active::before {
            width: 80%;
        }

        /* Hero Section */
        .hero {
            position: relative;
            height: 85vh;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .hero-slider {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
        }

        .hero-slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 1.5s ease-in-out;
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
        }

        .hero-slide.active {
            opacity: 1;
        }

        .hero-slide::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(37,99,235,0.3), rgba(29,78,216,0.4));
        }

        .hero-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            z-index: 20;
            background: rgba(255, 255, 255, 0.9);
            border: none;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            font-size: var(--font-size-xl);
            color: var(--primary-blue);
            box-shadow: var(--shadow-lg);
            transition: all var(--transition-base);
        }

        .hero-nav:hover {
            background: var(--white);
            transform: translateY(-50%) scale(1.1);
        }

        .hero-nav.prev {
            left: var(--space-md);
        }

        .hero-nav.next {
            right: var(--space-md);
        }

        .hero-content {
            position: relative;
            z-index: 10;
            text-align: center;
            max-width: 900px;
            margin: 0 auto;
            padding: 0 var(--space-md);
            color: var(--white);
        }

        .hero .heading-primary {
            color: var(--white);
            margin-bottom: var(--space-md);
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }

        .hero-description {
            font-size: var(--font-size-lg);
            margin-bottom: var(--space-xl);
            opacity: 0.95;
            line-height: 1.6;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
        }

        .hero-cta {
            display: flex;
            gap: var(--space-md);
            justify-content: center;
            flex-wrap: wrap;
        }

        /* Intro Section */
        .intro {
            padding: var(--space-3xl) 0;
            background-color: var(--white);
        }

        .intro-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: var(--space-3xl);
            align-items: center;
        }

        .intro-content h3 {
            font-size: var(--font-size-2xl);
            color: var(--primary-blue);
            margin-bottom: var(--space-md);
            font-weight: 600;
        }

        .intro-content p {
            margin-bottom: var(--space-md);
            line-height: 1.7;
            color: var(--medium-gray);
        }

        .intro-image {
            position: relative;
        }

        .intro-image img {
            width: 100%;
            height: 400px;
            object-fit: cover;
            border-radius: var(--border-radius-lg);
            box-shadow: var(--shadow-xl);
        }

        /* Services Navigation Cards */
        .services-nav {
            padding: var(--space-3xl) 0;
            background-color: var(--light-gray);
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: var(--space-lg);
        }

        .service-card {
            background-color: var(--white);
            padding: var(--space-lg);
            border-radius: var(--border-radius-lg);
            box-shadow: var(--shadow-md);
            text-decoration: none;
            color: var(--dark-gray);
            transition: all var(--transition-base);
            border: 2px solid transparent;
        }

        .service-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-xl);
            border-color: var(--accent-orange);
        }

        .service-card-other {
            background-color: rgba(237, 228, 171, 0.3);
            padding: var(--space-lg);
            border-radius: var(--border-radius-lg);
            box-shadow: var(--shadow-md);
            text-decoration: none;
            color: var(--dark-gray);
            transition: all var(--transition-base);
            border: 2px solid transparent;
        }

        .service-card-other:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-xl);
            border-color: var(--accent-orange);
            background-color: rgba(242, 211, 37, 0.8);
        }

        .service-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, var(--accent-orange), var(--accent-orange-hover));
            border-radius: var(--border-radius-lg);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: var(--font-size-2xl);
            margin-bottom: var(--space-md);
        }

        .service-card h4 {
            color: var(--primary-blue);
            font-size: var(--font-size-lg);
            font-weight: 600;
            margin-bottom: var(--space-sm);
        }

        .service-card-other h4 {
            color: var(--primary-blue);
            font-size: var(--font-size-lg);
            font-weight: 600;
            margin-bottom: var(--space-sm);
        }


        .service-card p {
            font-size: var(--font-size-sm);
            color: var(--medium-gray);
            line-height: 1.6;
        }

        .service-card-other p {
            font-size: var(--font-size-sm);
            color: var(--medium-gray);
            line-height: 1.6;
        }

        /* Contact Form Section */
        .contact-section {
            padding: var(--space-3xl) 0;
            background-color: var(--white);
        }

        .form-container {
            max-width: 600px;
            margin: 0 auto;
            background-color: var(--white);
            padding: var(--space-xl);
            border-radius: var(--border-radius-lg);
            box-shadow: var(--shadow-xl);
            border: 1px solid var(--border-gray);
        }

        .form-group {
            margin-bottom: var(--space-md);
        }

        .form-label {
            display: block;
            margin-bottom: var(--space-xs);
            font-weight: 600;
            color: var(--dark-gray);
        }

        .form-input {
            width: 100%;
            padding: var(--space-sm);
            border: 2px solid var(--border-gray);
            border-radius: var(--border-radius);
            font-size: var(--font-size-base);
            transition: border-color var(--transition-fast);
            background-color: var(--white);
        }

        .form-input:focus {
            outline: none;
            border-color: var(--primary-blue);
            box-shadow: 0 0 0 3px rgba(30, 64, 175, 0.1);
        }

        .form-textarea {
            min-height: 120px;
            resize: vertical;
            font-family: inherit;
        }

        .form-select {
            appearance: none;
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
            background-position: right 0.75rem center;
            background-repeat: no-repeat;
            background-size: 1.5em 1.5em;
            padding-right: 2.5rem;
        }

        .form-error {
            border-color: var(--error-red) !important;
            box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1) !important;
        }

        .success-message {
            background-color: var(--success-green);
            color: var(--white);
            padding: var(--space-sm);
            border-radius: var(--border-radius);
            margin-bottom: var(--space-md);
            text-align: center;
        }

        /* Footer */
.footer {
    background: linear-gradient(180deg, #225dde 0%, #1a347c 100%);
    color: var(--white);
    padding: var(--space-xl) 0 var(--space-md);
    border-top: #e46c6c solid 3px;
}
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: var(--space-lg);
            margin-bottom: var(--space-lg);
        }

        .footer-section h4 {
            font-size: var(--font-size-lg);
            margin-bottom: var(--space-md);
            color: var(--white);
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: var(--space-xs);
        }

        .footer-links a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            transition: color var(--transition-fast);
        }

        .footer-links a:hover {
            color: var(--white);
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.2);
            padding-top: var(--space-md);
            text-align: center;
            color: rgba(255, 255, 255, 0.8);
        }

        .social-links {
            display: flex;
            gap: var(--space-sm);
            justify-content: center;
            margin-top: var(--space-sm);
        }

        .social-link {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: var(--border-radius-full);
            color: var(--white);
            text-decoration: none;
            transition: all var(--transition-fast);
        }

        .social-link:hover {
            background-color: var(--accent-orange);
            transform: translateY(-2px);
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes shake {
            0%, 100% { transform: translateX(0); }
            25% { transform: translateX(-5px); }
            75% { transform: translateX(5px); }
        }

        .animate-fade-in {
            animation: fadeInUp 0.8s ease-out;
        }

        .animate-shake {
            animation: shake 0.3s ease-in-out;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .nav-toggle {
                display: block;
            }

            .main-nav {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background-color: var(--white);
                flex-direction: column;
                padding: var(--space-md);
                box-shadow: var(--shadow-lg);
                border-top: 1px solid var(--border-gray);
            }

            .main-nav.active {
                display: flex;
            }

            .heading-primary {
                font-size: var(--font-size-3xl);
            }

            .heading-secondary {
                font-size: var(--font-size-2xl);
                text-align: center;
            }

            .hero {
                padding: var(--space-2xl) 0;
            }

            .hero-cta {
                flex-direction: column;
                align-items: center;
            }

            .intro-grid {
                grid-template-columns: 1fr;
                gap: var(--space-2xl);
                text-align: center;
            }

            .services-grid {
                grid-template-columns: 1fr;
            }

            .footer-content {
                grid-template-columns: 1fr;
                text-align: center;
            }
        }

        @media (max-width: 480px) {
            .container {
                padding: 0 var(--space-xs);
            }

            .heading-primary {
                font-size: var(--font-size-2xl);
            }

            .btn {
                width: 100%;
                text-align: center;
            }

            .hero-cta .btn {
                width: auto;
                min-width: 200px;
            }
        }
        /* Footer Powered By Link */
            .Powered {
                color: var(--accent-orange);
                text-decoration: none;
                font-weight: bold;
                transition: color var(--transition-fast);
            }
            .Powered:hover {
                color: rgb(255, 196, 0);
                font-size: 18px;
            }
