* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        :root {
            --primary: #1a73e8;
            --secondary: #0d47a1;
            --accent: #00bcd4;
            --light: #f8f9fa;
            --dark: #202124;
            --gray: #5f6368;
        }

        body {
            background-color: #f5f7fa;
            color: var(--dark);
            line-height: 1.6;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Header Styles */
        header {
            background: linear-gradient(135deg, var(--secondary), var(--primary));
            color: white;
            padding: 20px 0;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            position: sticky;
            top: 0;
            z-index: 100;
        }

        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .logo-icon {
            font-size: 2.5rem;
            color: var(--accent);
        }

        .logo-text {
            font-size: 1.8rem;
            font-weight: 700;
        }

        .logo-text span {
            color: var(--accent);
        }

        /* Navigation Tabs */
        .tabs {
            display: flex;
            gap: 10px;
        }

        .tab-btn {
            background: rgba(255, 255, 255, 0.1);
            border: none;
            color: white;
            padding: 12px 24px;
            border-radius: 30px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .tab-btn:hover {
            background: rgba(255, 255, 255, 0.2);
        }

        .tab-btn.active {
            background: var(--accent);
        }

        /* Language Switcher */
        .language-switcher {
            display: flex;
            gap: 5px;
            margin-left: 20px;
        }

        .lang-btn {
            background: rgba(255, 255, 255, 0.1);
            border: none;
            color: white;
            padding: 8px 15px;
            border-radius: 30px;
            font-size: 0.9rem;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .lang-btn:hover {
            background: rgba(255, 255, 255, 0.2);
        }

        .lang-btn.active {
            background: var(--accent);
        }

        /* Hero Section */
        .hero {
            background: linear-gradient(rgba(13, 71, 161, 0.85), rgba(13, 71, 161, 0.9)), url('photo-1532094349884-543bc11b234d.jpg');
            background-size: cover;
            background-position: center;
            color: white;
            text-align: center;
            padding: 100px 20px;
        }

        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 20px;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
        }

        .hero p {
            font-size: 1.5rem;
            max-width: 800px;
            margin: 0 auto 40px;
            opacity: 0.9;
        }

        /* Tab Content */
        .tab-content {
            display: none;
            padding: 60px 0;
        }

        .tab-content.active {
            display: block;
        }

        .section-title {
            text-align: center;
            margin-bottom: 50px;
            color: var(--secondary);
            position: relative;
        }

        .section-title:after {
            content: '';
            display: block;
            width: 80px;
            height: 4px;
            background: var(--accent);
            margin: 15px auto 0;
            border-radius: 2px;
        }

        /* About Us */
        .about-content {
            display: flex;
            gap: 40px;
            align-items: center;
        }

        .about-text {
            flex: 1;
        }

        .about-text h2 {
            color: var(--secondary);
            margin-bottom: 20px;
        }

        .about-image {
            flex: 1;
            height: 400px;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            overflow: hidden;
            position: relative;
        }

        .about-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .about-image:hover img {
            transform: scale(1.05);
        }

        /* Offer Section */
        .services {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .service-card {
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }

        .service-icon {
            height: 180px;
            background: linear-gradient(45deg, var(--primary), var(--accent));
            display: flex;
            justify-content: center;
            align-items: center;
            color: white;
            font-size: 4rem;
        }

        .service-content {
            padding: 25px;
        }

        .service-content h3 {
            color: var(--secondary);
            margin-bottom: 15px;
        }

        .service-content ul {
            padding-left: 20px;
        }

        .service-content li {
            margin-bottom: 10px;
            line-height: 1.5;
        }

        /* Contact Section */
        .contact-container {
            display: flex;
            gap: 40px;
        }

        .contact-info {
            flex: 1;
            background: white;
            padding: 40px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }

        .contact-info h3 {
            color: var(--secondary);
            margin-bottom: 25px;
        }

        .contact-details {
            margin-bottom: 30px;
        }

        .contact-item {
            display: flex;
            gap: 15px;
            margin-bottom: 20px;
            align-items: flex-start;
        }

        .contact-icon {
            color: var(--accent);
            font-size: 1.3rem;
            min-width: 24px;
        }

        .map {
            flex: 1;
            border-radius: 10px;
            display: flex;
            justify-content: center;
            align-items: center;
            color: white;
            font-weight: bold;
            font-size: 1.2rem;
            text-align: center;
            overflow: hidden;
        }

        .map iframe {
            width: 100%;
            height: 100%;
            min-height: 400px;
            border: none;
            border-radius: 10px;
        }

        /* Footer */
        footer {
            background: var(--dark);
            color: white;
            padding: 40px 0 20px;
            margin-top: 60px;
        }

        .footer-content {
            display: flex;
            justify-content: space-between;
            margin-bottom: 30px;
        }

        .footer-section {
            flex: 1;
        }

        .footer-section.quick-links {
            display: flex;
            justify-content: center;
        }

        .footer-section h3 {
            color: var(--accent);
            margin-bottom: 20px;
        }

        .social-icons {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }

        .social-icon {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            color: white;
            font-size: 1.2rem;
            transition: all 0.3s ease;
        }

        .social-icon:hover {
            background: var(--accent);
            transform: translateY(-3px);
        }

        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 0.9rem;
            opacity: 0.7;
        }

        /* Responsive Design */
        @media (max-width: 900px) {
            .about-content, .contact-container {
                flex-direction: column;
            }

            .hero h1 {
                font-size: 2.8rem;
            }

            .hero p {
                font-size: 1.2rem;
            }

            .header-content {
                flex-direction: column;
                gap: 20px;
            }

            .tabs {
                margin-top: 20px;
            }

            .language-switcher {
                margin-left: 0;
                margin-top: 15px;
            }
        }

        @media (max-width: 600px) {
            .tabs {
                flex-wrap: wrap;
                justify-content: center;
            }
            
            .hero {
                padding: 60px 20px;
            }
            
            .hero h1 {
                font-size: 2.2rem;
            }
            
            .footer-content {
                flex-direction: column;
                gap: 30px;
            }
        }
		/* Added smooth scrolling behavior */
        html {
            scroll-behavior: smooth;
        }
        
        /* Added style for active navigation items */
        .active-tab {
            position: relative;
            border-bottom: 0;
        }
        .active-tab::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 100%;
            height: 3px;
        }
        
        /* Mobile Navigation Styles */
        .menu-toggle {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.5rem;
            cursor: pointer;
        }
        
        .mobile-nav {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, #0d47a1, #1a73e8);
            z-index: 1000;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            transform: translateX(-100%);
            transition: transform 0.4s ease;
        }
        
        .mobile-nav.active {
            transform: translateX(0);
        }
        
        .mobile-nav .tabs {
            flex-direction: column;
            align-items: center;
            gap: 25px;
        }
        
        .mobile-nav .tab-btn {
            font-size: 1.5rem;
            padding: 12px 24px;
        }
        
        .mobile-nav .language-switcher {
            margin-top: 30px;
        }
        
        .mobile-nav .close-menu {
            position: absolute;
            top: 20px;
            right: 20px;
            background: none;
            border: none;
            color: white;
            font-size: 2rem;
            cursor: pointer;
        }
        
        /* Header Scroll Effect */
        header.shrink {
            padding: 10px 0;
            transition: padding 0.3s ease;
        }
        
        header.shrink .logo-text {
            font-size: 1.5rem;
            transition: font-size 0.3s ease;
        }
        
        header.shrink .tab-btn {
            padding: 8px 16px;
            transition: padding 0.3s ease;
        }
        
        /* Responsive Adjustments */
        @media (max-width: 900px) {
            .menu-toggle {
                display: block;
            }
            
            .header-content .tabs,
            .header-content .language-switcher {
                display: none;
            }
            
            .hero h1 {
                font-size: 2.2rem;
            }
            
            .hero p {
                font-size: 1.1rem;
            }
            
            .about-content {
                flex-direction: column;
            }
            
            .about-image {
                margin-top: 30px;
                height: 300px;
            }
            
            .contact-container {
                flex-direction: column;
            }
        }
        
        @media (max-width: 600px) {
            .hero {
                padding: 70px 20px;
            }
            
            .hero h1 {
                font-size: 1.8rem;
            }
            
            .services {
                grid-template-columns: 1fr;
            }
            
            .service-card {
                margin-bottom: 20px;
            }
        }