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

        :root {
            --primary: #0052CC;
            --secondary: #00C7E6;
            --dark: #0A1628;
            --grey: #556B82;
            --light: #F7F9FC;
            --white: #FFFFFF;
            --accent: #00D9FF;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
            line-height: 1.6;
            color: var(--dark);
            background: var(--white);
        }

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}


        /* Skip link for accessibility */
        .skip-link {
            position: absolute;
            top: -40px;
            left: 0;
            background: var(--primary);
            color: white;
            padding: 8px 16px;
            text-decoration: none;
            font-weight: 700;
            z-index: 9999;
            border-radius: 0 0 4px 0;
        }

        .skip-link:focus {
            top: 0;
        }

        /* Hexagon Decorative Elements */
        .hex-accent {
            position: absolute;
            width: 100px;
            height: 100px;
            opacity: 0.03;
            pointer-events: none;
        }

        .hex-accent svg {
            width: 100%;
            height: 100%;
        }

        /* Logo - Clean and Professional */
        .logo {
            display: flex;
            align-items: center;
            gap: 16px;
            text-decoration: none;
        }

        .logo-icon {
            width: 64px;
            height: 64px;
            position: relative;
        }

        .logo-icon svg {
            width: 100%;
            height: 100%;
        }

        .logo-text {
            display: flex;
            flex-direction: column;
        }

        .logo-name {
            font-size: 22px;
            font-weight: 700;
            color: var(--dark);
            letter-spacing: -0.5px;
        }

        .logo-tagline {
            font-size: 11px;
            color: var(--grey);
            text-transform: uppercase;
            letter-spacing: 1.2px;
            font-weight: 500;
        }
		
		img {
    max-width: 100%;
    height: auto;
    display: block;
}
.about-image img,
.section-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}



        /* Navigation */
        nav {
            background: var(--white);
            padding: 16px 0;
            box-shadow: 0 1px 3px rgba(0,0,0,0.05);
            position: sticky;
            top: 0;
            z-index: 1000;
        }

        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 10px 50px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .nav-links {
            display: flex;
            gap: 30px;
            list-style: none;
        }

        .nav-links a {
            text-decoration: none;
            color: var(--dark);
            font-weight: 600;
            font-size: 15px;
            transition: color 0.3s;
            position: relative;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -6px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--primary);
            transition: width 0.3s;
        }

        .nav-links a:hover {
            color: var(--primary);
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        /* Hero Section */
        .hero {
            background: linear-gradient(135deg, #0A1628 0%, #1a2847 100%);
            background-image: 
                linear-gradient(135deg, rgba(10, 22, 40, 0.85) 0%, rgba(26, 40, 71, 0.85) 100%),
                url('images/sport_stadium1.jfif');
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            background-attachment: fixed;
            color: white;
            padding: 100px 60px;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: -10%;
            right: -5%;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(0,82,204,0.15) 0%, transparent 70%);
        }

        .hero-hex-1 {
            position: absolute;
            top: 10%;
            left: 5%;
            width: 200px;
            height: 200px;
            opacity: 0.03;
        }

        .hero-hex-2 {
            position: absolute;
            bottom: 15%;
            right: 10%;
            width: 150px;
            height: 150px;
            opacity: 0.05;
        }

        .hero-container {
            max-width: 1400px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        .hero-content {
            max-width: 800px;
        }

        .hero-label {
            display: inline-block;
            padding: 8px 20px;
            background: rgba(0,199,230,0.15);
            color: var(--secondary);
            border-radius: 30px;
            font-size: 13px;
            font-weight: 700;
            margin-bottom: 24px;
            text-transform: uppercase;
            letter-spacing: 1px;
            border: 1px solid rgba(0,199,230,0.3);
        }




        .hero h1 {
			font-size: clamp(1.8rem, 6vw, 2.6rem);
            font-size: 64px;
            font-weight: 800;
            line-height: 1.15;
            margin-bottom: 24px;
            letter-spacing: -1.5px;
        }

        .hero h1 .highlight {
            color: var(--secondary);
        }

        .hero .subtitle {
            font-size: 24px;
            color: rgba(255,255,255,0.9);
            margin-bottom: 16px;
            font-weight: 600;
        }

        .hero p {
            font-size: 18px;
            color: rgba(255,255,255,0.75);
            line-height: 1.8;
            margin-bottom: 40px;
            max-width: 700px;
        }

        .hero-buttons {
            display: flex;
            gap: 20px;
        }

        .btn {
            padding: 16px 36px;
            border-radius: 6px;
            font-weight: 700;
            text-decoration: none;
            transition: all 0.3s;
            border: none;
            cursor: pointer;
            font-size: 15px;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        .btn-primary {
            background: var(--primary);
            color: white;
        }

        .btn-primary:hover {
            background: #003d99;
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(0,82,204,0.3);
        }

        .btn-secondary {
            background: transparent;
            color: white;
            border: 2px solid rgba(255,255,255,0.3);
        }

        .btn-secondary:hover {
            background: rgba(255,255,255,0.1);
            border-color: white;
        }

        .btn-arrow {
            font-size: 18px;
        }

        /* Trust Badges */
        .trust-section {
            padding: 60px 60px;
            background: var(--light);
            text-align: center;
        }

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

        .trust-text {
            font-size: 14px;
            color: var(--grey);
            margin-bottom: 32px;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            font-weight: 600;
        }

        .trust-stats {
            display: flex;
            justify-content: center;
            gap: 80px;
        }

        .stat-item {
            text-align: center;
        }

        .stat-number {
            font-size: 48px;
            font-weight: 800;
            color: var(--primary);
            line-height: 1;
            margin-bottom: 8px;
        }

        .stat-label {
            font-size: 14px;
            color: var(--grey);
            text-transform: uppercase;
            letter-spacing: 1px;
            font-weight: 600;
        }

        /* Services Section */
        .services {
            padding: 120px 60px;
            max-width: 1400px;
            margin: 0 auto;
            position: relative;
        }

        .section-header {
            max-width: 800px;
            margin: 0 auto 80px;
            text-align: center;
        }

        .section-label {
            display: inline-block;
            font-size: 13px;
            color: var(--primary);
            font-weight: 700;
            margin-bottom: 16px;
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        .section-header h2 {
            font-size: 48px;
            font-weight: 800;
            margin-bottom: 20px;
            color: var(--dark);
            letter-spacing: -1px;
        }

        .section-header p {
            font-size: 18px;
            color: var(--grey);
            line-height: 1.7;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 40px;
        }

        .service-card {
            background: var(--white);
            padding: 48px 40px;
            border: 1px solid #E8EEF3;
            transition: all 0.3s;
            position: relative;
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 0;
            height: 3px;
            background: var(--primary);
            transition: width 0.3s;
        }

        .service-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 50px rgba(0,0,0,0.08);
        }

        .service-card:hover::before {
            width: 100%;
        }

        .service-letter {
            width: 60px;
            height: 60px;
            background: var(--primary);
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
            font-weight: 800;
            margin-bottom: 28px;
            clip-path: polygon(30% 0%, 70% 0%, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0% 70%, 0% 30%);
        }

        .service-card:nth-child(2) .service-letter {
            background: var(--secondary);
        }

        .service-card:nth-child(3) .service-letter {
            background: var(--accent);
        }

        .service-card h3 {
            font-size: 26px;
            font-weight: 700;
            margin-bottom: 16px;
            color: var(--dark);
        }

        .service-card > p {
            color: var(--grey);
            line-height: 1.8;
            margin-bottom: 28px;
            font-size: 16px;
        }

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

        .service-list li {
            padding: 10px 0;
            color: var(--grey);
            font-size: 15px;
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .service-list li::before {
            content: '→';
            color: var(--primary);
            font-weight: bold;
            font-size: 18px;
        }

        /* About Section */
        .about {
            padding: 120px 60px;
            background: var(--light);
            position: relative;
        }

        .about-container {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 100px;
            align-items: center;
        }

        .about-content .section-label {
            color: var(--primary);
        }

        .about-content h2 {
            font-size: 48px;
            font-weight: 800;
            margin-bottom: 28px;
            color: var(--dark);
            letter-spacing: -1px;
        }

        .about-content p {
            font-size: 17px;
            line-height: 1.8;
            color: var(--grey);
            margin-bottom: 20px;
        }

        .about-image {
            background: var(--white);  /* White background instead of gray */
            height: 400px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 16px;
            color: #8899A6;
            border: 1px solid #E8EEF3;
            position: relative;
            overflow: hidden;
        }

        .about-image img {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: contain;  /* ← Changed from 'cover' to 'contain' - shows full image */
            object-position: center;
            display: block;
        }

        /* Portfolio Section */
        .portfolio {
            padding: 120px 60px;
            max-width: 1400px;
            margin: 0 auto;
        }

       .portfolio-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}
        .portfolio-item {
            background: var(--white);
            border: 1px solid #E8EEF3;
            transition: all 0.3s;
            position: relative;
            overflow: hidden;
        }

        .portfolio-item:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 50px rgba(0,0,0,0.08);
        }

        .portfolio-image {
            height: 280px;
            background: var(--white);  /* White background instead of gray */
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 14px;
            color: #8899A6;
            border-bottom: 1px solid #E8EEF3;
            position: relative;
            overflow: hidden;
        }

        .portfolio-image img {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: contain;  /* ← Changed from 'cover' to 'contain' - shows full image */
            object-position: center;
            display: block;
            z-index: 1;
        }

        .portfolio-letter {
            position: absolute;
            top: 24px;
            left: 24px;
            width: 48px;
            height: 48px;
            background: var(--primary);
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            font-weight: 800;
            clip-path: polygon(30% 0%, 70% 0%, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0% 70%, 0% 30%);
            z-index: 2;
        }

        .portfolio-content {
            padding: 32px 28px;
        }

        .portfolio-content h3 {
            font-size: 20px;
            font-weight: 700;
            margin-bottom: 12px;
            color: var(--dark);
        }

        .portfolio-content p {
            color: var(--grey);
            line-height: 1.7;
            font-size: 15px;
            margin-bottom: 16px;
        }

        .portfolio-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin-top: 16px;
        }

        .portfolio-tag {
            font-size: 11px;
            color: var(--grey);
            background: var(--light);
            padding: 4px 12px;
            border-radius: 3px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .view-link {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            color: var(--primary);
            font-weight: 700;
            font-size: 14px;
            text-decoration: none;
            margin-top: 12px;
            transition: gap 0.3s;
        }

        .view-link:hover {
            gap: 10px;
        }

        /* Contact Section */
        .contact {
            padding: 120px 60px;
            background: var(--dark);
            color: white;
            position: relative;
            overflow: hidden;
        }

        .contact::before {
            content: '';
            position: absolute;
            top: -20%;
            right: -10%;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(0,82,204,0.2) 0%, transparent 70%);
        }

        .contact-container {
            max-width: 900px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        .contact-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .contact-header .section-label {
            color: var(--secondary);
        }

        .contact-header h2 {
            font-size: 48px;
            font-weight: 800;
            margin-bottom: 20px;
            letter-spacing: -1px;
        }

        .contact-header p {
            font-size: 18px;
            color: rgba(255,255,255,0.75);
            line-height: 1.7;
        }

        .contact-form {
            background: rgba(255,255,255,0.05);
            padding: 60px;
            border: 1px solid rgba(255,255,255,0.1);
            backdrop-filter: blur(10px);
        }

        .form-message {
            padding: 20px;
            border-radius: 8px;
            margin-bottom: 24px;
            font-size: 16px;
            font-weight: 600;
            text-align: center;
            display: none;
        }

        .form-message.success {
            background: rgba(67, 233, 123, 0.15);
            border: 2px solid #43e97b;
            color: #43e97b;
            display: block;
        }

        .form-message.error {
            background: rgba(255, 51, 102, 0.15);
            border: 2px solid #FF3366;
            color: #FF3366;
            display: block;
        }

        .honeypot {
            position: absolute;
            left: -9999px;
            width: 1px;
            height: 1px;
            opacity: 0;
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 24px;
            margin-bottom: 24px;
        }

        .form-group {
            margin-bottom: 24px;
        }

        .form-group label {
            display: block;
            font-weight: 700;
            margin-bottom: 12px;
            color: white;
            font-size: 14px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 16px 20px;
            border: 1px solid rgba(255,255,255,0.2);
            background: rgba(255,255,255,0.05);
            border-radius: 4px;
            font-size: 16px;
            font-family: inherit;
            transition: all 0.3s;
            color: white;
        }

        .form-group input::placeholder,
        .form-group textarea::placeholder {
            color: rgba(255,255,255,0.4);
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--primary);
            background: rgba(255,255,255,0.08);
        }

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

        .btn-submit {
            width: 100%;
            padding: 18px;
            background: var(--primary);
            color: white;
            border: none;
            border-radius: 4px;
            font-size: 16px;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .btn-submit:hover {
            background: #003d99;
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(0,82,204,0.4);
        }

        /* Footer */
        footer {
            background: #050b15;
            color: rgba(255,255,255,0.6);
            padding: 60px 60px 40px;
        }

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

        .footer-content {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 60px;
            margin-bottom: 40px;
        }

        .footer-brand h3 {
            color: white;
            font-size: 20px;
            margin-bottom: 16px;
            font-weight: 700;
        }

        .footer-brand p {
            font-size: 14px;
            line-height: 1.8;
            color: rgba(255,255,255,0.5);
        }

        .footer-section h4 {
            color: white;
            font-size: 14px;
            margin-bottom: 16px;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-weight: 700;
        }

        .footer-section ul {
            list-style: none;
        }

        .footer-section ul li {
            margin-bottom: 10px;
        }

        .footer-section ul li a {
            color: rgba(255,255,255,0.6);
            text-decoration: none;
            font-size: 14px;
            transition: color 0.3s;
        }

        .footer-section ul li a:hover {
            color: var(--secondary);
        }

        .footer-bottom {
            padding-top: 32px;
            border-top: 1px solid rgba(255,255,255,0.1);
            text-align: center;
            font-size: 13px;
        }

        /* Why Transform Section */
        .why-transform {
            padding: 100px 60px;
            background: white;
            max-width: 1400px;
            margin: 0 auto;
        }

        .why-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .why-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .why-header .section-label {
            color: var(--primary);
        }

        .why-header h2 {
            font-size: 48px;
            font-weight: 800;
            margin-bottom: 20px;
            color: var(--dark);
            letter-spacing: -1px;
        }

        .why-header p {
            font-size: 18px;
            color: var(--grey);
            max-width: 700px;
            margin: 0 auto;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 32px;
            margin-bottom: 60px;
        }

        .stat-card {
            background: var(--light);
            padding: 40px;
            border-left: 4px solid var(--primary);
            transition: all 0.3s;
        }

        .stat-card:hover {
            transform: translateX(8px);
            box-shadow: 0 8px 30px rgba(0,82,204,0.1);
        }

        .stat-big {
            font-size: 56px;
            font-weight: 900;
            color: var(--primary);
            margin-bottom: 16px;
            line-height: 1;
        }

        .stat-desc {
            font-size: 16px;
            color: var(--grey);
            line-height: 1.6;
        }

        .why-cta {
            text-align: center;
            padding: 48px;
            background: linear-gradient(135deg, var(--primary), #003d99);
            border-radius: 8px;
            color: white;
        }

        .why-cta p {
            font-size: 20px;
            margin-bottom: 24px;
            font-weight: 600;
        }

        .why-cta .btn {
            background: white;
            color: var(--primary);
        }

        .why-cta .btn:hover {
            background: rgba(255,255,255,0.9);
            transform: translateY(-2px);
        }

        /* Responsive */
        @media (max-width: 1200px) {
            .services-grid {
                grid-template-columns: 1fr;
            }

            .portfolio-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .stats-grid {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 1024px) {
            .about-container {
                grid-template-columns: 1fr;
            }

            .portfolio-grid {
                grid-template-columns: 1fr;
            }

            .footer-content {
                grid-template-columns: 1fr 1fr;
                gap: 40px;
            }

            .about-image {
                height: 400px;
                width: 100%;
            }

            .portfolio-image {
                height: 280px;
            }
        }

        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }

            .hero,
            .services,
            .about,
            .portfolio,
            .contact,
            .trust-section,
            .why-transform {
                padding: 40px 20px;
            }

            .nav-container {
                padding: 5 20px;
            }

            .hero h1 {
                font-size: 40px;
            }

            .hero {
                background-attachment: scroll; /* Remove parallax on mobile for performance */
            }

            .section-header h2,
            .about-content h2,
            .contact-header h2,
            .why-header h2 {
                font-size: 36px;
            }

            .form-row {
                grid-template-columns: 1fr;
            }

            .contact-form {
                padding: 40px 30px;
            }

            .trust-stats {
                flex-direction: column;
                gap: 32px;
            }

            .footer-content {
                grid-template-columns: 1fr;
                gap: 24px;
            }

            .stats-grid {
                grid-template-columns: 1fr;
            }

            .stat-big {
                font-size: 48px;
            }

            .why-cta {
                padding: 32px 24px;
            }

            .why-cta p {
                font-size: 18px;
            }

            .about-image {
                height: 200px;
            }

            .portfolio-image {
            }

            .portfolio-image img,
            .about-image img {
                width: 100%;
                height: 100%;
                object-fit: cover;
            }
        }
@media (max-width: 900px) {
    .services-grid,
    .portfolio-grid,
    .stats-grid {
        grid-template-columns: 1fr;
    }
}

/* --- FINAL FIX: STOP ALL HORIZONTAL SCROLLING --- */

/* Prevent any element from exceeding viewport width */
html, body {
    overflow-x: hidden !important;
    width: 100% !important;
}

/* Fix nav overflow */
.nav-container {
    padding-left: 16px !important;
    padding-right: 16px !important;
}

/* Fix hero parallax overflow */
.hero {
    background-attachment: scroll !important;
}

/* Fix hexagon SVG overflow */
.hero-hex-1,
.hero-hex-2 {
    position: absolute;
    max-width: 100% !important;
    overflow: hidden !important;
    left: 0 !important;
    right: 0 !important;
    margin: 0 auto !important;
}

/* Ensure no child element forces overflow */
* {
    max-width: 100% !important;
    box-sizing: border-box;
}

/* Fix hero button overflow on mobile */
.hero-buttons {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 12px;
}

.hero-buttons .btn {
    width: 100%;
    text-align: center;
}

/* On larger screens, return to side-by-side */
@media (min-width: 600px) {
    .hero-buttons {
        flex-direction: row;
        width: auto;
    }

    .hero-buttons .btn {
        width: auto;
    }
}

/* --- FINAL FIX FOR HERO BUTTON OVERFLOW --- */

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

.hero-buttons .btn {
    width: 100%;
    max-width: 100%;
    text-align: center;
    white-space: normal; /* Prevents long text from forcing overflow */
}

/* On larger screens, return to side-by-side */
@media (min-width: 700px) {
    .hero-buttons {
        flex-direction: row;
        justify-content: flex-start;
        width: auto;
    }

    .hero-buttons .btn {
        width: auto;
        white-space: nowrap;
    }
}
/* Fix Services section horizontal overflow */
@media (max-width: 600px) {
    .services-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
        width: 100% !important;
        overflow-x: hidden !important;
    }

    .service-card {
        padding: 24px 16px !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }
}
/* Fix nav horizontal overflow */
.nav-container {
    padding-left: 16px !important;
    padding-right: 16px !important;
    max-width: 100% !important;
    overflow-x: hidden !important;
}
