
        :root {
            --navy: #0d2f5ed6;
            --navy-dark: #051b38f2;
            --navy-light: #1a4b8c;
            --teal: #20c997;
            --teal-dark: #149672;
            --cyan: #464fb7;
            --white: #ffffff;
            --light: #f8f9fa;
            --gray: #6c757d;
            --dark-text: #212529;
            --light-text: #ffffff;
            --transition: all 0.3s ease-in-out;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Poppins', sans-serif;
            color: var(--dark-text);
            overflow-x: hidden;
            line-height: 1.6;
            background: var(--light);
        }
        
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Montserrat', sans-serif;
            font-weight: 700;
            margin-bottom: 1rem;
        }
        
        a {
            text-decoration: none;
            transition: var(--transition);
        }
        
        /* Hero Section */
        .aws-hero {
            background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%), url('https://images.unsplash.com/photo-1451187580459-43490279c0fa?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
            color: var(--light-text);
            padding: 180px 0 100px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        .aws-hero:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(13, 47, 94, 0.85);
        }
        
        .aws-hero .container {
            position: relative;
            z-index: 2;
        }
        
        .aws-hero h1 {
            font-size: 3.5rem;
            margin-bottom: 1.5rem;
            color: var(--light-text);
        }
        
        .aws-hero p {
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto 2rem;
            color: rgba(255, 255, 255, 0.9);
        }
        
        .ExploreBtn {
            display: inline-block;
            padding: 12px 30px;
            background: var(--teal);
            color: white;
            border-radius: 50px;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: var(--transition);
        }
        
        .ExploreBtn:hover {
            background: var(--teal-dark);
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        }
        
        /* Section Styling */
        .section-padding {
            padding: 100px 0;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 60px;
            position: relative;
        }
        
        .section-title h2 {
            color: var(--navy);
            font-size: 2.5rem;
        }
        
        .section-title:after {
            content: '';
            position: absolute;
            width: 80px;
            height: 4px;
            background: linear-gradient(90deg, var(--teal) 0%, var(--cyan) 100%);
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            border-radius: 2px;
        }
        
        /* Overview Section */
        .overview-content h2 {
            color: var(--navy);
            margin-bottom: 25px;
        }
        
        .overview-content p {
            margin-bottom: 20px;
            font-size: 1.1rem;
        }
        
        .overview-img {
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }
        
        /* Services Section */
        .services {
            background: var(--light);
        }
        
        .service-card {
            text-align: center;
            padding: 30px;
            border-radius: 10px;
            transition: var(--transition);
            background: white;
            box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
            height: 100%;
            position: relative;
            overflow: hidden;
        }
        
        .service-card:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(90deg, var(--teal) 0%, var(--cyan) 100%);
        }
        
        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }
        
        .service-icon {
            width: 80px;
            height: 80px;
            line-height: 80px;
            background: rgba(32, 201, 151, 0.1);
            border-radius: 50%;
            margin: 0 auto 20px;
        }
        
        .service-icon i {
            color: var(--teal);
            font-size: 2rem;
        }
        
        .service-card h4 {
            color: var(--navy);
            margin-bottom: 15px;
        }
        
        /* COE Section */
        .coe {
            background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
            color: var(--light-text);
        }
        
        .coe .section-title h2 {
            color: var(--light-text);
        }
        
        .coe-content {
            text-align: center;
            max-width: 800px;
            margin: 0 auto;
        }
        
        .coe-content p {
            margin-bottom: 30px;
            font-size: 1.1rem;
            color: rgba(255, 255, 255, 0.9);
        }
        
        .coe-card {
            text-align: center;
            padding: 30px 20px;
            border-radius: 10px;
            transition: var(--transition);
            background: rgba(255, 255, 255, 0.1);
            height: 100%;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        .coe-card:hover {
            transform: translateY(-5px);
            background: rgba(255, 255, 255, 0.15);
        }
        
        .coe-card h4 {
            color: var(--light-text);
            margin-bottom: 15px;
        }
        
        .coe-card p {
            color: rgba(255, 255, 255, 0.9);
        }
        
        /* Capabilities Section */
        .capabilities {
            background: var(--light);
        }
        
        .capability-card {
            text-align: center;
            padding: 30px 20px;
            border-radius: 10px;
            transition: var(--transition);
            background: white;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
            height: 100%;
        }
        
        .capability-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        }
        
        .capability-icon {
            width: 70px;
            height: 70px;
            line-height: 70px;
            background: rgba(32, 201, 151, 0.1);
            border-radius: 50%;
            margin: 0 auto 20px;
        }
        
        .capability-icon i {
            color: var(--teal);
            font-size: 1.8rem;
        }
        
        .capability-card h5 {
            color: var(--navy);
            margin-bottom: 15px;
        }
        
        /* Advanced Capabilities Section */
        .advanced-capabilities {
            background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
            color: var(--light-text);
        }
        
        .advanced-capabilities .section-title h2 {
            color: var(--light-text);
        }
        
        .capability-list {
            background: rgba(255, 255, 255, 0.1);
            border-radius: 10px;
            padding: 30px;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        .capability-list ul {
            list-style: none;
            padding: 0;
        }
        
        .capability-list li {
            padding: 10px 0;
            font-size: 1.1rem;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        .capability-list li:last-child {
            border-bottom: none;
        }
        
        /* Industries Section */
        .industries {
            background: var(--light);
        }
        
        .industry-item {
            text-align: center;
            padding: 20px;
            transition: var(--transition);
        }
        
        .industry-item:hover {
            transform: translateY(-5px);
        }
        
        .industry-icon {
            font-size: 2.5rem;
            margin-bottom: 15px;
            color: var(--teal);
        }
        
        /* Partnership Highlights */
        .partnership {
            background: var(--light);
        }
        
        .partnership-card {
            text-align: center;
            padding: 30px 20px;
            border-radius: 10px;
            transition: var(--transition);
            background: white;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
            height: 100%;
        }
        
        .partnership-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        }
        
        .partnership-icon {
            width: 70px;
            height: 70px;
            line-height: 70px;
            background: rgba(32, 201, 151, 0.1);
            border-radius: 50%;
            margin: 0 auto 20px;
        }
        
        .partnership-icon i {
            color: var(--teal);
            font-size: 1.8rem;
        }
        
        .partnership-card h5 {
            color: var(--navy);
            margin-bottom: 15px;
        }
        
        /* Value Proposition */
        .value-proposition {
            background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
            color: var(--light-text);
            text-align: center;
            padding: 80px 0;
        }
        
        .value-proposition h2 {
            color: var(--light-text);
            margin-bottom: 30px;
        }
        
        .value-list {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .value-list p {
            font-size: 1.2rem;
            margin-bottom: 15px;
            color: rgba(255, 255, 255, 0.9);
        }
        
        /* Engagement Models */
        .engagement {
            background: var(--light);
        }
        
        .engagement-card {
            text-align: center;
            padding: 30px 20px;
            border-radius: 10px;
            transition: var(--transition);
            background: white;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
            height: 100%;
        }
        
        .engagement-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        }
        
        .engagement-icon {
            width: 70px;
            height: 70px;
            line-height: 70px;
            background: rgba(32, 201, 151, 0.1);
            border-radius: 50%;
            margin: 0 auto 20px;
        }
        
        .engagement-icon i {
            color: var(--teal);
            font-size: 1.8rem;
        }
        
        .engagement-card h5 {
            color: var(--navy);
            margin-bottom: 15px;
        }
        
        /* CTA Section */
        .cta-section {
            background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
            color: var(--light-text);
            text-align: center;
            padding: 80px 0;
        }
        
        .cta-section h2 {
            color: var(--light-text);
            margin-bottom: 20px;
        }
        
        .cta-section p {
            max-width: 600px;
            margin: 0 auto 30px;
            font-size: 1.1rem;
            color: rgba(255, 255, 255, 0.9);
        }
        
        .button1 {
            display: inline-block;
            padding: 12px 30px;
            background: linear-gradient(90deg, var(--teal) 0%, var(--cyan) 100%);
            color: white;
            border-radius: 50px;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: var(--transition);
            border: none;
        }
        
        .button1:hover {
            background: linear-gradient(90deg, var(--teal-dark) 0%, var(--cyan) 100%);
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }
        
        /* Approach Section */
        .approach {
            background: var(--light);
        }
        
        .approach-step {
            text-align: center;
            padding: 30px 20px;
            position: relative;
        }
        
        .step-number {
            width: 60px;
            height: 60px;
            line-height: 60px;
            background: linear-gradient(135deg, var(--teal) 0%, var(--cyan) 100%);
            color: white;
            border-radius: 50%;
            margin: 0 auto 20px;
            font-weight: 700;
            font-size: 1.5rem;
        }
        
        /* Responsive Styles */
        @media (max-width: 991.98px) {
            .aws-hero {
                padding: 150px 0 80px;
            }
            
            .aws-hero h1 {
                font-size: 2.5rem;
            }
            
            .section-padding {
                padding: 80px 0;
            }
            
            .section-title h2 {
                font-size: 2rem;
            }
        }
        
        @media (max-width: 767.98px) {
            .aws-hero {
                padding: 130px 0 60px;
            }
            
            .aws-hero h1 {
                font-size: 2rem;
            }
            
            .aws-hero p {
                font-size: 1rem;
            }
            
            .section-padding {
                padding: 60px 0;
            }
        }
   