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

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #000000;
    background-color: #f8f9fa;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}


/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #2f2935, #1a191b);
    color: white;
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="%23f4d03f" opacity="0.3"/><circle cx="80" cy="40" r="1.5" fill="%23f7dc6f" opacity="0.2"/><circle cx="40" cy="70" r="1" fill="%23f4d03f" opacity="0.25"/></svg>');
    animation: float 20s infinite linear;
}

@keyframes float {
    0% { transform: translateY(0px); }
    100% { transform: translateY(-100px); }
}

.hero-section h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.hero-section p {
    font-size: 1.3rem;
    margin-bottom: 30px;
    opacity: 0.9;
    position: relative;
    z-index: 2;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* About Content */
.about-content {
    padding: 80px 0;
    background: white;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

.about-text h2 {
    font-size: 2.5rem;
    color: #0a0a0a;
    margin-bottom: 30px;
    font-weight: 700;
}

.about-text p {
    font-size: 1.1rem;
    color: #131313;
    margin-bottom: 20px;
    line-height: 1.8;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Mission Vision Section */
.mission-vision {
    padding: 80px 0;
    background: linear-gradient(135deg, #fffbf0, #fef9e7);
}

.mv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.mv-card {
    background: white;
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.mv-card:hover {
    transform: translateY(-10px);
}

.mv-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #f4d03f, #f7dc6f);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2rem;
    color: #1f1f1f;
    border: 3px solid #f7dc6f;
}

.mv-card h3 {
    font-size: 1.8rem;
    color: #1f1f1f;
    margin-bottom: 20px;
    font-weight: 600;
}

.mv-card p {
    color: #1f1f1f;
    font-size: 1.1rem;
    line-height: 1.7;
}

/* Values Section */
.values-section {
    padding: 80px 0;
    background: white;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: #1f1f1f;
    margin-bottom: 20px;
    font-weight: 700;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #1f1f1f;
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.value-item {
    text-align: center;
    padding: 30px;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.value-item:hover {
    background: linear-gradient(135deg, #fffbf0, #fef9e7);
    box-shadow: 0 8px 25px rgba(244, 208, 63, 0.2);
    border: 1px solid #f7dc6f;
}

.value-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #f4d03f, #f7dc6f);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.5rem;
    color: #1f1f1f;
    border: 2px solid #f7dc6f;
}

.value-item h4 {
    font-size: 1.3rem;
    color: #1f1f1f;
    margin-bottom: 15px;
    font-weight: 600;
}

.value-item p {
    color: #666;
    line-height: 1.6;
}

/* Team Section */
.team-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #fffbf0, #fef9e7);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.team-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(244, 208, 63, 0.2);
}

.team-avatar {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #f4d03f, #f7dc6f);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 3rem;
    color: #5a5a5a;
    border: 4px solid #f7dc6f;
}

.team-card h4 {
    font-size: 1.5rem;
    color: #1f1f1f;
    margin-bottom: 10px;
    font-weight: 600;
}

.team-card .role {
    color: #f4d03f;
    font-weight: 600;
    margin-bottom: 15px;
}

.team-card p {
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Director's Message Section */
.director-message {
    padding: 80px 0;
    background: linear-gradient(135deg, #fffbf0, #fef9e7);
}

.director-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: flex-start;
}

.director-image {
    position: relative;
    text-align: center;
}

.director-image img {
    width: 100%;
    max-width: 350px;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(244, 208, 63, 0.3);
    border: 4px solid #f4d03f;
}

.director-quote {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #f4d03f, #f7dc6f);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #5a5a5a;
    box-shadow: 0 8px 25px rgba(244, 208, 63, 0.4);
}

.director-text h2 {
    font-size: 2.5rem;
    color: #5a5a5a;
    margin-bottom: 30px;
    font-weight: 700;
    position: relative;
}

.director-text h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #f4d03f, #f7dc6f);
    border-radius: 2px;
}

.message-content {
    margin-bottom: 40px;
}

.opening-quote {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2e2d2e;
    font-style: italic;
    margin-bottom: 25px;
    padding: 20px;
    background: white;
    border-left: 5px solid #f4d03f;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(244, 208, 63, 0.1);
}

.message-content p {
    font-size: 1.1rem;
    color: #000000;
    margin-bottom: 20px;
    line-height: 1.8;
    text-align: justify;
}

.closing-message {
    font-weight: 600;
    color: #1f1f1f;
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-left: 5px solid #f4d03f;
}

.director-signature {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    background: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.signature-line h4 {
    font-size: 1.4rem;
    color: #1f1f1f;
    margin-bottom: 5px;
    font-weight: 700;
}

.signature-line p {
    color: #f4d03f;
    font-weight: 600;
    margin-bottom: 3px;
    font-size: 0.95rem;
}

.signature-image img {
    max-width: 150px;
    height: auto;
    opacity: 0.8;
}
.subsidiaries-section {
    padding: 80px 0;
    background: white;
}

.subsidiaries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.subsidiary-card {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.subsidiary-card:hover {
    transform: translateY(-10px);
    border-color: #f4d03f;
    box-shadow: 0 15px 40px rgba(244, 208, 63, 0.2);
}

.subsidiary-logo {
    width: 200px;
    height: 120px;
    background: linear-gradient(135deg, #fffcf1, #fdf8e4);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2.5rem;
    color: #1f1f1f;
    border: 3px solid #f7dc6f;
    position: relative;
    overflow: hidden;
}

.subsidiary-logo img {
    width: 80%;
    height: 80%;
    object-fit: contain;
    border-radius: 10px;
}

.subsidiary-logo-new {
    width: 200px;
    height: 120px;
    background: linear-gradient(135deg, #fffcf1, #fdf8e4);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2.5rem;
    color: #1f1f1f;
    border: 3px solid #f7dc6f;
    position: relative;
    overflow: hidden;
}

.subsidiary-logo img {
    width: 80%;
    height: 80%;
    object-fit: contain;
    border-radius: 10px;
}
.subsidiary-card h4 {
    font-size: 1.4rem;
    color: #1f1f1f;
    margin-bottom: 15px;
    font-weight: 600;
}

.subsidiary-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.subsidiary-link {
    display: inline-block;
    background: linear-gradient(135deg, #f4d03f, #f7dc6f);
    color: #1f1f1f;
    padding: 10px 20px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.subsidiary-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(244, 208, 63, 0.4);
}

/* Stats Section */
.stats-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #24202c, #24202c);
    color: white;
    text-align: center;
    position: relative;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="%23f4d03f" opacity="0.2"/><circle cx="80" cy="40" r="1.5" fill="%23f7dc6f" opacity="0.15"/><circle cx="40" cy="70" r="1" fill="%23f4d03f" opacity="0.18"/></svg>');
    animation: float 25s infinite linear;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
}

.stat-item {
    padding: 20px;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #f4d03f;
    text-shadow: 0 2px 4px rgba(244, 208, 63, 0.3);
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: white;
    text-align: center;
}

.cta-content {
    max-width: 600px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2.5rem;
    color: #1f1f1f;
    margin-bottom: 20px;
    font-weight: 700;
}

.cta-content p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 30px;
}

.cta-button {
    background: linear-gradient(135deg, #f4d03f, #f7dc6f);
    color: #1f1f1f;
    padding: 18px 40px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: inline-block;
    border: 2px solid #f4d03f;
    box-shadow: 0 4px 15px rgba(244, 208, 63, 0.3);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(244, 208, 63, 0.5);
    background: linear-gradient(135deg, #f7dc6f, #f4d03f);
}


/* Subsidiary Companies Section */
@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2.5rem;
    }

    .hero-section p {
        font-size: 1.1rem;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }


    .contact-info {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }



    .section-title {
        font-size: 2rem;
    }

    .about-text h2 {
        font-size: 2rem;
    }

    .subsidiaries-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .subsidiary-logo {
        width: 100px;
        height: 100px;
        font-size: 2rem;
    }
        .subsidiary-logo-new {
        width: 100px;
        height: 100px;
        font-size: 2rem;
    }
}


@media (max-width: 480px) {
    .hero-section {
        padding: 60px 0;
    }

    .about-content,
    .mission-vision,
    .values-section,
    .team-section,
    .subsidiaries-section,
    .stats-section,
    .cta-section {
        padding: 60px 0;
    }

    .container {
        padding: 0 15px;
    }
}