
        /* Global Styles */
        body {
            font-family: 'Helvetica Neue', sans-serif;
            margin: 0;
            padding: 0;
            background-color: #f5f5f5;
            color: #333;
            overflow-x: hidden;
        }

        /* Navigation */
        nav {
            background-color: #004d40; /* Dark Teal */
            padding: 15px;
            position: sticky;
            top: 0;
            z-index: 1000;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        nav .logo {
            color: #ffffff;
            font-size: 26px;
            font-weight: bold;
            text-decoration: none;
            display: flex;
            align-items: center;
            animation: fadeInLeft 1s ease-in-out;
        }

        nav .logo i {
            margin-right: 10px;
        }

        nav .menu {
            display: flex;
            justify-content: center;
            align-items: center;
        }

        nav .menu a {
            color: #ffffff;
            text-decoration: none;
            margin: 0 15px;
            font-weight: bold;
            font-size: 18px;
            transition: color 0.3s ease;
            position: relative;
        }

        nav .menu a:hover {
            color: #aed581; /* Light Green */
        }

        nav .menu a::after {
            content: '';
            display: block;
            height: 2px;
            width: 0;
            background: #aed581;
            transition: width 0.3s ease;
            position: absolute;
            bottom: -5px;
            left: 50%;
            transform: translateX(-50%);
        }

        nav .menu a:hover::after {
            width: 100%;
        }

        nav .hamburger {
            display: none;
            cursor: pointer;
            font-size: 24px;
            color: #ffffff;
        }

        nav .menu.active {
            display: flex;
            flex-direction: column;
            position: absolute;
            top: 60px;
            left: 0;
            width: 100%;
            background-color: #004d40;
            text-align: center;
            animation: slideInDown 0.5s ease-in-out;
        }

        nav .menu.active a {
            margin: 10px 0;
        }

        /* Section Styles */
        section {
            padding: 80px 20px;
            text-align: center;
            position: relative;
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 1s ease, transform 1s ease;
        }

        section.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* Home Section with Slider */
        #home {
            background-color: #004d40;
            color: #ffffff;
            padding: 150px 20px;
            animation: fadeIn 1.5s ease-in-out;
            overflow: hidden;
        }

        #home .slider-container {
            max-width: 800px;
            margin: 0 auto;
            position: relative;
        }

        #home .slide {
            display: none;
            animation: slideInRight 1s ease-in-out;
        }

        #home .slide.active {
            display: block;
        }

        #home h1 {
            font-size: 48px;
            margin-bottom: 20px;
            animation: fadeInDown 1s ease-in-out;
            font-family: 'Georgia', serif;
            letter-spacing: 2px;
        }

        #home .slide h2 {
            font-size: 36px;
            margin-bottom: 15px;
            font-family: 'Georgia', serif;
        }

        #home .slide p {
            font-size: 22px;
            margin-bottom: 30px;
            line-height: 1.6;
            font-family: 'Georgia', serif;
        }

        /* About Section */
        #about {
            background-color: #ffffff;
            color: #333;
            padding: 50px 20px;
        }

        h2 {
            font-size: 36px;
            margin-bottom: 20px;
            animation: fadeIn 1.5s ease-in-out;
            font-family: 'Georgia', serif;
            color: #333;
            position: relative;
        }

        h2::before {
            content: '';
            display: block;
            width: 60px;
            height: 3px;
            background: #aed581;
            margin: 0 auto 20px;
            animation: expand 0.5s ease-in-out;
        }

        p {
            font-size: 18px;
            line-height: 1.8;
            margin-bottom: 20px;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
            animation: fadeIn 1.5s ease-in-out;
            font-family: 'Georgia', serif;
        }

        /* Services Section */
        #services {
            background-color: #333333; /* Dark Gray */
            color: #ffffff;
            padding: 50px 20px;
        }

        .service-item {
            background-color: #444444;
            padding: 20px;
            margin: 15px;
            border-radius: 10px;
            transition: transform 0.3s ease, background-color 0.3s ease;
            animation: fadeIn 1s ease-in-out;
            flex: 1;
            min-width: 280px;
            max-width: 280px;
            text-align: center;
        }

        .service-item:hover {
            transform: translateY(-10px);
            background-color: #555555;
        }

        .service-item i {
            font-size: 48px;
            color: #aed581; /* Light Green */
            margin-bottom: 15px;
            animation: bounceIn 1.5s ease-in-out;
        }

        #services .service-container {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            text-align: center;
        }

        /* Global Presence Section */
        #global {
            background-color: #ffffff;
            color: #333;
            padding: 50px 20px;
        }

        /* Contact Section */
        #contact {
            background-color: #333333;
            color: #ffffff;
            padding: 50px 20px;
        }

        #contact i {
            font-size: 24px;
            color: #aed581;
            margin-right: 10px;
            animation: bounce 1.5s ease-in-out infinite;
        }

        footer {
            background-color: #004d40;
            color: #ffffff;
            padding: 20px 0;
            text-align: center;
            font-size: 14px;
        }

        /* Keyframe Animations */
        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
            }
            to {
                opacity: 1;
            }
        }

        @keyframes slideInRight {
            from {
                opacity: 0;
                transform: translateX(-100%);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes bounce {
            0%, 20%, 50%, 80%, 100% {
                transform: translateY(0);
            }
            40% {
                transform: translateY(-10px);
            }
            60% {
                transform: translateY(-5px);
            }
        }

        @keyframes bounceIn {
            0%, 20%, 50%, 80%, 100% {
                transform: translateY(0);
            }
            40% {
                transform: translateY(-10px);
            }
            60% {
                transform: translateY(-5px);
            }
        }

        @keyframes slideInDown {
            from {
                transform: translateY(-100%);
            }
            to {
                transform: translateY(0);
            }
        }

        @keyframes expand {
            from {
                width: 0;
            }
            to {
                width: 60px;
            }
        }

        /* Responsive Styles */
        @media (max-width: 768px) {
            nav .menu {
                display: none;
                flex-direction: column;
                align-items: center;
            }

            nav .hamburger {
                display: block;
            }

            #home h1 {
                font-size: 32px;
            }

            #home p {
                font-size: 18px;
                max-width: 100%;
            }

            .service-item {
                width: 100%;
            }

            #home {
                padding: 100px 20px;
            }

            nav .menu.active {
                display: flex;
            }

            #services .service-container {
                flex-direction: column;
            }
        }
