
        :root {
            --primary-cyan: #06B6D4;
            --dark-blue: #020617;
            --light-cyan: #67E8F9;
            --white: #ffffff;
            --gray-light: #f8f9fa;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            color: var(--dark-blue);
            line-height: 1.6;
        }

        /* Navbar Styles */
        .navbar {
            background: transparent !important;
            padding: 20px 0;
            transition: all 0.3s ease;
        }

        .navbar-brand {
            font-size: 1.5rem;
            font-weight: bold;
            color: var(--dark-blue) !important;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .navbar-brand i {
            color: var(--primary-cyan);
            font-size: 1.8rem;
        }

        .navbar-nav .nav-link {
            color: var(--dark-blue) !important;
            font-weight: 500;
            margin: 0 10px;
            transition: color 0.3s ease;
            position: relative;
        }

        .navbar-nav .nav-link:hover {
            color: var(--primary-cyan) !important;
        }

        .navbar-nav .nav-link::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 50%;
            width: 0;
            height: 2px;
            background: var(--primary-cyan);
            transition: all 0.3s ease;
            transform: translateX(-50%);
        }

        .navbar-nav .nav-link:hover::after {
            width: 80%;
        }

        .btn-cta {
            background: linear-gradient(135deg, var(--primary-cyan), var(--light-cyan));
            color: var(--white) !important;
            padding: 10px 25px;
            border-radius: 25px;
            border: none;
            font-weight: 600;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
        }

        .btn-cta:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 20px rgba(6, 182, 212, 0.3);
            color: var(--white) !important;
        }

        /* Hero Section */
        .hero-section {
            background: linear-gradient(135deg, rgba(6, 182, 212, 0.1), rgba(103, 232, 249, 0.1)),
                        url('https://www.tenovi.com/wp-content/uploads/2023/08/istockphoto-903752236-612x612-1.jpg') center/cover;
            min-height: 100vh;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
        }

        .hero-content {
            position: relative;
            z-index: 2;
        }

        .hero-title {
            font-size:4rem;
            font-weight: bold;
            color: #ffffff;
            margin-bottom: 20px;
            line-height: 1.2;
        }

        .hero-subtitle {
            font-size: 1.3rem;
            color: var(--dark-blue);
            margin-bottom: 30px;
            opacity: 0.9;
        }

        .btn-hero {
            background: linear-gradient(135deg, var(--primary-cyan), var(--light-cyan));
            color: var(--white);
            padding: 15px 40px;
            border-radius: 30px;
            border: none;
            font-size: 1.1rem;
            font-weight: 600;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
        }

        .btn-hero:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 30px rgba(6, 182, 212, 0.4);
            color: var(--white);
        }

        /* Section Styles */
        .section-padding {
            padding: 80px 0;
        }

        .section-title {
            font-size: 2.5rem;
            font-weight: bold;
            color: var(--dark-blue);
            margin-bottom: 15px;
        }

        .section-subtitle {
            font-size: 1.1rem;
            color: var(--primary-cyan);
            margin-bottom: 50px;
        }

        /* About Section */
        .about-image {
            width: 100%;
            height: 400px;
            object-fit: cover;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }

        .about-content {
            font-size: 1.05rem;
            line-height: 1.8;
            color: var(--dark-blue);
        }

        .btn-read-more {
            color: var(--primary-cyan);
            text-decoration: none;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            gap: 5px;
            transition: all 0.3s ease;
        }

        .btn-read-more:hover {
            color: var(--dark-blue);
            transform: translateX(5px);
        }

        /* Counter Section */
        .counter-section {
            background: linear-gradient(135deg, var(--primary-cyan), var(--light-cyan));
            padding: 60px 0;
        }

        .counter-item {
            text-align: center;
            color: var(--white);
        }

        .counter-number {
            font-size: 3rem;
            font-weight: bold;
            display: block;
            margin-bottom: 10px;
        }

        .counter-label {
            font-size: 1.1rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        /* Vision & Mission */
        .vm-card {
            background: var(--white);
            padding: 40px;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            height: 100%;
            transition: all 0.3s ease;
        }

        .vm-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
        }

        .vm-card i {
            font-size: 3rem;
            color: var(--primary-cyan);
            margin-bottom: 20px;
        }

        .vm-card h3 {
            color: var(--dark-blue);
            margin-bottom: 20px;
            font-weight: bold;
        }

        /* Feature Cards */
        .feature-card {
            background: var(--white);
            padding: 30px;
            border-radius: 15px;
            text-align: center;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            height: 100%;
        }

        .feature-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(6, 182, 212, 0.2);
        }

        .feature-card i {
            font-size: 2.5rem;
            color: var(--primary-cyan);
            margin-bottom: 20px;
        }

        .feature-card h4 {
            color: var(--dark-blue);
            margin-bottom: 15px;
            font-weight: bold;
        }

        /* Service Cards */
        .service-card {
            background: var(--gray-light);
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            height: 100%;
        }

        .service-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(6, 182, 212, 0.2);
        }

        .service-card img {
            width: 100%;
            height: 350px;
            object-fit: cover;
        }

        .service-card-body {
            padding: 30px;
        }

        .service-card-body h4 {
            color: var(--dark-blue);
            font-weight: bold;
            margin-bottom: 15px;
            font-size: 1.3rem;
        }

        .service-card-body p {
            color: var(--dark-blue);
            margin-bottom: 20px;
            line-height: 1.6;
        }

        /* Review Cards */
        .review-card {
            background: var(--white);
            padding: 30px;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
            margin-bottom: 20px;
            transition: all 0.3s ease;
        }

        .review-card:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(6, 182, 212, 0.15);
        }

        .review-stars {
            color: #ffc107;
            margin-bottom: 15px;
        }

        .review-text {
            color: var(--dark-blue);
            font-style: italic;
            margin-bottom: 20px;
            line-height: 1.6;
        }

        .review-author {
            font-weight: bold;
            color: var(--dark-blue);
            margin-bottom: 5px;
        }

        .review-location {
            color: var(--primary-cyan);
            font-size: 0.9rem;
        }

        /* FAQ Accordion */
        .accordion-button {
            background: var(--white);
            color: var(--dark-blue);
            font-weight: 600;
        }

        .accordion-button:not(.collapsed) {
            background: var(--light-cyan);
            color: var(--dark-blue);
        }

        .accordion-button:focus {
            box-shadow: none;
            border-color: var(--primary-cyan);
        }

        /* CTA Section */
        .cta-section {
            background: linear-gradient(135deg, var(--primary-cyan), var(--light-cyan));
            padding: 80px 0;
            text-align: center;
            color: var(--white);
        }

        .cta-section h2 {
            font-size: 2.5rem;
            margin-bottom: 20px;
        }

        .cta-section p {
            font-size: 1.2rem;
            margin-bottom: 30px;
            opacity: 0.9;
        }

        /* Contact Section */
        .contact-section {
            background: var(--gray-light);
        }

        .contact-info-item {
            display: flex;
            align-items: center;
            gap: 20px;
            background: var(--white);
            padding: 25px;
            border-radius: 10px;
            margin-bottom: 20px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
        }

        .contact-info-item:hover {
            transform: translateX(5px);
            box-shadow: 0 8px 25px rgba(6, 182, 212, 0.15);
        }

        .contact-info-item i {
            font-size: 2rem;
            color: var(--primary-cyan);
        }

        .contact-info-item h5 {
            color: var(--dark-blue);
            margin-bottom: 5px;
            font-weight: 600;
        }

        .contact-info-item p {
            color: var(--dark-blue);
            margin: 0;
        }

        /* Footer */
        footer {
            background: var(--dark-blue);
            color: var(--white);
            padding: 60px 0 20px;
        }

        .footer-widget h4 {
            color: var(--primary-cyan);
            margin-bottom: 20px;
            font-weight: bold;
        }

        .footer-links {
            list-style: none;
            padding: 0;
        }

        .footer-links li {
            margin-bottom: 10px;
        }

        .footer-links a {
            color: var(--white);
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .footer-links a:hover {
            color: var(--light-cyan);
            transform: translateX(5px);
            display: inline-block;
        }

        .newsletter-form {
            display: flex;
            gap: 10px;
            margin-top: 20px;
        }

        .newsletter-form input {
            flex: 1;
            padding: 10px 15px;
            border: none;
            border-radius: 25px;
            background: rgba(255, 255, 255, 0.1);
            color: var(--white);
        }

        .newsletter-form input::placeholder {
            color: rgba(255, 255, 255, 0.6);
        }

        .newsletter-form button {
            background: var(--primary-cyan);
            color: var(--white);
            border: none;
            padding: 10px 20px;
            border-radius: 25px;
            transition: all 0.3s ease;
        }

        .newsletter-form button:hover {
            background: var(--light-cyan);
            transform: translateY(-2px);
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            margin-top: 40px;
            padding-top: 20px;
            text-align: center;
        }

        .footer-bottom a {
            color: var(--light-cyan);
            text-decoration: none;
        }

        .footer-bottom a:hover {
            text-decoration: underline;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .hero-title {
                font-size: 2.5rem;
            }
            
            .section-title {
                font-size: 2rem;
            }
            
            .navbar-nav {
                background: rgba(255, 255, 255, 0.95);
                padding: 20px;
                border-radius: 10px;
                margin-top: 10px;
            }
        }
