* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #2d3748;
    background-color: #fafbfc;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.main-nav {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(226, 232, 240, 0.8);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 24px;
    height: 70px;
}

.site-logo {
    height: 45px;
    width: auto;
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-item {
    text-decoration: none;
    color: #4a5568;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-item:hover,
.nav-item.active {
    color: #667eea;
}

.nav-item.active::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #667eea;
}

.burger-menu {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.burger-menu span {
    width: 25px;
    height: 3px;
    background: #4a5568;
    transition: 0.3s;
}

.hero-section {
    margin-top: 70px;
    padding: 80px 0 120px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    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"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-text h1 {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
    background: linear-gradient(45deg, #ffffff, #e2e8f0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

.btn-primary,
.btn-secondary {
    padding: 16px 32px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-primary {
    background: #ffffff;
    color: #667eea;
    border: 2px solid transparent;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.6);
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.intro-section {
    padding: 100px 0;
    background: #ffffff;
}

.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.intro-text h2 {
    font-size: 2.5rem;
    color: #2d3748;
    margin-bottom: 32px;
    font-weight: 700;
}

.intro-text p {
    font-size: 1.125rem;
    color: #4a5568;
    margin-bottom: 24px;
    line-height: 1.7;
}

.intro-visual img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.services-section {
    padding: 100px 0;
    background: #f7fafc;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: #2d3748;
    margin-bottom: 64px;
    font-weight: 700;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}

.service-card {
    background: white;
    padding: 40px 32px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: #667eea;
}

.service-card h3 {
    font-size: 1.5rem;
    color: #2d3748;
    margin-bottom: 16px;
    font-weight: 600;
}

.service-card p {
    color: #4a5568;
    line-height: 1.6;
}

.workshop-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a202c 0%, #2d3748 100%);
    color: white;
}

.workshop-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.workshop-text h2 {
    font-size: 2.5rem;
    margin-bottom: 24px;
    font-weight: 700;
}

.workshop-text p {
    font-size: 1.125rem;
    margin-bottom: 32px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
}

.benefits-list {
    list-style: none;
    space-y: 12px;
}

.benefits-list li {
    padding: 12px 0;
    padding-left: 24px;
    position: relative;
    color: rgba(255, 255, 255, 0.95);
}

.benefits-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #667eea;
    font-weight: bold;
}

.workshop-image img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 24px;
    font-weight: 700;
}

.cta-content p {
    font-size: 1.25rem;
    margin-bottom: 40px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

.cta-button {
    background: white;
    color: #667eea;
    padding: 20px 40px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.125rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.cta-image {
    text-align: center;
}

.cta-image img {
    max-width: 600px;
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.training-section {
    padding: 100px 0;
    background: #ffffff;
}

.training-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.training-info h2 {
    font-size: 2.5rem;
    color: #2d3748;
    margin-bottom: 24px;
    font-weight: 700;
}

.training-info > p {
    font-size: 1.125rem;
    color: #4a5568;
    margin-bottom: 40px;
    line-height: 1.7;
}

.training-features {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.feature-item h4 {
    font-size: 1.25rem;
    color: #2d3748;
    margin-bottom: 8px;
    font-weight: 600;
}

.feature-item p {
    color: #4a5568;
    line-height: 1.6;
}

.training-visual img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.contact-section {
    padding: 100px 0;
    background: #f7fafc;
}

.contact-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #2d3748;
    margin-bottom: 64px;
    font-weight: 700;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
}

.contact-form {
    background: white;
    padding: 48px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 24px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #fafbfc;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
    background: white;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-btn {
    width: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 18px 24px;
    border: none;
    border-radius: 12px;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.info-item h4 {
    font-size: 1.25rem;
    color: #2d3748;
    margin-bottom: 12px;
    font-weight: 600;
}

.info-item p {
    color: #4a5568;
    line-height: 1.6;
}

.main-footer {
    background: #1a202c;
    color: white;
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    height: 40px;
    width: auto;
    filter: brightness(0) invert(1);
    margin-bottom: 16px;
}

.footer-brand p {
    color: #a0aec0;
    line-height: 1.6;
}

.link-column h4,
.footer-contact h4 {
    font-size: 1.125rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.link-column a {
    display: block;
    color: #a0aec0;
    text-decoration: none;
    margin-bottom: 12px;
    transition: color 0.3s ease;
}

.link-column a:hover {
    color: #667eea;
}

.footer-contact p {
    color: #a0aec0;
    margin-bottom: 8px;
    line-height: 1.6;
}

.footer-bottom {
    border-top: 1px solid #2d3748;
    padding-top: 30px;
    text-align: center;
}

.footer-bottom p {
    color: #a0aec0;
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 60px;
        transition: left 0.3s ease;
        gap: 40px;
    }

    .nav-links.active {
        left: 0;
    }

    .burger-menu {
        display: flex;
    }

    .burger-menu.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .burger-menu.active span:nth-child(2) {
        opacity: 0;
    }

    .burger-menu.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }

    .intro-grid,
    .workshop-content,
    .training-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 280px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .nav-wrapper {
        padding: 0 16px;
    }

    .hero-section {
        padding: 60px 0 80px;
    }

    .hero-text h1 {
        font-size: 2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .contact-form {
        padding: 32px 24px;
    }
}

.page-hero {
    margin-top: 70px;
    padding: 80px 0;
    background: linear-gradient(135deg, #2d3748 0%, #4a5568 100%);
    color: white;
    position: relative;
}

.page-hero::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"><defs><pattern id="aboutgrain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.05)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23aboutgrain)"/></svg>');
}

.hero-content-about {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.hero-content-about h1 {
    font-size: 3rem;
    margin-bottom: 24px;
    font-weight: 700;
}

.hero-description {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.company-story {
    padding: 100px 0;
    background: #ffffff;
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.story-content h2 {
    font-size: 2.5rem;
    color: #2d3748;
    margin-bottom: 32px;
    font-weight: 700;
}

.story-content p {
    font-size: 1.125rem;
    color: #4a5568;
    margin-bottom: 24px;
    line-height: 1.7;
}

.story-image img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.mission-vision {
    padding: 100px 0;
    background: #f7fafc;
}

.mission-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.mission-item {
    background: white;
    padding: 48px 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
}

.mission-item h3 {
    font-size: 1.75rem;
    color: #2d3748;
    margin-bottom: 24px;
    font-weight: 600;
}

.mission-item p {
    font-size: 1.125rem;
    color: #4a5568;
    line-height: 1.7;
}

.team-section {
    padding: 100px 0;
    background: #ffffff;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 48px;
}

.team-member {
    background: #f7fafc;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-8px);
}

.member-photo {
    height: 280px;
    overflow: hidden;
}

.member-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.member-info {
    padding: 32px;
}

.member-info h4 {
    font-size: 1.5rem;
    color: #2d3748;
    margin-bottom: 8px;
    font-weight: 600;
}

.member-role {
    color: #667eea;
    font-weight: 600;
    margin-bottom: 16px;
    font-size: 1rem;
}

.member-info p:last-child {
    color: #4a5568;
    line-height: 1.6;
}

.methodology-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a202c 0%, #2d3748 100%);
    color: white;
}

.methodology-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.methodology-text h2 {
    font-size: 2.5rem;
    margin-bottom: 24px;
    font-weight: 700;
}

.methodology-text > p {
    font-size: 1.125rem;
    margin-bottom: 40px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
}

.methodology-pillars {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.pillar {
    padding: 24px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.pillar h4 {
    font-size: 1.25rem;
    margin-bottom: 12px;
    color: #667eea;
    font-weight: 600;
}

.pillar p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.methodology-visual img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.achievements-section {
    padding: 100px 0;
    background: #f7fafc;
}

.achievements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.achievement-item {
    text-align: center;
    background: white;
    padding: 40px 24px;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.achievement-number {
    font-size: 3rem;
    font-weight: 700;
    color: #667eea;
    margin-bottom: 16px;
}

.achievement-item p {
    color: #4a5568;
    line-height: 1.6;
    font-size: 1.125rem;
}

.thankyou-section {
    margin-top: 70px;
    padding: 100px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.thankyou-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.thankyou-text h1 {
    font-size: 3rem;
    margin-bottom: 24px;
    font-weight: 700;
}

.thankyou-subtitle {
    font-size: 1.25rem;
    margin-bottom: 48px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.next-steps {
    background: rgba(255, 255, 255, 0.1);
    padding: 32px;
    border-radius: 16px;
    margin-bottom: 40px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.next-steps h3 {
    font-size: 1.5rem;
    margin-bottom: 24px;
    font-weight: 600;
}

.step-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.step-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.step-number {
    background: #667eea;
    color: white;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    flex-shrink: 0;
}

.step-item p {
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.6;
    margin: 0;
}

.additional-info {
    background: rgba(255, 255, 255, 0.08);
    padding: 24px;
    border-radius: 12px;
    margin-bottom: 40px;
}

.additional-info h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
    font-weight: 600;
}

.additional-info p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.thankyou-actions {
    display: flex;
    gap: 20px;
}

.thankyou-visual img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.quick-info {
    padding: 80px 0;
    background: #ffffff;
}

.info-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.info-card {
    background: #f7fafc;
    padding: 32px;
    border-radius: 16px;
    text-align: center;
    border: 1px solid #e2e8f0;
}

.info-card h4 {
    font-size: 1.25rem;
    color: #2d3748;
    margin-bottom: 16px;
    font-weight: 600;
}

.info-card p {
    color: #4a5568;
    line-height: 1.6;
}

.testimonial-preview {
    padding: 80px 0;
    background: #f7fafc;
}

.testimonial-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: center;
}

.testimonial-content blockquote {
    font-size: 1.5rem;
    color: #2d3748;
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 24px;
    position: relative;
    padding-left: 32px;
}

.testimonial-content blockquote::before {
    content: '"';
    font-size: 4rem;
    color: #667eea;
    position: absolute;
    left: 0;
    top: -20px;
    font-family: serif;
}

.testimonial-content cite {
    color: #4a5568;
    font-weight: 600;
    font-style: normal;
}

.testimonial-image img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .hero-content-about h1 {
        font-size: 2.5rem;
    }

    .story-grid,
    .methodology-content,
    .thankyou-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .mission-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }

    .achievements-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .thankyou-text h1 {
        font-size: 2.5rem;
    }

    .thankyou-actions {
        flex-direction: column;
        align-items: center;
    }

    .testimonial-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .testimonial-content blockquote {
        font-size: 1.25rem;
    }
}

@media (max-width: 480px) {
    .hero-content-about h1 {
        font-size: 2rem;
    }

    .achievements-grid {
        grid-template-columns: 1fr;
    }

    .thankyou-text h1 {
        font-size: 2rem;
    }

    .step-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .step-number {
        align-self: flex-start;
    }
}.policySection {
    padding: 80px 2rem;
   background: #f8f9fa;
}

.policyContainer {
   text-align: left;
                    max-width :       800px;
  margin: 0 auto;
}

.policyContainer h2 {
   font-size :       2.5rem;
    color    :       #2c3e50;
   margin-bottom: 1.5rem;
  font-weight: 700;
}

.policyContainer p {
  color: #7f8c8d;
     margin-bottom: 1.5rem;
   line-height: 1.7;
         font-size: 1.1rem;
}@media (max-width: 768px) {
    .policyContainer h2 {
        font-size: 2rem;
    }

    .policyContainer p {
        font-size: 1rem;
    }

    .policySection {
        padding: 60px 1rem;
    }
}