/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(180deg, #e6e4f0 0%, #d8d5ea 100%);
}

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: rgba(216, 213, 234, 0.85);
    padding: 1rem 2rem;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5px);
    transition: background-color 0.3s ease;
}

header.scrolled {
    background-color: rgba(216, 213, 234, 0.95);
}

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

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: #2c3e50;
    font-weight: 500;
    transition: color 0.3s ease;
}

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

/* Hero Section */
.hero {
    background: linear-gradient(rgba(44, 19, 88, 0.85), rgba(72, 61, 139, 0.9)),
                url('https://images.unsplash.com/photo-1603126857599-f6e157fa2fe6?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80');
    background-size: cover;
    background-position: center;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
}

.hero-content {
    color: #fff;
    max-width: 800px;
    animation: fadeIn 1.5s ease-out;
    background: rgba(44, 19, 88, 0.6);
    padding: 2rem;
    border-radius: 10px;
    backdrop-filter: blur(5px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

.benefits-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0 2rem 0;
    text-align: left;
}

.benefits-list li {
    margin-bottom: 1.2rem;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    font-weight: 500;
}

.benefits-list li i {
    color: #8be9fd;
    margin-right: 1rem;
    font-size: 1.4rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Buttons */
.cta-button {
    display: inline-block;
    padding: 1.2rem 2.5rem;
    font-size: 1.4rem;
    font-weight: 600;
    color: #ffffff;
    background: linear-gradient(135deg, #2c1358 0%, #483d8b 100%);
    border: none;
    border-radius: 30px;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(44, 19, 88, 0.3);
    letter-spacing: 0.5px;
    margin-top: 2rem;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(44, 19, 88, 0.4);
    background: linear-gradient(135deg, #483d8b 0%, #2c1358 100%);
}

.cta-button:active {
    transform: translateY(1px);
    box-shadow: 0 2px 10px rgba(44, 19, 88, 0.3);
}

.submit-button {
    background-color: #483D8B;
    color: #fff;
    padding: 1rem 2rem;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.submit-button:hover {
    background-color: #191970;
    color: #fff;
    text-decoration: none;
}

/* Section Headers */
.services h2, .about-section h2, .contact h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2c3e50;
    font-weight: 500;
}

/* Services Section */
.services {
    padding: 5rem 1rem;
    background-color: rgba(230, 228, 240, 0.85);
    position: relative;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(180deg, rgba(137, 104, 205, 0.05) 0%, transparent 100%);
}

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

.service-card {
    background-color: rgba(255, 255, 255, 0.97);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(72, 61, 139, 0.2);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(72, 61, 139, 0.25);
    background-color: rgba(255, 255, 255, 1);
}

.service-card i {
    font-size: 2.5rem;
    color: #3498db;
    margin-bottom: 1rem;
}

.service-card h3 {
    margin-bottom: 1rem;
    color: #2c3e50;
}

/* About Section */
.about-section {
    padding: 4rem 2rem;
    max-width: 1000px;
    margin: 0 auto;
    background-color: rgba(255, 255, 255, 0.92);
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(137, 104, 205, 0.15);
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.about-section h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: #2c1358;
}

.about-section p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
    text-align: left;
    color: #2c1358;
    font-size: 1.1rem;
}

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

.about-benefits-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
    text-align: left;
}

.about-benefits-list li {
    margin-bottom: 1rem;
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    color: #2c1358;
}

.about-benefits-list li i {
    color: #2c1358;
    margin-right: 1rem;
    font-size: 1.2rem;
}

.benefits {
    list-style: none;
    padding: 0;
    margin: 0 auto;
    max-width: 600px;
}

.benefits li {
    margin: 1rem 0;
    padding: 0.5rem;
    background-color: #f8f9fa;
    border-radius: 5px;
    color: #34495e;
}

/* Contact Section */
.contact {
    padding: 5rem 1rem;
    background-color: rgba(230, 228, 240, 0.85);
    position: relative;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(180deg, rgba(137, 104, 205, 0.05) 0%, transparent 100%);
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
}

.form-group textarea {
    height: 150px;
    resize: vertical;
}

/* Google Form Container */
.google-form-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1rem;
}

.google-form-container iframe {
    width: 100%;
    min-height: 600px;
    border: none;
    margin: 2rem 0;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    border-radius: 10px;
}

/* Thank You Page */
.thank-you-page {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem;
}

.thank-you-page h1 {
    font-size: 3rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.thank-you-page p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 2rem;
}

/* Footer */
footer {
    background-color: rgba(216, 213, 234, 0.95);
    color: #2c1358;
    padding: 2rem 1rem;
    margin-top: 2rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    padding: 0 1rem;
}

.footer-section h4 {
    color: #2c1358;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-section p {
    margin-bottom: 0.5rem;
    color: #2c1358;
    font-weight: 500;
}

.footer-bottom {
    text-align: center;
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(44, 19, 88, 0.2);
    color: #2c1358;
}

.visitor-counter {
    font-size: 0.9em;
    color: #2c1358;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .service-grid {
        grid-template-columns: 1fr;
    }
    
    .about-content {
        flex-direction: column;
    }
    
    .google-form-container iframe {
        min-height: 800px;
    }
}
