        html {
            height: 100%;
        }
        

        :root {
            --primary-color: #1a73e8;
            --primary-dark: #0d47a1;
            --secondary-color: #e53935;
            --secondary-dark: #c62828;
            --text-color: #333;
            --light-text: #757575;
            --background: #f5f7fa;
            --card-background: #ffffff;
            --transition: all 0.3s ease;
        }


        * {
            box-sizing: border-box;
        }
        
        html, body {
            font-family: 'Roboto', sans-serif;
            background: var(--background);
            color: var(--text-color);
            line-height: 1.6;
            scroll-behavior: smooth;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            margin: 0;
            padding: 0;
            overflow-x: hidden;
            width: 100%;
        }
        
        .position-relative {
            width: 100%;
            overflow-x: hidden;
        }

        .main-wrapper {
        flex: 1;
        display: flex;
        flex-direction: column;
        }
        
        .header {
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
            color: white;
            width: 100%;
            position: relative;
        }
        
        .navbar {
            padding: 10px 0;
            width: 100%;
            position: sticky !important;
            top: 0;
            z-index: 1030;
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
        }
        
        .container-fluid {
            padding-left: 15px;
            padding-right: 15px;
            max-width: 100%;
        }
        
        .navbar-brand {
            display: flex;
            align-items: center;
            transition: var(--transition);
        }
        
        .navbar-brand:hover {
            transform: scale(1.05);
        }
        
        .logo-image {
            height: 70px;
            transition: var(--transition);
            border: none;
            text-decoration: none;
        }
        
        .logo-text {
            font-family: 'Poppins', sans-serif;
            font-size: 30px;
            font-weight: 700;
        }
        
        .nav-link {
            font-size: 20px;
            font-weight: 500;
            cursor: pointer;
            transition: var(--transition);
            position: relative;
            padding: 0.5rem 1rem !important;
        }
        
        .nav-link:after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 50%;
            background-color: white;
            transition: width 0.3s ease, left 0.3s ease;
        }
        
        .nav-link:hover:after {
            width: 100%;
            left: 0;
        }
        
        .navbar-toggler {
            border: none;
            padding: 0.25rem 0.5rem;
        }
        
        .navbar-toggler:focus {
            box-shadow: none;
        }
        
        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        .hero {
            background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('/resources/img/550844468_1342576520567727_4323788013140669672_n.jpg');
            background-size: cover;
            background-position: center 65%;
            background-repeat: no-repeat;
            padding: 80px 0 100px 0;
            color: white;
            text-align: center;
            position: relative;
            overflow: hidden;
            min-height: 70vh;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-left: -15px;
            margin-right: -15px;
        }
        
        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at 30% 80%, rgba(26, 115, 232, 0.3) 0%, transparent 50%);
            z-index: 1;
        }
        
        .hero-content {
            position: relative;
            z-index: 2;
            margin-top: -5rem;
        }
        
        .hero-title {
            font-family: 'Poppins', sans-serif;
            font-size: 42px;
            font-weight: 700;
            margin-bottom: 16px;
            text-shadow: 0 2px 8px rgba(0,0,0,0.5);
            animation: fadeInUp 1s ease;
        }
        
        .hero-subtitle {
            font-size: 18px;
            max-width: 700px;
            margin: 0 auto 24px;
            animation: fadeInUp 1s ease 0.2s;
            animation-fill-mode: both;
            text-shadow: 0 1px 4px rgba(0,0,0,0.5);
        }
        
        .cta-button {
            background: var(--secondary-color);
            color: white;
            border: none;
            padding: 12px 28px;
            font-size: 16px;
            font-weight: 500;
            border-radius: 30px;
            cursor: pointer;
            transition: var(--transition);
            box-shadow: 0 4px 8px rgba(0,0,0,0.3);
            animation: fadeInUp 1s ease 0.4s;
            animation-fill-mode: both;
        }
        
        .cta-button:hover {
            background: var(--secondary-dark);
            transform: translateY(-3px);
            box-shadow: 0 6px 12px rgba(0,0,0,0.4);
        }
        
        .content {
            padding: 40px 0;
            flex: 1;
        }
        
        .section {
            background: var(--card-background);
            padding: 40px;
            margin-bottom: 30px;
            transition: var(--transition);
        }
        
        .section-title {
            font-family: 'Poppins', sans-serif;
            font-size: 32px;
            color: var(--primary-color);
            margin-bottom: 30px;
            display: flex;
            align-items: center;
            border-bottom: 2px solid var(--primary-color);
            padding-bottom: 15px;
        }
        
        .section-title .material-icons {
            margin-right: 15px;
            font-size: 36px;
        }
        
        .about-text {
            font-size: 20px;
            line-height: 1.7;
        }
        
        .about-text p {
            margin-bottom: 20px;
        }
        
        .about-text p:last-child {
            margin-bottom: 0;
        }
        
        .about-image-container {
            position: relative;
            overflow: hidden;
        }
        
        .about-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition);
            filter: brightness(1.05) contrast(1.05);
        }
        
        .about-image:hover {
            transform: scale(1.05);
        }
        
        .image-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(transparent, rgba(0,0,0,0.7));
            padding: 20px;
            color: white;
            font-weight: 500;
            font-size: 18px;
        }
        
        .service-card {
            background: #e8f0fe;
            padding: 30px;
            display: flex;
            align-items: center;
            transition: var(--transition);
            position: relative;
            overflow: hidden;
            height: 100%;
        }
        
        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(26, 115, 232, 0.1) 0%, rgba(26, 115, 232, 0) 100%);
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        
        .service-card:hover::before {
            opacity: 1;
        }
        
        .service-card:hover {
            transform: translateY(-5px);
        }
        
        .service-icon {
            background: var(--primary-color);
            color: white;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 20px;
            transition: var(--transition);
            position: relative;
            z-index: 1;
            flex-shrink: 0;
        }
        
        .service-icon .material-icons {
            font-size: 28px;
        }
        
        .service-card:hover .service-icon {
            background: var(--primary-dark);
            transform: scale(1.1);
        }
        
        .service-text {
            position: relative;
            z-index: 1;
        }
        
        .service-text h3 {
            font-size: 22px;
            margin-bottom: 10px;
            color: var(--primary-dark);
        }
        
        .service-text p {
            font-size: 18px;
        }
        
        .footer {
            background: var(--primary-dark);
            color: white;
            padding: 40px 0;
            margin-top: auto;
            width: 100%;
            position: relative;
            bottom: 0;
            left: 0;
            right: 0;
        }
        
        .footer-section h3 {
            margin-bottom: 20px;
            font-size: 20px;
            border-bottom: 2px solid rgba(255,255,255,0.3);
            padding-bottom: 10px;
        }
        
        .footer-links {
            display: flex;
            flex-direction: column;
            gap: 10px;

        }
        
        .footer-links a {
            color: white;
            transition: var(--transition);
            font-size: 18px;
            text-decoration: none;
        }
        
        .footer-links a:hover {
            opacity: 0.8;
            transform: translateX(3px);
        }
        
        .social-icons {
            display: flex;
            gap: 15px;
            margin-top: 20px;
            margin-bottom: 10px;

        }
        
        .social-icon {
            width: 40px;
            height: 40px;
            background: rgba(255,255,255,0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: var(--transition);
            color: white;
            text-decoration: none;

        }
        
        .social-icon:hover {
            background: rgba(255,255,255,0.3);
            transform: scale(1.1);
            color: white;
        }
        
        .social-icon:visited {
            color: white;
        }
        
        .social-icon a {
            text-decoration: none;
            color: white;
        }
        
        .blob {
            position: absolute;
            border-radius: 50%;
            filter: blur(80px);
            z-index: -1;
            opacity: 0.5;
        }
        
        .blob-1 {
            width: 300px;
            height: 300px;
            background-color: rgba(26, 115, 232, 0.3);
            top: -100px;
            right: -100px;
        }
        
        .blob-2 {
            width: 250px;
            height: 250px;
            background-color: rgba(229, 57, 53, 0.3);
            bottom: -50px;
            left: -50px;
        }
        
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 20px;
        }
        
        .gallery-item {
            position: relative;
            overflow: hidden;
            border-radius: 8px;
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
            transition: var(--transition);
            aspect-ratio: 1 / 1;
        }
        
        .gallery-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 16px rgba(0,0,0,0.2);
        }
        
        .gallery-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition);
            position: absolute;
            top: 0;
            left: 0;
        }
        
        .gallery-item:hover .gallery-image {
            transform: scale(1.05);
        }
        
        .gallery-caption {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(transparent, rgba(0,0,0,0.7));
            padding: 15px;
            color: white;
            font-weight: 500;
            z-index: 2;
        }
        
        @media (max-width: 768px) {
            .hero-title {
                font-size: 32px;
            }
            
            .hero {
                padding: 60px 0 80px 0;
                min-height: 60vh;
                background-position: center 70%;
            }
            
            .hero-content {
                margin-top: -40px;
            }
            
            .section {
                padding: 20px;
            }
            
            .section-title {
                font-size: 24px;
            }
            
            .logo-text {
                font-size: 32px;
            }
            
            .about-text {
                font-size: 16px;
            }
            
            .service-card {
                padding: 15px;
                flex-direction: column;
                text-align: center;
            }
            
            .service-icon {
                width: 60px;
                height: 60px;
                margin-right: 0;
                margin-bottom: 15px;
            }
            
            .service-icon .material-icons {
                font-size: 28px;
            }
            
            .gallery-grid {
                grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
                gap: 15px;
            }
            
            .container, .container-fluid {
                padding-left: 15px;
                padding-right: 15px;
                width: 100%;
                max-width: 100%;
            }
            
            .navbar-nav {
                text-align: center;
                padding-top: 1rem;
                width: 100%;
            }
            
            .nav-link {
                padding: 0.75rem 0 !important;
                text-align: center;
            }
            
            .hero {
                margin-left: 0;
                margin-right: 0;
                padding-left: 15px;
                padding-right: 15px;
            }
            
            .footer {
                padding: 30px 15px;
                margin-left: -15px;
                margin-right: -15px;
                margin-bottom: 0;
                bottom: 0;
                left: 0;
                right: 0;
            }
        }
