* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Rubik', sans-serif;
    background: #fff url('../img/body-background.jpg') center no-repeat;
    background-size: cover;
    background-attachment: fixed;
    color: #212529;
    line-height: 1.5;
}


.sft-wrapper {
    max-width: 1220px;
    width: 98%;
    margin: 18px auto;
    border: 1px solid rgba(0, 0, 0, 0.05);
    background: #fff;
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 0 25px 45px -12px rgba(0, 0, 0, 0.08);
    position: relative;
}


.sft-subtitle {
    color: #6a26da;
    background: rgba(106, 38, 218, 0.08);
    padding: 6px 24px;
    border-radius: 20px;
    display: inline-block;
    font-weight: 500;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

h2 {
    font-weight: 500;
    line-height: 1.2;
}

.sft-title {
    font-family: 'Rubik', sans-serif;
    font-weight: 500;
    font-size: 2.5rem;
    text-transform: uppercase;
    line-height: 1.1;
    color: #fff;
}

.sft-title-dark {
    font-weight: 500;
    color: #1a1f2c;
}

.sft-text {
    color: #6c757d;
    font-size: 1rem;
    font-weight: 400;
}


.sft-btn {
    display: inline-block;
    background-color: #c73e9b;
    color: white;
    font-weight: 400;
    padding: 12px 30px;
    text-transform: uppercase;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.25s ease;
    border: none;
    font-family: 'Rubik', sans-serif;
    font-size: 0.95rem;
    letter-spacing: 0.3px;
    border: 2px solid #c73e9b;
}

.sft-btn-outline {
    background: transparent;
    border: 2px solid #c73e9b;
    color: #c73e9b;
}

.sft-btn-outline:hover {
    background: #c73e9b;
    color: white;
}

.sft-btn:hover {
    background-color: #a12f7c;
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(199, 62, 155, 0.2);
}


.sft-block-bg {
    background-color: #f4f4f9;
    border-radius: 28px;
    padding: 2rem;
}


.sft-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    padding: 1.2rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;

}

.sft-header .sft-btn-outline {
    border: 1px solid #fff;
    color: #fff;
}

.sft-header .sft-btn-outline:hover {
    background: #fff;
    color: #222;
}

.services-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    padding-top: 120px;
}


.services-header {
    text-align: center;
    margin-bottom: 2rem;
}

.services-subtitle {
    color: #6a26da;
    background: rgba(106, 38, 218, 0.08);
    padding: 6px 24px;
    border-radius: 20px;
    display: inline-block;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.services-title {
    font-size: 3rem;
    font-weight: 500;
    line-height: 1.2;
    color: #1a1f2c;
    margin-bottom: 0.5rem;
}

.services-description {
    color: #6c757d;
    max-width: 700px;
    margin: 1rem auto 0;
}

.sft-logo-area {
    display: flex;
    align-items: center;
    text-decoration: none;
    gap: 10px;
}

.sft-logo {
    height: 42px;
    width: auto;
}

.sft-brand {
    font-weight: 500;
    font-size: 1.6rem;
    color: #fff;
    letter-spacing: -0.3px;
}

.sft-nav {
    display: flex;
    gap: 2rem;
    align-items: center;
    flex-wrap: wrap;
}

.sft-nav a {
    text-decoration: none;
    font-weight: 400;
    color: #fff;
    transition: 0.2s;
}

.sft-nav a:hover {
    color: #c73e9b;
}

.flaticon-menu {
    color: #fff !important;
}

.sft-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: #fff !important;
}

@media (max-width: 950px) {
    .sft-nav {
        display: none;
        width: 100%;
        flex-direction: column;
        background: white;
        padding: 1.2rem;
        border-radius: 28px;
        margin-top: 1rem;
        gap: 1rem;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
    }
    .sft-nav a{
        color: #111;
    }
    .sft-header .sft-btn-outline{
        color: #111;
        border: 1px solid #111;
    }

    .sft-nav.sft-nav-open {
        display: flex;
    }

    .sft-menu-toggle {
        display: block;
    }

    .sft-header {
        flex-wrap: wrap;
    }
}


.sft-hero {
    background: url('../img/hero-2.jpg');
    background-size: cover;
    background-blend-mode: overlay;
    background-position: center;
    padding: 140px 2rem 100px;
    border-radius: 0 0 48px 48px;
    text-align: center;
}


.sft-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.sft-feature-card {
    background: #f4f4f9;
    border-radius: 28px;
    padding: 1.8rem;
    transition: 0.2s;
}

.sft-feature-card h3 {
    font-weight: 500;
}

.sft-feature-card .flaticon {
    font-size: 42px;
    margin-bottom: 6px;
}

.sft-icon-lg {
    font-size: 2.6rem;
    color: #c73e9b;
    margin-bottom: 1rem;
    display: inline-block;
}

.sft-row-2col {
    display: flex;
    gap: 3rem;
    align-items: center;
    flex-wrap: wrap;
}

.sft-col {
    flex: 1;
    min-width: 250px;
}

.sft-stats {
    display: flex;
    gap: 2rem;
    justify-content: flex-start;
}

.sft-stat-item {
    text-align: left;
}

.sft-counter {
    font-size: 3rem;
    font-weight: 800;
    color: #c73e9b;
    line-height: 1;
}

.sft-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.8rem;
    margin-top: 2rem;
}

.sft-mini-feature h3 {
    font-weight: 500;
    margin-bottom: 6px;
}

.sft-mini-feature .flaticon {
    font-size: 42px;
}

.sft-mini-feature {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 30px;
    border: 1px solid #f4f4f9;
}

.sft-mini-icon {
    font-size: 2rem;
    color: #c73e9b;
    min-width: 48px;
}

.sft-why-list {
    list-style: none;
    margin-top: 1rem;
}

.sft-why-list li {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #2c3e50;
    font-weight: 500;
}

.sft-why-list li i {
    color: #c73e9b;
    font-size: 1.2rem;
    margin-top: 2px;
}

.sft-cta {
    background: url('../img/hero-2.jpg');
    background-size: cover;
    background-position: center;
    padding: 5rem 2rem;
    border-radius: 40px;
    text-align: center;
}

.sft-footer {
    background: #fafafc;
    padding: 3rem 2rem 1.5rem;
    border-top: 1px solid #eee;
}

.sft-footer-inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
}

.sft-footer-col {
    flex: 1;
    min-width: 160px;
}

.sft-footer-logo img {
    height: 40px;
}

.sft-contact-info p {
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.sft-footer-col h4 {
    font-weight: 500;
}

.sft-footer-logo {
    font-weight: 500;
    font-size: 1.5rem;
    display: inline-block;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.sft-footer a {
    color: #4a5568;
    text-decoration: none;
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.sft-footer a:hover {
    color: #c73e9b;
}

.sft-copyright {
    margin-top: 2.5rem;
    text-align: left;
    font-size: 0.8rem;
    color: #7e8493;
    border-top: 1px solid #e2e8f0;
    padding-top: 1.5rem;
}

img {
    max-width: 100%;
    border-radius: 28px;
}

.contact-page-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    padding-top: 120px;
}


.contact-header {
    text-align: center;
    margin-bottom: 2rem;
}

.contact-subtitle {
    color: #6a26da;
    background: rgba(106, 38, 218, 0.08);
    padding: 6px 24px;
    border-radius: 20px;
    display: inline-block;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.contact-title {
    font-size: 3rem;
    font-weight: 500;
    color: #1a1f2c;
    line-height: 1.2;
    margin-bottom: 1rem;
}


.breadcrumbs {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 3rem;
    font-size: 0.9rem;
}

.breadcrumbs a {
    color: #6c757d;
    text-decoration: none;
    transition: color 0.2s;
}

.breadcrumbs a:hover {
    color: #c73e9b;
}

.breadcrumbs span {
    color: #c73e9b;
}

.breadcrumbs i {
    color: #6c757d;
    font-size: 0.8rem;
}


.contact-grid {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

.contact-form-col {
    flex: 1;
    min-width: 280px;
}

.contact-info-col {
    flex: 1;
    min-width: 280px;
}


.form-card {
    background: #f4f4f9;
    border-radius: 28px;
    padding: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1a1f2c;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-family: 'Rubik', sans-serif;
    font-size: 1rem;
    transition: all 0.2s;
    background: #fff;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #c73e9b;
    box-shadow: 0 0 0 3px rgba(199, 62, 155, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-btn {
    background: #c73e9b;
    color: white;
    border: none;
    padding: 14px 32px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.2s;
    width: 100%;
    font-family: 'Rubik', sans-serif;
}

.submit-btn:hover {
    background: #a12f7c;
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(199, 62, 155, 0.2);
}


.thankyou-message {
    background: #d4edda;
    color: #155724;
    padding: 1rem;
    border-radius: 12px;
    margin-top: 1rem;
    text-align: center;
    font-weight: 500;
    display: none;
}


.info-card {
    background: #f4f4f9;
    border-radius: 28px;
    padding: 2rem;
    height: 100%;
}

.info-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1a1f2c;
    margin-bottom: 1rem;
}

.info-text {
    color: #6c757d;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.contact-details {
    margin-top: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: white;
    border-radius: 16px;
    transition: transform 0.2s;
}

.contact-item:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.contact-icon {
    width: 48px;
    height: 48px;
    background: rgba(199, 62, 155, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #c73e9b;
}

.contact-content h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: #1a1f2c;
}

.contact-content p {
    color: #6c757d;
    line-height: 1.4;
}

@media (max-width: 768px) {
    .contact-title {
        font-size: 2rem;
    }

    .contact-grid {
        gap: 2rem;
    }

    .contact-page-wrapper {
        padding: 1rem;
        padding-top: 120px;
    }
    .about-wrapper, .services-wrapper{
        padding-top: 120px!important;
    }
}

.about-hero {
    display: flex;
    gap: 3rem;
    align-items: center;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

.about-hero-content {
    flex: 1;
    min-width: 280px;
}



.about-hero-image {
    flex: 1;
    min-width: 280px;
}

.about-hero-image img {
    width: 100%;
    border-radius: 28px;
    object-fit: cover;
}

.section-badge {
    color: #6a26da;
    background: rgba(106, 38, 218, 0.08);
    padding: 6px 24px;
    border-radius: 20px;
    display: inline-block;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.section-heading {
    font-size: 2.2rem;
    font-weight: 700;
    color: #1a1f2c;
    margin-bottom: 1.5rem;
}

.description-text {
    color: #6c757d;
    line-height: 1.7;
    margin-bottom: 1.2rem;
}


.features-row {
    display: flex;
    gap: 2rem;
    margin: 3rem 0 4rem 0;
    flex-wrap: wrap;
}

.feature-block {
    flex: 1;
    background: #f4f4f9;
    padding: 2rem;
    border-radius: 24px;
    transition: transform 0.2s;
    min-width: 220px;
}

.feature-block:hover {
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 2.5rem;
    color: #c73e9b;
    margin-bottom: 1rem;
}

.feature-block h3 {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    color: #1a1f2c;
}

.feature-block p {
    color: #6c757d;
    line-height: 1.6;
}


.image-text-section {
    display: flex;
    gap: 3rem;
    align-items: center;
    background: #f4f4f9;
    border-radius: 28px;
    padding: 2.5rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.image-text-left {
    flex: 1;
    min-width: 280px;
}

.image-text-left img {
    width: 100%;
    border-radius: 24px;
    object-fit: cover;
}

.image-text-right {
    flex: 1;
    min-width: 280px;
}

.image-text-right h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #1a1f2c;
}

.image-text-right p {
    color: #6c757d;
    line-height: 1.7;
    margin-bottom: 1rem;
}


.about-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    padding-top: 120px;
}


.about-header {
    text-align: center;
    margin-bottom: 3rem;
}

.about-subtitle {
    color: #6a26da;
    background: rgba(106, 38, 218, 0.08);
    padding: 6px 24px;
    border-radius: 20px;
    display: inline-block;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.about-title {
    font-size: 3rem;
    font-weight: 500;
    color: #1a1f2c;
    line-height: 1.2;
    margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
    .about-title {
        font-size: 2rem;
    }

    .section-heading {
        font-size: 1.6rem;
    }

    .about-wrapper {
        padding: 1rem;
    }

    .features-row {
        flex-direction: column;
    }

    .image-text-section {
        padding: 1.5rem;
    }
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 2rem 0;
}

.feature-card {
    background: #f4f4f9;
    border-radius: 28px;
    padding: 2rem;
    transition: all 0.3s ease;
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 35px -12px rgba(0, 0, 0, 0.1);
}

.feature-icon-wrapper {
    flex-shrink: 0;
    width: 64px;
    height: 64px;
    background: rgba(199, 62, 155, 0.12);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon-wrapper i {
    font-size: 2rem;
    color: #c73e9b;
}

.feature-content {
    flex: 1;
}

.feature-content h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1a1f2c;
    margin-bottom: 0.75rem;
}

.feature-content p {
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.feature-list {
    list-style: none;
    margin-top: 0.75rem;
}

.feature-list li {
    color: #4a5568;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.feature-list li i {
    color: #c73e9b;
    font-size: 0.8rem;
}


@media (max-width: 900px) {
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .services-title {
        font-size: 2rem;
    }

    .services-wrapper {
        padding: 1rem;
    }

    .feature-card {
        flex-direction: column;
        align-items: flex-start;
    }
}

.about-hero-content h2.section-heading {
    padding: 0 !important;
    font-size: 32px !important;
    margin-bottom: 16px !important;
    font-weight: 500 !important;
}



















.legal-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    padding-top: 120px;
}


.legal-header {
    text-align: center;
    margin-bottom: 2rem;
}

.legal-subtitle {
    color: #6a26da;
    background: rgba(106, 38, 218, 0.08);
    padding: 6px 24px;
    border-radius: 20px;
    display: inline-block;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.legal-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: #1a1f2c;
    margin-bottom: 0.5rem;
}

.last-updated {
    color: #6c757d;
    font-size: 0.9rem;
    margin-top: 0.5rem;
}



.legal-content {
    background: #f4f4f9;
    border-radius: 28px;
    padding: 2.5rem;
}

.legal-content h2 {
    font-size: 1.8rem;
    font-weight: 500;
    color: #1a1f2c;
    margin: 1.5rem 0 1rem 0;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid rgba(199, 62, 155, 0.2);
}

.legal-content h2:first-of-type {
    margin-top: 0;
}

.legal-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #c73e9b;
    margin: 1.2rem 0 0.8rem 0;
}

.legal-content p {
    color: #4a5568;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.legal-content ul,
.legal-content ol {
    margin: 1rem 0 1rem 2rem;
    color: #4a5568;
}

.legal-content li {
    margin-bottom: 0.5rem;
}

.legal-content strong {
    color: #1a1f2c;
}

.contact-block {
    background: white;
    border-radius: 20px;
    padding: 1.5rem;
    margin: 1.5rem 0;
    border-left: 4px solid #c73e9b;
}

.contact-block p {
    margin-bottom: 0.5rem;
}

hr {
    margin: 2rem 0;
    border: none;
    border-top: 1px solid #e2e8f0;
}

@media (max-width: 768px) {
    .legal-title {
        font-size: 2rem;
    }

    .legal-wrapper {
        padding: 1rem;
    }

    .legal-content {
        padding: 1.5rem;
    }

    .legal-content h2 {
        font-size: 1.4rem;
    }
}



























@media (max-width: 800px) {

    .sft-grid-3,
    .sft-features-grid {
        grid-template-columns: 1fr;
    }

    .sft-wrapper {
        margin: 10px;
        width: auto;
    }

    .sft-title {
        font-size: 1.8rem;
    }
}

@media(max-width: 767px) {
    .sft-hero .sft-title {
        font-size: 2.2rem !important;
    }

    .sft-btn {
        font-size: 13px;
        padding: 12px 20px;
    }

    .sft-footer {
        padding: 30px 20px;
    }

    .sec {
        margin: 0 !important;
        padding: 60px 22px !important;
    }

    .sft-block-bg {
        margin: 0 24px !important;
    }

    .sft-row-2col {
        flex-direction: column;
        gap: 2rem;
    }
}

@media(max-width: 500px) {
    .sft-col {
        min-width: auto;
    }

    .sft-header {
        padding: 20px;
    }
}