  /* Base Styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        body {
            color: #333;
            line-height: 1.6;
            background-color: #f9f9f9;
        }
        
        h1, h2, h3 {
            color: #390099;
            margin-bottom: 20px;
        }
        
        p {
            margin-bottom: 15px;
            font-size: larger;      
        }
        
        ul {
            list-style-position: inside;
            margin-bottom: 20px;
            list-style-type: none;
        }
        
        li {
            margin-bottom: 8px;
            font-size: larger;

        }
        li.small{
            font-size: smaller;
            font-style: italic;
        }
        
        a {
            text-decoration: none;
            color: #FF5400;
            transition: color 0.3s;
        }
        
        a:hover {
            color: #FF0054;
        }
        
        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }
        
        .section {
            padding: 60px 0;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 40px;
            position: relative;
        }
        
        .section-title:after {
            content: '';
            display: block;
            width: 80px;
            height: 4px;
            background: linear-gradient(to right, #FFBD00, #FF5400);
            margin: 15px auto 0;
            border-radius: 2px;
        }

        /* Navigation */
        nav {
            background-color: white;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            padding: 10px 0;
        }
        
        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 8px 0;
        }
        
        .logo {
            height: 64px;
            width: auto;
        }
        
        .phone-link {
            background-color: #390099;
            color: white;
            padding: 10px 20px;
            border-radius: 30px;
            font-weight: bold;
            font-size: 0.9rem;
            white-space: nowrap;
            transition: background-color 0.3s;
        }
        
        .phone-link:hover {
            background: #FF0054;
            color: white;
        }
        
      /* Hero Section - Mobile Friendly */
      .hero {
        height: 70vh;
        min-height: 800px;
        position: relative;
        overflow: hidden;
        margin-top: 60px;
    }
    
    .hero-slides {
        position: absolute;
        width: 100%;
        height: 100%;
    }
    
    .hero-slide {
        position: absolute;
        width: 100%;
        height: 100%;
        background-size: cover;
        background-position: center;
        opacity: 0;
        transition: opacity 1.5s ease-in-out;
    }
    
    .hero-slide.active {
        opacity: 1;
    }
    
    .hero-slide::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(57, 0, 153, 0.5);
    }
    
    .hero-content {
        position: relative;
        z-index: 2;
        height: 100%;
        display: flex;
        align-items: center;
        text-align: center;
        color: white;
        padding: 20px;
    }
    
    .hero-content-inner {
        max-width: 800px;
        margin: 0 auto;
        padding: 20px;
    }
        
        .hero h1 {
            color: white;
            font-size: 2.5rem;
            margin-bottom: 30px;
            text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
        }
        
        .hero-quote {
            font-size: x-large;
            margin-bottom: 60px;
            color:#EDE1FB;
        }
        
        .hero-phone {
            display: inline-block;
            background-color: #390099;
            color: white;
            padding: 15px 30px;
            border-radius: 30px;
            font-size: 1.2rem;
            font-weight: bold;
            transition: all 0.3s;
        }
        
        .hero-phone:hover {
            background-color: #FF0054;
            color: white;
            transform: scale(1.05);
        }
        
        /* Hero Navigation Dots */
        .hero-dots {
            position: absolute;
            bottom: 30px;
            left: 0;
            right: 0;
            display: flex;
            justify-content: center;
            z-index: 3;
        }
        
        .hero-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.5);
            margin: 0 5px;
            cursor: pointer;
            transition: background-color 0.3s;
        }
        
        .hero-dot.active {
            background-color: white;
        }
        
        /* Services Section */
        .services {
            background-color: white;
        }
        
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .service-card {
            background-color: #f5f5f5;
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s, box-shadow 0.3s;
        }
        
        .service-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        }
        
        .service-card h3 {
            color: #9E0059;
            margin-bottom: 15px;
            border-bottom: 2px solid #FFBD00;
            padding-bottom: 10px;
        }
        .services-copy{
            margin-bottom: 2.5rem;
            text-align: center;
        }
        p.services-copy{
            font-size:x-large;
            color:#333;       
        }
        
        
        /* About Section */
        .about {
            background: linear-gradient(135deg, #f9f9f9 0%, #e6e6e6 100%);
        }
        
        .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            align-items: center;
        }
        
        .about-text {
            padding-right: 20px;
        }
        
        .about-image {
            border-radius: 10px;
            overflow: hidden;
            /* box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1); */
        }
        
        .about-image img {
            width: 100%;
            height: auto;
            display: block;
        }
        
        .expertise-list {
            margin-top: 30px;
        }
        
        .expertise-list li {
            margin-bottom: 15px;
            position: relative;
            padding-left: 30px;
        }
        
        .expertise-list li:before {
            content: '✓';
            color: #FF5400;
            font-weight: bold;
            position: absolute;
            left: 0;
        }
        .about-text p{
            font-size:x-large;
            color:#333;       
        }
        
        /* Gallery Section */
        .gallery {
            background-color: white;
        }
        
        .gallery-tabs {
            display: flex;
            justify-content: center;
            margin-bottom: 30px;
            flex-wrap: wrap;
        }
        
        .gallery-tab {
            padding: 10px 20px;
            margin: 0 5px 10px;
            background-color: #f5f5f5;
            border: none;
            border-radius: 30px;
            cursor: pointer;
            transition: all 0.3s;
            font-size: large;
        }
        
        .gallery-tab.active, .gallery-tab:hover {
            background-color: #390099;
            color: white;
        }
        
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 20px;
        }
        
        .gallery-item {
            height: 200px;
            overflow: hidden;
            border-radius: 8px;
            position: relative;
            cursor: pointer;
        }
        
        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }
        
        .gallery-item:hover img {
            transform: scale(1.1);
        }
        
        /* Lightbox */
        .lightbox {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.9);
            z-index: 2000;
            justify-content: center;
            align-items: center;
        }
        
        .lightbox-content {
            max-width: 90%;
            max-height: 90%;
        }
        
        .lightbox-content img {
            max-width: 100%;
            max-height: 90vh;
            display: block;
            margin: 0 auto;
        }
        
        .close-lightbox {
            position: absolute;
            top: 30px;
            right: 30px;
            color: white;
            font-size: 2rem;
            cursor: pointer;
        }
        
        /* Contact Section */
        .contact {
            background-color: #390099;
            color: white;
        }
        
        .contact .section-title {
            color: white;
        }
        
        .contact .section-title:after {
            background: linear-gradient(to right, #FFBD00, #FF5400);
        }
        
        .contact-info {
            text-align: center;
            margin-bottom: 30px;
        }
        
        .contact-info h3 {
            color: #FFBD00;
            margin-bottom: 10px;
        }
        
        .contact-info p {
            margin-bottom: 5px;
        }
        
        .business-hours {
            margin-top: 30px;
        }
        
        /* Footer */
        footer {
            background-color: #1a0033;
            color: #ccc;
            text-align: center;
            padding: 20px 0;
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            .about-content {
                grid-template-columns: 1fr;
            }
            
            .about-text {
                padding-right: 0;
            }
            
            .hero h1 {
                font-size: 2rem;
            }
            
            .section {
                padding: 40px 0;
            }
        }


        .error-page {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            min-height: 100vh;
            text-align: center;
            padding: 40px 20px;
            background: linear-gradient(135deg, #f9f9f9 0%, #e6e6e6 100%);
        }
        
        .error-content {
            max-width: 600px;
            padding: 40px;
            background-color: white;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }
        
        .error-code {
            font-size: 6rem;
            font-weight: bold;
            color: #FF5400;
            margin-bottom: 20px;
            line-height: 1;
        }
        
        .error-title {
            font-size: 2rem;
            color: #390099;
            margin-bottom: 20px;
        }
        
        .error-message {
            font-size: 1.2rem;
            margin-bottom: 30px;
            color: #555;
        }
        
        .home-button {
            display: inline-block;
            background-color: #FF5400;
            color: white;
            padding: 15px 30px;
            border-radius: 30px;
            font-weight: bold;
            text-decoration: none;
            transition: all 0.3s;
            font-size: 1.1rem;
            border: none;
            cursor: pointer;
        }
        
        .home-button:hover {
            background-color: #FF0054;
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(255, 0, 84, 0.3);
        }
        
        .error-image {
            max-width: 300px;
            margin: 0 auto 30px;
            display: block;
        }
        
        /* Responsive adjustments for 404 page */
        @media (max-width: 768px) {
            .error-code {
                font-size: 4rem;
            }
            
            .error-title {
                font-size: 1.5rem;
            }
            
            .error-message {
                font-size: 1rem;
            }
            
            .error-image {
                max-width: 200px;
            }
        }