/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    background: #1a1a2e;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #fff;
    text-decoration: none;
}

.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
}

.nav-menu li {
    margin-left: 2rem;
}

.nav-menu a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #4a90e2;
}

/* Dropdown Menu */
.dropdown {
    position: relative;
    padding: 10px 0; /* Add padding to prevent gap */
}

.dropbtn {
    cursor: pointer;
}

.dropdown-content {
    display: none;
    position: absolute;
    background: #2d2d44;
    min-width: 250px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
    z-index: 9999; /* Higher than navbar */
    border-radius: 5px;
    left: 0;
    top: 100%;
}

.dropdown-content a {
    display: block;
    padding: 12px 16px;
    text-decoration: none;
    color: #fff;
    margin-left: 0;
    border-radius: 0; /* Remove individual border radius */
}

.dropdown-content a:first-child {
    border-radius: 5px 5px 0 0;
}

.dropdown-content a:last-child {
    border-radius: 0 0 5px 5px;
}

.dropdown-content a:hover {
    background: #4a90e2;
}

.dropdown:hover .dropdown-content {
    display: block;
}

/* Hamburger Menu (Mobile) */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #fff;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    text-align: center;
    padding: 8rem 2rem;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.5rem;
    opacity: 0.9;
}

/* About Section */
.about {
    padding: 6rem 0;
    background: #fff;
}

.about h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #1a1a2e;
    text-align: center;
}

.about p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    line-height: 1.8;
}

/* Service Cards */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

.service-card h3 {
    color: #4a90e2;
    margin-bottom: 1rem;
}

.service-card p {
    color: #666;
    line-height: 1.6;
}

/* Products Section */
.product-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.product-card {
    background: #fff;
    padding: 3rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.product-card h2 {
    color: #667eea;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.product-card .subtitle {
    color: #999;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.product-card p {
    margin-bottom: 1rem;
    color: #666;
}

/* Programmes Section */
.programmes-section {
    padding: 6rem 0;
    background: #fff;
}

.programme-card {
    background: #f8f9fa;
    padding: 3rem;
    border-radius: 10px;
    margin-bottom: 2rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.programme-card h2 {
    color: #667eea;
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.programme-card h3 {
    color: #4a90e2;
    margin: 1.5rem 0 1rem;
}

.programme-card ul {
    list-style: none;
    padding-left: 0;
}

.programme-card li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.programme-card li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #4a90e2;
    font-weight: bold;
}

/* CSR Section */
.csr-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #e0eafc 0%, #cfdef3 100%);
}

.csr-content {
    background: #fff;
    padding: 3rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.csr-content h2 {
    color: #667eea;
    font-size: 2rem;
    margin-bottom: 2rem;
}

.csr-content h3 {
    color: #4a90e2;
    margin: 2rem 0 1rem;
}

.csr-content ul {
    list-style: none;
    padding-left: 0;
}

.csr-content li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.csr-content li:before {
    content: "●";
    position: absolute;
    left: 0;
    color: #4a90e2;
}

/* Contact Section */
.contact-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #e4e8ec 100%);
}

.contact-container {
    max-width: 1000px;
    margin: 0 auto;
}

.contact-info {
    background: #fff;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border-left: 5px solid #667eea;
}

.contact-info h2 {
    color: #667eea;
    margin-bottom: 2rem;
    font-size: 2rem;
    position: relative;
}

.contact-info h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #667eea, #764ba2);
}

.contact-info p {
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
    line-height: 1.8;
}

.contact-info strong {
    color: #1a1a2e;
    font-weight: 600;
}

.contact-form {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
}

.contact-form h3 {
    color: #667eea;
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #333;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #4a90e2;
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.submit-btn {
    background: #667eea;
    color: #fff;
    padding: 1rem 2rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    transition: background 0.3s ease;
}

.submit-btn:hover {
    background: #5568d3;
}

/* FAQ Section */
.faq-section {
    max-width: 1000px;
    margin: 4rem auto 0;
}

.faq-section h3 {
    color: #667eea;
    margin-bottom: 2rem;
    font-size: 2rem;
    text-align: center;
    position: relative;
}

.faq-section h3::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #667eea, #764ba2);
    margin: 15px auto 0;
}

.faq-item {
    background: #fff;
    padding: 2rem;
    margin-bottom: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-left: 4px solid transparent;
}

.faq-item:hover {
    transform: translateX(5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    border-left-color: #667eea;
}

.faq-item h4 {
    color: #1a1a2e;
    margin-bottom: 1rem;
    font-size: 1.15rem;
    font-weight: 600;
}

.faq-item p {
    color: #666;
    line-height: 1.8;
}

/* Footer */
footer {
    background: #1a1a2e;
    color: #fff;
    padding: 2rem 0;
    text-align: center;
}

footer p {
    margin-bottom: 0.5rem;
}

.cookie-notice {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #1a1a2e;
        padding: 1rem 0;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu li {
        margin: 0;
        text-align: center;
    }

    .nav-menu a {
        display: block;
        padding: 1rem;
    }

    .dropdown-content {
        position: static;
        display: none;
        background: #2d2d44;
        box-shadow: none;
    }

    .dropdown.active .dropdown-content {
        display: block;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1.2rem;
    }

    .contact-container {
        grid-template-columns: 1fr;
    }
}

/* Page Title */
.page-title {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    padding: 4rem 2rem;
    text-align: center;
}

.page-title h1 {
    font-size: 2.5rem;
}
