﻿
@import url('https://fonts.googleapis.com/css2?family=Barlow:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

.main {
    display: flex-col;
    width: 100%;
    text-align: center;
    padding: 10px;
}

.carousel {
    position: relative;
    overflow: hidden;
    border-radius: 1rem;
    max-width: 100%;
    height: 80vh;
    min-height: 400px;
}

.slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transform: translateX(100%);
    transition: all var(--transition-duration) ease-in-out;
    display: flex;
    align-items: flex-end;
}

    .slide.active {
        opacity: 1;
        transform: translateX(0);
        z-index: 1;
    }

    .slide.exit-left {
        transform: translateX(-100%);
    }

    .slide.exit-right {
        transform: translateX(100%);
    }

.overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgb(0 0 0 / 70%), rgb(0 0 0 / 28%));
    z-index: 0;
}

.slide-content {
    padding: 2rem;
    z-index: 2;
    margin-bottom: 30px;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, 30%);
    text-align: center;
}

    .slide-content h1 a {
        white-space: nowrap;
    }

    .slide-content h1 {
        font-size: 4rem;
        margin-bottom: 0.5rem;
    }

    .slide-content p {
        font-size: 1.5rem;
        color: #fff;
        margin-bottom: 1rem;
        width: 1200px;
        font-family: 'Roboto';
        font-weight: 300;
    }

    .slide-content .author {
        font-size: 0.85rem;
        color: #aaa;
    }

.controls {
    position: absolute;
    bottom: 1rem;
    left: 0;
    right: 0;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 10;
}

.dots {
    display: flex;
    gap: 0.5rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 9999px;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

    .dot.active {
        width: 32px;
        background: linear-gradient(90deg, rgb(235 39 113) 0%, rgb(247 177 30) 100%);
    }

.arrows {
    display: flex;
    gap: 0.5rem;
}

.arrow-btn {
    padding: 0.5rem 1.8rem;
    border-radius: 12px;
    border: 0.5px solid rgba(255, 255, 255, 0.3);
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 1.25rem;
    cursor: pointer;
    transition: background 0.3s;
}

    .arrow-btn:hover {
        background-color: rgba(255, 255, 255, 0.3);
    }

@media (max-width: 768px) {
    .slide-content p {
        margin: 15px auto;
        white-space: pre-wrap !important;
        display: block !important;
        width: 340px;
    }

    .slide-content {
        padding: 0rem;
        width: 100%;
        transform: translate(-50%, 50%);
    }

    .slide-list li a {
        font-size: 10px;
        color: #fff;
        margin-right: 4px;
        text-decoration: none;
        border: 1px solid gray;
        padding: 8px;
        border-radius: 30px;
        background: #ffffff2b;
        transition: .5s ease all;
    }

    .slide-content h1 a {
        font-size: 30px;
        white-space: pre-wrap;
    }

    .slide-list li a {
        font-size: 10px !important;
        padding: 8px !important;
    }

    .slide-list {
        padding: 0px !important;
        padding-top: 15px !important;
    }

    .slide-content h1 {
        font-size: 1.5rem;
    }

    .slide-content p {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .slide-content h1 {
        font-size: 1.2rem;
    }

    .slide-content p {
        display: none;
    }
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Roboto", sans-serif;
}

body {
    font-family: "Roboto", sans-serif;
    line-height: 1.6;
}

.nav-banner-top {
    background: rgba(0, 0, 0, 0.8);
    padding: 8px 0;
    font-size: 14px;
    color: white;
}

    .nav-banner-top .contact-info {
        display: flex;
        gap: 30px;
    }

        .nav-banner-top .contact-info span {
            display: flex;
            align-items: center;
            gap: 8px;
        }

    .nav-banner-top .social-icons {
        display: flex;
        gap: 10px;
    }

        .nav-banner-top .social-icons a {
            width: 32px;
            height: 32px;
            background: linear-gradient(90deg, rgb(235 39 113) 0%, rgb(247 177 30) 100%);
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 4px;
            text-decoration: none;
            transition: all 0.3s ease;
        }

            .nav-banner-top .social-icons a:hover {
                background: #ff5533;
                transform: translateY(-2px);
            }

.nav-banner {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 5px 25px;
    border-radius: 25px;
    margin: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    z-index: 9999;
    position: relative;
}

    .nav-banner .navbar-brand {
        display: flex;
        align-items: center;
        gap: 10px;
        font-weight: 700;
        font-size: 24px;
        color: #333;
        text-decoration: none;
    }

        .nav-banner .navbar-brand img {
            width: 120px;
            height: auto;
        }

    .nav-banner .logo-icon {
        width: 40px;
        height: 40px;
        background: linear-gradient(90deg, rgb(235 39 113) 0%, rgb(247 177 30) 100%);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
    }

    .nav-banner .navbar-nav .nav-link {
        color: #333;
        margin: 5px 20px;
        transition: color 0.3s ease;
        text-decoration: none;
        font-size: 18px;
        font-family: 'Roboto';
    }

        .nav-banner .navbar-nav .nav-link:hover {
            color: #ff6b47;
        }

    .nav-banner .reserve-btn {
        background: linear-gradient(90deg, rgb(235 39 113) 0%, rgb(247 177 30) 100%);
        color: white;
        padding: 12px 25px;
        border-radius: 25px;
        text-decoration: none;
        font-weight: 600;
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        gap: 8px;
        border: 0px;
    }

        .nav-banner .reserve-btn:hover {
            background: #ff5533;
            transform: translateY(-2px);
            color: white;
        }

.hero-section {
    position: relative;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

    .video-background video {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: -1;
}

.hero-content {
    color: white;
    z-index: 1;
}

.hero-subtitle {
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 2px;
    margin-bottom: 20px;
    color: #f7b11e;
    text-transform: uppercase;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-top: 40px;
}

.btn-primary-custom {
    background: linear-gradient(90deg, rgb(235 39 113) 0%, rgb(247 177 30) 100%);
    color: white;
    padding: 15px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    border: none;
}

    .btn-primary-custom:hover {
        background: #ff5533;
        transform: translateY(-2px);
        color: white;
    }

.btn-secondary-custom {
    background: transparent;
    color: white;
    padding: 15px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    border: 2px solid white;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

    .btn-secondary-custom:hover {
        background: white;
        color: #333;
    }

.working-hours {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 30px;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

    .working-hours h4 {
        display: flex;
        align-items: center;
        gap: 10px;
        margin-bottom: 25px;
        font-weight: 600;
    }

    .working-hours .time-row {
        display: flex;
        justify-content: space-between;
        margin-bottom: 15px;
        padding-bottom: 10px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

        .working-hours .time-row:last-child {
            border-bottom: none;
            margin-bottom: 0;
        }

    .working-hours .day {
        font-weight: 500;
    }

    .working-hours .time {
        color: #f7b11e;
        font-weight: 600;
    }

.sub-menu-ul.show {
    border-radius: 2px;
    border: 1px solid #80808029;
}

@media (max-width: 768px) {
    .nav-banner-top .contact-info {
        flex-direction: column;
        gap: 10px;
    }

    .nav-banner {
        margin: 10px;
        padding: 10px 0;
    }

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

    .hero-buttons {
        flex-direction: column;
        align-items: flex-start;
    }

    .working-hours {
        margin-top: 30px;
    }

    .nav-banner-top {
        text-align: center;
    }

        .nav-banner-top .d-flex {
            flex-direction: column;
            gap: 15px;
        }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }

    .btn-primary-custom,
    .btn-secondary-custom {
        padding: 12px 20px;
        font-size: 14px;
    }
}

@media (min-width: 992px) {
    .navbar-expand-lg {
        flex-wrap: nowrap;
        justify-content: flex-start;
        margin: 0;
        padding: 0;
    }
}

.index-section1-hero {
    display: flex;
    align-items: stretch;
}

.index-section1-content-panel {
    background-color: #fff;
}

.index-section1-content-wrapper {
    padding: 4rem 3rem;
    width: 100%;
    border: 1px solid #f9f0f0;
    border-right: 0px;
}

.index-section1-accent-dot {
    background: linear-gradient(90deg, rgb(235 39 113) 0%, rgb(247 177 30) 100%);
    margin-bottom: 1.5rem;
    padding: 5px;
    border-radius: 4px;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.index-section1-subtitle {
    color: #000000;
    font-family: 'Roboto';
    text-transform: lowercase;
    font-weight: 300;
    border-bottom: 1px solid #ebe9e9;
    padding-bottom: 6px;
    margin-bottom: 6px;
}

.index-section1-main-title {
    color: #000;
    font-size: 2.5rem;
    font-weight: 600;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    margin-top: 1.5rem;
}

.index-section1-description {
    color: rgb(96 91 91 / 80%);
    font-size: 1rem;
    line-height: 1.6;
    max-width: 90%;
}

.index-section1-button-group {
    margin-bottom: 3rem;
    display: flex;
    gap: 1rem;
    align-items: center;
}

.index-section1-primary-btn {
    background: linear-gradient(90deg, rgb(235 39 113) 0%, rgb(247 177 30) 100%);
    color: #fff;
    border: none;
    padding: 0.875rem 2rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

    .index-section1-primary-btn:hover {
        background-color: #ff5533;
        transform: translateY(-2px);
    }

.index-section1-secondary-btn {
    background: #000000;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 0.875rem 2rem;
    border-radius: 6px;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

    .index-section1-secondary-btn:hover {
        border-color: #ec3866;
        color: #f59d2a;
    }

.index-section1-play-icon {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
}

.index-section1-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.index-section1-feature-item {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
    font-weight: 400;
    position: relative;
    padding-left: 1.25rem;
    display: flex;
    align-items: center;
}

    .index-section1-feature-item::before {
        content: "";
        width: 6px;
        height: 6px;
        background-color: #ffc107;
        border-radius: 50%;
        position: absolute;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
    }

.index-section1-image-panel {
    padding: 0;
    position: relative;
}

.index-section1-image-wrapper {
    position: relative;
    overflow: hidden;
}

.index-section1-seafood-image {
    width: 100%;
    height: 559px;
    object-fit: cover;
    object-position: center;
}

.index-section1-counter-badge {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 1.5rem;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.index-section1-counter-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a3b4f;
    display: block;
    margin-bottom: 0.25rem;
}

.index-section1-counter-text {
    font-size: 0.75rem;
    color: #666;
    margin-bottom: 0.75rem;
}

.index-section1-avatars {
    display: flex;
    gap: -0.5rem;
}

.index-section1-avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 2px solid #ffffff;
    margin-left: -0.5rem;
    background: linear-gradient(90deg, rgb(235 39 113) 0%, rgb(247 177 30) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 600;
    color: white;
}

    .index-section1-avatar:first-child {
        margin-left: 0;
    }

@media (max-width: 991.98px) {
    .index-section1-hero {
        flex-direction: column;
    }

    .index-section1-content-panel,
    .index-section1-image-panel {
        min-height: 50vh;
    }

    .index-section1-content-wrapper {
        padding: 3rem 2rem;
    }

    .index-section1-main-title {
        font-size: 2.5rem;
    }

    .index-section1-button-group {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .index-section1-features {
        margin-top: 2rem;
    }

    .index-section1-counter-badge {
        bottom: 1rem;
        right: 1rem;
    }
}

@media (max-width: 767.98px) {
    .index-section1-content-wrapper {
        padding: 2rem 1.5rem;
    }

    .index-section1-main-title {
        font-size: 2rem;
    }

    .index-section1-description {
        max-width: 100%;
    }

    .index-section1-primary-btn,
    .index-section1-secondary-btn {
        width: 100%;
        text-align: center;
        justify-content: center;
    }
}

.index-section3 {
    padding: 80px 0;
}

    .index-section3 .subtitle {
        font-size: 14px;
        letter-spacing: 1px;
        margin-bottom: 20px;
        font-weight: bold;
        color: #000;
    }

    .index-section3 .main-title {
        color: #0A2647;
        font-size: 20px;
        font-weight: 300;
        max-width: 800px;
        margin: 0 auto 30px;
        line-height: 1.3;
    }

    .index-section3 .description {
        color: #555;
        max-width: 900px;
        margin: 0 auto 60px;
        font-size: 16px;
        line-height: 1.6;
    }

.feature-card {
    background: white;
    border-radius: 12px;
    padding: 30px;
    height: 100%;
    transition: all 0.3s ease;
}

    .feature-card.highlighted {
        background: linear-gradient(90deg, rgb(235 39 113) 0%, rgb(247 177 30) 100%);
        color: white;
    }

    .feature-card .number {
        font-size: 14px;
        color: #999;
        margin-bottom: 15px;
    }

    .feature-card.highlighted .number {
        color: rgba(255,255,255,0.7);
    }

    .feature-card h3 {
        font-size: 24px;
        margin-bottom: 20px;
        color: #0A2647;
    }

    .feature-card.highlighted h3 {
        color: white;
    }

    .feature-card p {
        font-size: 14px;
        line-height: 1.6;
        margin-bottom: 20px;
        color: #666;
    }

    .feature-card.highlighted p {
        color: white;
    }

    .feature-card .read-more {
        color: #0A2647;
        text-decoration: none;
        font-size: 14px;
        font-weight: 500;
        display: inline-flex;
        align-items: center;
    }

    .feature-card.highlighted .read-more {
        color: white;
    }

    .feature-card .read-more:after {
        content: "→";
        margin-left: 5px;
    }

    /* ✅ Hover effect same as highlighted */
    .feature-card:hover {
        background: linear-gradient(90deg, rgb(235 39 113) 0%, rgb(247 177 30) 100%);
        color: white;
        transform: translateY(-5px);
    }

        .feature-card:hover .number {
            color: rgba(255,255,255,0.7);
        }

        .feature-card:hover h3,
        .feature-card:hover p,
        .feature-card:hover .read-more {
            color: white;
        }

.bottom-banner {
    background: linear-gradient(90deg, rgb(235 39 113) 0%, rgb(247 177 30) 100%);
    padding: 15px;
    border-radius: 8px;
    margin-top: 40px;
    text-align: center;
    color: white;
}

.free-tag {
    background: white;
    color: #000;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    margin-right: 10px;
}

.bottom-banner a {
    color: white;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .index-section3 .main-title {
        font-size: 32px;
    }

    .feature-card {
        margin-bottom: 20px;
    }
}

.index-section4-about {
    padding: 80px 0;
    background: linear-gradient(90deg, rgb(235 39 113 / 10%) 0%, rgb(247 177 30 / 11%) 100%);
}

.index-section4-tag {
    color: #000;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    border-bottom: 1px solid #f2e5ed;
    padding-bottom: 15px;
    margin-bottom: 15px;
}

.index-section4-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #0f172a;
}

.index-section4-desc {
    color: #475569;
    line-height: 1.6;
    margin-bottom: 24px;
    font-family: 'Roboto';
    font-size: 13px;
}

.index-section4-feature {
    gap: 5px;
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    color: #564e4e;
    font-family: 'Roboto';
    font-size: 14px;
}

    .index-section4-feature i {
        color: #000;
    }

.index-section4-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #000;
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    margin-top: 8px;
    transition: all 0.3s;
}

    .index-section4-more:hover {
        background: #4d7c0f;
        color: white;
    }

.index-section4-image-container {
    position: relative;
}

.index-section4-contact {
    position: absolute;
    right: -30px;
    top: 50%;
    transform: translateY(-50%);
    width: 80px;
    height: 80px;
    background: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    z-index: 2;
    cursor: pointer;
    transition: all 0.3s;
}

    .index-section4-contact:hover {
        background: #4d7c0f;
    }

.index-section4-features {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #ebebeb;
}

.index-section4-feature-card {
    text-align: center;
    padding: 24px;
    padding-top: 0;
    padding-bottom: 0px;
}

.index-section4-feature-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f1f5f9;
    border-radius: 16px;
    color: #000;
    border: 1px solid gray;
}

    .index-section4-feature-icon svg {
        width: 25px;
        height: 25px;
    }

.index-section4-feature-title {
    font-size: 17px;
    font-weight: 500;
    margin-bottom: 8px;
    color: #0f172a;
}

.index-section4-feature-desc {
    color: #424040;
    font-size: 13px;
}

@media (max-width: 768px) {
    .index-section4-contact {
        display: none;
    }

    .index-section4-title {
        font-size: 32px;
    }
}

.border-right-1 {
    border-right: 1px solid #ebebeb
}

.border-left-1 {
    border-left: 1px solid #ebebeb
}

.heading-bottom-img {
    width: 175px;
    display: block;
    margin: 5px auto;
}

.faq-section {
    padding: 3rem 0;
}

.faq-header {
    position: relative;
    margin-bottom: 3rem;
}

.faq-label {
    font-size: 0.875rem;
    font-weight: 500;
    color: #FF5722;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: block;
    margin-bottom: 0.5rem;
}

.faq-title {
    font-size: 2.5rem;
    color: #1e3a5f;
    line-height: 1.2;
    max-width: 600px;
    margin-bottom: 0;
    font-family: 'Roboto';
}

.faq-view-all-btn {
    position: absolute;
    top: 0;
    right: 0;
    background: linear-gradient(90deg, rgb(235 39 113) 0%, rgb(247 177 30) 100%);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

    .faq-view-all-btn:hover {
        background-color: #d97706;
        color: white;
        transform: translateY(-2px);
    }

.faq-arrow-icon {
    width: 16px;
    height: 16px;
    background-color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: #f59e0b;
}

.faq-images-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    position: relative;
}

.faq-image-wrapper {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

    .faq-image-wrapper.faq-large {
        height: 300px;
    }

    .faq-image-wrapper.faq-small {
        height: 180px;
    }

.faq-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.faq-list {
    padding-left: 2rem;
}

.faq-item {
    border-bottom: 1px solid #e5e7eb;
    padding: 1.5rem 0;
}

    .faq-item:last-child {
        border-bottom: none;
    }

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    color: #000000;
    margin: 0;
    font-size: 15px;
    font-weight: normal;
    font-family: 'Roboto';
}

.faq-question-number {
    color: #f59e0b;
    margin-right: 0.5rem;
    display: none
}

.faq-toggle-icon {
    width: 24px;
    height: 24px;
    background-color: #FF5722;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 14px;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-answer {
    margin-top: 1rem;
    color: #4b5563;
    font-size: 13px;
    line-height: 1.6;
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-item.active .faq-toggle-icon {
    transform: rotate(45deg);
}

.faq-contact-wrapper {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    z-index: 10;
}

.faq-contact-button {
    background: linear-gradient(90deg, rgb(235 39 113) 0%, rgb(247 177 30) 100%);
    border-radius: 50px;
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    box-shadow: 0 4px 20px rgba(245, 158, 11, 0.3);
    transition: all 0.3s ease;
}

    .faq-contact-button:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 25px rgba(245, 158, 11, 0.4);
    }

.faq-phone-icon {
    width: 40px;
    height: 40px;
    background-color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #f59e0b;
}

.faq-contact-text {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.faq-contact-label {
    font-size: 0.875rem;
    color: white;
    font-weight: 500;
}

.faq-phone-number {
    font-size: 1rem;
    color: white;
    font-weight: 600;
    text-decoration: none;
}

    .faq-phone-number:hover {
        color: white;
    }

@media (max-width: 991px) {
    .faq-title {
        font-size: 2rem;
        max-width: 100%;
    }

    .faq-view-all-btn {
        position: static;
        margin-top: 1rem;
        align-self: flex-start;
    }

    .faq-header {
        display: flex;
        flex-direction: column;
    }

    .faq-list {
        padding-left: 0;
        margin-top: 2rem;
    }

    .faq-images-container {
        flex-direction: row;
        gap: 0.75rem;
    }

    .faq-image-wrapper.faq-large {
        height: 200px;
        flex: 2;
    }

    .faq-image-wrapper.faq-small {
        height: 200px;
        flex: 1;
    }

    .faq-contact-wrapper {
        position: static;
        margin-top: 1rem;
        display: flex;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .faq-section {
        padding: 2rem 0;
    }

    .faq-title {
        font-size: 1.75rem;
    }

    .faq-question {
        font-size: 1rem;
    }

    .faq-images-container {
        flex-direction: column;
    }

    .faq-image-wrapper.faq-large,
    .faq-image-wrapper.faq-small {
        height: 180px;
    }

    .faq-contact-button {
        padding: 0.875rem 1.25rem;
        gap: 0.5rem;
    }

    .faq-phone-icon {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }
}

.index-footer-wrapper {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://chooseuae.com/wp-content/uploads/2-min-20-1536x864.jpg') center/cover no-repeat;
    padding: 4rem 0 2rem 0;
    color: white;
    border-radius: 3rem 3rem 0rem 0rem;
    position: relative;
    overflow: hidden;
}

.index-footer-column {
    text-align: center;
    padding: 1.5rem;
}

.index-footer-icon {
    width: 4rem;
    height: 4rem;
    background: linear-gradient(90deg, rgb(235 39 113) 0%, rgb(247 177 30) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem auto;
    font-size: 1.5rem;
    color: #fff;
}

.index-footer-heading {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: white;
}

.index-footer-text {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    color: #e0e0e0;
}

.index-footer-button {
    background: linear-gradient(90deg, rgb(235 39 113) 0%, rgb(247 177 30) 100%);
    color: #fff;
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 2rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

    .index-footer-button:hover {
        background-color: #FFB300;
        color: #1a1a1a;
        transform: translateY(-2px);
        text-decoration: none;
    }

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

.index-footer-copyright {
    font-size: 0.9rem;
    color: #b0b0b0;
}

.index-footer-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.index-footer-logo {
    font-family: 'Pacifico', serif;
    font-size: 1.5rem;
    color: #FFC107;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.index-footer-logo-icon {
    width: 2.5rem;
    height: 2.5rem;
    background: linear-gradient(90deg, rgb(235 39 113) 0%, rgb(247 177 30) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.2rem;
}

.index-footer-social {
    display: flex;
    gap: 0.75rem;
}

.index-footer-social-link {
    width: 2.5rem;
    height: 2.5rem;
    background: linear-gradient(90deg, rgb(235 39 113) 0%, rgb(247 177 30) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1rem;
}

    .index-footer-social-link:hover {
        background-color: #FFB300;
        color: #1a1a1a;
        transform: translateY(-2px);
    }

@media (max-width: 768px) {
    .index-footer-wrapper {
        margin: 1rem;
        padding: 3rem 0 1.5rem 0;
        border-radius: 1rem;
    }

    .index-footer-column {
        margin-bottom: 2rem;
    }

    .index-footer-bottom {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }

    .index-footer-brand {
        flex-direction: column;
        gap: 1rem;
    }

    .index-footer-heading {
        font-size: 1.1rem;
    }

    .index-footer-text {
        font-size: 0.9rem;
    }

    .index-footer-button {
        padding: 0.6rem 1.5rem;
        font-size: 0.85rem;
    }
}

@media (max-width: 576px) {
    .index-footer-wrapper {
        margin: 0.5rem;
        border-radius: 0.5rem;
    }

    .index-footer-icon {
        width: 3.5rem;
        height: 3.5rem;
        font-size: 1.3rem;
    }

    .index-footer-social {
        justify-content: center;
    }
}

.index-section6-hero {
    background: linear-gradient(90deg, rgb(235 39 113) 0%, rgb(247 177 30) 100%);
    min-height: 100vh;
    position: relative;
    overflow: hidden;
}

.index-section6-hero-content {
    padding: 80px 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

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

.index-section6-hero-subtitle {
    font-size: 1.1rem;
    color: white;
    opacity: 0.9;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.index-section6-cta-button {
    background: #000;
    color: white;
    border: none;
    padding: 15px 30px;
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 25px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

    .index-section6-cta-button:hover {
        background: #333;
        color: white;
        transform: translateY(-2px);
    }

.index-section6-credentials {
    margin-top: 3rem;
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.index-section6-award-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
}

.index-section6-award-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.index-section6-award-text {
    font-size: 0.9rem;
    font-weight: 600;
}

.index-section6-team-section {
    display: flex;
    align-items: center;
    gap: 15px;
    color: white;
}

.index-section6-team-avatars {
    display: flex;
    gap: -5px;
}

.index-section6-avatar {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    border: 2px solid white;
    margin-left: -5px;
    background-size: cover;
    background-position: center;
}

    .index-section6-avatar:first-child {
        margin-left: 0;
    }

.index-section6-avatar-1 {
    background-image: url('https://readdy.ai/api/search-image?query=professional%20business%20woman%20with%20brown%20hair%20smiling%20confidently%20in%20modern%20office%20setting%20with%20clean%20white%20background%20and%20soft%20lighting&width=100&height=100&seq=avatar1&orientation=squarish');
}

.index-section6-avatar-2 {
    background-image: url('https://readdy.ai/api/search-image?query=professional%20business%20man%20with%20dark%20hair%20and%20glasses%20wearing%20suit%20smiling%20in%20modern%20office%20with%20clean%20white%20background&width=100&height=100&seq=avatar2&orientation=squarish');
}

.index-section6-avatar-3 {
    background-image: url('https://readdy.ai/api/search-image?query=professional%20young%20business%20woman%20with%20blonde%20hair%20smiling%20warmly%20in%20modern%20office%20environment%20with%20clean%20white%20background&width=100&height=100&seq=avatar3&orientation=squarish');
}

.index-section6-team-text {
    font-size: 0.9rem;
    font-weight: 500;
}

.index-section6-experts-link {
    color: white;
    text-decoration: underline;
    font-size: 0.9rem;
    opacity: 0.9;
}

    .index-section6-experts-link:hover {
        color: white;
        opacity: 1;
    }

.index-section6-hero-image {
    position: relative;
    height: 100%;
    min-height: 500px;
}

.index-section6-image-container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.index-section6-main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}



.index-section6-partners {
    background: #f8f9fa;
    padding: 60px 0;
}

.index-section6-partners-label {
    color: #6c757d;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 2rem;
}

.index-section6-partner-logos {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2rem;
}

.index-section6-partner-logo {
    opacity: 0.6;
    transition: opacity 0.3s ease;
    height: 40px;
    display: flex;
    align-items: center;
    font-weight: 600;
    color: #495057;
}

    .index-section6-partner-logo:hover {
        opacity: 1;
    }

.index-section6-logo-meta {
    font-size: 1.8rem;
    font-weight: 700;
}

.index-section6-logo-hubspot {
    font-size: 1.5rem;
    font-weight: 600;
}

.index-section6-logo-tiktok {
    font-size: 1.4rem;
    font-weight: 700;
}

.index-section6-logo-cloud {
    font-size: 1.3rem;
    font-weight: 600;
}

@media (max-width: 768px) {
    .index-section6-hero-title {
        font-size: 2.5rem;
    }

    .index-section6-hero-content {
        padding: 40px 0;
    }

    .index-section6-credentials {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .index-section6-partner-logos {
        justify-content: center;
        gap: 1.5rem;
    }

    .index-section6-hero-image {
        min-height: 300px;
        margin-top: 2rem;
    }
}

@media (max-width: 576px) {
    .index-section6-hero-title {
        font-size: 2rem;
    }

    .index-section6-partner-logos {
        flex-direction: column;
        gap: 1rem;
    }
}

.index-section7-container {
    background: linear-gradient(90deg, rgb(235 39 113 / 10%) 0%, rgb(247 177 30 / 11%) 100%);
    min-height: 100vh;
    font-family: 'Inter', sans-serif;
    display: flex;
    align-items: center;
    padding: 3rem 0;
}

.index-section7-content-wrapper {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.index-section7-text-section {
    flex: 1.5;
    padding-right: 2rem;
}

.index-section7-image-section {
    flex: 1;
}

.index-section7-approach-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.index-section7-yellow-dot {
    width: 8px;
    height: 8px;
    background-color: #000;
    border-radius: 50%;
}

.index-section7-approach-text {
    font-size: 0.875rem;
    font-weight: 500;
    color: #F44336;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.index-section7-main-heading {
    font-size: 3rem;
    font-weight: 700;
    color: #1A2B3C;
    line-height: 1.2;
    margin-bottom: 3rem;
}

.index-section7-feature-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.index-section7-icon-wrapper {
    width: 60px;
    height: 60px;
    background-color: #000000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.index-section7-icon {
    width: 24px;
    height: 24px;
    fill: white;
}

.index-section7-feature-content h3 {
    font-size: 1rem;
    color: #1A2B3C;
    margin-bottom: 0.5rem;
    font-family: 'Roboto';
}

.index-section7-feature-content p {
    color: #6B7280;
    line-height: 1.6;
    margin: 0;
    font-family: 'Roboto';
    font-size: 13px;
}

.index-section7-image-container {
    position: relative;
    width: 100%;
    height: 500px;
    border-radius: 100px 100px 2px 2px;
    overflow: hidden;
}

.index-section7-main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

@media (max-width: 991.98px) {
    .index-section7-content-wrapper {
        flex-direction: column;
        gap: 3rem;
    }

    .index-section7-text-section {
        padding-right: 0;
        text-align: center;
    }

    .index-section7-main-heading {
        font-size: 2.5rem;
    }

    .index-section7-image-container {
        height: 400px;
        max-width: 400px;
        margin: 0 auto;
    }
}

@media (max-width: 767.98px) {
    .index-section7-container {
        padding: 2rem 0;
    }

    .index-section7-main-heading {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .index-section7-feature-item {
        margin-bottom: 2rem;
    }

    .index-section7-icon-wrapper {
        width: 50px;
        height: 50px;
    }

    .index-section7-icon {
        width: 20px;
        height: 20px;
    }

    .index-section7-image-container {
        height: 300px;
        max-width: 300px;
    }
}

.index-section-team {
    padding: 80px 0;
    background: linear-gradient(90deg, rgb(235 39 113 / 10%) 0%, rgb(247 177 30 / 11%) 100%);
}

.team-label {
    color: #000000;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 16px;
    text-transform: uppercase;
}

.team-heading {
    color: #0F172A;
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 48px;
}

.team-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 30px;
    height: 400px;
    cursor: pointer;
}

    .team-card img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: all 0.3s ease;
    }

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

.team-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    padding: 30px;
    transition: all 0.3s ease;
    transform: translateY(0);
}

.team-card:hover .team-overlay {
    background: linear-gradient(to top, rgba(0,0,0,0.9), rgba(0,0,0,0.5));
    transform: translateY(-10px);
}

.team-name {
    color: white;
    font-weight: 600;
    margin-bottom: 0px;
    transition: all 0.3s ease;
    font-size: 16px;
    font-family: 'Roboto';
}

.team-position {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    transition: all 0.3s ease;
    font-family: 'Roboto';
}

.team-card:hover .team-name {
    transform: translateY(-5px);
}

.team-card:hover .team-position {
    transform: translateY(-5px);
}

.team-social {
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    gap: 12px;
    opacity: 0;
    transition: all 0.3s ease;
}

.team-card:hover .team-social {
    opacity: 1;
}

.social-icon {
    width: 36px;
    height: 36px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #f44336;
    text-decoration: none;
    transition: all 0.3s ease;
}

    .social-icon:hover {
        background: #f44336;
        color: #fff;
    }

@media (max-width: 991px) {
    .team-heading {
        font-size: 36px;
    }
}

@media (max-width: 767px) {
    .team-heading {
        font-size: 30px;
    }

    .team-card {
        height: 350px;
    }
}

.cosmetics-main-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.cosmetics-left-section {
    background-image: url(https://templates.g5plus.net/glowing-bootstrap-5/assets/images/banner/banner-01.jpg);
    padding: 4rem 3rem;
    position: relative;
    overflow: hidden;
    min-height: 500px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.cosmetics-right-section {
    background-image: url(https://templates.g5plus.net/glowing-bootstrap-5/assets/images/banner/banner-02.jpg);
    padding: 4rem 3rem;
    position: relative;
    overflow: hidden;
    min-height: 500px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.cosmetics-new-collection-tag {
    color: #999999;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.cosmetics-product-title {
    font-size: 3rem;
    font-weight: 300;
    color: #333333;
    line-height: 1.2;
    margin-bottom: 2rem;
}

.cosmetics-explore-btn {
    color: #333333;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    border-bottom: 1px solid #333333;
    display: inline-block;
    padding-bottom: 2px;
    transition: all 0.3s ease;
}

    .cosmetics-explore-btn:hover {
        color: #666666;
        border-bottom-color: #666666;
    }

.cosmetics-product-image {
    position: absolute;
    right: 2rem;
    top: 50%;
    transform: translateY(-50%);
    width: 200px;
    height: auto;
}

.cosmetics-leaf-decoration-left {
    position: absolute;
    bottom: 2rem;
    left: 1rem;
    width: 80px;
    height: auto;
    opacity: 0.7;
}

.cosmetics-promo-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: #333333;
    margin-bottom: 1rem;
}

.cosmetics-promo-subtitle {
    color: #666666;
    font-size: 1rem;
    margin-bottom: 2rem;
    line-height: 1.5;
}

.cosmetics-shop-btn {
    background: #ffffff;
    color: #333333;
    border: none;
    padding: 0.8rem 2rem;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
    text-decoration: none;
}

    .cosmetics-shop-btn:hover {
        background: #f8f9fa;
        color: #333333;
        transform: translateY(-2px);
    }

.cosmetics-products-group {
    position: absolute;
    right: 2rem;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    gap: 1rem;
}

.cosmetics-bottle-blue {
    width: 60px;
    height: 120px;
    background: #4a90e2;
    border-radius: 30px 30px 8px 8px;
    position: relative;
}

.cosmetics-bottle-green {
    width: 60px;
    height: 120px;
    background: #2d5016;
    border-radius: 30px 30px 8px 8px;
    position: relative;
}

.cosmetics-bottle-cap {
    width: 40px;
    height: 20px;
    background: #d4a574;
    border-radius: 20px;
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.cosmetics-dropper {
    width: 2px;
    height: 40px;
    background: #ffffff;
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
}

.cosmetics-leaf-decoration-right {
    position: absolute;
    bottom: 2rem;
    right: 8rem;
    width: 60px;
    height: auto;
    opacity: 0.8;
}

.cosmetics-citrus-decoration {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
    background: #f4d03f;
    border-radius: 50%;
    opacity: 0.9;
}

@media (max-width: 768px) {
    .cosmetics-main-container {
        flex-direction: column;
    }

    .cosmetics-left-section,
    .cosmetics-right-section {
        padding: 3rem 2rem;
        min-height: 400px;
    }

    .cosmetics-product-title {
        font-size: 2.2rem;
    }

    .cosmetics-promo-title {
        font-size: 2rem;
    }

    .cosmetics-product-image {
        right: 1rem;
        width: 150px;
    }

    .cosmetics-products-group {
        right: 1rem;
        gap: 0.5rem;
    }

    .cosmetics-bottle-blue,
    .cosmetics-bottle-green {
        width: 45px;
        height: 90px;
    }
}

@media (max-width: 576px) {
    .cosmetics-left-section,
    .cosmetics-right-section {
        padding: 2rem 1.5rem;
    }

    .cosmetics-product-title {
        font-size: 1.8rem;
    }

    .cosmetics-promo-title {
        font-size: 1.6rem;
    }

    .cosmetics-product-image {
        width: 120px;
    }

    .cosmetics-products-group {
        scale: 0.8;
    }
}

.id-bg-div {
    background-color: #0a0a0a;
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
}

.it-product-container {
    min-height: 100vh;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
}

.it-product-header {
    text-align: center;
    padding: 60px 20px 40px;
}

.it-product-discover-text {
    font-size: 14px;
    color: #888;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.it-product-main-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
}

.it-product-news-grid {
    padding: 0 20px;
    margin-bottom: 80px;
}

.it-product-news-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    margin-bottom: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

    .it-product-news-card:hover {
        transform: translateY(-5px);
        background: rgba(255, 255, 255, 0.08);
    }

.it-product-card-image {
    width: 100%;
    height: 200px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.it-product-card-content {
    padding: 20px;
}

.it-product-card-title {
    font-size: 18px;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 15px;
    color: #ffffff;
}

.it-product-card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    color: #888;
}

.it-product-promo-section {
    padding: 80px 20px;
    padding-top: 0px;
    position: relative;
    text-align: center;
}

.it-product-promo-title {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.it-product-promo-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.it-product-btn-primary {
    background: linear-gradient(90deg, rgb(235 39 113) 0%, rgb(247 177 30) 100%);
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.it-product-btn-secondary {
    background: transparent;
    color: white;
    padding: 12px 30px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.it-product-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
    color: white;
}

.it-product-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

.it-product-floating-element {
    position: absolute;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    animation: it-product-float 6s ease-in-out infinite;
}

.it-product-floating-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.it-product-floating-2 {
    top: 30%;
    right: 15%;
    animation-delay: 2s;
}

.it-product-floating-3 {
    bottom: 30%;
    left: 20%;
    animation-delay: 4s;
}

.it-product-floating-4 {
    bottom: 20%;
    right: 10%;
    animation-delay: 1s;
}

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

    50% {
        transform: translateY(-20px);
    }
}

@media (max-width: 768px) {
    .it-product-main-title {
        font-size: 32px;
    }

    .it-product-promo-title {
        font-size: 28px;
    }

    .it-product-promo-buttons {
        flex-direction: column;
        align-items: center;
    }

    .it-product-floating-element {
        width: 60px;
        height: 60px;
    }

    .it-product-card-title {
        font-size: 16px;
    }
}

@media (max-width: 576px) {
    .it-product-header {
        padding: 40px 15px 30px;
    }

    .it-product-main-title {
        font-size: 24px;
    }

    .it-product-promo-title {
        font-size: 22px;
    }

    .it-product-floating-element {
        display: none;
    }
}

.Organic-main-container {
    min-height: 100vh;
    position: relative;
    background: linear-gradient(rgba(250, 246, 241, 0.9), rgba(250, 246, 241, 0.9)), url(https://world5.commonsupport.com/2017/warsaw/images/background/pattern-one.png) center / cover;
    overflow: hidden
}

.Organic-header {
    text-align: center;
    padding: 4rem 0 2rem 0;
    position: relative;
    z-index: 10;
}

.Organic-logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.Organic-leaf-icon {
    width: 2.5rem;
    height: 2.5rem;
    background: url('https://world5.commonsupport.com/2017/warsaw/images/icons/icon-crops.png') center/contain no-repeat;
    filter: brightness(0.5);
}

.Organic-welcome-text {
    font-family: 'Dancing Script', cursive;
    font-size: 2.5rem;
    font-weight: 600;
    color: #000;
    position: relative;
    display: inline-block;
}

    .Organic-welcome-text::after {
        content: '';
        position: absolute;
        bottom: -10px;
        left: 50%;
        transform: translateX(-50%);
        width: 80%;
        height: 3px;
        background: linear-gradient(90deg, transparent, #f48e34, transparent);
        border-radius: 2px;
    }

.Organic-content-section {
    padding: 3rem 0 5rem 0;
    position: relative;
    z-index: 10;
}

.Organic-wheat-left, .Organic-wheat-right {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 550px;
    height: 100%;
    background: url(https://world5.commonsupport.com/2017/warsaw/images/resource/crop-image-left.png) center / contain no-repeat;
    z-index: 5;
}

.Organic-wheat-left {
    left: -50px;
}

.Organic-wheat-right {
    right: -50px;
    transform: translateY(-50%) scaleX(-1);
}

.Organic-content-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 3rem 2.5rem;
    margin: 0 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    z-index: 10;
}

.Organic-number-heading {
    font-size: 1.5rem;
    font-weight: 600;
    color: #f27c3e;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

    .Organic-number-heading::before {
        content: '';
        width: 40px;
        height: 2px;
        background: #f27c3e;
        border-radius: 1px;
    }

.Organic-description {
    color: #666666;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    font-weight: 400;
}

.Organic-button {
    background: linear-gradient(90deg, rgb(235, 39, 113) 0%, rgb(247, 177, 30) 100%);
    color: white;
    border: none;
    padding: 0.875rem 2rem;
    border-radius: 25px;
    font-weight: 500;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(76, 211, 169, 0.3);
}

    .Organic-button:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(76, 211, 169, 0.4);
    }

@media (max-width: 768px) {
    .Organic-welcome-text {
        font-size: 2rem;
    }

    .Organic-wheat-left, .Organic-wheat-right {
        width: 120px;
        height: 180px;
    }

    .Organic-wheat-left {
        left: -30px;
    }

    .Organic-wheat-right {
        right: -30px;
    }

    .Organic-content-card {
        padding: 2rem 1.5rem;
        margin: 0 0.5rem 2rem 0.5rem;
    }

    .Organic-header {
        padding: 2rem 0 1rem 0;
    }

    .nav-banner .navbar-brand img {
        width: 120px;
    }
}

@media (max-width: 576px) {
    .Organic-welcome-text {
        font-size: 1.75rem;
    }

    .Organic-wheat-left, .Organic-wheat-right {
        display: none;
    }

    .Organic-content-card {
        margin: 0 0 1.5rem 0;
    }

    .Organic-leaf-icon {
        width: 2rem;
        height: 2rem;
    }
}

.custom-dropdown {
    border-radius: 10px;
    padding: 10px 0;
    box-shadow: 0px 8px 20px rgba(0,0,0,0.15);
    border: none;
    min-width: 200px;
    margin-top: 10px;
    background: #fff;
}

    .custom-dropdown .dropdown-item {
        padding: 5px 20px;
        font-size: 14px;
        font-weight: 400;
        color: #333;
        transition: all 0.3s ease;
        border-radius: 6px;
        padding-left: 0;
    }

.sub-menu-ul {
    overflow: hidden
}

.custom-dropdown .dropdown-item:hover {
    background: transparent;
    color: #ef5356;
    transform: translateX(5px);
    transition: .5s ease all
}

    .custom-dropdown .dropdown-item:hover svg {
        transform: translatex(0px);
        transition: .5s ease all
    }

.custom-dropdown .dropdown-item svg {
    transform: translatex(-20px);
    font-size: 12px;
}

.aboutS2-section {
    position: relative;
    min-height: 100vh;
    background: linear-gradient(90deg, rgb(235 39 113) 0%, rgb(247 177 30) 100%);
    padding: 80px 0;
    overflow: hidden;
}

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

.aboutS2-heading {
    color: #ffffff;
    text-align: center;
    font-size: 3rem;
    font-weight: 600;
    margin-bottom: 60px;
    letter-spacing: -0.02em;
}

.aboutS2-card {
    background: #ffffff;
    border-radius: 30px;
    padding: 50px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.aboutS2-text {
    color: #4a5568;
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 24px;
    font-weight: 400;
}

    .aboutS2-text:last-child {
        margin-bottom: 0;
    }

.aboutS2-wave {
    position: absolute;
    bottom: -100px;
    left: 0;
    width: 100%;
    height: 215px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cpath fill='%23ffffff' fill-opacity='1' d='M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,112C672,96,768,96,864,112C960,128,1056,160,1152,160C1248,160,1344,128,1392,112L1440,96L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z'%3E%3C/path%3E%3C/svg%3E");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center bottom;
    filter: invert(1);
}

@media (max-width: 992px) {
    .aboutS2-heading {
        font-size: 2.5rem;
        margin-bottom: 50px;
    }

    .aboutS2-card {
        padding: 40px;
    }
}

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

    .aboutS2-heading {
        font-size: 2.2rem;
        margin-bottom: 40px;
    }

    .aboutS2-card {
        padding: 30px;
        border-radius: 20px;
    }

    .aboutS2-text {
        font-size: 15px;
    }
}

@media (max-width: 576px) {
    .aboutS2-section {
        padding: 40px 0;
    }

    .aboutS2-heading {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }

    .aboutS2-card {
        padding: 25px;
        margin: 0 15px;
    }

    .aboutS2-text {
        font-size: 14px;
        line-height: 1.6;
    }

    .aboutS2-wave {
        height: 150px;
    }
}

@media (max-width: 480px) {
    .aboutS2-container {
        padding: 0 15px;
    }

    .aboutS2-heading {
        font-size: 1.6rem;
    }

    .aboutS2-card {
        padding: 20px;
        margin: 0 10px;
    }
}

.aboutS3-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.aboutS3-header {
    text-align: center;
    margin-bottom: 60px;
}

.aboutS3-main-title {
    font-size: 2.5rem;
    font-weight: 600;
    color: #333333;
    margin-bottom: 12px;
    line-height: 1.2;
}

.aboutS3-subtitle {
    font-size: 1.1rem;
    color: #6366f1;
    font-weight: 400;
}

.aboutS3-steps-container {
    max-width: 1200px;
    margin: 0 auto;
}

.aboutS3-step-item {
    text-align: left;
    padding: 0 20px;
}

.aboutS3-step-number {
    font-size: 4rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
    line-height: 1;
}

.aboutS3-step-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 16px;
    line-height: 1.3;
}

.aboutS3-step-description {
    font-size: 0.95rem;
    color: #ffffff;
    line-height: 1.6;
    margin-bottom: 24px;
}

.aboutS3-step-underline {
    width: 60px;
    height: 3px;
    background-color: #daebed;
    border-radius: 2px;
}

@media (max-width: 991.98px) {
    .aboutS3-step-item {
        margin-bottom: 50px;
        text-align: center;
    }

    .aboutS3-main-title {
        font-size: 2rem;
    }

    .aboutS3-step-number {
        font-size: 3.5rem;
    }
}

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

    .aboutS3-main-title {
        font-size: 1.8rem;
    }

    .aboutS3-step-number {
        font-size: 3rem;
    }

    .aboutS3-step-item {
        padding: 0 10px;
    }
}

.aboutS4-container {
    min-height: 100vh;
    display: flex;
}

.aboutS4-left-section {
    flex: 1;
    position: relative;
    background-image: url('../images/about-faq-img.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.aboutS4-experience-badge {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    background: white;
    color: #333;
    padding: 1.5rem 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.aboutS4-experience-number {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.aboutS4-experience-text {
    font-size: 0.9rem;
    color: #666;
    font-weight: 400;
}

.aboutS4-right-section {
    flex: 1;
    background-color: #000000;
    padding: 4rem 3rem;
    position: relative;
    overflow: hidden;
}

.aboutS4-decorative-curve {
    position: absolute;
    top: 0;
    right: 0;
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, rgba(193, 255, 0, 0.1) 0%, transparent 70%);
    border-radius: 0 0 0 100%;
}

.aboutS4-play-icon {
    width: 60px;
    height: 60px;
    background-color: #FF5722;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    position: relative;
}

    .aboutS4-play-icon::after {
        content: '';
        width: 0;
        height: 0;
        border-left: 12px solid #ffffff;
        border-top: 8px solid transparent;
        border-bottom: 8px solid transparent;
        margin-left: 3px;
    }

    .aboutS4-play-icon:hover {
        transform: scale(1.1);
        cursor: pointer;
    }

.aboutS4-video-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 1000;
}

.aboutS4-video-popup-content {
    position: relative;
    width: 80%;
    height: 80%;
    margin: 5% auto;
}

.aboutS4-video-close {
    position: absolute;
    right: -40px;
    top: -40px;
    color: white;
    font-size: 35px;
    cursor: pointer;
}

    .aboutS4-video-close:hover {
        color: #C1FF00;
    }

.aboutS4-main-title {
    font-size: 2.8rem;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 3rem;
    color: white;
}

.aboutS4-faq-item {
    margin-bottom: 2rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 1.5rem;
}

.aboutS4-faq-question {
    font-size: 1.2rem;
    font-weight: 500;
    color: white;
    cursor: pointer;
    margin-bottom: 1rem;
    transition: color 0.3s ease;
}

    .aboutS4-faq-question:hover {
        color: #ff5722;
    }

.aboutS4-faq-answer {
    font-size: 1rem;
    color: #888;
    line-height: 1.6;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

    .aboutS4-faq-answer.active {
        max-height: 200px;
    }

@media (max-width: 768px) {
    .aboutS4-container {
        flex-direction: column;
    }

    .aboutS4-left-section {
        min-height: 50vh;
    }

    .aboutS4-right-section {
        padding: 2rem 1.5rem;
    }

    .aboutS4-main-title {
        font-size: 2.2rem;
    }

    .aboutS4-experience-badge {
        bottom: 1rem;
        right: 1rem;
        padding: 1rem 1.5rem;
    }

    .aboutS4-experience-number {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .aboutS4-main-title {
        font-size: 1.8rem;
    }

    .aboutS4-faq-question {
        font-size: 1.1rem;
    }
}

.aboutS5-nav-container {
    width: 100%;
    background: linear-gradient(90deg, rgb(235 39 113) 0%, rgb(247 177 30) 100%);
    overflow: hidden;
    position: relative;
    height: 60px;
    display: flex;
    align-items: center;
}

.aboutS5-nav-strip {
    display: flex;
    align-items: center;
    white-space: nowrap;
    animation: aboutS5-slideLeftToRight 30s linear infinite;
    gap: 0;
}

.aboutS5-nav-item {
    color: white;
    text-decoration: none;
    padding: 8px 15px;
    font-size: 16px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
    white-space: nowrap;
}

    .aboutS5-nav-item:hover {
        color: #FFE4D1;
        text-decoration: none;
    }

.aboutS5-arrow {
    color: white;
    margin: 0 10px;
    font-size: 16px;
    display: inline-block;
}

@keyframes aboutS5-slideLeftToRight {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(100%);
    }
}

.aboutS5-nav-strip:hover {
    animation-play-state: paused;
}

@media (max-width: 768px) {
    .aboutS5-nav-item {
        padding: 6px 12px;
        font-size: 14px;
    }

    .aboutS5-arrow {
        margin: 0 8px;
        font-size: 14px;
    }

    .aboutS5-nav-container {
        height: 50px;
    }
}

@media (max-width: 576px) {
    .aboutS5-nav-item {
        padding: 5px 10px;
        font-size: 13px;
    }

    .aboutS5-arrow {
        margin: 0 6px;
        font-size: 13px;
    }

    .aboutS5-nav-container {
        height: 45px;
    }
}

.aboutS5-content {
    padding: 40px 0;
    text-align: center;
}

.aboutS5-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 20px;
}

.aboutS5-subtitle {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}


.detail__bg__wrapper {
    border-radius: 50%;
    background-color: #ffeec9;
    display: flex;
    align-items: center;
    justify-content: center;
}

.SpecializedToyspageS1-container {
    overflow: hidden;
    position: relative;
}

.SpecializedToyspageS1-hero {
    background: linear-gradient(135deg, #FF6B00 0%, #FFB800 100%);
    min-height: 500px;
    position: relative;
    padding: 60px 0 80px 0;
}

    .SpecializedToyspageS1-hero::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 60px;
        background: #fff;
        border-radius: 50% 50% 0 0 / 100% 100% 0 0;
        transform: scaleX(2);
    }

.SpecializedToyspageS1-sun-icon {
    position: absolute;
    top: 30px;
    left: 50px;
    width: 40px;
    height: 40px;
    border: 3px solid rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    background: transparent;
}

    .SpecializedToyspageS1-sun-icon::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        width: 8px;
        height: 8px;
        background: rgba(255, 255, 255, 0.8);
        border-radius: 50%;
        transform: translate(-50%, -50%);
    }

.SpecializedToyspageS1-sun-rays {
    position: absolute;
    top: -15px;
    left: -15px;
    right: -15px;
    bottom: -15px;
}

    .SpecializedToyspageS1-sun-rays::before,
    .SpecializedToyspageS1-sun-rays::after {
        content: '';
        position: absolute;
        width: 2px;
        height: 12px;
        background: rgba(255, 255, 255, 0.8);
        top: 0;
        left: 50%;
        transform: translateX(-50%);
    }

.SpecializedToyspageS1-content {
    position: relative;
    z-index: 2;
    height: 100%;
}

.SpecializedToyspageS1-baby-image {
    width: 100%;
    max-width: 280px;
    height: auto;
    position: relative;
    z-index: 1;
}

.SpecializedToyspageS1-heading {
    font-size: 3.5rem;
    font-weight: 700;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    line-height: 1.1;
    margin-bottom: 1rem;
}

.SpecializedToyspageS1-subheading {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2rem;
    font-weight: 400;
}

.SpecializedToyspageS1-button {
    background: #E91E63;
    color: white;
    padding: 15px 40px;
    border: none;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(233, 30, 99, 0.3);
}

    .SpecializedToyspageS1-button:hover {
        background: #C2185B;
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(233, 30, 99, 0.4);
    }

.SpecializedToyspageS1-product-section {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.SpecializedToyspageS1-discount-badge {
    position: absolute;
    top: -20px;
    right: 20px;
    background: #6C5CE7;
    color: white;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
    z-index: 3;
    box-shadow: 0 4px 15px rgba(108, 92, 231, 0.3);
}

.SpecializedToyspageS1-product-image {
    width: 100%;
    max-width: 200px;
    height: auto;
    margin: 10px;
    transform: rotate(-5deg);
    transition: transform 0.3s ease;
}

    .SpecializedToyspageS1-product-image:nth-child(2) {
        transform: rotate(8deg);
        margin-top: -20px;
    }

    .SpecializedToyspageS1-product-image:hover {
        transform: rotate(0deg) scale(1.05);
    }

.SpecializedToyspageS1-decorative-circle {
    position: absolute;
    width: 60px;
    height: 60px;
    border: 3px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    top: 20%;
    left: 15%;
}

    .SpecializedToyspageS1-decorative-circle::before {
        content: '';
        position: absolute;
        width: 20px;
        height: 20px;
        background: rgba(255, 255, 255, 0.3);
        border-radius: 50%;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

@media (max-width: 768px) {
    .SpecializedToyspageS1-hero {
        min-height: 600px;
        padding: 40px 0 60px 0;
    }

    .SpecializedToyspageS1-heading {
        font-size: 2.5rem;
        text-align: center;
    }

    .SpecializedToyspageS1-subheading {
        text-align: center;
        font-size: 1rem;
    }

    .SpecializedToyspageS1-button {
        padding: 12px 30px;
        font-size: 1rem;
    }

    .SpecializedToyspageS1-baby-image {
        max-width: 200px;
        margin: 20px auto;
    }

    .SpecializedToyspageS1-product-image {
        max-width: 150px;
    }

    .SpecializedToyspageS1-discount-badge {
        width: 60px;
        height: 60px;
        font-size: 1rem;
        top: -10px;
        right: 10px;
    }

    .SpecializedToyspageS1-sun-icon {
        top: 20px;
        left: 20px;
        width: 30px;
        height: 30px;
    }
}

@media (max-width: 576px) {
    .SpecializedToyspageS1-hero {
        min-height: 700px;
    }

    .SpecializedToyspageS1-heading {
        font-size: 2rem;
    }

    .SpecializedToyspageS1-content .row > div {
        margin-bottom: 30px;
    }
}

.index-page-item {
    padding: 0px !important;
    margin: 0px !important;
}

.aboutS5-nav-container.index-page {
    height: auto;
    background: #fff;
}

.index-page-item {
    padding: 0px !important;
    margin: 0px !important;
    color: #ef5655;
    font-weight: 500;
    font-size: 12px;
    word-spacing: 3px;
    line-height: 2;
}

.read-more-link {
    background: linear-gradient(90deg, rgb(235 39 113) 0%, rgb(247 177 30) 100%);
    color: white;
    padding: 12px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    gap: 8px;
    border: 0px;
    width: 200px;
    margin: 0 auto;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .read-more-link:hover {
        background: #ff5533;
        transform: translateY(-2px);
        color: white;
    }

.slide-list {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px;
    padding-top: 35px
}

    .slide-list li {
        list-style: none;
        padding: 0px;
    }

        .slide-list li a {
            font-size: 15px;
            color: #fff;
            margin-right: 20px;
            text-decoration: none;
            border: 1px solid gray;
            padding: 10px 20px;
            border-radius: 30px;
            background: #ffffff2b;
            transition: .5s ease all
        }

            .slide-list li a:hover {
                font-size: 15px;
                color: #000000;
                margin-right: 20px;
                text-decoration: none;
                border: 1px solid gray;
                padding: 10px 20px;
                border-radius: 30px;
                background: #ffffff;
                font-weight: 500;
            }

            .slide-list li a svg {
                color: #4CAF50;
            }

.index-section1-content-wrapper ul {
    list-style: none;
    padding: 0;
}

    .index-section1-content-wrapper ul li {
        font-size: 14px;
        margin-bottom: 15px;
    }

.MD-page-container {
    background: linear-gradient(135deg, #eb296f0f 0%, #f6a6240a 100%);
    padding: 50px;
    margin: 0;
    position: relative;
    overflow: hidden; /* prevents shapes from overflowing */
}

    /* Right-bottom shape */
    .MD-page-container::after {
        position: absolute;
        bottom: 0;
        right: 0;
        width: 60px;
        height: 150px;
        content: "";
        background-image: url(https://azim.hostlin.com/Sensai/assets/images/shape/shape-65.png);
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center;
        animation: floatShape1 8s ease-in-out infinite;
    }

    /* Left-top shape */
    .MD-page-container::before {
        position: absolute;
        top: 0;
        left: 0;
        width: 85px;
        height: 150px;
        content: "";
        background-image: url(https://azim.hostlin.com/Sensai/assets/images/shape/shape-64.png);
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center;
        animation: floatShape2 10s ease-in-out infinite;
    }

/* Floating + rotation animations */
@keyframes floatShape1 {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(10deg);
    }
}

@keyframes floatShape2 {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(20px) rotate(-10deg);
    }
}


.CEO-breadcrumb .breadcrumb {
    background: transparent;
    margin-bottom: 0;
    justify-content: center;
}

.CEO-breadcrumb .breadcrumb-item {
    color: #666;
    font-size: 0.95rem;
}

    .CEO-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
        content: "/";
        color: #666;
    }

.MD-about-heading {
    text-align: center;
    font-size: 3.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1rem;
    margin-top: 1rem;
}

.CEO-image-container {
    max-width: max-content;
    margin: 0 auto;
    padding: 0 2rem;
    margin-bottom: 4rem;
}

.MD-team-image {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    background: #f8f9fa;
    object-fit: cover;
}

@media (max-width: 768px) {
    .MD-about-heading {
        font-size: 2.5rem;
        margin-bottom: 2rem;
    }

    .CEO-image-container {
        padding: 0 1rem;
        margin-bottom: 2rem;
    }

    .CEO-breadcrumb {
        padding-top: 1.5rem;
    }
}

@media (max-width: 576px) {
    .MD-about-heading {
        font-size: 2rem;
    }

    .CEO-breadcrumb .breadcrumb-item {
        font-size: 0.9rem;
    }
}

.index-section6-hero.ceo-pageS {
    background: linear-gradient(90deg, rgb(235 39 113) 50%, rgb(247 177 30) 0%);
}


.md-ceoS3-testimonial-section {
    background-color: #f8f9fa;
    padding: 80px 20px;
    min-height: 100vh;
}

.md-ceoS3-section-label {
    text-align: center;
    color: #ff5722;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 16px;
}

.md-ceoS3-main-title {
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    color: #1f2937;
    line-height: 1.2;
}

.md-ceoS3-testimonial-card {
    background: white;
    border-radius: 16px;
    padding: 32px;
    margin-bottom: 32px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border: 1px solid #e5e7eb;
    height: 100%;
}

.md-ceoS3-profile {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.md-ceoS3-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    margin-right: 16px;
    object-fit: cover;
}

.md-ceoS3-user-info {
    flex-grow: 1;
}

.md-ceoS3-name {
    font-weight: 600;
    font-size: 1.1rem;
    margin: 0;
    color: #1f2937;
}

.md-ceoS3-designation {
    color: #6b7280;
    font-size: 0.9rem;
    margin: 2px 0 0 0;
}

.md-ceoS3-stars {
    color: #FF5722;
    margin-bottom: 16px;
    font-size: 1.1rem;
}

.md-ceoS3-testimonial-title {
    font-weight: 600;
    font-size: 1.125rem;
    margin-bottom: 12px;
    color: #1f2937;
}

.md-ceoS3-testimonial-text {
    color: #4b5563;
    line-height: 1.6;
    font-size: 0.95rem;
    margin: 0;
}

@media (max-width: 768px) {
    .md-ceoS3-main-title {
        font-size: 2.25rem;
    }

    .md-ceoS3-testimonial-section {
        padding: 60px 15px;
    }

    .md-ceoS3-testimonial-card {
        padding: 24px;
        margin-bottom: 24px;
    }
}

@media (max-width: 576px) {
    .md-ceoS3-main-title {
        font-size: 1.875rem;
    }
}

.md-ceoS4-container {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.md-ceoS4-wave-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.1;
    background-image: url("https://xaito.vercel.app/assets/img/shapes/cta-shape-1.png");
}

.md-ceoS4-hero {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    padding: 45px;
}

.md-ceoS4-unlock-label {
    color: #FF5722;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

    .md-ceoS4-unlock-label::before {
        content: "•";
        margin-right: 8px;
        font-size: 16px;
    }

.md-ceoS4-header {
    font-size: 3.5rem;
    font-weight: 700;
    color: #212529;
    line-height: 1.1;
    margin-bottom: 40px;
}

.md-ceoS4-features {
    display: flex;
    gap: 30px;
    margin-bottom: 0;
}

.md-ceoS4-feature-item {
    display: flex;
    align-items: center;
    color: #495057;
    font-size: 16px;
    font-weight: 500;
}

.md-ceoS4-check-icon {
    width: 20px;
    height: 20px;
    background-color: #ff5722;
    border-radius: 50%;
    margin-right: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

    .md-ceoS4-check-icon::after {
        content: "✓";
        color: white;
        font-size: 12px;
        font-weight: bold;
    }

.md-ceoS4-cta {
    background: linear-gradient(90deg, rgb(235 39 113) 0%, rgb(247 177 30) 100%);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(111, 66, 193, 0.3);
}

    .md-ceoS4-cta:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(111, 66, 193, 0.4);
        color: white;
    }

@media (max-width: 991.98px) {
    .md-ceoS4-header {
        font-size: 2.8rem;
    }

    .md-ceoS4-hero {
        padding: 80px 0;
    }
}

@media (max-width: 767.98px) {
    .md-ceoS4-header {
        font-size: 2.2rem;
        margin-bottom: 30px;
    }

    .md-ceoS4-features {
        flex-direction: column;
        gap: 15px;
        margin-bottom: 30px;
    }

    .md-ceoS4-hero {
        padding: 60px 0;
        text-align: center;
    }

    .md-ceoS4-unlock-label {
        justify-content: center;
    }
}

@media (max-width: 575.98px) {
    .md-ceoS4-header {
        font-size: 1.8rem;
    }

    .md-ceoS4-cta {
        padding: 12px 24px;
        font-size: 15px;
    }
}

.md-ceo-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 2rem 0;
}

.md-ceo-main-wrapper {
    background: white;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(108, 92, 231, 0.1);
    overflow: hidden;
    max-width: 1200px;
    margin: 0 auto;
}

.md-ceo-image-section {
    position: relative;
    height: 100%;
    min-height: 500px;
    background: url('https://readdy.ai/api/search-image?query=young%20man%20with%20curly%20hair%20wearing%20yellow%20headphones%20and%20brown%20jacket%20sitting%20at%20modern%20podcast%20studio%20with%20microphone%20professional%20lighting%20warm%20atmosphere&width=600&height=500&seq=1&orientation=landscape') center/cover no-repeat;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2rem;
}

.md-ceo-rtl-badge {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    background: #ff5722;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.875rem;
}

.md-ceo-action-buttons {
    display: flex;
    gap: 0.75rem;
    margin-top: auto;
}

.md-ceo-action-btn {
    background: white;
    border: none;
    padding: 0.875rem 1.25rem;
    border-radius: 12px;
    font-weight: 500;
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

    .md-ceo-action-btn.active {
        background: #ff5722;
        color: white;
    }

    .md-ceo-action-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    }

.md-ceo-content-section {
    padding: 3rem 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.md-ceo-header {
    margin-bottom: 2.5rem;
}

.md-ceo-badge {
    color: #ff5722;
    font-weight: 600;
    font-size: 0.875rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.md-ceo-title {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
}

.md-ceo-subtitle {
    font-size: 1.125rem;
    color: #6b7280;
    line-height: 1.6;
}

.md-ceo-features {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.md-ceo-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.md-ceo-feature-icon {
    width: 48px;
    height: 48px;
    background: #f8f7ff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FF5722;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.md-ceo-feature-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.md-ceo-feature-content p {
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
}

.md-ceo-go-top {
    position: fixed;
    right: 2rem;
    top: 50%;
    transform: translateY(-50%) rotate(-90deg);
    background: #6C5CE7;
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 500;
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 1000;
}

    .md-ceo-go-top:hover {
        background: #5b4fd6;
        transform: translateY(-50%) rotate(-90deg) translateX(-5px);
    }

@media (max-width: 768px) {
    .md-ceo-container {
        padding: 1rem;
    }

    .md-ceo-main-wrapper {
        border-radius: 16px;
    }

    .md-ceo-image-section {
        min-height: 400px;
        padding: 1.5rem;
    }

    .md-ceo-action-buttons {
        flex-wrap: wrap;
        gap: 0.5rem;
    }

    .md-ceo-action-btn {
        padding: 0.75rem 1rem;
        font-size: 0.8rem;
    }

    .md-ceo-content-section {
        padding: 2rem 1.5rem;
    }

    .md-ceo-title {
        font-size: 2rem;
    }

    .md-ceo-subtitle {
        font-size: 1rem;
    }

    .md-ceo-go-top {
        right: 1rem;
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }
}

@media (max-width: 576px) {
    .md-ceo-title {
        font-size: 1.75rem;
    }

    .md-ceo-features {
        gap: 1.5rem;
    }

    .md-ceo-feature-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .md-ceo-feature-content h3 {
        font-size: 1.125rem;
    }
}

.team-detailsS1-container {
    padding: 2rem;
    background-color: #fef8f7;
}

.team-detailsS1-card {
    display: flex;
    align-items: center;
    padding: 1.25rem;
    background: #ffffff;
    border-radius: 0.5rem;
    margin-bottom: 1rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

    .team-detailsS1-card:hover {
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        transform: translateY(-2px);
    }

.team-detailsS1-icon {
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-right: 1rem;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.team-detailsS1-content {
    flex: 1;
}

    .team-detailsS1-content h3 {
        font-size: 1rem;
        margin: 0 0 0.25rem 0;
        font-weight: 600;
        color: #333;
        line-height: 1.3;
    }

.team-detailsS1-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.team-detailsS1-stars {
    color: #ffc107;
    font-size: 0.875rem;
    display: flex;
    gap: 0.125rem;
}

.team-detailsS1-score {
    font-size: 0.875rem;
    color: #666;
    font-weight: 500;
}

.team-detailsS1-red-icon {
    background: #dc3545;
    color: white;
}

.team-detailsS1-blue-icon {
    background: #0d6efd;
    color: white;
}

.team-detailsS1-orange-icon {
    background: #fd7e14;
    color: white;
}

@media (max-width: 768px) {
    .team-detailsS1-container {
        padding: 1rem;
    }

    .team-detailsS1-card {
        margin-bottom: 0.75rem;
        padding: 1rem;
    }

    .team-detailsS1-content h3 {
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .team-detailsS1-card {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }

    .team-detailsS1-icon {
        margin-right: 0;
        margin-bottom: 0.5rem;
    }
}

.team-detailsS2 {
    background: #fef8f7;
    padding: 4rem 0;
    min-height: 100vh;
}

    .team-detailsS2 .team-card {
        background: #ffffff;
        padding: 2rem 1.5rem;
        border-radius: 1rem;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
        border: 1px solid rgba(255, 255, 255, 0.2);
        transition: all 0.3s ease;
        height: 100%;
    }

        .team-detailsS2 .team-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
        }

    .team-detailsS2 .member-image {
        width: 120px;
        height: 120px;
        margin: 0 auto 1.5rem;
        overflow: hidden;
        border-radius: 50%;
        position: relative;
    }

        .team-detailsS2 .member-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

    .team-detailsS2 .member-name {
        font-size: 1.25rem;
        font-weight: 600;
        color: #1a1a1a;
        margin-bottom: 0.5rem;
        line-height: 1.3;
    }

    .team-detailsS2 .member-position {
        color: #6b7280;
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
        font-weight: 400;
    }

    .team-detailsS2 .social-links {
        display: flex;
        justify-content: center;
        gap: 0.75rem;
    }

    .team-detailsS2 .social-icon {
        width: 36px;
        height: 36px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: linear-gradient(90deg, rgb(235 39 113) 0%, rgb(247 177 30) 100%);
        color: white;
        border-radius: 0.5rem;
        text-decoration: none;
        font-size: 0.9rem;
        transition: all 0.3s ease;
    }

        .team-detailsS2 .social-icon:hover {
            transform: translateY(-2px);
            background: #ff5722;
            color: white;
            box-shadow: 0 8px 20px rgba(79, 70, 229, 0.3);
        }

@media (max-width: 768px) {
    .team-detailsS2 {
        padding: 2rem 0;
    }

        .team-detailsS2 .team-card {
            padding: 1.5rem 1rem;
        }

        .team-detailsS2 .member-image {
            width: 100px;
            height: 100px;
        }

        .team-detailsS2 .member-name {
            font-size: 1.1rem;
        }

        .team-detailsS2 .member-position {
            font-size: 0.9rem;
        }
}

.e-commerceS1-popular-categories {
    padding: 3rem 0;
    background-color: #ffffff;
}

.e-commerceS1-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2.5rem;
}

    .e-commerceS1-header h2 {
        font-size: 1.75rem;
        font-weight: 600;
        color: #1a1a1a;
        margin: 0;
    }

.e-commerceS1-view-all {
    color: #666666;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

    .e-commerceS1-view-all:hover {
        color: #333333;
    }

.e-commerceS1-category-grid {
    gap: 1.5rem;
    margin: 0;
    padding: 1rem 3rem;
}

.carousel-control-prev,
.carousel-control-next {
    width: 3rem;
    opacity: 1;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: rgba(0, 0, 0, 0.3);
    border-radius: 50%;
    padding: 1.5rem;
    background-size: 1.5rem;
}

    .carousel-control-prev-icon:hover,
    .carousel-control-next-icon:hover {
        background-color: rgba(0, 0, 0, 0.5);
    }

.e-commerceS1-category-card {
    text-align: center;
    padding: 1.5rem 1rem;
    background-color: #f8f9fa;
    border-radius: 12px;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

    .e-commerceS1-category-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    }

.e-commerceS1-category-image {
    width: 80px;
    height: 80px;
    margin-bottom: 1rem;
    border-radius: 8px;
    object-fit: cover;
}

.e-commerceS1-category-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 0.5rem 0;
}

.e-commerceS1-category-count {
    font-size: 0.875rem;
    color: #666666;
    margin: 0;
}

@media (max-width: 768px) {
    .e-commerceS1-header {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

        .e-commerceS1-header h2 {
            font-size: 1.5rem;
        }

    .e-commerceS1-category-grid {
        gap: 1rem;
    }

    .e-commerceS1-category-card {
        padding: 1rem 0.75rem;
    }

    .e-commerceS1-category-image {
        width: 60px;
        height: 60px;
    }

    .e-commerceS1-category-title {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .e-commerceS1-popular-categories {
        padding: 2rem 0;
    }

    .e-commerceS1-category-image {
        width: 50px;
        height: 50px;
    }

    .e-commerceS1-category-title {
        font-size: 0.9rem;
    }

    .e-commerceS1-category-count {
        font-size: 0.8rem;
    }
}

@media(max-width:991px) {
    .mb-screen-p-none {
        padding: 15px !important;
    }
}

.e-commerceS1-container {
    padding: 0;
    margin: 0;
}

.e-commerceS1-collection-section {
    display: flex;
    min-height: 400px;
}

.e-commerceS1-collection-item {
    flex: 1;
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.e-commerceS1-dress-collection {
    background-image: url('https://readdy.ai/api/search-image?query=elegant%20woman%20in%20white%20bohemian%20summer%20dress%20with%20wicker%20basket%20bag%2C%20natural%20lighting%2C%20soft%20beige%20tones%2C%20minimalist%20fashion%20photography%2C%20clean%20background&width=600&height=400&seq=dress001&orientation=landscape');
}

.e-commerceS1-winter-collection {
    background-image: url('https://readdy.ai/api/search-image?query=stylish%20woman%20in%20beige%20winter%20coat%20and%20hat%20carrying%20canvas%20tote%20bag%2C%20cozy%20autumn%20fashion%2C%20warm%20neutral%20tones%2C%20lifestyle%20photography%2C%20soft%20lighting&width=600&height=400&seq=winter001&orientation=landscape');
}

.e-commerceS1-overlay {
    position: absolute;
    bottom: 30px;
    left: 30px;
    right: 30px;
}

.e-commerceS1-collection-card {
    background: white;
    border-radius: 25px;
    padding: 20px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.e-commerceS1-collection-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
    margin: 0;
}

.e-commerceS1-shop-btn {
    background: none;
    border: none;
    font-size: 0.9rem;
    font-weight: 600;
    color: #333;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
}

    .e-commerceS1-shop-btn:hover {
        color: #666;
    }

.e-commerceS1-arrow {
    font-size: 0.8rem;
}

@media (max-width: 768px) {
    .e-commerceS1-collection-section {
        flex-direction: column;
    }

    .e-commerceS1-collection-item {
        min-height: 300px;
    }

    .e-commerceS1-overlay {
        bottom: 20px;
        left: 20px;
        right: 20px;
    }

    .e-commerceS1-collection-card {
        padding: 15px 20px;
        border-radius: 20px;
    }

    .e-commerceS1-collection-title {
        font-size: 1.2rem;
    }

    .e-commerceS1-shop-btn {
        font-size: 0.8rem;
    }
}

@media (max-width: 576px) {
    .e-commerceS1-collection-item {
        min-height: 250px;
    }

    .e-commerceS1-overlay {
        bottom: 15px;
        left: 15px;
        right: 15px;
    }

    .e-commerceS1-collection-card {
        padding: 12px 16px;
        border-radius: 15px;
    }

    .e-commerceS1-collection-title {
        font-size: 1.1rem;
    }
}

.e-commerceS2-popular-categories {
    padding: 80px 0;
    background-color: #ffffff;
}

.e-commerceS2-header {
    margin-bottom: 60px;
}

.e-commerceS2-title {
    font-size: 2.5rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 15px;
    letter-spacing: -0.02em;
}

.e-commerceS2-subtitle {
    color: #888888;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

.e-commerceS2-category-card {
    text-align: center;
    cursor: pointer;
    transition: transform 0.3s ease;
}

    .e-commerceS2-category-card:hover {
        transform: translateY(-8px);
    }

.e-commerceS2-image-wrapper {
    width: 100%;
    aspect-ratio: 1;
    border-radius: 50%;
    overflow: hidden;
    background-color: #f8f8f8;
    margin-bottom: 20px;
    position: relative;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

    .e-commerceS2-image-wrapper img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }

.e-commerceS2-category-name {
    font-size: 1.1rem;
    font-weight: 500;
    color: #1a1a1a;
    margin: 0;
}

.e-commerceS2-category-count {
    color: #888888;
    font-weight: 400;
}

@media (max-width: 768px) {
    .e-commerceS2-title {
        font-size: 2rem;
    }

    .e-commerceS2-popular-categories {
        padding: 60px 0;
    }

    .e-commerceS2-header {
        margin-bottom: 40px;
    }
}

@media (max-width: 576px) {
    .e-commerceS2-title {
        font-size: 1.8rem;
    }
}

.e-commerceS3-main-container {
    font-family: 'Inter', sans-serif;
    background-color: #f8f9fa;
    padding: 60px 0;
    min-height: 100vh;
}

.e-commerceS3-header {
    text-align: center;
    margin-bottom: 50px;
}

.e-commerceS3-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.e-commerceS3-subtitle {
    font-size: 1rem;
    color: #6c757d;
    margin: 0;
}

.e-commerceS3-product-grid {
    margin: 0 auto;
}

.e-commerceS3-product-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    margin-bottom: 30px;
    position: relative;
}

    .e-commerceS3-product-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    }

.e-commerceS3-image-container {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1;
}

.e-commerceS3-product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.e-commerceS3-product-card:hover .e-commerceS3-product-image {
    transform: scale(1.05);
}

.e-commerceS3-tag {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    z-index: 2;
}

.e-commerceS3-tag-hot {
    background: #ff6b35;
    color: white;
}

.e-commerceS3-tag-flash {
    background: #1a1a1a;
    color: white;
    display: flex;
    align-items: center;
    gap: 4px;
}

.e-commerceS3-tag-trending {
    background: #6366f1;
    color: white;
}

.e-commerceS3-tag-new {
    background: #10b981;
    color: white;
}

.e-commerceS3-flash-icon {
    color: #ff0000;
    font-size: 0.8rem;
}

.e-commerceS3-action-buttons {
    position: absolute;
    top: 15px;
    right: 15px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.e-commerceS3-product-card:hover .e-commerceS3-action-buttons {
    opacity: 1;
}

.e-commerceS3-action-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: white;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: #6c757d;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: all 0.2s ease;
}

    .e-commerceS3-action-btn:hover {
        background: #1a1a1a;
        color: white;
        transform: scale(1.1);
    }

.e-commerceS3-size-options {
    position: absolute;
    bottom: 15px;
    left: 15px;
    display: flex;
    gap: 6px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.e-commerceS3-product-card:hover .e-commerceS3-size-options {
    opacity: 1;
}

.e-commerceS3-size-btn {
    padding: 6px 12px;
    border-radius: 20px;
    background: white;
    border: 1px solid #e9ecef;
    font-size: 0.75rem;
    font-weight: 500;
    color: #495057;
    transition: all 0.2s ease;
}

    .e-commerceS3-size-btn:hover,
    .e-commerceS3-size-btn.active {
        background: #1a1a1a;
        color: white;
        border-color: #1a1a1a;
    }

.e-commerceS3-countdown {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background: #dc3545;
    color: white;
    padding: 8px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

.e-commerceS3-product-info {
    padding: 20px;
}

.e-commerceS3-product-title {
    font-size: 1rem;
    font-weight: 500;
    color: #1a1a1a;
    margin-bottom: 12px;
    line-height: 1.4;
}

.e-commerceS3-price-container {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 15px;
}

.e-commerceS3-original-price {
    font-size: 0.875rem;
    color: #6c757d;
    text-decoration: line-through;
}

.e-commerceS3-current-price {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a1a1a;
}

.e-commerceS3-color-variants {
    display: flex;
    gap: 8px;
}

.e-commerceS3-color-option {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid #fff;
    box-shadow: 0 0 0 1px #e9ecef;
    cursor: pointer;
    transition: transform 0.2s ease;
}

    .e-commerceS3-color-option:hover {
        transform: scale(1.2);
    }

.e-commerceS3-color-beige {
    background-color: #d4b896;
}

.e-commerceS3-color-blue {
    background-color: #87ceeb;
}

.e-commerceS3-color-orange {
    background-color: #ff8c69;
}

.e-commerceS3-color-pink {
    background-color: #ff69b4;
}

.e-commerceS3-color-white {
    background-color: #ffffff;
}

.e-commerceS3-color-green {
    background-color: #90ee90;
}

.e-commerceS3-color-cream {
    background-color: #f5f5dc;
}

.e-commerceS3-color-black {
    background-color: #2c2c2c;
}

.e-commerceS3-color-sage {
    background-color: #9caf88;
}

.e-commerceS3-sale-banner {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(90deg, #ff6b35 0%, #ff8c69 100%);
    color: white;
    padding: 8px;
    font-size: 0.7rem;
    font-weight: 600;
    text-align: center;
    text-transform: uppercase;
}

@media (max-width: 768px) {
    .e-commerceS3-title {
        font-size: 2rem;
    }

    .e-commerceS3-main-container {
        padding: 40px 0;
    }

    .e-commerceS3-action-buttons {
        opacity: 1;
    }

    .e-commerceS3-size-options {
        opacity: 1;
    }
}

@media (max-width: 576px) {
    .e-commerceS3-title {
        font-size: 1.75rem;
    }

    .e-commerceS3-product-info {
        padding: 15px;
    }
}

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

.e-commerceS4-header {
    text-align: center;
    padding: 60px 0 40px;
}

.e-commerceS4-title {
    font-size: 2.5rem;
    font-weight: 600;
    color: #2c2c2c;
    margin-bottom: 10px;
}

.e-commerceS4-subtitle {
    font-size: 1rem;
    color: #666;
    font-weight: 300;
}

.e-commerceS4-categories {
    margin-bottom: 60px;
}

.e-commerceS4-category-item {
    text-align: center;
    padding: 20px;
    transition: transform 0.3s ease;
    cursor: pointer;
}

    .e-commerceS4-category-item:hover {
        transform: translateY(-5px);
    }

.e-commerceS4-category-image {
    width: 120px;
    height: 120px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    background: #f8f8f8;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: box-shadow 0.3s ease;
}

.e-commerceS4-category-item:hover .e-commerceS4-category-image {
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.e-commerceS4-category-image img {
    width: 80px;
    height: 80px;
    object-fit: cover;
}

.e-commerceS4-category-name {
    font-size: 1.1rem;
    font-weight: 500;
    color: #2c2c2c;
    margin-bottom: 5px;
}

.e-commerceS4-category-count {
    font-size: 0.9rem;
    color: #888;
    font-weight: 300;
}

.e-commerceS4-promotions {
    margin-top: 40px;
}

.e-commerceS4-promo-card {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    height: 300px;
    background: linear-gradient(135deg, #8B4513 0%, #D2691E 100%);
    cursor: pointer;
    transition: transform 0.3s ease;
}

    .e-commerceS4-promo-card:hover {
        transform: scale(1.02);
    }

    .e-commerceS4-promo-card.diamond {
        background: linear-gradient(135deg, #4A4A4A 0%, #8B4513 100%);
    }

    .e-commerceS4-promo-card.birthstone {
        background: linear-gradient(135deg, #2E4057 0%, #048A81 100%);
    }

.e-commerceS4-promo-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.4);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 40px;
    color: white;
}

.e-commerceS4-sale-tag {
    background: #ff6b6b;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    margin-bottom: 15px;
    display: inline-block;
}

.e-commerceS4-promo-title {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 20px;
    line-height: 1.2;
}

.e-commerceS4-shop-btn {
    background: transparent;
    border: 2px solid white;
    color: white;
    padding: 12px 25px;
    border-radius: 25px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

    .e-commerceS4-shop-btn:hover {
        background: white;
        color: #2c2c2c;
        text-decoration: none;
    }

.e-commerceS4-promo-image {
    position: absolute;
    right: 0;
    top: 0;
    width: 50%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0.3;
}

@media (max-width: 768px) {
    .e-commerceS4-title {
        font-size: 2rem;
    }

    .e-commerceS4-category-image {
        width: 100px;
        height: 100px;
    }

        .e-commerceS4-category-image img {
            width: 60px;
            height: 60px;
        }

    .e-commerceS4-promo-card {
        height: 250px;
        margin-bottom: 20px;
    }

    .e-commerceS4-promo-title {
        font-size: 1.5rem;
    }

    .e-commerceS4-promo-overlay {
        padding: 30px;
    }
}

@media (max-width: 576px) {
    .e-commerceS4-category-item {
        margin-bottom: 30px;
    }

    .e-commerceS4-promo-card {
        height: 200px;
    }

    .e-commerceS4-promo-title {
        font-size: 1.3rem;
    }
}

.e-commerceS5-header {
    text-align: center;
    padding: 4rem 0 3rem 0;
    max-width: 800px;
    margin: 0 auto;
}

.e-commerceS5-main-title {
    font-size: 3rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.e-commerceS5-subtitle {
    font-size: 1.1rem;
    color: #666;
    font-weight: 400;
    max-width: 500px;
    margin: 0 auto;
}

.e-commerceS5-collections-container {
    padding: 0 2rem 4rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.e-commerceS5-collection-card {
    background-color: #f5f5f5;
    border-radius: 20px;
    padding: 2.5rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    position: relative;
    overflow: hidden;
}

    .e-commerceS5-collection-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    }

.e-commerceS5-card-sneakers {
    background-color: #e8e8e8;
}

.e-commerceS5-card-suede {
    background-color: #f4e6e1;
}

.e-commerceS5-card-sport {
    background-color: #ede8e0;
}

.e-commerceS5-product-image {
    width: 100%;
    height: 280px;
    object-fit: cover;
    object-position: center;
    border-radius: 12px;
    margin-bottom: 2rem;
}

.e-commerceS5-collection-title {
    font-size: 1.75rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 0.75rem;
}

.e-commerceS5-collection-description {
    font-size: 1rem;
    color: #666;
    margin-bottom: 2rem;
    flex-grow: 1;
    line-height: 1.5;
}

.e-commerceS5-shop-button {
    background-color: #1a1a1a;
    color: white;
    border: none;
    padding: 0.875rem 1.75rem;
    border-radius: 50px;
    font-weight: 500;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    text-decoration: none;
    align-self: flex-start;
    white-space: nowrap;
}

    .e-commerceS5-shop-button:hover {
        background-color: #333;
        color: white;
        transform: translateX(5px);
    }

.e-commerceS5-arrow-icon {
    font-size: 0.875rem;
    transition: transform 0.3s ease;
}

.e-commerceS5-shop-button:hover .e-commerceS5-arrow-icon {
    transform: translateX(3px);
}

@media (max-width: 991px) {
    .e-commerceS5-main-title {
        font-size: 2.5rem;
    }

    .e-commerceS5-collection-card {
        padding: 2rem;
        margin-bottom: 2rem;
    }

    .e-commerceS5-product-image {
        height: 250px;
    }
}

@media (max-width: 767px) {
    .e-commerceS5-main-title {
        font-size: 2rem;
    }

    .e-commerceS5-header {
        padding: 2rem 0;
    }

    .e-commerceS5-collections-container {
        padding: 0 1rem 2rem 1rem;
    }

    .e-commerceS5-collection-card {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .e-commerceS5-product-image {
        height: 220px;
    }

    .e-commerceS5-collection-title {
        font-size: 1.5rem;
    }
}

@media (max-width: 575px) {
    .e-commerceS5-main-title {
        font-size: 1.75rem;
    }

    .e-commerceS5-subtitle {
        font-size: 1rem;
    }
}

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

.ecommerceS6-header-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.ecommerceS6-title {
    font-size: 28px;
    font-weight: 500;
    color: #333;
    margin: 0;
}

.ecommerceS6-view-all-link {
    text-decoration: none;
    color: #333;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

    .ecommerceS6-view-all-link:hover {
        color: #007bff;
    }

.ecommerceS6-categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.ecommerceS6-category-item {
    text-align: center;
    cursor: pointer;
    transition: transform 0.3s ease;
}

    .ecommerceS6-category-item:hover {
        transform: translateY(-5px);
    }

.ecommerceS6-category-circle {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 25px;
    position: relative;
    overflow: hidden;
}

.ecommerceS6-romance-bg {
    background: linear-gradient(135deg, #FFE5E5 0%, #FFF0F0 100%);
}

.ecommerceS6-fiction-bg {
    background: linear-gradient(135deg, #FFF4E5 0%, #FFF8F0 100%);
}

.ecommerceS6-horror-bg {
    background: linear-gradient(135deg, #F0F0F0 0%, #F8F8F8 100%);
}

.ecommerceS6-mystery-bg {
    background: linear-gradient(135deg, #E5F3FF 0%, #F0F8FF 100%);
}

.ecommerceS6-literary-bg {
    background: linear-gradient(135deg, #F0FFF0 0%, #F8FFF8 100%);
}

.ecommerceS6-fantasy-bg {
    background: linear-gradient(135deg, #F5F0FF 0%, #FAF8FF 100%);
}

.ecommerceS6-book-cover {
    width: 80px;
    height: 110px;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.ecommerceS6-romance-cover {
    background-image: url('https://readdy.ai/api/search-image?query=romantic%20novel%20book%20cover%20with%20soft%20pastel%20colors%20couple%20silhouette%20beach%20sunset%20dreamy%20atmosphere%20modern%20typography%20elegant%20design%20minimalist%20style&width=160&height=220&seq=romance001&orientation=portrait');
}

.ecommerceS6-fiction-cover {
    background-image: url('https://readdy.ai/api/search-image?query=literary%20fiction%20book%20cover%20with%20warm%20earth%20tones%20abstract%20artistic%20design%20sophisticated%20typography%20modern%20minimalist%20style%20professional%20publishing&width=160&height=220&seq=fiction001&orientation=portrait');
}

.ecommerceS6-horror-cover {
    background-image: url('https://readdy.ai/api/search-image?query=horror%20thriller%20book%20cover%20with%20dark%20mysterious%20atmosphere%20gothic%20elements%20dramatic%20shadows%20bold%20typography%20spine%20chilling%20design%20professional%20publishing&width=160&height=220&seq=horror001&orientation=portrait');
}

.ecommerceS6-mystery-cover {
    background-image: url('https://readdy.ai/api/search-image?query=mystery%20detective%20book%20cover%20with%20noir%20style%20dark%20blue%20tones%20investigative%20elements%20magnifying%20glass%20cityscape%20silhouette%20professional%20typography&width=160&height=220&seq=mystery001&orientation=portrait');
}

.ecommerceS6-literary-cover {
    background-image: url('https://readdy.ai/api/search-image?query=literary%20classic%20book%20cover%20with%20elegant%20vintage%20design%20sophisticated%20typography%20nature%20elements%20tree%20branches%20artistic%20illustration%20timeless%20appeal&width=160&height=220&seq=literary001&orientation=portrait');
}

.ecommerceS6-fantasy-cover {
    background-image: url('https://readdy.ai/api/search-image?query=fantasy%20adventure%20book%20cover%20with%20magical%20mystical%20elements%20enchanted%20forest%20ethereal%20lighting%20mythical%20creatures%20epic%20fantasy%20design%20vibrant%20colors&width=160&height=220&seq=fantasy001&orientation=portrait');
}

.ecommerceS6-category-name {
    font-size: 16px;
    font-weight: 500;
    color: #333;
    margin-bottom: 5px;
}

.ecommerceS6-category-count {
    font-size: 14px;
    color: #666;
}

.ecommerceS6-timer-banner {
    background: linear-gradient(135deg, #FFF5F5 0%, #FFEBEB 100%);
    border-radius: 15px;
    padding: 25px;
    border: 2px dashed #FFB3B3;
    text-align: center;
}

.ecommerceS6-timer-text {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
    font-size: 16px;
    font-weight: 500;
    color: #333;
}

.ecommerceS6-timer-boxes {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.ecommerceS6-timer-box {
    background-color: #DC2626;
    color: white;
    padding: 15px 20px;
    border-radius: 8px;
    min-width: 70px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.3);
}

.ecommerceS6-timer-number {
    font-size: 24px;
    font-weight: bold;
    line-height: 1;
    margin-bottom: 5px;
}

.ecommerceS6-timer-label {
    font-size: 12px;
    text-transform: capitalize;
    opacity: 0.9;
}

@media (max-width: 768px) {
    .ecommerceS6-main-container {
        padding: 20px 15px;
    }

    .ecommerceS6-title {
        font-size: 24px;
    }

    .ecommerceS6-categories-grid {
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
        gap: 20px;
        margin-bottom: 40px;
    }

    .ecommerceS6-category-circle {
        width: 130px;
        height: 130px;
        padding: 20px;
    }

    .ecommerceS6-book-cover {
        width: 65px;
        height: 90px;
    }

    .ecommerceS6-timer-banner {
        padding: 20px 15px;
    }

    .ecommerceS6-timer-boxes {
        gap: 10px;
    }

    .ecommerceS6-timer-box {
        padding: 12px 15px;
        min-width: 60px;
    }

    .ecommerceS6-timer-number {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .ecommerceS6-header-section {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

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

    .ecommerceS6-timer-text {
        flex-direction: column;
        gap: 5px;
    }
}

.ConsultancyS1-hero-section {
    min-height: 100vh;
    position: relative;
    background: linear-gradient(135deg, #fdf3f6 0%, #fffaf7 100%);
}

.ConsultancyS1-hero-container {
    display: flex;
    align-items: center;
    min-height: 100vh;
    position: relative;
}

.ConsultancyS1-hero-image {
    position: absolute;
    left: 0;
    top: 0;
    width: 60%;
    height: 100%;
    background: url('https://readdy.ai/api/search-image?query=professional%20business%20meeting%20two%20men%20in%20suits%20discussing%20documents%20at%20modern%20office%20table%20with%20laptops%20and%20papers%20clean%20bright%20office%20environment%20corporate%20atmosphere%20natural%20lighting&width=800&height=600&seq=hero1&orientation=landscape') center/cover no-repeat;
    clip-path: polygon(0 0, 85% 0, 70% 100%, 0 100%);
}

.ConsultancyS1-hero-content {
    position: relative;
    z-index: 2;
    margin-left: auto;
    width: 50%;
    padding: 2rem;
}

.ConsultancyS1-company-tag {
    color: #6c757d;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

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

.ConsultancyS1-hero-description {
    font-size: 1.1rem;
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 3rem;
}

.ConsultancyS1-features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.ConsultancyS1-feature-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.ConsultancyS1-feature-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px solid #dee2e6;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    background: white;
}

    .ConsultancyS1-feature-icon svg {
        width: 24px;
        height: 24px;
        stroke: #495057;
    }

.ConsultancyS1-feature-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.ConsultancyS1-feature-description {
    font-size: 0.95rem;
    color: #6c757d;
    line-height: 1.5;
}

.ConsultancyS1-cta-button {
    background: linear-gradient(90deg, rgb(235 39 113) 0%, rgb(247 177 30) 100%);
    color: white;
    padding: 0.8rem 2rem;
    border: none;
    border-radius: 25px;
    font-weight: 500;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

    .ConsultancyS1-cta-button:hover {
        background: #34495e;
        color: white;
        transform: translateY(-2px);
    }

.ConsultancyS1-stats-overlay {
    position: absolute;
    bottom: 10%;
    left: 20%;
    background: rgba(255, 255, 255, 0.95);
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
}

.ConsultancyS1-stats-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    line-height: 1;
}

.ConsultancyS1-stats-text {
    font-size: 0.9rem;
    color: #6c757d;
    margin-bottom: 1rem;
}

.ConsultancyS1-team-avatars {
    display: flex;
    gap: -0.5rem;
}

.ConsultancyS1-avatar {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    border: 2px solid white;
    margin-left: -0.5rem;
}

    .ConsultancyS1-avatar:first-child {
        margin-left: 0;
    }

@media (max-width: 992px) {
    .ConsultancyS1-hero-image {
        width: 100%;
        clip-path: none;
        opacity: 0.3;
    }

    .ConsultancyS1-hero-content {
        width: 100%;
        margin-left: 0;
        padding: 2rem 1rem;
        background: rgba(255, 255, 255, 0.9);
    }

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

    .ConsultancyS1-stats-overlay {
        position: relative;
        left: 0;
        bottom: 0;
        margin-top: 2rem;
    }
}

@media (max-width: 768px) {
    .ConsultancyS1-features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .ConsultancyS1-hero-title {
        font-size: 2rem;
    }

    .ConsultancyS1-hero-content {
        padding: 1.5rem 1rem;
    }
}

@media (max-width: 576px) {
    .ConsultancyS1-hero-title {
        font-size: 1.8rem;
    }

    .ConsultancyS1-feature-icon {
        width: 50px;
        height: 50px;
    }

    .ConsultancyS1-stats-number {
        font-size: 2rem;
    }
}

.ConsultancyS2-body {
    font-family: 'Inter', sans-serif;
    margin: 0;
    padding: 0;
}

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

.ConsultancyS2-header {
    text-align: center;
    margin-bottom: 50px;
}

.ConsultancyS2-services-tag {
    display: inline-block;
    background-color: transparent;
    border: 1px solid #6c757d;
    color: #6c757d;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 30px;
    text-decoration: none;
}

.ConsultancyS2-main-title {
    font-size: 48px;
    font-weight: 700;
    color: #2c3e50;
    line-height: 1.2;
    margin: 0;
}

.ConsultancyS2-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.ConsultancyS2-service-card {
    background: white;
    border-radius: 12px;
    padding: 40px 30px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    border: 1px solid transparent;
}

    .ConsultancyS2-service-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 30px rgb(0 0 0 / 4%);
        border-color: #e9ecef;
        background: linear-gradient(135deg, #f0f4ff 0%, #fee8e8 100%);
    }

.ConsultancyS2-service-icon {
    width: 60px;
    height: 60px;
    background-color: #e9ecef;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    position: relative;
    transition: all 0.4s ease;
}

.ConsultancyS2-service-card:hover .ConsultancyS2-service-icon {
    transform: scale(1.1);
    background-color: #f8f9fa;
}

.ConsultancyS2-service-icon::before {
    content: '';
    width: 30px;
    height: 30px;
    background-color: #f16a49;
    border-radius: 4px;
}

.ConsultancyS2-service-title {
    font-size: 24px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 15px;
    transition: all 0.4s ease;
}

.ConsultancyS2-service-card:hover .ConsultancyS2-service-title {
    color: #1a252f;
}

.ConsultancyS2-service-description {
    color: #6c757d;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 25px;
}

.ConsultancyS2-service-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ConsultancyS2-service-feature {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    color: #495057;
    font-size: 15px;
}

    .ConsultancyS2-service-feature::before {
        content: '+';
        color: #28a745;
        font-weight: 600;
        margin-right: 10px;
        font-size: 16px;
    }

.ConsultancyS2-more-services-btn {
    display: block;
    background: linear-gradient(90deg, rgb(235 39 113) 0%, rgb(247 177 30) 100%);
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    margin: 0 auto;
    width: fit-content;
    transition: background-color 0.3s ease;
    position: relative;
}

    .ConsultancyS2-more-services-btn:hover {
        background-color: #1a252f;
        color: white;
        text-decoration: none;
    }

    .ConsultancyS2-more-services-btn::after {
        content: '→';
        margin-left: 10px;
        font-size: 18px;
    }

@media (max-width: 768px) {
    .ConsultancyS2-container {
        padding: 40px 15px;
    }

    .ConsultancyS2-main-title {
        font-size: 36px;
    }

    .ConsultancyS2-services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .ConsultancyS2-service-card {
        padding: 30px 20px;
    }
}

@media (max-width: 480px) {
    .ConsultancyS2-main-title {
        font-size: 28px;
    }

    .ConsultancyS2-service-title {
        font-size: 20px;
    }
}

.consultancyS3-testimonial {
    padding: 80px 0;
    background: linear-gradient(135deg, #fdf3f6 0%, #fffaf7 100%);
}

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

.consultancyS3-title {
    text-align: center;
    margin-bottom: 60px;
}

.consultancyS3-badge {
    display: inline-block;
    color: #6c757d;
    font-size: 14px;
    margin-bottom: 10px;
    font-weight: 500;
}

.consultancyS3-title h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin: 0;
    line-height: 1.2;
}

.consultancyS3-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.consultancyS3-image-section {
    flex: 0 0 auto;
    position: relative;
}

.consultancyS3-main-image {
    width: 400px;
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}

    .consultancyS3-main-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: all 0.3s ease;
    }

.consultancyS3-profile-thumbs {
    position: absolute;
    left: -25px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.consultancyS3-thumb {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #ffffff;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

    .consultancyS3-thumb:hover {
        transform: scale(1.1);
        border-color: #007bff;
    }

    .consultancyS3-thumb.active {
        border-color: #007bff;
        transform: scale(1.1);
    }

    .consultancyS3-thumb img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.consultancyS3-testimonial-content {
    flex: 1;
    padding-left: 40px;
}

.consultancyS3-quote-icon {
    font-size: 4rem;
    color: #e9ecef;
    margin-bottom: 20px;
    line-height: 1;
}

.consultancyS3-quote-text {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #495057;
    margin-bottom: 30px;
    font-style: italic;
    transition: all 0.3s ease;
}

.consultancyS3-author {
    margin-top: 30px;
}

.consultancyS3-author-name {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 5px;
    transition: all 0.3s ease;
}

.consultancyS3-author-title {
    font-size: 1rem;
    color: #6c757d;
    margin: 0;
    transition: all 0.3s ease;
}

/* Responsive Design */
@media (max-width: 992px) {
    .consultancyS3-content {
        gap: 40px;
    }

    .consultancyS3-main-image {
        width: 350px;
        height: 350px;
    }

    .consultancyS3-title h2 {
        font-size: 2.2rem;
    }

    .consultancyS3-testimonial-content {
        padding-left: 20px;
    }
}

@media (max-width: 768px) {
    .consultancyS3-testimonial {
        padding: 60px 0;
    }

    .consultancyS3-content {
        flex-direction: column;
        gap: 40px;
    }

    .consultancyS3-main-image {
        width: 300px;
        height: 300px;
    }

    .consultancyS3-profile-thumbs {
        position: static;
        flex-direction: row;
        justify-content: center;
        transform: none;
        margin-top: 20px;
        gap: 10px;
    }

    .consultancyS3-testimonial-content {
        padding-left: 0;
        text-align: center;
    }

    .consultancyS3-title h2 {
        font-size: 2rem;
    }

    .consultancyS3-quote-text {
        font-size: 1.1rem;
    }
}

@media (max-width: 576px) {
    .consultancyS3-main-image {
        width: 280px;
        height: 280px;
    }

    .consultancyS3-title h2 {
        font-size: 1.8rem;
    }

    .consultancyS3-quote-text {
        font-size: 1rem;
    }

    .consultancyS3-thumb {
        width: 45px;
        height: 45px;
    }
}

/* Animation for content changes */
.consultancyS3-fade-in {
    animation: fadeIn 0.3s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.consultancyS4-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 1rem;
}

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

.consultancyS4-blog-tag {
    display: inline-block;
    background-color: #e5e9f2;
    color: #414548;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    border: none;
}

.consultancyS4-main-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
}

.consultancyS4-card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.consultancyS4-blog-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .consultancyS4-blog-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    }

.consultancyS4-card-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

    .consultancyS4-card-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: top;
    }

.consultancyS4-category-tag {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background-color: #ff5722;
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.consultancyS4-card-content {
    padding: 1.5rem;
}

.consultancyS4-card-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.85rem;
    color: #6c757d;
}

.consultancyS4-author {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.consultancyS4-author-icon {
    width: 1.2rem;
    height: 1.2rem;
    display: flex;
    align-items: center;
    justify-center;
    color: #6c757d;
}

.consultancyS4-card-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.consultancyS4-read-more {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #1a1a2e;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

    .consultancyS4-read-more:hover {
        color: #0d6efd;
    }

.consultancyS4-read-more-icon {
    width: 1rem;
    height: 1rem;
    display: flex;
    align-items: center;
    justify-center;
}

.consultancyS4-discover-section {
    text-align: center;
}

.consultancyS4-discover-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(90deg, rgb(235 39 113) 0%, rgb(247 177 30) 100%);
    color: white;
    padding: 0.75rem 2rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    transition: background-color 0.3s ease, transform 0.3s ease;
    border: none;
}

    .consultancyS4-discover-btn:hover {
        background-color: #0d6efd;
        color: white;
        transform: translateY(-2px);
    }

.consultancyS4-discover-icon {
    width: 1rem;
    height: 1rem;
    display: flex;
    align-items: center;
    justify-center;
}

@media (max-width: 768px) {
    .consultancyS4-container {
        padding: 2rem 1rem;
    }

    .consultancyS4-main-title {
        font-size: 2rem;
    }

    .consultancyS4-card-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .consultancyS4-blog-header {
        margin-bottom: 3rem;
    }
}

@media (max-width: 576px) {
    .consultancyS4-main-title {
        font-size: 1.75rem;
    }

    .consultancyS4-card-content {
        padding: 1.25rem;
    }
}

.ProjectS1-navbar {
    padding: 20px 0;
    background: transparent;
    padding-bottom: 0px;
}

.ProjectS1-services-btn {
    background-color: #333333;
    color: white;
    border: none;
    padding: 8px 20px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    margin-right: 20px;
    transition: all 0.3s ease;
}

    .ProjectS1-services-btn:hover {
        background-color: #f1684a;
        transform: translateY(-2px);
    }

.ProjectS1-customer-link {
    color: #333333;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: color 0.3s ease;
}

    .ProjectS1-customer-link:hover {
        color: #f1684a;
    }

.ProjectS1-header {
    text-align: center;
    margin: 10px 0 30px 0;
}

    .ProjectS1-header h1 {
        font-size: 3.5rem;
        font-weight: 700;
        color: #1a1a1a;
        line-height: 1.2;
        margin: 0;
        transition: color 0.3s ease;
    }

        .ProjectS1-header h1:hover {
            color: #f1684a;
        }


.ProjectS1-card {
    background-color: #f5f5f5;
    border-radius: 12px;
    padding: 40px 30px;
    height: 100%;
    border: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

    .ProjectS1-card:hover {
        transform: translateY(-6px) scale(1.02);
        box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
    }

.ProjectS1-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 25px;
    background-color: #333333;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.ProjectS1-card:hover .ProjectS1-icon {
    background-color: #f1684a;
    transform: rotate(10deg) scale(1.1);
}

.ProjectS1-icon::after {
    content: "🔧";
    font-size: 24px;
    color: white;
    transition: transform 0.3s ease;
}

.ProjectS1-card:hover .ProjectS1-icon::after {
    transform: scale(1.2);
}

.ProjectS1-card:nth-child(2) .ProjectS1-icon::after {
    content: "📊";
}

.ProjectS1-card:nth-child(3) .ProjectS1-icon::after {
    content: "⭐";
}

.ProjectS1-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 20px;
    transition: color 0.3s ease;
}

.ProjectS1-card:hover h3 {
    color: #f1684a;
}

.ProjectS1-card p {
    color: #666666;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 25px;
}

.ProjectS1-read-more {
    color: #333333;
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

    .ProjectS1-read-more:hover {
        color: #f1684a;
        transform: translateX(4px);
    }

    .ProjectS1-read-more::after {
        content: "→";
        font-size: 16px;
        transition: transform 0.3s ease;
    }

    .ProjectS1-read-more:hover::after {
        transform: translateX(4px);
    }

.ProjectS1-features-banner {
    background-color: #f8f8f8;
    border-radius: 12px;
    padding: 20px 30px;
    margin: 60px auto;
    max-width: 1200px;
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
    transition: all 0.3s ease;
}

    .ProjectS1-features-banner:hover {
        background-color: #f1f1f1;
        transform: translateY(-3px);
        box-shadow: 0 6px 14px rgba(0, 0, 0, 0.08);
    }

.ProjectS1-new-badge {
    background-color: #f37e3d;
    color: white;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: background-color 0.3s ease;
}

.ProjectS1-features-banner:hover .ProjectS1-new-badge {
    background-color: #e84118;
}

.ProjectS1-features-text {
    color: #1a1a1a;
    font-weight: 500;
    font-size: 15px;
    flex: 1;
}

.ProjectS1-know-link {
    color: #6c5ce7;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: color 0.3s ease;
}

    .ProjectS1-know-link:hover {
        color: #341f97;
    }

.ProjectS1-arrow {
    color: #333333;
    font-size: 16px;
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.ProjectS1-features-banner:hover .ProjectS1-arrow {
    transform: translateX(5px);
}

@media (max-width: 768px) {
    .ProjectS1-header h1 {
        font-size: 2.5rem;
    }

    .ProjectS1-navbar .container {
        flex-direction: column;
        gap: 15px;
    }

    .ProjectS1-card {
        margin-bottom: 20px;
    }

    .ProjectS1-features-banner {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .ProjectS1-features-text {
        text-align: center;
    }
}

@media (max-width: 576px) {
    .ProjectS1-header h1 {
        font-size: 2rem;
    }

    .ProjectS1-card {
        padding: 30px 20px;
    }
}

.ProjectS2-container {
    background: #ffffff;
    overflow: hidden;
    position: relative;
}

.ProjectS2-main-wrapper {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 2;
}

.ProjectS2-gradient-bg {
    position: absolute;
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, #FF1B51 0%, #FF8B42 100%);
    border-radius: 50%;
    left: -100px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
}

.ProjectS2-image-section {
    position: relative;
    z-index: 3;
}

.ProjectS2-mockup-container {
    position: relative;
    transform: rotate(-5deg);
    margin-left: 80px;
}

.ProjectS2-mockup {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    width: 320px;
    height: 240px;
    position: relative;
    overflow: hidden;
}

.ProjectS2-mockup-header {
    background: #f8f9fa;
    height: 40px;
    border-bottom: 1px solid #e9ecef;
    display: flex;
    align-items: center;
    padding: 0 15px;
    font-size: 12px;
    color: #6c757d;
}

.ProjectS2-mockup-content {
    padding: 20px 15px;
    background: #ffffff;
}

.ProjectS2-mockup-title {
    font-size: 14px;
    font-weight: 600;
    color: #212529;
    margin-bottom: 15px;
}

.ProjectS2-task-item {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
    font-size: 11px;
    color: #6c757d;
}

.ProjectS2-task-checkbox {
    width: 12px;
    height: 12px;
    border: 1px solid #dee2e6;
    border-radius: 2px;
    margin-right: 8px;
    background: #ffffff;
}

    .ProjectS2-task-checkbox.checked {
        background: #0d6efd;
        border-color: #0d6efd;
    }

.ProjectS2-progress-bar {
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, rgb(235 39 113) 0%, rgb(247 177 30) 100%);
    border-radius: 3px;
    margin-top: 15px;
    overflow: hidden;
}

.ProjectS2-progress-fill {
    width: 60%;
    height: 100%;
    background: #0d6efd;
    border-radius: 3px;
}

.ProjectS2-accent-shape {
    position: absolute;
    background: linear-gradient(90deg, rgb(235 39 113) 0%, rgb(247 177 30) 100%);
    border-radius: 8px;
}

.ProjectS2-accent-1 {
    width: 80px;
    height: 120px;
    right: 50px;
    top: 20px;
    transform: rotate(15deg);
}

.ProjectS2-accent-2 {
    width: 60px;
    height: 80px;
    right: 20px;
    bottom: 60px;
    transform: rotate(-10deg);
}

.ProjectS2-content-section {
    padding-left: 60px;
}

.ProjectS2-heading {
    font-size: 3.5rem;
    font-weight: 800;
    color: #212529;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.ProjectS2-description {
    font-size: 1.1rem;
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 2rem;
    max-width: 400px;
}

.ProjectS2-button {
    background: #6C3BFF;
    color: #ffffff;
    border: none;
    padding: 15px 30px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

    .ProjectS2-button:hover {
        background: #5a2ed9;
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(108, 59, 255, 0.3);
        color: #ffffff;
    }

@media (max-width: 991px) {
    .ProjectS2-main-wrapper {
        flex-direction: column;
        text-align: center;
        padding: 80px 0;
    }

    .ProjectS2-gradient-bg {
        width: 300px;
        height: 300px;
        left: 50%;
        transform: translate(-50%, -50%);
        top: 30%;
    }

    .ProjectS2-image-section {
        order: 1;
        margin-bottom: 60px;
    }

    .ProjectS2-mockup-container {
        margin-left: 0;
        transform: rotate(-3deg);
    }

    .ProjectS2-content-section {
        order: 2;
        padding-left: 0;
    }

    .ProjectS2-heading {
        font-size: 2.5rem;
    }

    .ProjectS2-description {
        max-width: 100%;
    }

    .ProjectS2-accent-1,
    .ProjectS2-accent-2 {
        display: none;
    }
}

@media (max-width: 576px) {
    .ProjectS2-heading {
        font-size: 2rem;
    }

    .ProjectS2-mockup {
        width: 280px;
        height: 210px;
    }

    .ProjectS2-gradient-bg {
        width: 250px;
        height: 250px;
    }
}

.ProjectS3-hero {
    position: relative;
    display: flex;
    align-items: center;
    padding: 0;
}

.ProjectS3-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.ProjectS3-content {
    z-index: 10;
    position: relative;
}

.ProjectS3-heading {
    font-size: 4rem;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.ProjectS3-subheading {
    font-size: 1.125rem;
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    max-width: 90%;
}

.ProjectS3-cta {
    background: linear-gradient(90deg, rgb(235 39 113) 0%, rgb(247 177 30) 100%);
    color: white;
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 0.5rem;
    font-size: 1.125rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(255, 27, 107, 0.3);
}

    .ProjectS3-cta:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 30px rgba(255, 27, 107, 0.4);
        color: white;
    }

.ProjectS3-image-container {
    position: relative;
    z-index: 5;
    display: flex;
    justify-content: center;
    align-items: center;
}

.ProjectS3-image {
    max-width: 100%;
    height: auto;
    transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
    border-radius: 1rem;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.ProjectS3-decoration-purple {
    position: absolute;
    top: -10%;
    right: -15%;
    width: 600px;
    height: 600px;
    background: linear-gradient(90deg, rgb(235 39 113) 0%, rgb(247 177 30) 100%);
    border-radius: 50%;
    z-index: 1;
    opacity: 0.9;
}

.ProjectS3-decoration-beige {
    position: absolute;
    bottom: -5%;
    left: -10%;
    width: 300px;
    height: 300px;
    z-index: 1;
}

    .ProjectS3-decoration-beige::before {
        content: '';
        position: absolute;
        width: 100%;
        height: 100%;
        background: #f5f1eb;
        border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
        transform: rotate(-45deg);
    }

@media (max-width: 1200px) {
    .ProjectS3-heading {
        font-size: 3.5rem;
    }

    .ProjectS3-decoration-purple {
        width: 500px;
        height: 500px;
    }
}

@media (max-width: 992px) {
    .ProjectS3-hero {
        min-height: auto;
        padding: 4rem 0;
    }

    .ProjectS3-heading {
        font-size: 3rem;
        text-align: center;
    }

    .ProjectS3-subheading {
        text-align: center;
        max-width: 100%;
    }

    .ProjectS3-cta {
        display: block;
        text-align: center;
        margin: 0 auto 3rem;
        width: fit-content;
    }

    .ProjectS3-decoration-purple {
        top: -5%;
        right: -20%;
        width: 400px;
        height: 400px;
    }

    .ProjectS3-image {
        transform: none;
        margin-top: 2rem;
    }
}

@media (max-width: 768px) {
    .ProjectS3-container {
        padding: 0 1rem;
    }

    .ProjectS3-heading {
        font-size: 2.5rem;
    }

    .ProjectS3-subheading {
        font-size: 1rem;
    }

    .ProjectS3-decoration-purple {
        width: 300px;
        height: 300px;
    }

    .ProjectS3-decoration-beige {
        width: 200px;
        height: 200px;
    }
}

@media (max-width: 576px) {
    .ProjectS3-heading {
        font-size: 2rem;
    }

    .ProjectS3-cta {
        padding: 0.875rem 2rem;
        font-size: 1rem;
    }
}

.ProjectS4-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 2rem 0;
}

.ProjectS4-content {
    max-width: 500px;
}

.ProjectS4-heading {
    font-size: 3.5rem;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.ProjectS4-description {
    font-size: 1.1rem;
    color: #666666;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.ProjectS4-button {
    background: linear-gradient(135deg, #FF3366 0%, #FF6B35 100%);
    color: white;
    border: none;
    padding: 0.875rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

    .ProjectS4-button:hover {
        background-color: #6d28d9;
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(124, 58, 237, 0.3);
    }

.ProjectS4-icons-container {
    position: relative;
    height: 600px;
}

.ProjectS4-icon-item {
    position: absolute;
    width: 60px;
    height: 60px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

    .ProjectS4-icon-item:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    }

    .ProjectS4-icon-item img {
        width: 32px;
        height: 32px;
        object-fit: contain;
    }

.ProjectS4-dropbox {
    top: 50px;
    right: 100px;
}

.ProjectS4-pinterest {
    top: 80px;
    right: 20px;
}

.ProjectS4-gitlab {
    top: 150px;
    right: 200px;
}

.ProjectS4-edge {
    top: 200px;
    right: 50px;
}

.ProjectS4-messenger {
    top: 250px;
    left: 50px;
}

.ProjectS4-slack {
    top: 280px;
    right: 150px;
}

.ProjectS4-instagram {
    top: 350px;
    left: 150px;
}

.ProjectS4-twitter {
    top: 400px;
    right: 80px;
}

.ProjectS4-netflix {
    top: 450px;
    left: 80px;
}

@media (max-width: 992px) {
    .ProjectS4-heading {
        font-size: 2.8rem;
    }

    .ProjectS4-icons-container {
        height: 400px;
        margin-top: 3rem;
    }

    .ProjectS4-icon-item {
        width: 50px;
        height: 50px;
    }

        .ProjectS4-icon-item img {
            width: 28px;
            height: 28px;
        }
}

@media (max-width: 768px) {
    .ProjectS4-container {
        text-align: center;
    }

    .ProjectS4-heading {
        font-size: 2.2rem;
    }

    .ProjectS4-description {
        font-size: 1rem;
    }

    .ProjectS4-icons-container {
        height: 300px;
    }

    .ProjectS4-dropbox {
        top: 20px;
        right: 60px;
    }

    .ProjectS4-pinterest {
        top: 40px;
        right: 10px;
    }

    .ProjectS4-gitlab {
        top: 80px;
        right: 120px;
    }

    .ProjectS4-edge {
        top: 120px;
        right: 30px;
    }

    .ProjectS4-messenger {
        top: 160px;
        left: 30px;
    }

    .ProjectS4-slack {
        top: 180px;
        right: 90px;
    }

    .ProjectS4-instagram {
        top: 220px;
        left: 80px;
    }

    .ProjectS4-twitter {
        top: 260px;
        right: 50px;
    }

    .ProjectS4-netflix {
        top: 280px;
        left: 40px;
    }
}

@media (max-width: 576px) {
    .ProjectS4-heading {
        font-size: 1.8rem;
    }

    .ProjectS4-button {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }

    .ProjectS4-icon-item {
        width: 45px;
        height: 45px;
    }

        .ProjectS4-icon-item img {
            width: 24px;
            height: 24px;
        }
}

.ProjectS5-hero {
    background: linear-gradient(90deg, rgb(235 39 113) 0%, rgb(247 177 30) 100%);
    min-height: 280px;
    position: relative;
    overflow: hidden;
    padding: 60px 0;
}

.ProjectS5-curve-top {
    position: absolute;
    top: -50px;
    left: -50px;
    width: 200px;
    height: 158px;
    border-radius: 50%;
    background-image: url(https://templates.envytheme.com/togy/default/assets/img/shape/shape12.png);
    background-position: center;
    background-size: cover;
}

.ProjectS5-curve-bottom {
    position: absolute;
    bottom: -80px;
    right: -80px;
    width: 287px;
    height: 195px;
    background-image: url(https://templates.envytheme.com/togy/default/assets/img/shape/shape13.png);
    background-position: center;
    background-size: cover;
    border-radius: 50%;
}

.ProjectS5-heading {
    color: white;
    font-size: 2.75rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    letter-spacing: -0.02em;
}

.ProjectS5-text {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.125rem;
    line-height: 1.7;
    font-weight: 400;
}

.ProjectS5-button {
    background: linear-gradient(135deg, #FF3366 0%, #FF6B35 100%);
    color: white;
    border: none;
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 51, 102, 0.3);
}

    .ProjectS5-button:hover {
        background: linear-gradient(135deg, #FF1744 0%, #FF5722 100%);
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(255, 51, 102, 0.4);
        color: white;
    }

.ProjectS5-content-wrapper {
    position: relative;
    z-index: 2;
}

@media (max-width: 768px) {
    .ProjectS5-hero {
        padding: 40px 0;
        min-height: 320px;
    }

    .ProjectS5-heading {
        font-size: 2.25rem;
        margin-bottom: 1rem;
    }

    .ProjectS5-text {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .ProjectS5-button {
        padding: 12px 24px;
        font-size: 0.95rem;
    }

    .ProjectS5-curve-top {
        width: 140px;
        height: 140px;
        top: -40px;
        left: -40px;
    }

    .ProjectS5-curve-bottom {
        width: 160px;
        height: 160px;
        bottom: -60px;
        right: -60px;
    }
}

@media (max-width: 576px) {
    .ProjectS5-heading {
        font-size: 1.875rem;
    }

    .ProjectS5-text {
        font-size: 0.95rem;
    }
}

.General-TradingS1-container {
    padding: 2rem 1rem;
    max-width: 1200px;
    margin: 0 auto;
}

.General-TradingS1-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 1rem;
    height: 600px;
}

.General-TradingS1-card {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 2rem;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.General-TradingS1-card-1 {
    grid-row: 1 / 3;
    background-color: #e5e7eb;
    background-image: url('../images/gn-1.jpg');
}

.General-TradingS1-card-2 {
    background-color: #f8b4b4;
    background-image: url('../images/gn-tr-2.jpg');
}

.General-TradingS1-card-3 {
    background-color: #8b7355;
    background-image: url('../images/gn-tr-3.jpg');
}

.General-TradingS1-card-4 {
    background-color: #a7d4a7;
    background-image: url('../images/gn-tr-4.jpg');
}

.General-TradingS1-card-5 {
    background-color: #d4c4a8;
    background-image: url('../images/gn-tr-5.jpg');
}

.General-TradingS1-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: white;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.General-TradingS1-subtitle {
    font-size: 1.8rem;
    color: white;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}



.General-TradingS1-button {
    background-color: white;
    color: #374151;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 2rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

    .General-TradingS1-button:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(0,0,0,0.15);
        color: #374151;
        text-decoration: none;
    }

.General-TradingS1-card-small .General-TradingS1-title {
    font-size: 1.8rem;
}

.General-TradingS1-card-small .General-TradingS1-subtitle {
    font-size: 1.2rem;
}

@media (max-width: 768px) {
    .General-TradingS1-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        height: auto;
    }

    .General-TradingS1-card-1 {
        grid-row: auto;
        height: 400px;
    }

    .General-TradingS1-card {
        height: 300px;
    }

    .General-TradingS1-title {
        font-size: 2rem;
    }

    .General-TradingS1-subtitle {
        font-size: 1.4rem;
    }

    .General-TradingS1-card-small .General-TradingS1-title {
        font-size: 1.5rem;
    }

    .General-TradingS1-card-small .General-TradingS1-subtitle {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .General-TradingS1-container {
        padding: 1rem 0.5rem;
    }

    .General-TradingS1-card {
        padding: 1.5rem;
    }
}

.General-TradingS2-body {
    font-family: 'Inter', sans-serif;
    background-color: #f8f9fa;
    background-image: radial-gradient(circle at 20px 20px, #e0e0e0 2px, transparent 2px), radial-gradient(circle at 60px 60px, #e0e0e0 2px, transparent 2px);
    background-size: 80px 80px;
    background-position: 0 0, 40px 40px;
    margin: 0;
    padding: 0;
    min-height: 100vh;
}

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

.General-TradingS2-offers-label {
    color: #FF5722;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 12px;
    position: relative;
    padding-left: 20px;
}

    .General-TradingS2-offers-label::before {
        content: '';
        position: absolute;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
        width: 12px;
        height: 2px;
        background-color: #FF5722;
    }

.General-TradingS2-main-heading {
    color: #333333;
    font-size: 22px;
    font-weight: 300;
    margin-bottom: 20px;
    line-height: 1.2;
}

.General-TradingS2-services-row {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: space-between;
}

.General-TradingS2-service-card {
    background: white;
    border-radius: 12px;
    padding: 40px 30px;
    text-align: left;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    flex: 1;
    min-width: 250px;
    max-width: 280px;
    position: relative;
}

    .General-TradingS2-service-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    }

.General-TradingS2-icon-wrapper {
    width: 80px;
    height: 80px;
    background: rgb(175 100 76 / 10%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    position: relative;
}

.General-TradingS2-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(90deg, rgb(235 39 113) 0%, rgb(247 177 30) 100%);
    mask-size: contain;
    mask-repeat: no-repeat;
    mask-position: center;
}

.General-TradingS2-home-icon {
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2L2 7v10c0 5.55 3.84 10 9 11 1.16.21 2.76.21 4 0 5.16-1 9-5.45 9-11V7l-10-5z'/%3E%3C/svg%3E");
}

.General-TradingS2-business-icon {
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8l-6-6z'/%3E%3Cpath d='M14 2v6h6'/%3E%3Cpath d='M16 13H8'/%3E%3Cpath d='M16 17H8'/%3E%3Cpath d='M10 9H8'/%3E%3C/svg%3E");
}

.General-TradingS2-info-icon {
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Crect x='2' y='4' width='20' height='16' rx='2'/%3E%3Cpath d='M7 15h10'/%3E%3Cpath d='M7 11h4'/%3E%3Cpath d='M13 11h4'/%3E%3C/svg%3E");
}

.General-TradingS2-support-icon {
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M3 18v-6a9 9 0 0 1 18 0v6'/%3E%3Cpath d='M21 19a2 2 0 0 1-2 2h-1a2 2 0 0 1-2-2v-3a2 2 0 0 1 2-2h3zM3 19a2 2 0 0 0 2 2h1a2 2 0 0 0 2-2v-3a2 2 0 0 0-2-2H3z'/%3E%3C/svg%3E");
}

.General-TradingS2-service-title {
    color: #333333;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 16px;
    line-height: 1.3;
}

.General-TradingS2-service-description {
    color: #666666;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 24px;
}

.General-TradingS2-read-more {
    color: #666666;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s ease;
}

    .General-TradingS2-read-more:hover {
        color: #ff5722;
        text-decoration: none;
    }

@media (max-width: 992px) {
    .General-TradingS2-services-row {
        justify-content: center;
    }

    .General-TradingS2-service-card {
        max-width: 400px;
        flex: 1 1 calc(50% - 15px);
    }
}

@media (max-width: 768px) {
    .General-TradingS2-container {
        padding: 60px 15px;
    }

    .General-TradingS2-main-heading {
        font-size: 36px;
        margin-bottom: 40px;
    }

    .General-TradingS2-services-row {
        gap: 20px;
    }

    .General-TradingS2-service-card {
        flex: 1 1 100%;
        max-width: none;
        padding: 30px 25px;
    }
}

@media (max-width: 576px) {
    .General-TradingS2-main-heading {
        font-size: 28px;
    }

    .General-TradingS2-service-title {
        font-size: 20px;
    }

    .General-TradingS2-service-description {
        font-size: 14px;
    }
}

.general-tradingS3-header {
    text-align: center;
    padding: 40px 0 20px 0;
}

.general-tradingS3-top-text {
    font-size: 12px;
    color: #f37e3d;
    font-weight: 500;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.general-tradingS3-main-title {
    font-size: 28px;
    font-weight: 700;
    color: #2c2c2c;
    position: relative;
    display: inline-block;
}

    .general-tradingS3-main-title::before,
    .general-tradingS3-main-title::after {
        content: "•";
        color: #f37e3d;
        font-size: 24px;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
    }

    .general-tradingS3-main-title::before {
        left: -30px;
    }

    .general-tradingS3-main-title::after {
        right: -30px;
    }

.general-tradingS3-product-grid {
    padding: 0 20px 40px 20px;
}

.general-tradingS3-product-card {
    background: white;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
    position: relative;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

    .general-tradingS3-product-card:hover {
        transform: translateY(-5px);
    }

.general-tradingS3-product-image {
    width: 100%;
    height: 180px;
    object-fit: contain;
    margin-bottom: 15px;
}

.general-tradingS3-product-tag {
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 700;
    color: white;
}

.general-tradingS3-sale-tag {
    background-color: #f37e3d;
}

.general-tradingS3-new-tag {
    background-color: #007bff;
}

.general-tradingS3-product-title {
    font-size: 14px;
    font-weight: 500;
    color: #2c2c2c;
    text-transform: uppercase;
    margin-bottom: 8px;
    text-align: center;
}

.general-tradingS3-rating {
    display: flex;
    justify-content: center;
    margin-bottom: 10px;
}

.general-tradingS3-star {
    color: #ffd700;
    font-size: 14px;
    margin: 0 1px;
}

.general-tradingS3-price-section {
    text-align: center;
    margin-bottom: 15px;
}

.general-tradingS3-current-price {
    font-size: 18px;
    font-weight: 700;
    color: #f97227;
}

.general-tradingS3-original-price {
    font-size: 14px;
    color: #999;
    text-decoration: line-through;
    margin-left: 8px;
}

.general-tradingS3-add-to-cart {
    width: 100%;
    background: linear-gradient(90deg, rgb(235 39 113) 0%, rgb(247 177 30) 100%);
    color: white;
    border: none;
    padding: 12px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    transition: background-color 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

    .general-tradingS3-add-to-cart:hover {
        background-color: #1a1a1a;
    }

.general-tradingS3-heart-icon {
    width: 16px;
    height: 16px;
    fill: white;
}

.general-tradingS3-banner-section {
    padding: 0 20px 40px 20px;
}

.general-tradingS3-banner {
    height: 200px;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.general-tradingS3-ferrari-banner {
    background-image: url('https://readdy.ai/api/search-image?query=red%20Ferrari%20sports%20car%20engine%20bay%20with%20detailed%20automotive%20parts%2C%20sleek%20modern%20design%2C%20professional%20automotive%20photography%2C%20high%20contrast%20red%20and%20black%20colors%2C%20premium%20luxury%20car%20components%2C%20dramatic%20lighting&width=600&height=200&seq=ferrari1&orientation=landscape');
}

.general-tradingS3-lexus-banner {
    background-image: url('https://readdy.ai/api/search-image?query=luxury%20Lexus%20car%20engine%20components%20in%20grayscale%20monochrome%2C%20professional%20automotive%20parts%20photography%2C%20sophisticated%20mechanical%20details%2C%20premium%20car%20engine%20bay%2C%20elegant%20black%20and%20white%20styling&width=600&height=200&seq=lexus1&orientation=landscape');
}

.general-tradingS3-banner-content {
    padding: 30px;
    color: white;
    z-index: 2;
    position: relative;
}

.general-tradingS3-banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.4);
    z-index: 1;
}

.general-tradingS3-banner-label {
    font-size: 14px;
    color: #f37e3d;
    font-weight: 500;
    margin-bottom: 8px;
}

.general-tradingS3-banner-title {
    font-size: 24px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

.general-tradingS3-shop-now-btn {
    background-color: #f37e3d;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

    .general-tradingS3-shop-now-btn:hover {
        background-color: #f37e3d;
    }

@media (max-width: 768px) {
    .general-tradingS3-main-title {
        font-size: 24px;
    }

        .general-tradingS3-main-title::before,
        .general-tradingS3-main-title::after {
            display: none;
        }

    .general-tradingS3-banner {
        height: 160px;
    }

    .general-tradingS3-banner-title {
        font-size: 20px;
    }

    .general-tradingS3-banner-content {
        padding: 20px;
    }
}

@media (max-width: 576px) {
    .general-tradingS3-product-grid {
        padding: 0 10px 40px 10px;
    }

    .general-tradingS3-banner-section {
        padding: 0 10px 40px 10px;
    }
}

.General-TradingS4-main-container {
    background-color: #ffffff;
    padding: 25px 0;
}

.General-TradingS4-header-section {
    text-align: center;
    margin-bottom: 0px;
}

.General-TradingS4-main-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #2d3748;
    line-height: 1.2;
    margin-bottom: 0;
}

.General-TradingS4-sub-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #2d3748;
    line-height: 1.2;
    margin-bottom: 30px;
}

.General-TradingS4-quote-text {
    font-size: 2.2rem;
    font-weight: 600;
    color: #FF6B38;
    margin: 0;
}

.General-TradingS4-services-grid {
    margin-top: 0px;
}

.General-TradingS4-service-card {
    text-align: center;
    padding: 40px 20px;
    margin-bottom: 40px;
}

.General-TradingS4-icon-container {
    width: 120px;
    height: 120px;
    margin: 0 auto 30px;
    position: relative;
}

.General-TradingS4-icon-building {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #FF6B38 0%, #FF8A65 100%);
    border-radius: 15px;
    position: relative;
    overflow: hidden;
}

    .General-TradingS4-icon-building::before {
        content: '';
        position: absolute;
        top: 20px;
        left: 20px;
        right: 20px;
        bottom: 30px;
        border: 3px solid #ffffff;
        border-radius: 8px;
    }

    .General-TradingS4-icon-building::after {
        content: '';
        position: absolute;
        bottom: 10px;
        left: 30px;
        right: 30px;
        height: 15px;
        background: #ffffff;
        border-radius: 3px;
    }

.General-TradingS4-icon-construction {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #e2e8f0 0%, #f7fafc 100%);
    border-radius: 15px;
    position: relative;
    border: 3px solid #FF6B38;
}

    .General-TradingS4-icon-construction::before {
        content: '';
        position: absolute;
        top: 25px;
        left: 25px;
        width: 20px;
        height: 50px;
        background: #FF6B38;
        border-radius: 3px;
    }

    .General-TradingS4-icon-construction::after {
        content: '';
        position: absolute;
        top: 25px;
        right: 25px;
        width: 20px;
        height: 70px;
        background: #FF6B38;
        border-radius: 3px;
    }

.General-TradingS4-icon-engineering {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #e2e8f0 0%, #f7fafc 100%);
    border-radius: 15px;
    position: relative;
    border: 3px solid #FF6B38;
}

    .General-TradingS4-icon-engineering::before {
        content: '';
        position: absolute;
        top: 20px;
        left: 20px;
        right: 20px;
        height: 40px;
        background: #FF6B38;
        border-radius: 20px;
    }

    .General-TradingS4-icon-engineering::after {
        content: '';
        position: absolute;
        bottom: 20px;
        left: 35px;
        right: 35px;
        height: 25px;
        background: #FF6B38;
        border-radius: 5px;
    }

.General-TradingS4-service-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 20px;
    line-height: 1.3;
}

.General-TradingS4-service-description {
    font-size: 1rem;
    color: #64748b;
    line-height: 1.8;
    margin-bottom: 30px;
    padding: 0 15px;
}

.General-TradingS4-number-badge {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #FF6B38 0%, #ff8c66 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    font-size: 1.2rem;
    font-weight: 600;
    color: white;
    box-shadow: 0 4px 15px rgba(255, 107, 56, 0.2);
    transition: transform 0.3s ease;
}

.General-TradingS4-service-card:hover .General-TradingS4-number-badge {
    transform: scale(1.1);
}

@media (max-width: 991px) {
    .General-TradingS4-main-title,
    .General-TradingS4-sub-title {
        font-size: 2.8rem;
    }

    .General-TradingS4-quote-text {
        font-size: 1.8rem;
    }
}

@media (max-width: 767px) {
    .General-TradingS4-main-container {
        padding: 60px 0;
    }

    .General-TradingS4-main-title,
    .General-TradingS4-sub-title {
        font-size: 2.2rem;
    }

    .General-TradingS4-quote-text {
        font-size: 1.5rem;
    }

    .General-TradingS4-header-section {
        margin-bottom: 30px;
    }

    .General-TradingS4-service-card {
        padding: 30px 15px;
    }
}

@media (max-width: 575px) {
    .General-TradingS4-main-title,
    .General-TradingS4-sub-title {
        font-size: 1.8rem;
    }

    .General-TradingS4-quote-text {
        font-size: 1.3rem;
    }
}

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

.General-Trading5-grid {
    display: grid;
    grid-template-columns: 2fr 1.5fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 15px;
    height: 500px;
}

.General-Trading5-banner {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

    .General-Trading5-banner:hover {
        transform: scale(1.02);
    }

.General-Trading5-banner-large {
    grid-row: 1 / 3;
    background: linear-gradient(135deg, rgba(0,0,0,0.7), rgba(0,0,0,0.5)), url('https://readdy.ai/api/search-image?query=luxury%20black%20skincare%20serum%20bottle%20with%20elegant%20packaging%20on%20dark%20background%20minimalist%20beauty%20product%20photography&width=600&height=500&seq=1&orientation=landscape') center/cover;
}

.General-Trading5-banner-medium {
    grid-row: 1 / 3;
    background: linear-gradient(135deg, rgba(255,255,255,0.1), rgba(255,192,203,0.2)), url('https://readdy.ai/api/search-image?query=makeup%20brushes%20with%20pink%20powder%20cosmetics%20scattered%20on%20white%20background%20beauty%20products%20flatlay%20photography&width=450&height=500&seq=2&orientation=portrait') center/cover;
}

.General-Trading5-banner-small-top {
    background: linear-gradient(135deg, rgba(255,255,255,0.9), rgba(255,255,255,0.7)), url('https://readdy.ai/api/search-image?query=pink%20energy%20skincare%20lotion%20bottles%20with%20clean%20white%20background%20modern%20cosmetic%20product%20photography&width=300&height=240&seq=3&orientation=landscape') center/cover;
}

.General-Trading5-banner-small-bottom {
    background: linear-gradient(135deg, rgba(0,0,0,0.8), rgba(139,69,19,0.6)), url('https://readdy.ai/api/search-image?query=pink%20powder%20explosion%20with%20makeup%20brushes%20on%20dark%20background%20dramatic%20beauty%20cosmetics%20photography&width=300&height=240&seq=4&orientation=landscape') center/cover;
}

.General-Trading5-content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 30px;
    color: white;
}

.General-Trading5-banner-medium .General-Trading5-content {
    color: #333;
}

.General-Trading5-banner-small-top .General-Trading5-content {
    color: #333;
}

.General-Trading5-percentage {
    font-size: 4.5rem;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 10px;
}

.General-Trading5-title {
    font-size: 1.8rem;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1.2;
    margin-bottom: 20px;
}

.General-Trading5-medium-title {
    font-size: 1.6rem;
    font-weight: 800;
    text-transform: uppercase;
    line-height: 1.2;
    margin-bottom: 15px;
    color: #333;
}

.General-Trading5-small-title {
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1.2;
    margin-bottom: 15px;
}

.General-Trading5-btn {
    display: inline-block;
    padding: 12px 25px;
    background: transparent;
    border: 2px solid white;
    color: white;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    width: fit-content;
}

    .General-Trading5-btn:hover {
        background: white;
        color: #333;
    }

.General-Trading5-btn-orange {
    background: #ff6b35;
    border: none;
    color: white;
    border-radius: 25px;
    padding: 8px 20px;
    font-size: 0.8rem;
}

    .General-Trading5-btn-orange:hover {
        background: #e55a2b;
        color: white;
    }

.General-Trading5-btn-gold {
    color: #d4a574;
    border: none;
    background: transparent;
    text-decoration: underline;
    padding: 0;
    font-size: 0.9rem;
}

    .General-Trading5-btn-gold:hover {
        color: #b8935f;
    }

.General-Trading5-save-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #ff6b35;
    color: white;
    padding: 8px 15px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.8rem;
}

@media (max-width: 992px) {
    .General-Trading5-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto auto auto;
        height: auto;
    }

    .General-Trading5-banner-large {
        grid-column: 1 / 3;
        grid-row: 1;
        height: 300px;
    }

    .General-Trading5-banner-medium {
        grid-column: 1 / 3;
        grid-row: 2;
        height: 250px;
    }

    .General-Trading5-banner-small-top {
        grid-column: 1;
        grid-row: 3;
        height: 200px;
    }

    .General-Trading5-banner-small-bottom {
        grid-column: 2;
        grid-row: 3;
        height: 200px;
    }

    .General-Trading5-percentage {
        font-size: 3rem;
    }

    .General-Trading5-title {
        font-size: 1.4rem;
    }
}

@media (max-width: 768px) {
    .General-Trading5-grid {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(4, auto);
    }

    .General-Trading5-banner-large,
    .General-Trading5-banner-medium,
    .General-Trading5-banner-small-top,
    .General-Trading5-banner-small-bottom {
        grid-column: 1;
        height: 250px;
    }

    .General-Trading5-banner-large {
        grid-row: 1;
    }

    .General-Trading5-banner-medium {
        grid-row: 2;
    }

    .General-Trading5-banner-small-top {
        grid-row: 3;
    }

    .General-Trading5-banner-small-bottom {
        grid-row: 4;
    }

    .General-Trading5-content {
        padding: 20px;
    }

    .General-Trading5-percentage {
        font-size: 2.5rem;
    }

    .General-Trading5-title {
        font-size: 1.2rem;
    }

    .General-Trading5-medium-title {
        font-size: 1.3rem;
    }

    .General-Trading5-small-title {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .General-Trading5-container {
        padding: 10px;
    }

    .General-Trading5-content {
        padding: 15px;
    }

    .General-Trading5-percentage {
        font-size: 2rem;
    }

    .General-Trading5-title {
        font-size: 1rem;
    }

    .General-Trading5-medium-title {
        font-size: 1.1rem;
    }

    .General-Trading5-small-title {
        font-size: 0.9rem;
    }

    .General-Trading5-btn {
        padding: 10px 20px;
        font-size: 0.8rem;
    }
}

.General-Trading6-container {
    font-family: 'Arial', sans-serif;
    color: #333;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.General-Trading6-header {
    text-align: center;
    margin-bottom: 30px;
}

.General-Trading6-main-heading {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.General-Trading6-discount {
    font-size: 1.2rem;
    color: #d9534f;
    margin-bottom: 15px;
}

.General-Trading6-price {
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.General-Trading6-button {
    background-color: #000;
    color: #fff;
    border: none;
    padding: 12px 30px;
    font-weight: bold;
    border-radius: 0;
    margin-bottom: 40px;
    transition: all 0.3s;
}

    .General-Trading6-button:hover {
        background-color: #333;
        color: #fff;
    }

.General-Trading6-section {
    margin-bottom: 50px;
    text-align: center;
}

.General-Trading6-section-heading {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 15px;
}

.General-Trading6-section-text {
    margin-bottom: 20px;
    color: #666;
}

.General-Trading6-product {
    border: 1px solid #eee;
    padding: 20px;
    text-align: center;
    margin-bottom: 30px;
}

.General-Trading6-product-heading {
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 15px;
}

.General-Trading6-product-text {
    margin-bottom: 15px;
    color: #666;
}

.General-Trading6-product-price {
    font-weight: bold;
    font-size: 1.2rem;
}

@media (max-width: 768px) {
    .General-Trading6-main-heading {
        font-size: 2rem;
    }

    .General-Trading6-section {
        margin-bottom: 30px;
    }
}


.General-TradingS6-container {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
}

.General-TradingS6-banner {
    background-image: url(https://dreamingtheme.kiendaotac.com/html/stelina/assets/images/banner-home-2.jpg);
    padding: 3rem 2rem;
    border-radius: 15px;
    margin-bottom: 1rem;
    position: relative;
    overflow: hidden;
    min-height: 300px;
    display: flex;
    align-items: center;
}

    .General-TradingS6-banner.two {
        background-image: url(https://dreamingtheme.kiendaotac.com/html/stelina/assets/images/banner-home-3.jpg);
    }

.General-TradingS6-staff-pick {
    color: #b8860b;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.General-TradingS6-heading {
    color: #2c2c2c;
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.General-TradingS6-subtitle {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 2rem;
    line-height: 1.4;
}

.General-TradingS6-promo-text {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
}

.General-TradingS6-code {
    color: #b8860b;
    font-weight: 600;
}

.General-TradingS6-discount {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 2rem;
}

.General-TradingS6-btn {
    background: transparent;
    border: 2px solid #2c2c2c;
    color: #2c2c2c;
    padding: 0.8rem 2rem;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

    .General-TradingS6-btn:hover {
        background: #2c2c2c;
        color: white;
        text-decoration: none;
    }

.General-TradingS6-perfume-img {
    position: absolute;
    right: 2rem;
    top: 50%;
    transform: translateY(-50%);
    width: 120px;
    height: auto;
    z-index: 2;
}

.General-TradingS6-full-banner {
    background: white;
    padding: 3rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    background-image: url(https://dreamingtheme.kiendaotac.com/html/stelina/assets/images/banner-home-15.jpg);
    background-repeat: no-repeat;
    background-size: contain;
}

.General-TradingS6-collection-heading {
    color: #2c2c2c;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.General-TradingS6-collection-subtitle {
    color: #666;
    font-size: 1rem;
    margin-bottom: 2rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.General-TradingS6-price-label {
    color: #999;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.General-TradingS6-price {
    color: #b8860b;
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.General-TradingS6-decorative-img {
    position: absolute;
    opacity: 0.6;
}

.General-TradingS6-wheat-left {
    left: 5%;
    top: 20%;
    width: 80px;
    transform: rotate(-15deg);
}

.General-TradingS6-perfume-left {
    left: 15%;
    bottom: 20%;
    width: 100px;
}

.General-TradingS6-perfume-right {
    right: 15%;
    bottom: 25%;
    width: 90px;
}

.General-TradingS6-rose-right {
    right: 8%;
    top: 15%;
    width: 70px;
}

.General-TradingS6-wheat-right {
    right: 25%;
    top: 10%;
    width: 60px;
    transform: rotate(20deg);
}

@media (max-width: 768px) {
    .General-TradingS6-banner {
        padding: 2rem 1.5rem;
        min-height: 250px;
        margin-bottom: 1rem;
    }

    .General-TradingS6-heading {
        font-size: 1.8rem;
    }

    .General-TradingS6-collection-heading {
        font-size: 2rem;
    }

    .General-TradingS6-perfume-img {
        width: 90px;
        right: 1rem;
    }

    .General-TradingS6-full-banner {
        padding: 3rem 1.5rem;
    }

    .General-TradingS6-decorative-img {
        opacity: 0.3;
    }

    .General-TradingS6-wheat-left,
    .General-TradingS6-perfume-left,
    .General-TradingS6-perfume-right,
    .General-TradingS6-rose-right,
    .General-TradingS6-wheat-right {
        width: 50px;
    }
}

@media (max-width: 576px) {
    .General-TradingS6-heading {
        font-size: 1.5rem;
    }

    .General-TradingS6-collection-heading {
        font-size: 1.8rem;
    }

    .General-TradingS6-perfume-img {
        width: 70px;
    }
}

.General-TradingS7-section {
    padding: 30px 0;
    font-family: 'Arial', sans-serif;
}

/* Title */
.General-TradingS7-title {
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
    text-transform: uppercase;
    font-size: 28px;
}

    .General-TradingS7-title span {
        border-bottom: 3px solid #FF5722;
        padding-bottom: 5px;
    }

/* Cards */
.General-TradingS7-card {
    border: none;
    background: transparent;
    transition: transform 0.3s ease;
}

    .General-TradingS7-card:hover {
        transform: translateY(-5px);
    }

.General-TradingS7-image-container {
    position: relative;
    overflow: hidden;
    border-radius: 5px;
    height: 220px;
}

    .General-TradingS7-image-container img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }

.General-TradingS7-card:hover .General-TradingS7-image-container img {
    transform: scale(1.05);
}

.General-TradingS7-date {
    font-size: 12px;
    color: gray;
    margin-top: 15px;
    margin-bottom: 8px;
}

.General-TradingS7-card h5 {
    margin-top: 10px;
    font-weight: 600;
    font-size: 18px;
    margin-bottom: 12px;
}

.General-TradingS7-card p {
    font-size: 14px;
    color: #444;
    margin: 10px 0;
    line-height: 1.6;
}

/* Read More */
.General-TradingS7-readmore {
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    display: inline-block;
    margin-top: 10px;
    position: relative;
    text-decoration: none;
    color: black;
}

    .General-TradingS7-readmore::after {
        content: "";
        width: 100%;
        height: 1px;
        background: black;
        position: absolute;
        left: 0;
        bottom: -3px;
    }

/* Responsive adjustments */
@media (max-width: 992px) {
    .General-TradingS7-image-container {
        height: 200px;
    }
}

@media (max-width: 768px) {
    .General-TradingS7-image-container {
        height: 250px;
    }
}

@media (max-width: 576px) {
    .General-TradingS7-image-container {
        height: 200px;
    }

    .General-TradingS7-title {
        font-size: 24px;
    }
}

.license-container {
    max-width: 850px;
    margin: 0 auto;
    padding: 1.5rem;
    perspective: 1000px;
}

.license-frame {
    background: linear-gradient(135deg, #FF6B00, #FF8533);
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 20px 40px rgba(255, 107, 0, 0.2), 0 0 0 1px rgba(255, 255, 255, 0.1);
    position: relative;
    transform-style: preserve-3d;
    transform: rotateX(2deg);
    transition: transform 0.3s ease;
}

    .license-frame::before {
        content: '';
        position: absolute;
        top: 1rem;
        left: 1rem;
        right: 1rem;
        bottom: 1rem;
        border: 2px solid rgba(255, 255, 255, 0.4);
        border-radius: 0.75rem;
        pointer-events: none;
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    }

.license-content {
    background: linear-gradient(to bottom, #ffffff, #fafafa);
    padding: 4rem 3rem;
    border-radius: 0.75rem;
    text-align: center;
    position: relative;
    z-index: 2;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.license-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.75rem;
    font-weight: 700;
    background: linear-gradient(90deg, rgb(235 39 113) 0%, rgb(247 177 30) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 2rem;
    letter-spacing: 3px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.license-subtitle {
    font-style: italic;
    font-size: 1.2rem;
    color: #000000;
    margin-bottom: 1.25rem;
    letter-spacing: 0.5px;
}

.license-name {
    font-size: 2.4rem;
    font-weight: 600;
    background: linear-gradient(45deg, #000000, #ff7e24);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 2.5rem;
    font-family: 'Playfair Display', serif;
    letter-spacing: 1px;
}

.license-text {
    font-size: 1rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 3rem;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    letter-spacing: 0.3px;
}

.license-date {
    margin-bottom: 3.5rem;
    position: relative;
    padding: 1rem 0;
}

    .license-date::before,
    .license-date::after {
        content: '✦';
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        color: #FF6B00;
        font-size: 1rem;
        opacity: 0.6;
    }

    .license-date::before {
        top: 0;
    }

    .license-date::after {
        bottom: 0;
    }

    .license-date p:first-child {
        font-size: 1rem;
        color: #555;
        margin-bottom: 0.5rem;
        font-style: italic;
        letter-spacing: 1px;
    }

    .license-date p:last-child {
        font-size: 1.1rem;
        color: #FF5722;
        font-weight: 600;
        margin-bottom: 0;
    }

.license-signature {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    padding: 1.5rem;
}

    .license-signature::before {
        content: '';
        position: absolute;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 100px;
        height: 100px;
        background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100' fill='none'%3E%3Cpath d='M50 5 L95 95 L5 95 Z' stroke='%23FF6B00' stroke-width='0.5' opacity='0.1'/%3E%3C/svg%3E") center/contain no-repeat;
        opacity: 0.1;
    }

.license-signature-line {
    width: 250px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #333, transparent);
    margin-bottom: 1rem;
}

.license-signature-name {
    font-weight: 600;
    color: #222;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
}

.license-signature-title {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 0.25rem;
}

.license-signature-company {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .license-frame {
        padding: 1rem;
    }

    .license-content {
        padding: 2rem 1.5rem;
    }

    .license-title {
        font-size: 2rem;
        letter-spacing: 1px;
    }

    .license-name {
        font-size: 1.8rem;
    }

    .license-text {
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .license-container {
        padding: 0.5rem;
    }

    .license-frame {
        padding: 0.75rem;
    }

    .license-content {
        padding: 1.5rem 1rem;
    }

    .license-title {
        font-size: 1.6rem;
    }

    .license-name {
        font-size: 1.5rem;
    }

    .license-text {
        font-size: 0.85rem;
    }

    .license-signature-line {
        width: 150px;
    }
}

.licenseS1-hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.licenseS1-image-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.licenseS1-main-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
}

.licenseS1-experience-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: linear-gradient(90deg, rgb(235 39 113) 0%, rgb(247 177 30) 100%);
    color: white;
    padding: 20px 25px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(79, 70, 229, 0.3);
}

    .licenseS1-experience-badge h3 {
        font-size: 1.8rem;
        font-weight: 700;
        margin: 0;
        line-height: 1.2;
    }

    .licenseS1-experience-badge p {
        font-size: 1rem;
        margin: 5px 0 0 0;
        opacity: 0.9;
    }

.licenseS1-content {
    padding-left: 60px;
}

.licenseS1-about-label {
    color: #000;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    position: relative;
}

    .licenseS1-about-label::after {
        content: '';
        position: absolute;
        bottom: -5px;
        left: 0;
        width: 40px;
        height: 3px;
        background: #FF5722;
        border-radius: 2px;
    }

.licenseS1-main-title {
    font-size: 3rem;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.2;
    margin-bottom: 25px;
}

.licenseS1-description {
    font-size: 1.1rem;
    color: #6b7280;
    line-height: 1.7;
    margin-bottom: 35px;
}

.licenseS1-quote {
    background: #f8fafc;
    border-left: 4px solid #ff5722;
    padding: 25px 30px;
    margin: 30px 0;
    border-radius: 0 10px 10px 0;
}

.licenseS1-quote-text {
    font-style: italic;
    color: #4b5563;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 15px;
}

.licenseS1-quote-author {
    font-weight: 600;
    color: #1f2937;
    font-size: 0.95rem;
}


@media (max-width: 991px) {
    .licenseS1-content {
        padding-left: 0;
        margin-top: 40px;
    }

    .licenseS1-main-title {
        font-size: 2.5rem;
    }

    .licenseS1-hero-section {
        padding: 60px 0;
    }
}

@media (max-width: 768px) {
    .licenseS1-main-title {
        font-size: 2rem;
    }

    .licenseS1-experience-badge {
        padding: 15px 20px;
    }

        .licenseS1-experience-badge h3 {
            font-size: 1.5rem;
        }

    .licenseS1-play-button {
        width: 60px;
        height: 60px;
    }

    .licenseS1-play-icon {
        border-left: 15px solid #4f46e5;
        border-top: 9px solid transparent;
        border-bottom: 9px solid transparent;
    }

    .licenseS1-main-image {
        height: 300px;
    }
}

@media (max-width: 576px) {
    .licenseS1-main-title {
        font-size: 1.8rem;
    }

    .licenseS1-description {
        font-size: 1rem;
    }

    .licenseS1-quote {
        padding: 20px;
    }
}


.InquiryS1-container {
    min-height: 100vh;
    display: flex;
    align-items: stretch;
}

.InquiryS1-form-section {
    background: white;
    padding: 3rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 100vh;
}

.InquiryS1-hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('https://themewar.com/wp/nivex/main/wp-content/uploads/2025/02/sticky-pd-img-645x645.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    padding: 2rem;
    min-height: 100vh;
}

.InquiryS1-logo {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 3rem;
    letter-spacing: 1px;
}

.InquiryS1-title {
    font-size: 1.75rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
}

.InquiryS1-subtitle {
    color: #6b7280;
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

.InquiryS1-google-btn {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 0.75rem 1rem;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: #374151;
    text-decoration: none;
    transition: all 0.2s;
    margin-bottom: 1.5rem;
}

    .InquiryS1-google-btn:hover {
        background: #f9fafb;
        border-color: #d1d5db;
        color: #374151;
        text-decoration: none;
    }

.InquiryS1-divider {
    text-align: center;
    margin: 1.5rem 0;
    color: #9ca3af;
    font-size: 0.9rem;
    position: relative;
}

    .InquiryS1-divider::before,
    .InquiryS1-divider::after {
        content: '';
        position: absolute;
        top: 50%;
        width: 45%;
        height: 1px;
        background: #e5e7eb;
    }

    .InquiryS1-divider::before {
        left: 0;
    }

    .InquiryS1-divider::after {
        right: 0;
    }

.InquiryS1-form-group {
    margin-bottom: 1.25rem;
}

.InquiryS1-label {
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
    color: #374151;
    margin-bottom: 0.5rem;
}

.InquiryS1-input {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    font-size: 0.9rem;
    transition: border-color 0.2s;
    background: white;
}

    .InquiryS1-input[type="tel"] {
        letter-spacing: 0.5px;
    }

textarea.InquiryS1-input {
    resize: vertical;
    min-height: 120px;
    line-height: 1.5;
}

.InquiryS1-success-message {
    background-color: #dcfce7;
    color: #166534;
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    margin-top: 1rem;
    font-size: 0.9rem;
}

.InquiryS1-input:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.InquiryS1-input::placeholder {
    color: #9ca3af;
}

.InquiryS1-checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    margin: 1.5rem 0;
}

.InquiryS1-checkbox {
    margin-top: 0.125rem;
}

.InquiryS1-checkbox-label {
    font-size: 0.85rem;
    color: #6b7280;
    line-height: 1.4;
}

    .InquiryS1-checkbox-label a {
        color: #3b82f6;
        text-decoration: none;
    }

        .InquiryS1-checkbox-label a:hover {
            text-decoration: underline;
        }

.InquiryS1-submit-btn {
    width: 100%;
    background: linear-gradient(90deg, rgb(235 39 113) 0%, rgb(247 177 30) 100%);
    color: white;
    border: none;
    border-radius: 8px;
    padding: 0.875rem;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s;
    margin-bottom: 1.5rem;
    transition: 0.5s ease all;
}

    .InquiryS1-submit-btn:hover {
        background: #111827;
        transition: 0.5s ease all;
    }

.InquiryS1-login-link {
    text-align: center;
    font-size: 0.9rem;
    color: #6b7280;
}

    .InquiryS1-login-link a {
        color: #3b82f6;
        text-decoration: none;
    }

        .InquiryS1-login-link a:hover {
            text-decoration: underline;
        }

.InquiryS1-hero-content h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.InquiryS1-hero-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.5;
}

.InquiryS1-badges {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.InquiryS1-badge {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.InquiryS1-badge-icon {
    width: 16px;
    height: 16px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    color: #333;
}

@media (max-width: 991.98px) {
    .InquiryS1-container {
        flex-direction: column;
    }

    .InquiryS1-form-section {
        min-height: auto;
        padding: 2rem 1.5rem;
    }

    .InquiryS1-hero-section {
        min-height: 60vh;
    }

    .InquiryS1-hero-content h1 {
        font-size: 2rem;
    }

    .InquiryS1-badges {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 575.98px) {
    .InquiryS1-form-section {
        padding: 1.5rem 1rem;
    }

    .InquiryS1-title {
        font-size: 1.5rem;
    }

    .InquiryS1-hero-content h1 {
        font-size: 1.75rem;
    }

    .InquiryS1-hero-content p {
        font-size: 1rem;
    }
}

.CareerS1-wrapper {
    padding: 80px 0;
    background-color: #ffffff;
}

.CareerS1-title {
    text-align: center;
    font-size: 2.8rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 60px;
    line-height: 1.3;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.CareerS1-card {
    padding: 40px 30px;
    border-radius: 20px;
    height: 100%;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    text-align: left;
}

    .CareerS1-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    }

.CareerS1-card-green {
    background-color: #e8f5e8;
}

.CareerS1-card-purple {
    background-color: #f3e8f3;
}

.CareerS1-card-yellow {
    background-color: #fff8e1;
}

.CareerS1-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

    .CareerS1-icon svg {
        font-size: 32px;
        color: white;
    }

    .CareerS1-icon i {
        font-size: 32px;
        color: white;
    }

.CareerS1-icon-green {
    background-color: #66bb6a;
}

.CareerS1-icon-purple {
    background-color: #ab47bc;
}

.CareerS1-icon-yellow {
    background-color: #ffca28;
}

.CareerS1-card-title {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 18px;
    color: #2c3e50;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.CareerS1-card-text {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 0;
    color: #5a6c7d;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

@media (max-width: 992px) {
    .CareerS1-title {
        font-size: 2.4rem;
        margin-bottom: 50px;
    }
}

@media (max-width: 768px) {
    .CareerS1-wrapper {
        padding: 60px 0;
    }

    .CareerS1-title {
        font-size: 2rem;
        margin-bottom: 40px;
    }

    .CareerS1-card {
        padding: 30px 25px;
        margin-bottom: 25px;
    }

    .CareerS1-icon {
        width: 70px;
        height: 70px;
    }

        .CareerS1-icon i {
            font-size: 28px;
        }

    .CareerS1-card-title {
        font-size: 1.4rem;
    }
}

@media (max-width: 576px) {
    .CareerS1-title {
        font-size: 1.8rem;
        padding: 0 15px;
    }
}

.CareerS2-main-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 2rem 0;
    background: linear-gradient(135deg, #e8f5e8 0%, #f0f8ff 100%);
}

.CareerS2-content-wrapper {
    background: white;
    border-radius: 2rem;
    padding: 2rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    margin: 1rem;
}

.CareerS2-image-section {
    position: relative;
    padding: 1rem;
}

.CareerS2-image-wrapper {
    position: relative;
    border-radius: 1.5rem;
    overflow: hidden;
    height: 400px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.CareerS2-main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.CareerS2-review-badge {
    position: absolute;
    bottom: 1.5rem;
    right: 1.5rem;
    background: white;
    padding: 0.8rem 1.2rem;
    border-radius: 2rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 0.8rem;
    min-width: 180px;
}

.CareerS2-avatars {
    display: flex;
    margin-right: 0.5rem;
}

.CareerS2-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid white;
    margin-left: -8px;
    object-fit: cover;
}

    .CareerS2-avatar:first-child {
        margin-left: 0;
    }

.CareerS2-avatar-count {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #6c63ff;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 600;
    margin-left: -8px;
    border: 2px solid white;
}

.CareerS2-review-text {
    font-size: 0.9rem;
    font-weight: 600;
    color: #333;
    white-space: nowrap;
}

.CareerS2-content-section {
    padding: 2rem 1rem;
}

.CareerS2-main-heading {
    font-size: 3rem;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.CareerS2-main-text {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    max-width: 90%;
}

.CareerS2-feature-cards {
    margin-top: 2rem;
}

.CareerS2-feature-card {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
    gap: 1rem;
}

.CareerS2-icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.CareerS2-icon-green {
    background-color: #7ED957;
}

.CareerS2-icon-yellow {
    background-color: #FFD700;
}

.CareerS2-icon {
    width: 24px;
    height: 24px;
    color: white;
}

.CareerS2-card-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.CareerS2-card-content p {
    font-size: 1rem;
    color: #666;
    line-height: 1.5;
    margin: 0;
}

@media (max-width: 991.98px) {
    .CareerS2-main-heading {
        font-size: 2.5rem;
        text-align: center;
    }

    .CareerS2-main-text {
        text-align: center;
        max-width: 100%;
    }

    .CareerS2-content-section {
        margin-top: 2rem;
    }

    .CareerS2-image-wrapper {
        height: 300px;
    }

    .CareerS2-review-badge {
        bottom: 1rem;
        right: 1rem;
        min-width: 160px;
    }
}

@media (max-width: 767.98px) {
    .CareerS2-main-heading {
        font-size: 2rem;
    }

    .CareerS2-content-wrapper {
        padding: 1.5rem;
        margin: 0.5rem;
    }

    .CareerS2-review-badge {
        position: static;
        margin-top: 1rem;
        justify-content: center;
    }

    .CareerS2-feature-card {
        margin-bottom: 1.5rem;
    }
}

.CareerS2-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.CareerS2-main-container {
    display: flex;
    align-items: stretch;
    min-height: 500px;
}

.CareerS2-left-card {
    background: linear-gradient(135deg, #90C695, #7BB87F);
    padding: 50px 40px;
    border-radius: 25px;
    color: #2d3748;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

    .CareerS2-left-card::before {
        content: '';
        position: absolute;
        top: -50%;
        right: -50%;
        width: 200%;
        height: 200%;
        background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
        pointer-events: none;
    }

.CareerS2-main-heading {
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 0;
    color: #1a202c;
}

.CareerS2-sub-heading {
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.2;
    margin: 8px 0;
    color: #1a202c;
}

.CareerS2-tertiary-text {
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 25px;
    color: #1a202c;
}

.CareerS2-description {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 35px;
    color: #2d3748;
    opacity: 0.9;
}

.CareerS2-cta-button {
    background-color: #1a202c;
    color: white;
    border: none;
    padding: 14px 32px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    align-self: flex-start;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

    .CareerS2-cta-button:hover {
        background-color: #2d3748;
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(26, 32, 44, 0.3);
        color: white;
    }

.CareerS2-right-section {
    background-color: #f0f7f0;
    padding: 50px 40px;
    border-radius: 0 25px 25px 0;
    display: flex;
    align-items: center;
}

.CareerS2-features-container {
    width: 100%;
}

.CareerS2-feature-item {
    text-align: center;
    padding: 0 25px;
    position: relative;
}

    .CareerS2-feature-item:first-child::after {
        content: '';
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
        width: 1px;
        height: 120px;
        background-color: #d1d5db;
    }

.CareerS2-feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #90C695, #7BB87F);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    box-shadow: 0 4px 15px rgba(144, 198, 149, 0.3);
}

    .CareerS2-feature-icon i {
        font-size: 28px;
        color: #1a202c;
    }

.CareerS2-feature-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1a202c;
}

.CareerS2-feature-description {
    font-size: 0.95rem;
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 0;
}

@media (max-width: 991.98px) {
    .CareerS2-main-container {
        flex-direction: column;
    }

    .CareerS2-left-card {
        border-radius: 25px;
        margin-bottom: 30px;
    }

    .CareerS2-right-section {
        border-radius: 25px;
    }

    .CareerS2-main-heading,
    .CareerS2-sub-heading,
    .CareerS2-tertiary-text {
        font-size: 2.2rem;
    }
}

@media (max-width: 767.98px) {
    .CareerS2-section {
        padding: 50px 0;
    }

    .CareerS2-left-card,
    .CareerS2-right-section {
        padding: 40px 30px;
    }

    .CareerS2-main-heading,
    .CareerS2-sub-heading,
    .CareerS2-tertiary-text {
        font-size: 1.8rem;
    }

    .CareerS2-feature-item {
        margin-bottom: 40px;
        padding: 0 15px;
    }

        .CareerS2-feature-item:first-child::after {
            display: none;
        }

        .CareerS2-feature-item:last-child {
            margin-bottom: 0;
        }
}

@media (max-width: 575.98px) {
    .CareerS2-left-card,
    .CareerS2-right-section {
        padding: 30px 20px;
    }

    .CareerS2-main-heading,
    .CareerS2-sub-heading,
    .CareerS2-tertiary-text {
        font-size: 1.6rem;
    }
}

.CareerS3-hero-section {
    background: linear-gradient(145deg, #0f1729 0%, #1e293b 100%);
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 4rem 0;
}

.CareerS3-container {
    position: relative;
    z-index: 2;
}

.CareerS3-content-wrapper {
    display: flex;
    align-items: center;
    min-height: 80vh;
}

.CareerS3-text-content {
    padding: 2rem 0;
}

.CareerS3-heading {
    font-size: 4rem;
    font-weight: 800;
    background: linear-gradient(to right, #ffffff, #e2e8f0);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.CareerS3-description {
    font-size: 1.2rem;
    color: #cbd5e1;
    line-height: 1.8;
    margin-bottom: 2.5rem;
    max-width: 90%;
    font-weight: 400;
}

.CareerS3-cta-button {
    background: linear-gradient(135deg, #B14EFF 0%, #E14EFF 100%);
    color: #ffffff;
    border: none;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.4s ease;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(177, 78, 255, 0.3);
    position: relative;
    overflow: hidden;
}

    .CareerS3-cta-button:hover {
        color: #ffffff;
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(177, 78, 255, 0.4);
    }

    .CareerS3-cta-button::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, #E14EFF 0%, #B14EFF 100%);
        opacity: 0;
        transition: opacity 0.4s ease;
    }

    .CareerS3-cta-button:hover::after {
        opacity: 1;
    }

    .CareerS3-cta-button span {
        position: relative;
        z-index: 1;
    }

.CareerS3-image-section {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.CareerS3-image-wrapper {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.1);
    max-width: 500px;
    width: 100%;
    transform: perspective(1000px) rotateY(-5deg);
    transition: transform 0.6s ease;
}

    .CareerS3-image-wrapper:hover {
        transform: perspective(1000px) rotateY(0deg);
    }

.CareerS3-main-image {
    width: 100%;
    height: auto;
    display: block;
}

.CareerS3-curved-line {
    position: absolute;
    top: -50px;
    left: -80px;
    z-index: 3;
    width: 300px;
    height: 200px;
}

.CareerS3-geometric-shape {
    position: absolute;
    bottom: -30px;
    left: -40px;
    z-index: 3;
    width: 80px;
    height: 80px;
}

.CareerS3-purple-accent {
    position: absolute;
    top: 20%;
    right: 10%;
    width: 150px;
    height: 150px;
    background: linear-gradient(45deg, #B14EFF, #E14EFF);
    border-radius: 50%;
    opacity: 0.1;
    filter: blur(40px);
}

@media (max-width: 768px) {
    .CareerS3-content-wrapper {
        flex-direction: column;
        text-align: center;
        min-height: auto;
        padding: 3rem 0;
    }

    .CareerS3-heading {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }

    .CareerS3-description {
        font-size: 1rem;
        max-width: 100%;
        margin-bottom: 2rem;
    }

    .CareerS3-text-content {
        padding: 1rem 0 2rem 0;
    }

    .CareerS3-image-wrapper {
        max-width: 300px;
        margin-top: 2rem;
    }

    .CareerS3-curved-line {
        width: 200px;
        height: 150px;
        top: -30px;
        left: -50px;
    }

    .CareerS3-geometric-shape {
        width: 60px;
        height: 60px;
        bottom: -20px;
        left: -30px;
    }
}

@media (max-width: 576px) {
    .CareerS3-heading {
        font-size: 2rem;
    }

    .CareerS3-description {
        font-size: 0.95rem;
    }

    .CareerS3-cta-button {
        padding: 0.75rem 1.5rem;
        font-size: 0.95rem;
    }
}

.contactUs-container {
    background: linear-gradient(90deg, rgb(235 39 113) 0%, rgb(247 177 30) 100%);
    min-height: 100vh;
    font-family: 'Inter', sans-serif;
    padding: 0;
}

.contactUs-main {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 2rem 0;
}

.contactUs-left {
    color: white;
    padding: 3rem 2rem;
}

.contactUs-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.contactUs-description {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    opacity: 0.9;
}

.contactUs-info {
    margin-bottom: 2rem;
}

.contactUs-info-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.contactUs-info-icon {
    width: 20px;
    height: 20px;
    margin-right: 0.75rem;
    opacity: 0.8;
}

.contactUs-info-link {
    color: white;
    text-decoration: none;
}

    .contactUs-info-link:hover {
        color: #e0e0e0;
        text-decoration: underline;
    }

.contactUs-hours {
    margin-top: 2rem;
}

.contactUs-hours-title {
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.contactUs-hours-item {
    margin-bottom: 0.5rem;
    opacity: 0.9;
}

.contactUs-map {
    margin-top: 2rem;
    border-radius: 8px;
    overflow: hidden;
    height: 200px;
}

.contactUs-form-card {
    background: white;
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    margin: 2rem;
    position: relative;
    overflow: hidden;
}

    .contactUs-form-card::before {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        width: 150px;
        height: 150px;
        background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="45" fill="none" stroke="%23f0f0f0" stroke-width="2"/><circle cx="50" cy="50" r="35" fill="none" stroke="%23f0f0f0" stroke-width="1"/><circle cx="50" cy="50" r="25" fill="none" stroke="%23f0f0f0" stroke-width="1"/></svg>') no-repeat;
        background-size: contain;
        opacity: 0.3;
    }

.contactUs-form-header {
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.contactUs-form-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 0.5rem;
}

.contactUs-form-subtitle {
    color: #4a5568;
    font-size: 1rem;
}

.contactUs-form {
    position: relative;
    z-index: 1;
}

.contactUs-form-group {
    margin-bottom: 1.5rem;
}

.contactUs-form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #2d3748;
    font-size: 0.9rem;
}

.contactUs-form-input {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    background: #f7fafc;
}

    .contactUs-form-input:focus {
        outline: none;
        border-color: #6B5B95;
        background: white;
        box-shadow: 0 0 0 3px rgba(107, 91, 149, 0.1);
    }

.contactUs-form-select {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    background: #f7fafc;
    transition: border-color 0.3s ease;
}

    .contactUs-form-select:focus {
        outline: none;
        border-color: #6B5B95;
        background: white;
        box-shadow: 0 0 0 3px rgba(107, 91, 149, 0.1);
    }

.contactUs-form-textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    resize: vertical;
    min-height: 120px;
    background: #f7fafc;
    transition: border-color 0.3s ease;
}

    .contactUs-form-textarea:focus {
        outline: none;
        border-color: #6B5B95;
        background: white;
        box-shadow: 0 0 0 3px rgba(107, 91, 149, 0.1);
    }

.contactUs-form-button {
    background: linear-gradient(90deg, rgb(235 39 113) 0%, rgb(247 177 30) 100%);
    color: white;
    border: none;
    padding: 0.875rem 2rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    transition:.5s ease all
}

    .contactUs-form-button:hover {
        background: linear-gradient(90deg, rgb(246 173 31) 0%, rgb(235 45 109) 100%);
        transform: translateY(-1px);
        transition: .5s ease all
    }

.contactUs-phone-group {
    display: flex;
    gap: 0.5rem;
}

.contactUs-country-select {
    flex: 0 0 100px;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236B5B95' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 16px;
    padding-right: 2.5rem;
}

.contactUs-phone-input {
    flex: 1;
}

@media (max-width: 768px) {
    .contactUs-main {
        flex-direction: column;
        padding: 1rem 0;
    }

    .contactUs-left {
        padding: 2rem 1rem;
        text-align: center;
    }

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

    .contactUs-form-card {
        margin: 1rem;
        padding: 2rem;
    }

    .contactUs-map {
        height: 150px;
    }
}

@media (max-width: 576px) {
    .contactUs-title {
        font-size: 2rem;
    }

    .contactUs-form-card {
        padding: 1.5rem;
    }

    .contactUs-phone-group {
        flex-direction: column;
    }

    .contactUs-country-select {
        flex: none;
    }
}