:root {
            --primary: #00213f;
            --secondary: #0090d4;
            --accent: #00b4f2;
            --light: #f8fcff;
            --lighter: #e8f0fc;
            --white: #ffffff;
            --gray: #5a6268;
            --shadow: rgba(0, 33, 63, 0.15);
            --shadow-lg: rgba(0, 33, 63, 0.25);
            --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        body, html {
            margin: 0;
            padding: 0;
            width: 100%;
            overflow-x: hidden;
            overflow-y: auto;
            font-family: "Inter", sans-serif;
            background: var(--light);
            color: var(--primary);
            line-height: 1.8;
        }

        h1, h2, h3, h4, h5, h6 {
            font-family: "Lora", serif;
            font-weight: 700;
            color: var(--primary);
            letter-spacing: 0.3px;
        }

        .section-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 1rem;
            width: 100%;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        /* Hero Section */
        .hero-section {
            position: relative;
            min-height: 50vh;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding: 5rem 0 3rem;
            width: 100%;
        }

        .hero-section::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle, rgba(255, 255, 255, 0.2), transparent 70%);
            opacity: 0.4;
            z-index: 1;
        }

        .hero-content {
            max-width: 900px;
            width: 90%;
            margin: 0 auto;
            padding: 2rem;
            background: rgba(0, 33, 63, 0.15);
            backdrop-filter: blur(8px);
            border-radius: 24px;
            box-shadow: 0 10px 40px rgba(0, 33, 63, 0.2);
            color: var(--white);
            position: relative;
            z-index: 2;
        }

        .hero-content h1 {
            font-size: clamp(2rem, 6vw, 3.5rem);
            margin-bottom: 1rem;
            font-weight: 800;
            background: linear-gradient(135deg, var(--white), var(--accent));
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .hero-content p {
            font-size: clamp(0.9rem, 3vw, 1.2rem);
            font-weight: 400;
            margin-bottom: 1.5rem;
            opacity: 0.9;
        }

        /* Buttons */
        .btn-cta-filled,
        .btn-cta-outline {
            font-family: "Inter", sans-serif;
            font-size: clamp(0.8rem, 2.5vw, 0.95rem);
            font-weight: 600;
            padding: 0.75rem 1.5rem;
            border-radius: 50px;
            transition: var(--transition);
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            margin: 0.5rem;
            opacity: 1;
            visibility: visible;
            z-index: 2;
        }

        .btn-cta-filled {
            background: linear-gradient(90deg, var(--secondary), var(--accent));
            color: var(--white);
            border: none;
        }

        .btn-cta-filled:hover {
            background: linear-gradient(90deg, var(--accent), var(--secondary));
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(0, 144, 212, 0.3);
        }

        .btn-cta-outline {
            background: transparent;
            border: 2px solid var(--white);
            color: var(--white);
        }

        .btn-cta-outline:hover {
            background: var(--white);
            color: var(--primary);
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(0, 33, 63, 0.2);
        }

        .btn-cta-filled i,
        .btn-cta-outline i {
            margin-left: 8px;
            transition: transform 0.3s;
        }

        .btn-cta-filled:hover i,
        .btn-cta-outline:hover i {
            transform: translateX(4px);
        }

        /* Industry Overview */
        .section {
            padding: 4rem 0;
            width: 100%;
        }

        .prose {
            max-width: 896px;
            margin: 0 auto;
            font-size: clamp(0.9rem, 2.5vw, 1rem);
            font-weight: 500;
            color: var(--gray);
        }

        .prose h3 {
            font-size: clamp(1.5rem, 3vw, 1.8rem);
            margin-bottom: 1.2rem;
            position: relative;
        }

        .prose h3:hover {
            color: var(--accent);
            transform: scale(1.05);
        }

        .prose h3::after {
            content: "";
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--accent);
            transition: width 0.3s ease;
        }

        .prose h3:hover::after {
            width: 100px;
        }

        .prose p {
            margin-bottom: 1.5rem;
        }

        .divider {
            border: 0;
            border-top: 1px solid var(--lighter);
            margin: 2rem 0;
        }

        /* Key Services */
        .key-services {
            background: var(--lighter);
        }

        .section-title {
            font-size: clamp(1.8rem, 4vw, 2.5rem);
            margin-bottom: 2rem;
            text-align: center;
        }

        .section-subtitle {
            font-size: clamp(0.95rem, 2.5vw, 1.1rem);
            font-weight: 500;
            color: var(--gray);
            max-width: 768px;
            margin: 0 auto 2rem;
        }

        .service-card {
            background: var(--white);
            border: 1px solid var(--lighter);
            border-radius: 20px;
            padding: 2.5rem;
            box-shadow: 0 10px 30px var(--shadow);
            transition: var(--transition);
        }

        .service-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 15px 40px var(--shadow-lg);
        }

        .service-item {
            display: flex;
            align-items: flex-start;
            gap: 1.5rem;
        }

        .service-icon {
            font-size: 1.5rem;
            color: var(--accent);
            flex-shrink: 0;
        }

        .service-item h3 {
            font-size: clamp(1.3rem, 3vw, 1.6rem);
            margin-bottom: 0.75rem;
        }

        .service-item p {
            font-size: clamp(0.85rem, 2.2vw, 1rem);
            font-weight: 500;
            color: var(--gray);
        }

        /* Industry Details Section */
        .industry-details-section {
            padding: 4rem 0;
            background: linear-gradient(180deg, var(--white), var(--lighter));
            width: 100%;
        }

        .industry-details-section .row {
            align-items: center;
        }

        .detail-card {
            background: linear-gradient(135deg, var(--white), var(--light));
            border-radius: 20px;
            padding: 2.5rem;
            box-shadow: 0 10px 30px var(--shadow);
            margin-bottom: 2rem;
        }

        .detail-content {
            max-width: 500px;
            text-align: left;
        }

        .detail-content p {
            font-size: clamp(0.9rem, 2.5vw, 1rem);
            font-weight: 500;
            color: var(--gray);
            margin-bottom: 1.5rem;
        }

        .detail-content h3 {
            font-size: clamp(1.5rem, 3vw, 1.8rem);
            margin-bottom: 1.2rem;
        }

        .detail-content ul.no-bullets {
            padding: 0;
            margin: 0 0 1.5rem;
            list-style: none;
        }

        .detail-content ul.no-bullets li {
            font-size: clamp(0.85rem, 2.2vw, 1rem);
            color: var(--gray);
            margin-bottom: 0.5rem;
        }

        .service-image {
            width: 100%;
            max-width: 600px;
            height: auto;
            object-fit: cover;
            border-radius: 20px;
            box-shadow: 0 8px 25px var(--shadow);
            transition: var(--transition);
            display: block;
            margin: 0 auto;
        }

        .service-image:hover {
            transform: scale(1.03);
        }

        /* Case Studies */
        .case-studies {
            padding: 4rem 0;
            width: 100%;
        }

        .case-study-card {
            background: var(--white);
            border: 1px solid var(--lighter);
            border-radius: 20px;
            padding: 2.5rem;
            box-shadow: 0 10px 30px var(--shadow);
            transition: var(--transition);
        }

        .case-study-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 15px 40px var(--shadow-lg);
        }

        .case-study-icon {
            font-size: 1.5rem;
            color: var(--accent);
            margin-bottom: 1rem;
        }

        .case-study-title {
            font-size: clamp(1.3rem, 3vw, 1.6rem);
            margin-bottom: 0.75rem;
        }

        .case-study-description {
            font-size: clamp(0.85rem, 2.2vw, 1rem);
            font-weight: 500;
            color: var(--gray);
            margin-bottom: 1rem;
        }

        .learn-more {
            display: inline-flex;
            align-items: center;
            color: var(--accent);
            font-weight: 600;
            text-decoration: none;
            font-size: clamp(0.85rem, 2.2vw, 1rem);
            transition: var(--transition);
        }

        .learn-more:hover {
            color: var(--secondary);
        }

        .learn-more i {
            margin-left: 0.5rem;
            font-size: 0.75rem;
            transition: transform 0.3s;
        }

        .learn-more:hover i {
            transform: translateX(5px);
        }

        /* Other Industries */
        .other-industries {
            background: var(--lighter);
            padding: 4rem 0;
            width: 100%;
        }

        .industry-card {
            background: var(--white);
            border: 1px solid var(--lighter);
            border-radius: 20px;
            padding: 2.5rem;
            box-shadow: 0 10px 30px var(--shadow);
            transition: var(--transition);
            display: flex;
            flex-direction: column;
            height: 100%;
        }

        .industry-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 15px 40px var(--shadow-lg);
        }

        .service-title {
            font-size: clamp(1.3rem, 3vw, 1.6rem);
            margin-bottom: 0.75rem;
        }

        .service-description {
            font-size: clamp(0.85rem, 2.2vw, 1rem);
            font-weight: 500;
            color: var(--gray);
            flex-grow: 1;
        }

        /* CTA Section */
        .cta-section {
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            color: var(--white);
            padding: 5rem 0;
            text-align: center;
            position: relative;
            width: 100%;
        }

        .cta-section::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle, rgba(255, 255, 255, 0.2), transparent 70%);
            opacity: 0.4;
            z-index: 1;
        }

        .cta-section h2 {
            font-size: clamp(1.8rem, 4vw, 2.5rem);
            margin-bottom: 1.5rem;
            color: var(--white);
            position: relative;
            z-index: 2;
        }

        .cta-section p {
            font-size: clamp(0.95rem, 2.5vw, 1.1rem);
            max-width: 1000px;
            margin: 0 auto 2rem;
            opacity: 0.9;
            position: relative;
            z-index: 2;
        }

        .cta-buttons {
            display: flex;
            justify-content: center;
            gap: 1rem;
            flex-wrap: wrap;
            position: relative;
            z-index: 2;
            opacity: 1;
            visibility: visible;
        }

        /* Animation Classes */
        .gsap-animate {
            opacity: 0;
            transform: translateY(40px);
        }

        .gsap-animate.animated {
            opacity: 1;
            transform: translateY(0);
        }

        /* Responsive Design */
        @media (min-width: 1400px) {
            .section-container {
                max-width: 1400px;
                padding: 0 1rem;
            }

            .hero-content {
                padding: 2.5rem;
            }

            .hero-content h1 {
                font-size: clamp(2.5rem, 6vw, 4rem);
            }

            .hero-content p {
                font-size: clamp(1rem, 3vw, 1.3rem);
            }

            .btn-cta-filled,
            .btn-cta-outline {
                padding: 0.85rem 2rem;
                font-size: clamp(0.9rem, 2.5vw, 1rem);
                min-width: 200px;
            }
        }

        @media (max-width: 1200px) {
            .hero-section {
                padding: 4rem 0 2rem;
            }

            .section,
            .key-services,
            .case-studies,
            .other-industries,
            .industry-details-section {
                padding: 3rem 0;
            }

            .cta-section {
                padding: 4rem 0;
            }

            .hero-content {
                padding: 1.5rem;
            }

            .service-image {
                max-width: 500px;
            }
        }

        @media (max-width: 992px) {
            .hero-section {
                min-height: 45vh;
                padding: 3rem 0 2rem;
            }

            .hero-content {
                width: 100%;
                padding: 1.5rem;
            }

            .hero-content h1 {
                font-size: clamp(1.8rem, 5vw, 3rem);
            }

            .hero-content p {
                font-size: clamp(0.85rem, 2.8vw, 1.1rem);
            }

            .btn-cta-filled,
            .btn-cta-outline {
                padding: 0.7rem 1.5rem;
                font-size: clamp(0.85rem, 2.3vw, 0.95rem);
                width: 100%;
                max-width: 250px;
            }

            .section,
            .key-services,
            .case-studies,
            .other-industries,
            .industry-details-section {
                padding: 3rem 0;
            }

            .cta-section {
                padding: 3rem 0;
            }

            .section-title,
            .cta-section h2 {
                font-size: clamp(1.6rem, 3.5vw, 2.3rem);
            }

            .section-subtitle,
            .prose,
            .detail-content p,
            .cta-section p {
                font-size: clamp(0.9rem, 2.5vw, 1rem);
            }

            .prose h3,
            .detail-content h3 {
                font-size: clamp(1.4rem, 2.8vw, 1.6rem);
            }

            .service-item h3,
            .case-study-title,
            .service-title {
                font-size: clamp(1.1rem, 2.8vw, 1.4rem);
            }

            .service-item p,
            .case-study-description,
            .service-description,
            .detail-content ul.no-bullets li {
                font-size: clamp(0.8rem, 2.2vw, 0.9rem);
            }

            .service-image {
                max-width: 450px;
                max-height: 350px;
                margin-bottom: 1.5rem;
            }

            .detail-content {
                max-width: 100%;
            }

            .cta-buttons {
                flex-direction: column;
                align-items: center;
            }
        }

        @media (max-width: 768px) {
            .hero-section {
                padding: 2.5rem 0 1.5rem;
            }

            .hero-content {
                padding: 1.5rem;
            }

            .hero-content h1 {
                font-size: clamp(1.6rem, 4.5vw, 2.5rem);
            }

            .hero-content p {
                font-size: clamp(0.8rem, 2.5vw, 1rem);
            }

            .btn-cta-filled,
            .btn-cta-outline {
                padding: 0.6rem 1.5rem;
                font-size: clamp(0.8rem, 2.2vw, 0.9rem);
                max-width: 220px;
            }

            .section,
            .key-services,
            .case-studies,
            .other-industries,
            .industry-details-section {
                padding: 2.5rem 0;
            }

            .cta-section {
                padding: 2.5rem 0;
            }

            .section-title,
            .cta-section h2 {
                font-size: clamp(1.5rem, 3.2vw, 2rem);
            }

            .section-subtitle,
            .prose,
            .detail-content p,
            .cta-section p {
                font-size: clamp(0.85rem, 2.2vw, 0.95rem);
            }

            .prose h3,
            .detail-content h3 {
                font-size: clamp(1.3rem, 2.5vw, 1.5rem);
            }

            .service-item h3,
            .case-study-title,
            .service-title {
                font-size: clamp(1rem, 2.5vw, 1.3rem);
            }

            .service-item p,
            .case-study-description,
            .service-description,
            .detail-content ul.no-bullets li {
                font-size: clamp(0.75rem, 2vw, 0.85rem);
            }

            .service-image {
                max-width: 350px;
                max-height: 300px;
                margin-top: 1.5rem;
            }
        }

        @media (max-width: 576px) {
            .hero-section {
                padding: 2rem 0 1rem;
            }

            .hero-content {
                padding: 1rem;
            }

            .hero-content h1 {
                font-size: clamp(1.4rem, 4vw, 2.2rem);
            }

            .hero-content p {
                font-size: clamp(0.75rem, 2.2vw, 0.9rem);
            }

            .btn-cta-filled,
            .btn-cta-outline {
                padding: 0.5rem 1.2rem;
                font-size: clamp(0.75rem, 2vw, 0.85rem);
                max-width: 200px;
            }

            .section,
            .key-services,
            .case-studies,
            .other-industries,
            .industry-details-section {
                padding: 2rem 0;
            }

            .cta-section {
                padding: 2rem 0;
            }

            .section-title,
            .cta-section h2 {
                font-size: clamp(1.4rem, 3vw, 1.8rem);
            }

            .section-subtitle,
            .prose,
            .detail-content p,
            .cta-section p {
                font-size: clamp(0.8rem, 2vw, 0.9rem);
            }

            .prose h3,
            .detail-content h3 {
                font-size: clamp(1.2rem, 2.3vw, 1.4rem);
            }

            .service-item h3,
            .case-study-title,
            .service-title {
                font-size: clamp(0.95rem, 2.3vw, 1.2rem);
            }

            .service-item p,
            .case-study-description,
            .service-description,
            .detail-content ul.no-bullets li {
                font-size: clamp(0.7rem, 1.8vw, 0.8rem);
            }

            .service-image {
                max-width: 300px;
                max-height: 280px;
            }
        }

        @media (max-width: 320px) {
            .hero-section {
                padding: 1.5rem 0 0.8rem;
            }

            .hero-content {
                padding: 0.8rem;
            }

            .hero-content h1 {
                font-size: clamp(1.2rem, 3.8vw, 1.8rem);
            }

            .hero-content p {
                font-size: clamp(0.7rem, 2vw, 0.85rem);
            }

            .btn-cta-filled,
            .btn-cta-outline {
                padding: 0.4rem 1rem;
                font-size: clamp(0.7rem, 2vw, 0.8rem);
                max-width: 180px;
            }

            .section,
            .key-services,
            .case-studies,
            .other-industries,
            .industry-details-section {
                padding: 1.5rem 0;
            }

            .cta-section {
                padding: 1.5rem 0;
            }

            .section-title,
            .cta-section h2 {
                font-size: clamp(1.2rem, 2.8vw, 1.6rem);
            }

            .section-subtitle,
            .prose,
            .detail-content p,
            .cta-section p {
                font-size: clamp(0.75rem, 1.8vw, 0.85rem);
            }

            .prose h3,
            .detail-content h3 {
                font-size: clamp(1.1rem, 2.2vw, 1.3rem);
            }

            .service-item h3,
            .case-study-title,
            .service-title {
                font-size: clamp(0.9rem, 2.2vw, 1.1rem);
            }

            .service-item p,
            .case-study-description,
            .service-description,
            .detail-content ul.no-bullets li {
                font-size: clamp(0.65rem, 1.8vw, 0.75rem);
            }

            .service-image {
                max-width: 280px;
                max-height: 260px;
            }
        }