* {
    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: #1f2937;
    overflow-x: hidden;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Header */
#header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

#header.scrolled {
    background: rgb(0, 0, 0);
   box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 1rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    font-size: 1.5rem;
    color: #DC2626;
    font-weight: 800;
}

#header.scrolled .logo h1 {
    color: #DC2626;
}

.nav-menu {
    display: flex;
    gap: 2rem;
}

.nav-link {
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s;
}

#header.scrolled .nav-link {
    color: #f7f7f7;
}

.nav-link:hover {
    color: #DC2626;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: white;
    cursor: pointer;
}

#header.scrolled .mobile-menu-btn {
    color: #1f2937;
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url('homepic.jpg') center/cover no-repeat;
    position: relative;
    padding: 2rem 1.5rem;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4));
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 1280px;
    width: 100%;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-highlight {
    color: #DC2626;
    display: block;
}

.hero-description {
    font-size: 1.25rem;
    color: white;
    margin-bottom: 2rem;
    max-width: 42rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    font-size: 1.125rem;
    font-weight: 600;
    border-radius: 0.75rem;
    text-decoration: none;
    transition: all 0.3s;
    cursor: pointer;
    border: none;
    white-space: nowrap;
}

.btn i {
    margin-right: 0.5rem;
}

.btn-primary {
    background: #DC2626;
    color: white;
    box-shadow: 0 10px 15px -3px rgba(220, 38, 38, 0.3);
}

.btn-primary:hover {
    background: #B91C1C;
    box-shadow: 0 20px 25px -5px rgba(220, 38, 38, 0.4);
}

.btn-secondary {
    background: #21dc1e;
    color: white;
    box-shadow: 0 10px 15px -3px rgba(30, 64, 175, 0.3);
}

.btn-secondary:hover {
    background: #53be55;
    box-shadow: 0 20px 25px -5px rgba(5, 249, 5, 0.4);
}

.btn-full {
    width: 100%;
}


.about-section {
    padding: 100px 0;
    background: #f8f8f8;
}

.about-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

/* LEFT SIDE IMAGES */
.about-images {
    display: flex;
    gap: 0.1rem;
}

.about-img-large {
    flex: 1;
}

.about-img-large img {
    width: 100%;
    height: 620px;
    object-fit: cover;
    border-radius: 24px;
}

.about-img-small-group {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
}

.about-img-small img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 24px;
}

/* RIGHT CONTENT */
.about-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-label {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #DC2626;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 2rem;
}

.about-label span {
    width: 50px;
    height: 2px;
    background: #DC2626;
}


.about-title {
    font-size: 3rem;
    line-height: 1.1;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 2rem;
}

.about-title span {
    color: #DC2626;
}

.about-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #475569;
    margin-bottom: 3rem;
}

/* STATS */
.about-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.stat-card {
    background: #fff;
    padding: 1rem;
    border-radius: 18px;
    text-align: center;
}

.stat-card h3 {
    font-size: 1rem;
    color: #DC2626;
    margin-bottom: 0.5rem;
    font-weight: 800;
}

.stat-card p {
    color: #64748b;
    font-size: 1rem;
}

/* RESPONSIVE */
@media (max-width: 991px) {

    .about-wrapper {
        grid-template-columns: 1fr;
    }

    .about-images {
        flex-direction: column;
    }

    .about-img-large img,
    .about-img-small img {
        height: auto;
    }

    .about-title {
        font-size: 2.5rem;
    }
}
/* About Section
.about-section {
    padding: 5rem 0;
    background: white;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-image img {
    width: 100%;
    height: 24rem;
    object-fit: cover;
    border-radius: 1rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1.5rem;
}

.about-text {
    font-size: 1.125rem;
    color: #374151;
    margin-bottom: 1.5rem;
    line-height: 1.75;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
} */

.feature-card {
    text-align: center;
}

.feature-icon {
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.75rem;
}

.feature-icon i {
    font-size: 1.5rem;
    color: white;
}

.feature-icon-red {
    background: #DC2626;
}

.feature-icon-blue {
    background: #89d6ef;
}

.feature-icon-black {
    background: #000;
}

.feature-title {
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.25rem;
}

.feature-text {
    font-size: 0.875rem;
    color: #6b7280;
}

/* Services Section */
.services-section {
    padding: 6rem 0;
    background: white;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title-large {
    font-size: 3rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
}

.section-description {
    font-size: 1.125rem;
    color: #6b7280;
    max-width: 42rem;
    margin: 0 auto;
}

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

.service-card {
    background: white;
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
    cursor: pointer;
}

.service-card:hover {
    transform: translateY(-0.5rem);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.service-image {
    width: 100%;
    height: 16rem;
    overflow: hidden;
    position: relative;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    transition: transform 0.5s;
}

.service-card:hover .service-image img {
    transform: scale(1.1);
}

.service-content {
    padding: 1.5rem;
}

.service-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.75rem;
    transition: color 0.3s;
}

.service-card:hover .service-title {
    color: #DC2626;
}

.service-description {
    color: #6b7280;
    margin-bottom: 1rem;
    line-height: 1.75;
}

.service-link {
    display: flex;
    align-items: center;
    color: #DC2626;
    font-weight: 600;
    transition: transform 0.3s;
}

.service-card:hover .service-link {
    transform: translateX(0.5rem);
}

.service-link i {
    margin-left: 0.5rem;
}

/* Schimen Flow Section */
.schimen-flow-section {
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.flow-background {
    position: absolute;
    inset: 0;
    background: url('tsf3.jpg') center/cover no-repeat;
}

.flow-background::after {
    content: '';
    position: absolute;
    inset: 0;
    /* background: rgba(219, 200, 200, 0.961); */
}

.schimen-flow-section .container {
    position: relative;
    z-index: 10;
}

.tsf-logo {
    margin-bottom: 1rem;
}

.tsf-text {
    font-size: 3.5rem;
    font-weight: 700;
    color: #1f2937;
}

.tsf-text sup {
    font-size: 1.5rem;
}

.flow-hashtag {
    color: #DC2626;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

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

.flow-card {
    background: white;
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
}

.flow-card:hover {
    transform: translateY(-0.5rem);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.flow-image {
    width: 100%;
    height: 12rem;
    overflow: hidden;
    position: relative;
}

.flow-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    transition: transform 0.5s;
}

.flow-card:hover .flow-image img {
    transform: scale(1.1);
}

.flow-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
}

.flow-icon {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    width: 3rem;
    height: 3rem;
    background: #DC2626;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.flow-icon i {
    font-size: 1.5rem;
    color: white;
}

.flow-content {
    padding: 1.5rem;
}

.flow-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.75rem;
}

.flow-divider {
    width: 4rem;
    height: 0.25rem;
    background: #DC2626;
    margin-bottom: 1rem;
}

.flow-description {
    color: #6b7280;
    line-height: 1.75;
}

/* Partners Section */
.partners-section {
    padding: 6rem 0;
    background: #f9fafb;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
}

.last-partner {
    grid-column: 1 / -1;
    justify-self: center;
    max-width: 200px;
}

.partner-card {
    background: white;
    border-radius: 0.75rem;
    padding: 1.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.partner-card:hover {
    transform: translateY(-0.25rem);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.partner-card img {
    width: 100%;
    height: 6rem;
    object-fit: contain;
    /* filter: grayscale(100%); */
    transition: filter 0.3s;
}

.partner-card:hover img {
    filter: grayscale(0%);
}

.partners-cta {
    margin-top: 4rem;
    text-align: center;
}

.partners-text {
    color: #1f2937;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;    /* Even bigger */
    font-weight: 800;    /* Extra bold */
    letter-spacing: 0.02em;
}
/* 
/* Projects Section */
.projects-section {
    padding: 5rem 0;
    background: white;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 2rem;
}

.project-card {
    background: white;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    border: 1px solid #f3f4f6;
    transition: all 0.3s;
}

.project-card:hover {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.project-image {
    width: 100%;
    height: 16rem;
    overflow: hidden;
    position: relative;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.project-card:hover .project-image img {
    transform: scale(1.05);
}

.project-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: #89d6ef;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
}

.project-content {
    padding: 1.5rem;
}

.project-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.75rem;
}

.project-description {
    color: #6b7280;
    line-height: 1.75;
    margin-bottom: 1rem;
}

.project-link {
    display: flex;
    align-items: center;
    color: #DC2626;
    font-weight: 500;
    transition: transform 0.3s;
}

.project-card:hover .project-link {
    transform: translateX(0.25rem);
}

.project-link i {
    margin-left: 0.5rem;
}

.projects-cta {
    margin-top: 3rem;
    text-align: center;
} */

/* Contact Section */
.contact-section {
    padding: 5rem 0;
    background: #f9fafb;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    font-size: 1.25rem;
    color: white;
}

.contact-icon-red {
    background: #DC2626;
}

.contact-icon-blue {
    background: #89d6ef;
}

.contact-icon-black {
    background: #000;
}

.contact-label {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.25rem;
}

.contact-value {
    color: #6b7280;
    text-decoration: none;
    transition: color 0.3s;
}

.contact-value:hover {
    color: #DC2626;
}

.social-section {
    margin-top: 3rem;
}

.social-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 1rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 2.5rem;
    height: 2.5rem;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1f2937;
    text-decoration: none;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
}

.social-link:hover {
    background: #DC2626;
    color: white;
}

/* Contact Form */
.contact-form-wrapper {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 0.875rem;
    font-weight: 500;
    color: #374151;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.75rem 1rem;
    border: 1px solid #d1d5db;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    transition: all 0.3s;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #DC2626;
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
}

.form-group textarea {
    resize: vertical;
}

.char-count {
    font-size: 0.75rem;
    color: #9ca3af;
    margin-top: 0.25rem;
}

.form-status {
    padding: 1rem;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    display: none;
}

.form-status.success {
    background: #d1fae5;
    border: 1px solid #6ee7b7;
    color: #065f46;
    display: block;
}

.form-status.error {
    background: #fee2e2;
    border: 1px solid #fca5a5;
    color: #991b1b;
    display: block;
}

/* Footer */
.footer {
    background: #000000;
    color: white;
    padding: 3rem 0 1.5rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-brand {
    max-width: 24rem;
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
}

.footer-tagline {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.75;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-title {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-list {
    list-style: none;
}

.footer-list li {
    margin-bottom: 0.5rem;
}

.footer-list a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-list a:hover {
    color: #DC2626
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.875rem;
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
}

.footer-bottom a:hover {
    color: white;
}

/* Responsive */
@media (max-width: 1024px) {
    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .projects-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 0;
        left: -100%;
        width: 80%;
        height: 100vh;
        background: grey;
        flex-direction: column;
        padding: 5rem 2rem;
        box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
        transition: left 0.3s;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu .nav-link {
        color: #1f2937;
        font-size: 1.125rem;
    }

    .mobile-menu-btn {
        display: block;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-description {
        font-size: 1.125rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

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

    .services-grid {
        grid-template-columns: 1fr;
    }

    .flow-grid {
        grid-template-columns: 1fr;
    }

    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-links {
        grid-template-columns: 1fr;
    }

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