/* --- General Styles --- */
        :root {
            --primary-color: #16a085; /* Teal color */
            --dark-bg: #0A3439;
            --light-bg: #f4f4f4;
            --text-color-dark: #212121;
            --text-color-light: #f1f1f1;
            --text-color-medium: #666;
        }

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

        body {
            font-family: 'Roboto', sans-serif;
            line-height: 1.8;
            color: var(--text-color-dark);
            font-weight: 300;
        }

        .container {
            max-width: 1200px;
            margin: 40px auto;
            overflow: hidden;
            padding: 0 100px;
        }

        section {
            padding: 80px 0;
        }

        h2 {
            font-family: "Bitter", serif;
            font-size: 32px;
            color: var(--primary-color);
            text-transform: uppercase;
            text-align: center;
            margin-bottom: 30px;
            font-weight: 400;
        }

        p {
            font-size: 16px;
            color: var(--text-color-medium);
            margin-bottom:12px;
        }
        
        /* --- Header --- */
        header {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            padding: 20px;
            z-index: 10;
        }

        header>.container, footer>.container{
            margin:0px auto
        }
        
        

        /* --- Hero Section --- */
        .hero {
            background-image: linear-gradient( 135deg, #0A3439 10%, #16a085 100%); /*linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('https://images.unsplash.com/photo-1547202878-2f161e1564f9?ixlib=rb-4.0.3&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=1770&q=80') no-repeat center center/cover;
 */         height: 100vh;
            display: flex;
            justify-content: center;
            align-items: center;
            text-align: center;
            color: white;
            
        }
        .hero .container{
            max-width: 1200px;
            position:relative;
        }

        .hero-content h1 {
            font-size: 60px;
            font-weight: 300;
            line-height: 1.2;
            margin-bottom:20px;
            text-transform: capitalize;
            /* Create the outline effect */
            color: transparent;
            -webkit-text-stroke: 1px white;
            text-stroke: 1px white;
        }

        .hero-content p {
            font-size:18px;
            font-weight: 100;
            line-height: 1.8;
            /* Create the outline effect */
            color: #ffffff;
        }

        /* --- About Section --- */
        #about .container {
            display: flex;
            align-items: center;
            gap: 40px;
        }

        #about .about-text {
            flex: 1;
        }

        #about .about-image {
            flex: 1;
        }

        #about img {
            width: 100%;
            height: auto;
            border-radius: 5px;
        }
        
        /* --- Mission Section --- */
        #mission {
            background: var(--light-bg);
        }

        #mission .container {
            max-width: 1200px;
            text-align: center;
        }
        
        /* --- Services Section --- */
        #services {
            background: var(--primary-color);
            color: var(--text-color-light);
        }

        #services h2 {
            color: white;
            margin-bottom: 4px;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            margin-top: 50px;
            text-align: left;
        }

        .service-item {
            position: relative;
        }

        .service-item .icon {
            width: 60px;
            height: 60px;
            background: rgba(255, 255, 255, 0.8);
            margin-bottom: 20px;
        }

        .service-item h3 {
            font-size: 24px;
            margin-bottom: 15px;
            font-weight: 600;
            line-height: 1.2;
        }
        
        .service-item p {
            color: rgba(255, 255, 255, 0.9);
            font-size: 15px;
        }

        .service-number {
            position: absolute;
            left: -25px;
            top: -50px;
            font-size: 100px;
            font-weight: 600;
            color: rgba(255, 255, 255, 0.2);
            z-index: 1;
        }
        
        /* --- Clients Section --- */
        .clients-grid {
            display: flex;
            justify-content: space-around;
            align-items: center;
            flex-wrap: wrap;
            gap: 20px;
            margin-top: 40px;
        }

        .client-logo {
            max-height: 100px;
            max-width: 200px;
            filter: grayscale(0%);
            opacity: 0.7;
            transition: all 0.3s ease;
        }
        
        .client-logo:hover {
            filter: grayscale(100%);
            opacity: 1;
            transform: scale(1.1);
        }

        /* --- Testimonials Section --- */
        #testimonials {
            background: var(--dark-bg);
            color: var(--text-color-light);
            text-align: center;
        }

        #testimonials .container {
            max-width: 1200px;
            position: relative;
        }
        
        #testimonials h2 {
           color: white;
        }

        .testimonial-content::before {
            content: '“';
            font-size: 200px;
            color: rgba(255, 255, 255, 0.05);
            position: absolute;
            top: -50px;
            left: 50%;
            transform: translateX(-50%);
            font-family: serif;
        }

        #testimonials p {
            font-size: 18px;
            color: var(--text-color-light);
            position: relative;
            z-index: 2;
        }
        
        .testimonial-nav {
            margin-top: 30px;
        }
        
        .testimonial-nav span {
            font-size: 30px;
            cursor: pointer;
            padding: 0 10px;
        }
        
        /* --- Footer --- */
        footer {
            background: var(--dark-bg);
            text-align: center;
            padding: 40px 0;
            color: var(--text-color-light);
        }

        footer h3 {
            font-size: 20px;
            color: var(--text-color-light);
            margin-bottom: 10px;
        }

        footer p {
            font-size: 14px;
            margin-bottom: 2px;
            color: var(--text-color-light)
        }

        /* --- Responsive Design --- */
        @media(max-width: 768px) {
            .hero-content h1 {
                font-size: 48px;
            }

            #about .container {
                flex-direction: column;
                text-align: center;
            }

            .services-grid {
                grid-template-columns: 1fr;
                text-align: center;
            }
            
            .service-item .icon {
                margin: 0 auto 20px auto;
            }

            .service-number {
                display: none;
            }
        }