      /* Global Styles */
        :root {
            --primary: #0056b3;
            --secondary: #ff6600;
            --dark: #333333;
            --light: #f8f9fa;
            --gray: #6c757d;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        body {
            line-height: 1.6;
            color: var(--dark);
            overflow-x: hidden;
        }
        
        img {
            max-width: 100%;
        }
        
        a {
            text-decoration: none;
            color: var(--primary);
            transition: all 0.3s ease;
        }
        
        a:hover {
            color: var(--secondary);
        }
        
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .btn {
            display: inline-block;
            padding: 12px 24px;
            background-color: var(--primary);
            color: white;
            border: none;
            border-radius: 4px;
            cursor: pointer;
            transition: all 0.3s ease;
            font-weight: 600;
            text-transform: uppercase;
            font-size: 14px;
            letter-spacing: 0.5px;
        }
        
        .btn:hover {
            background-color: var(--secondary);
            color: white;
        }
        
        .btn-secondary {
            background-color: var(--secondary);
        }
        
        .btn-secondary:hover {
            background-color: var(--primary);
        }
        
        section {
            padding: 80px 0;
        }
        
        .section-title {
            font-size: 32px;
            margin-bottom: 20px;
            color: var(--primary);
            text-align: center;
            position: relative;
            padding-bottom: 15px;
        }
        
        .section-title:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background-color: var(--secondary);
        }
        
        .text-center {
            text-align: center;
        }
        
        /* Header Styles */
        header {
            background-color: white;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }
        
        .logo {
            display: flex;
            align-items: center;
        }
        
        .logo img {
            height: 60px;
        }
        
        .logo-text {
            margin-left: 10px;
        }
        
        .logo-text h1 {
            font-size: 24px;
            color: var(--primary);
            margin-bottom: 0;
            line-height: 1.2;
        }
        
        .logo-text p {
            font-size: 14px;
            color: var(--gray);
        }
        
        .navbar ul {
            display: flex;
            list-style: none;
        }
        
        .navbar ul li {
            margin-left: 30px;
        }
        
        .navbar ul li a {
            color: var(--dark);
            font-weight: 600;
            position: relative;
        }
        
        .navbar ul li a:after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--secondary);
            transition: width 0.3s ease;
        }
        
        .navbar ul li a:hover:after,
        .navbar ul li a.active:after {
            width: 100%;
        }
        
        .navbar ul li a.active {
            color: var(--secondary);
        }
        
        .hamburger {
            display: none;
            cursor: pointer;
            font-size: 24px;
        }
        
        /* Hero Section */
        .hero {
            background-image: url('banner.jpeg');
            background-size: cover;
            background-position: center;
            color: white;
            text-align: center;
            padding: 150px 0;
            position: relative;
        }
        
        .hero-content {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .hero h1 {
            font-size: 48px;
            margin-bottom: 20px;
            font-weight: 700;
        }
        
        .hero p {
            font-size: 18px;
            margin-bottom: 30px;
        }
        
        /* Services Section */
        .services {
            background-color: var(--light);
        }
        
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }
        
        .service-card {
            background-color: white;
            border-radius: 8px;
            padding: 30px;
            text-align: center;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
        }
        
        .service-card:hover {
            transform: translateY(-10px);
        }
        
        .service-icon {
            font-size: 40px;
            color: var(--secondary);
            margin-bottom: 20px;
        }
        
        .service-card h3 {
            font-size: 22px;
            margin-bottom: 15px;
            color: var(--primary);
        }
        
        /* About Section */
        .about container {
            background-image: url('banner.jpeg');
            background-size: cover;
            background-position: center;
            color: white;
            text-align: center;
            padding: 150px 0;
            position: relative;
        }
        
        .about-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            align-items: center;
        }
        
        .about-image img {
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        
        .about-content h2 {
            font-size: 32px;
            margin-bottom: 20px;
            color: var(--primary);
        }
        
        .about-content p {
            margin-bottom: 20px;
        }
        
        .about-features {
            margin-top: 30px;
        }
        
        .feature-item {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
        }
        
        .feature-icon {
            color: var(--secondary);
            font-size: 20px;
            margin-right: 15px;
        }
        
        /* Why Choose Us Section */
        .why-us {
            background-color: var(--light);
        }
        
        .why-us-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }
        
        .why-us-card {
            background-color: white;
            border-radius: 8px;
            padding: 30px;
            text-align: center;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        
        .why-us-icon {
            font-size: 36px;
            color: var(--secondary);
            margin-bottom: 20px;
        }
        
        .why-us-card h3 {
            font-size: 20px;
            margin-bottom: 15px;
            color: var(--primary);
        }
        
        /* Contact Section */
        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
        }
        
        .contact-info {
            background-color: var(--primary);
            color: white;
            padding: 40px;
            border-radius: 8px;
        }
        
        .contact-info h3 {
            font-size: 24px;
            margin-bottom: 20px;
        }
        
        .contact-item {
            display: flex;
            margin-bottom: 20px;
            align-items: flex-start;
        }
        
        .contact-icon {
            font-size: 20px;
            margin-right: 15px;
            color: var(--secondary);
        }
        
        .contact-details h4 {
            font-size: 18px;
            margin-bottom: 5px;
        }
        
        .contact-form {
            background-color: white;
            padding: 40px;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        
        .contact-form h3 {
            font-size: 24px;
            margin-bottom: 20px;
            color: var(--primary);
        }
        
        .form-group {
            margin-bottom: 20px;
        }
        
        .form-control {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid #ddd;
            border-radius: 4px;
            font-size: 16px;
        }
        
        .form-control:focus {
            outline: none;
            border-color: var(--primary);
        }
        
        textarea.form-control {
            height: 150px;
            resize: vertical;
        }
        
        /* Map Section */
        .map-section {
            padding: 0;
        }
        
        .map-container {
            height: 400px;
            width: 100%;
        }
        
        /* Footer */
        footer {
            background-color: var(--dark);
            color: white;
            padding: 60px 0 30px;
        }
        
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        
        .footer-column h3 {
            font-size: 20px;
            margin-bottom: 20px;
            color: var(--secondary);
        }
        
        .footer-links {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 10px;
        }
        
        .footer-links a {
            color: #ddd;
        }
        
        .footer-links a:hover {
            color: var(--secondary);
        }
        
        .footer-bottom {
            border-top: 1px solid rgba(255,255,255,0.1);
            padding-top: 20px;
            text-align: center;
            font-size: 14px;
            color: #ddd;
        }
        
        .social-links {
            display: flex;
            list-style: none;
            margin-top: 20px;
        }
        
        .social-links li {
            margin-right: 15px;
        }
        
        .social-links a {
            color: white;
            font-size: 18px;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            background-color: rgba(255,255,255,0.1);
            border-radius: 50%;
            transition: all 0.3s ease;
        }
        
        .social-links a:hover {
            background-color: var(--secondary);
            color: white;
        }
        
        /* Page Banner */
        .page-banner {
            background-image: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('/api/placeholder/1200/400');
            background-size: cover;
            background-position: center;
            color: white;
            text-align: center;
            padding: 100px 0;
        }
        
        .page-banner h1 {
            font-size: 40px;
            margin-bottom: 10px;
        }
        
        .breadcrumbs {
            display: flex;
            justify-content: center;
            list-style: none;
        }
        
        .breadcrumbs li {
            margin: 0 10px;
            position: relative;
        }
        
        .breadcrumbs li:not(:last-child):after {
            content: '/';
            position: absolute;
            right: -12px;
            top: 0;
        }
        
        .breadcrumbs a {
            color: white;
        }
        
        .breadcrumbs li:last-child {
            color: var(--secondary);
        }
        
        /* Services Page */
        .service-detail {
            margin-bottom: 60px;
        }
        
        .service-detail:last-child {
            margin-bottom: 0;
        }
        
        .service-detail-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            align-items: center;
        }
        
        .service-detail:nth-child(even) .service-detail-grid {
            direction: rtl;
        }
        
        .service-detail:nth-child(even) .service-detail-grid > * {
            direction: ltr;
        }
        
        .service-detail-image img {
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        
        .service-detail-content h3 {
            font-size: 28px;
            margin-bottom: 20px;
            color: var(--primary);
        }
        
        .service-detail-content p {
            margin-bottom: 20px;
        }
        
        .service-features {
            margin-top: 20px;
        }
        
        .service-features li {
            margin-bottom: 10px;
            display: flex;
            align-items: center;
        }
        
        .service-features i {
            color: var(--secondary);
            margin-right: 10px;
        }
        
        /* Responsive Styles */
        @media (max-width: 992px) {
            .navbar {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background-color: white;
                box-shadow: 0 5px 10px rgba(0,0,0,0.1);
                padding: 20px;
            }
            
            .navbar.active {
                display: block;
            }
            
            .navbar ul {
                flex-direction: column;
            }
            
            .navbar ul li {
                margin-left: 0;
                margin-bottom: 15px;
            }
        
            .hamburger {
                display: block;
            }
            
            .about-grid,
            .contact-grid,
            .service-detail-grid {
                grid-template-columns: 1fr;
            }
            
            .about-image {
                order: -1;
            }
            
            .service-detail:nth-child(even) .service-detail-grid {
                direction: ltr;
            }
            
            .hero h1 {
                font-size: 36px;
            }
        }
        
        @media (max-width: 768px) {
            section {
                padding: 60px 0;
            }
            
            .hero {
                padding: 100px 0;
            }
            
            .hero h1 {
                font-size: 32px;
            }
            
            .section-title {
                font-size: 28px;
            }
            
            .services-grid,
            .why-us-grid,
            .footer-grid {
                grid-template-columns: 1fr;
            }
        }
}