body {
    font-family: 'Segoe UI', Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f9f9f9;
    text-align: center;
}

/* Header Styles */
header {
            background-color: #1a1a1a;
            padding: 20px 40px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
            position: sticky;
            top: 0;
            z-index: 1000;
        }

        .logo a {
            color: #fff;
            font-size: 24px;
            font-weight: bold;
            text-decoration: none;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .nav-links {
            list-style: none;
            display: flex;
            margin: 0;
            padding: 0;
            transition: all 0.3s ease;
        }

        .nav-links li {
            margin-left: 30px;
        }

        .nav-links a {
            color: #fff;
            text-decoration: none;
            font-size: 16px;
            transition: color 0.3s ease;
        }

        .nav-links a:hover {
            color: #ff4d4d;
        }

        .dropdown {
            position: relative;
        }

        .dropdown-content {
            display: none;
            position: absolute;
            background-color: #fff;
            min-width: 200px;
            box-shadow: 0px 8px 16px rgba(0,0,0,0.2);
            border-radius: 4px;
            top: 100%;
            left: 0;
        }

        .dropdown-content a {
            color: #333;
            padding: 10px 15px;
            display: block;
            font-size: 14px;
        }

        .dropdown-content a:hover {
            background-color: #f1f1f1;
            color: #ff4d4d;
        }

        .dropdown:hover .dropdown-content {
            display: block;
        }

        /* Hamburger menu styles */
        .hamburger {
            display: none; /* Hidden by default on desktop */
            font-size: 30px;
            color: #fff;
            cursor: pointer;
            background: none;
            border: none;
            padding: 0;
        }

        /* Mobile responsiveness */
        @media (max-width: 768px) {
            header {
                padding: 15px 20px;
                flex-wrap: wrap;
            }

            .hamburger {
                display: block;
            }

            .nav-links {
                display: none; /* Hidden by default on mobile */
                flex-direction: column;
                width: 100%;
                background-color: #2a2a2a;
                position: absolute;
                top: 100%;
                left: 0;
                padding: 20px 0;
            }

            .nav-links.active {
                display: flex; /* Show when hamburger is clicked */
            }

            .nav-links li {
                margin: 15px 0;
                text-align: center;
            }

            .dropdown {
                width: 100%;
            }

            .dropdown-content {
                position: static;
                width: 100%;
                box-shadow: none;
                background-color: #3a3a3a;
                border-radius: 0;
            }

            .dropdown-content a {
                color: #fff;
                padding: 12px;
                font-size: 16px; /* Larger for touch-friendliness */
            }

            .dropdown:hover .dropdown-content {
                display: none; /* Disable hover on mobile */
            }

            .dropdown.active .dropdown-content {
                display: block; /* Show when dropdown is clicked */
            }
        }
header {
    background: linear-gradient(90deg, #4B0082, #8A2BE2); /* Indigo to Violet */
    color: white;
    padding: 15px 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    position: relative;
}

.logo {
    font-size: 1.8em;
    font-weight: bold;
    margin: 0;
}

.logo a {
    color: white;
    text-decoration: none;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6); /* Subtle shadow for contrast */
}

.nav-menu {
    display: flex;
    align-items: center;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 25px;
    margin: 0;
    padding: 0;
}

.nav-links li {
    position: relative;
}

.nav-links li a {
    color: white;
    text-decoration: none;
    font-size: 1.1em;
    transition: color 0.3s ease;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6); /* Subtle shadow */
}

.nav-links li a:hover {
    color: #e6d6ff; /* Light violet for hover */
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #4B0082; /* Indigo base */
    min-width: 160px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.dropdown-content a {
    color: white;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-align: left;
}

.dropdown-content a:hover {
    background-color: #6A0DAD; /* Mid-tone purple */
}

/* Hamburger Menu */
.hamburger {
    display: none;
    font-size: 1.8em;
    color: white;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6); /* Subtle shadow */
}

.hamburger::before {
    content: "☰";
    display: none;
}

/* Welcome Section Styles */
.welcome-section {
    padding: 60px 20px;
    background: linear-gradient(135deg, #00d4ff, #007BFF); /* Retained blue gradient */
    color: white;
    border-radius: 10px;
    margin: 20px auto;
    max-width: 1200px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.welcome-content {
    flex: 1;
    padding: 20px;
    min-width: 300px;
}

.welcome-content h2 {
    font-size: 2.5em;
    margin: 0 0 20px;
    font-weight: 600;
}

.welcome-content p {
    font-size: 1.2em;
    margin: 0 0 30px;
    line-height: 1.5;
}

.cta-button {
    padding: 12px 30px;
    font-size: 1.2em;
    background-color: #fff;
    color: #007BFF;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.cta-button:hover {
    background-color: #8A2BE2; /* Violet for hover */
    color: white;
}

.welcome-image {
    flex: 1;
    min-width: 300px;
    padding: 20px;
}

.welcome-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* About Us Section Styles */
.about-section {
    padding: 60px 20px;
    background-color: #fff;
    max-width: 1200px;
    margin: 20px auto;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.about-section h2 {
    font-size: 2.5em;
    color: #333;
    margin: 0 0 20px;
    position: relative;
}

.about-section h2::after {
    content: "";
    width: 50px;
    height: 4px;
    background-color: #8A2BE2; /* Violet accent */
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.about-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.about-text {
    flex: 1;
    padding: 20px;
    min-width: 300px;
}

.about-text p {
    font-size: 1.2em;
    color: #555;
    line-height: 1.6;
}

.about-image {
    flex: 1;
    min-width: 300px;
    padding: 20px;
}

.about-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Services Section Styles */
.services-section {
    padding: 60px 20px;
    background-color: #f9f9f9;
}

.services-section h2 {
    font-size: 2.5em;
    color: #333;
    margin: 0 0 40px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-item {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.service-item i {
    font-size: 2.5em;
    color: #4B0082; /* Indigo accent */
    margin-bottom: 20px;
}

.service-item h3 {
    font-size: 1.5em;
    color: #333;
    margin: 0 0 15px;
}

.service-item p {
    font-size: 1em;
    color: #666;
    line-height: 1.5;
}

/* Footer Styles */
footer {
    background: linear-gradient(90deg, #4B0082, #8A2BE2); /* Indigo to Violet */
    color: white;
    padding: 40px 0 20px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 0 20px;
}

.footer-section {
    flex: 1;
    min-width: 200px;
    margin: 20px;
}

.footer-section h3 {
    color: white;
    font-size: 1.4em;
    margin-bottom: 15px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6); /* Subtle shadow */
}

.footer-section p, .footer-section ul li a {
    font-size: 1em;
    color: white;
    margin: 5px 0;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6); /* Subtle shadow */
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li a {
    text-decoration: none;
    line-height: 1.8;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #e6d6ff; /* Light violet for hover */
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    padding: 15px 0;
    text-align: center;
    font-size: 0.9em;
    color: white;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6); /* Subtle shadow */
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: block;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        background: linear-gradient(90deg, #4B0082, #8A2BE2); /* Match header */
        position: absolute;
        top: 100%;
        left: 0;
        padding: 20px 0;
        z-index: 999;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        margin: 10px 0;
        width: 100%;
        text-align: center;
    }

    .dropdown-content {
        position: static;
        box-shadow: none;
        background-color: #4B0082; /* Indigo base */
        width: 100%;
    }

    .dropdown:hover .dropdown-content {
        display: none;
    }

    .dropdown.active .dropdown-content {
        display: block;
    }

    .welcome-section, .about-section {
        padding: 40px 15px;
        margin: 15px;
    }

    .welcome-content h2, .about-section h2, .services-section h2 {
        font-size: 2em;
    }

    .welcome-content p, .about-text p {
        font-size: 1.1em;
    }

    .cta-button {
        padding: 10px 25px;
        font-size: 1.1em;
    }

    .welcome-section, .about-content {
        flex-direction: column;
        text-align: center;
    }

    .welcome-image, .about-image {
        padding: 0;
        margin-top: 20px;
    }

    .services-section {
        padding: 40px 15px;
    }

    .footer-container {
        flex-direction: column;
        text-align: center;
    }

    .footer-section {
        margin: 15px 0;
    }
}

@media (max-width: 480px) {
    .logo {
        font-size: 1.5em;
    }

    .welcome-content h2, .about-section h2, .services-section h2 {
        font-size: 1.8em;
    }

    .welcome-content p, .about-text p {
        font-size: 1em;
    }

    .cta-button {
        padding: 8px 20px;
        font-size: 1em;
    }

    .service-item {
        padding: 20px;
    }

    .service-item i {
        font-size: 2em;
    }

    .service-item h3 {
        font-size: 1.3em;
    }

    .service-item p {
        font-size: 0.9em;
    }
    .responsive-img {
    width: 100%;
    height: auto;
    display: block;
}

@media screen and (max-width: 768px) {
    .responsive-img {
        width: 80%;
        margin: 0 auto;
    }
}

@media screen and (max-width: 480px) {
    .responsive-img {
        width: 90%;
    }
}
}