                :root {
            --primary-color: #3498db;
            --secondary-color: #2c3e50;
            --accent-color: #e74c3c;
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            scroll-behavior: smooth;
        }
        
        .navbar {
            background-color: var(--secondary-color);
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        
        .navbar-brand {
            font-weight: 700;
            color: white !important;
        }
        
        .nav-link {
            color: rgba(255,255,255,0.8) !important;
            font-weight: 500;
            margin: 0 5px;
        }
        
        .nav-link:hover, .nav-link.active {
            color: white !important;
        }
        
        .hero-section {
            /* background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('https://images.unsplash.com/photo-1454165804606-c3d57bc86b40?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
            background-size: cover;
            background-position: center; */
            color: white;
            padding: 150px 0;
            text-align: center;
        }
        
        .section-title {
            position: relative;
            margin-bottom: 50px;
            color: var(--secondary-color);
            text-align: center;
        }
        
        .section-title:after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background-color: var(--primary-color);
        }
        
        .service-card {
            border: none;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            transition: transform 0.3s;
            margin-bottom: 30px;
            height: 100%;
        }
        
        .service-card:hover {
            transform: translateY(-10px);
        }
        
        .service-icon {
            font-size: 2.5rem;
            color: var(--primary-color);
            margin-bottom: 20px;
        }
        
        .btn-primary {
            background-color: var(--primary-color);
            border-color: var(--primary-color);
        }
        
        .btn-primary:hover {
            background-color: #2980b9;
            border-color: #2980b9;
        }
        
        .btn-accent {
            background-color: var(--accent-color);
            border-color: var(--accent-color);
            color: white;
        }
        
        .btn-accent:hover {
            background-color: #c0392b;
            border-color: #c0392b;
            color: white;
        }
        
        .contact-info {
            background-color: #f8f9fa;
            padding: 30px;
            border-radius: 10px;
            height: 100%;
        }
        
        .contact-icon {
            font-size: 1.5rem;
            color: var(--primary-color);
            margin-right: 10px;
        }
        
        footer {
            background-color: var(--secondary-color);
            color: white;
            padding: 30px 0;
        }
        
        .back-to-top {
            position: fixed;
            bottom: 20px;
            right: 20px;
            width: 50px;
            height: 50px;
            background-color: var(--primary-color);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            z-index: 99;
            opacity: 0;
            transition: opacity 0.3s;
        }
        
        .back-to-top.active {
            opacity: 1;
        }
        
        /* Team Section */
        .team-card {
            border: none;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            transition: transform 0.3s;
            margin-bottom: 30px;
        }
        
        .team-card:hover {
            transform: translateY(-10px);
        }
        
        .team-social {
            position: absolute;
            bottom: -50px;
            left: 0;
            right: 0;
            background-color: var(--primary-color);
            padding: 15px;
            transition: bottom 0.3s;
        }
        
        .team-card:hover .team-social {
            bottom: 0;
        }
        
        /* Testimonials */
        .testimonial-card {
            border: none;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            padding: 30px;
            margin: 15px;
            height: 100%;
        }
        
        .testimonial-img {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            object-fit: cover;
            margin: 0 auto 20px;
            border: 3px solid var(--primary-color);
        }
        
        /* Values Section */
        .value-card {
            text-align: center;
            padding: 30px 20px;
            border-radius: 10px;
            background-color: #f8f9fa;
            height: 100%;
            transition: transform 0.3s;
        }
        
        .value-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        }
        
        .value-icon {
            font-size: 2.5rem;
            color: var(--primary-color);
            margin-bottom: 20px;
        }
        
        /* Mission & Vision */
        .mission-vision {
            background: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.8)), url('https://images.unsplash.com/photo-1450101499163-c8848c66ca85?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
            background-size: cover;
            background-position: center;
            color: white;
            padding: 100px 0;
            position: relative;
        }
        
        .mission-vision .section-title {
            color: white;
        }
        
        .mission-vision .section-title:after {
            background-color: white;
        }
        
        /* Google Maps */
        .map-container {
            height: 400px;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        
        /* Carousel */
        .carousel-item img {
            height: 500px;
            object-fit: cover;
        }
        
        .carousel-caption {
            background-color: rgba(0,0,0,0.7);
            padding: 20px;
            border-radius: 10px;
        }
        .lilita-one-regular {
            font-family: "Lilita One", sans-serif;
            font-weight: 400;
            font-style: normal;
        }
        .lilita-one-regular-cart {
            font-family: "Lilita One", sans-serif;
            font-style: normal;
        }
        .rowdies-light {
            font-family: "Rowdies", sans-serif;
            font-weight: 300;
            font-style: normal;
        }

        .rowdies-regular {
            font-family: "Rowdies", sans-serif;
            font-weight: 400;
            font-style: normal;
        }

        .rowdies-bold {
            font-family: "Rowdies", sans-serif;
            font-weight: 700;
            font-style: normal;
        }
        .text-border {
            border: 2px solid white;
            padding: 5px;
            display: inline-block;
        }
        .text-shadow-border {
            color: transparent;
            font-size: 2.5rem;
            text-shadow: -1px -1px 0 , 1px -1px 0, -1px 1px 0 rgb(214, 142, 7), 1px 4px 0 #f7f7f8;
            font-weight: 700;
        }
        .box-border {
            border: 2px solid #d3e1f0;
            box-shadow: 2 6px 6px rgb(231, 223, 223);
        }
        .text-info-emphasis {
            color: #0d6efd;
            font-weight: 700;
        }
        .text-primary-emphasis {
            color: #0d6efd;
            font-weight: 700;
        }
        .text-secondary-emphasis {
            color: #6c757d;
            font-weight: 700;
        }
