/* ============================================
   TAXAT PAGE
   Page-specific styles: tax-* prefix
   LEFT ALIGN HEADERS - FULLY RESPONSIVE
   ============================================ */

/* ---------- Hero Section ---------- */
.tax-hero {
    position: relative;
    padding: 120px 0 80px 0;
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
    overflow: hidden;
    isolation: isolate;
    min-height: 350px;
    display: flex;
    align-items: center;
}

.tax-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
            rgba(5, 8, 18, 0.88) 0%,
            rgba(10, 15, 30, 0.82) 50%,
            rgba(5, 8, 18, 0.88) 100%);
    z-index: 1;
}

.tax-hero .auto-container {
    position: relative;
    z-index: 2;
    width: 100%;
}

.tax-hero-title h1 {
    font-size: 42px;
    font-weight: 800;
    color: #FFFFFF;
    font-family: 'Playfair Display', Georgia, serif;
    margin-bottom: 8px;
    line-height: 1.2;
}

.tax-hero-title h1 span {
    background: linear-gradient(135deg, #E6B04A 0%, #C8922A 40%, #F5E6C4 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.tax-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 8px;
}

.tax-breadcrumb li {
    color: #B4C0DD;
    font-size: 15px;
}

.tax-breadcrumb li a {
    color: #E6B04A;
    text-decoration: none;
    transition: color 0.3s ease;
}

.tax-breadcrumb li a:hover {
    color: #C8922A;
}

.tax-breadcrumb li span {
    color: #FFFFFF;
}

.tax-breadcrumb li+li::before {
    content: '/';
    margin-right: 8px;
    color: rgba(255, 255, 255, 0.3);
}

/* ---------- Responsive Hero ---------- */
@media (max-width: 1200px) {
    .tax-hero-title h1 { font-size: 38px; }
}

@media (max-width: 992px) {
    .tax-hero { padding: 100px 0 60px 0; min-height: 300px; }
    .tax-hero-title h1 { font-size: 34px; }
}

@media (max-width: 768px) {
    .tax-hero { padding: 80px 0 50px 0; min-height: 250px; }
    .tax-hero-title h1 { font-size: 28px; }
    .tax-breadcrumb li { font-size: 14px; }
}

@media (max-width: 576px) {
    .tax-hero { padding: 70px 0 40px 0; min-height: 200px; }
    .tax-hero-title h1 { font-size: 24px; }
    .tax-breadcrumb li { font-size: 13px; }
}

/* ---------- Form Section ---------- */
.tax-form-section {
    background: #0A0F1A;
    padding: 60px 0;
}

@media (max-width: 768px) {
    .tax-form-section { padding: 40px 0; }
}

@media (max-width: 576px) {
    .tax-form-section { padding: 30px 0; }
    .tax-form-section .py-5 { padding-top: 20px !important; padding-bottom: 20px !important; }
}

.tax-form {
    border-radius: 16px;
    padding: 30px 28px 40px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(12px);
    transition: all 0.4s ease;
}

.tax-form:hover {
    border-color: rgba(200, 146, 42, 0.3);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
}

.tax-form h3 {
    font-weight: 700;
    font-size: 24px;
    padding-bottom: 20px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: linear-gradient(135deg, #FFFFFF 0%, #E6B04A 40%, #C8922A 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    margin-bottom: 24px;
}

@media (max-width: 576px) {
    .tax-form { padding: 20px 16px 30px; }
    .tax-form h3 { font-size: 20px; padding-bottom: 16px; margin-bottom: 18px; }
}

.tax-form-group {
    margin-bottom: 16px;
}

@media (max-width: 576px) {
    .tax-form-group { margin-bottom: 12px; }
}

.tax-form-group label {
    color: #B4C0DD;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 6px;
    display: block;
}

@media (max-width: 576px) {
    .tax-form-group label { font-size: 13px; margin-bottom: 4px; }
}

.tax-form-group label span {
    color: #FF6B6B;
}

.tax-form-control {
    height: 48px;
    width: 100%;
    font-size: 14px;
    color: #FFFFFF;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 10px 18px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s ease;
    box-sizing: border-box;
}

@media (max-width: 576px) {
    .tax-form-control { height: 44px; font-size: 13px; padding: 8px 14px; border-radius: 8px; }
}

.tax-form-control:focus {
    outline: none;
    border-color: #C8922A;
    box-shadow: 0 0 0 3px rgba(200, 146, 42, 0.15);
    background: rgba(255, 255, 255, 0.08);
}

.tax-btn-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    background: linear-gradient(135deg, #C8922A 0%, #A8711A 100%);
    color: #FFFFFF;
    font-weight: 700;
    font-size: 16px;
    padding: 14px 32px;
    border-radius: 60px;
    border: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    box-shadow: 0 10px 25px -8px rgba(200, 146, 42, 0.4);
    letter-spacing: 0.5px;
    margin-top: 8px;
    position: relative;
    overflow: hidden;
}

@media (max-width: 576px) {
    .tax-btn-submit { font-size: 14px; padding: 12px 20px; border-radius: 50px; margin-top: 4px; }
}

.tax-btn-submit::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.tax-btn-submit:hover {
    transform: translateY(-3px);
    background: linear-gradient(135deg, #E6B04A 0%, #C8922A 100%);
    box-shadow: 0 18px 32px -12px rgba(200, 146, 42, 0.6);
}

.tax-btn-submit:hover::before { left: 100%; }

.tax-video {
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    width: 100%;
    height: auto;
}

@media (max-width: 992px) {
    .tax-video-col { margin-top: 40px; }
}

@media (max-width: 576px) {
    .tax-video { border-radius: 12px; }
    .tax-video-col { margin-top: 30px; }
}

/* ---------- About Section ---------- */
.tax-about {
    background: #0C1325;
    padding: 80px 0;
}

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

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

.tax-about-content h4 {
    font-size: 20px;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 16px;
}

@media (max-width: 576px) {
    .tax-about-content h4 { font-size: 17px; margin-bottom: 12px; }
}

.tax-about-text p {
    color: #B4C0DD;
    font-size: 16px;
    line-height: 1.8;
}

@media (max-width: 576px) {
    .tax-about-text p { font-size: 15px; line-height: 1.7; }
}

/* ---------- Types Section ---------- */
.tax-types {
    background: #0A0F1A;
    padding: 80px 0;
}

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

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

.tax-types-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tax-types-list ul li {
    margin-bottom: 25px;
    padding: 20px 25px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
    border-left: 4px solid #C8922A;
    transition: all 0.3s ease;
}

.tax-types-list ul li:hover {
    background: rgba(255, 255, 255, 0.04);
    transform: translateX(5px);
}

@media (max-width: 576px) {
    .tax-types-list ul li { padding: 15px 18px; margin-bottom: 16px; }
}

.tax-types-list ul li h4 {
    color: #FFFFFF;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 6px;
}

@media (max-width: 576px) {
    .tax-types-list ul li h4 { font-size: 16px; }
}

.tax-types-list ul li p {
    color: #B4C0DD;
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 0;
}

@media (max-width: 576px) {
    .tax-types-list ul li p { font-size: 14px; line-height: 1.6; }
}

/* ---------- Business Section ---------- */
.tax-business {
    background: #0C1325;
    padding: 60px 0;
}

@media (max-width: 768px) {
    .tax-business { padding: 40px 0; }
}

@media (max-width: 576px) {
    .tax-business { padding: 30px 0; }
}

.tax-business-text p {
    color: #B4C0DD;
    font-size: 16px;
    line-height: 1.8;
}

@media (max-width: 576px) {
    .tax-business-text p { font-size: 15px; line-height: 1.7; }
}

.tax-business-text p+p {
    margin-top: 12px;
}

.tax-image img {
    width: 100%;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

@media (max-width: 992px) {
    .tax-image { margin-top: 30px; }
}

/* ---------- Tax Service Cards ---------- */
.tax-service-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 25px 20px;
    text-align: center;
    transition: all 0.4s ease;
    height: 100%;
    margin-bottom: 20px;
}

.tax-service-card:hover {
    transform: translateY(-6px);
    border-color: rgba(200, 146, 42, 0.2);
    background: rgba(255, 255, 255, 0.04);
}

.tax-service-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 14px;
    background: linear-gradient(135deg, rgba(200, 146, 42, 0.12), rgba(200, 146, 42, 0.05));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #E6B04A;
}

.tax-service-card h5 {
    color: #FFFFFF;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
}

.tax-service-card p {
    color: #B4C0DD;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 0;
}

/* ---------- Advisory Section ---------- */
.tax-advisory {
    background: #0A0F1A;
    padding: 80px 0;
}

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

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

.tax-advisory-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tax-advisory-list ul > li {
    margin-bottom: 25px;
    padding: 20px 25px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
    border-left: 4px solid #C8922A;
    transition: all 0.3s ease;
}

.tax-advisory-list ul > li:hover {
    background: rgba(255, 255, 255, 0.04);
}

@media (max-width: 576px) {
    .tax-advisory-list ul > li { padding: 15px 18px; margin-bottom: 16px; }
}

.tax-advisory-list ul > li h4 {
    color: #FFFFFF;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
}

@media (max-width: 576px) {
    .tax-advisory-list ul > li h4 { font-size: 16px; }
}

.tax-advisory-list ul > li ul {
    padding-left: 10px;
}

.tax-advisory-list ul > li ul li {
    color: #B4C0DD;
    font-size: 15px;
    line-height: 1.7;
    padding: 4px 0;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

@media (max-width: 576px) {
    .tax-advisory-list ul > li ul li { font-size: 14px; padding: 3px 0; gap: 8px; }
}

.tax-advisory-list ul > li ul li i {
    color: #C8922A;
    margin-top: 4px;
    font-size: 15px;
    flex-shrink: 0;
}

@media (max-width: 576px) {
    .tax-advisory-list ul > li ul li i { font-size: 13px; margin-top: 3px; }
}

/* ---------- Header Styles ---------- */
.tax-header-left {
    text-align: left;
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
}

@media (max-width: 768px) {
    .tax-header-left { margin-bottom: 24px; }
}

@media (max-width: 576px) {
    .tax-header-left { margin-bottom: 20px; }
}

.tax-label {
    display: inline-block;
    background: rgba(200, 146, 42, 0.12);
    padding: 6px 20px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #E6B04A;
    border: 1px solid rgba(200, 146, 42, 0.2);
    margin-bottom: 16px;
}

@media (max-width: 576px) {
    .tax-label { font-size: 10px; padding: 5px 16px; letter-spacing: 1px; margin-bottom: 12px; }
}

.tax-title {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 800;
    color: #FFFFFF;
    font-family: 'Playfair Display', Georgia, serif;
    line-height: 1.2;
}

@media (max-width: 576px) {
    .tax-title { font-size: clamp(1.6rem, 5vw, 2rem); }
}

.tax-title span {
    background: linear-gradient(135deg, #E6B04A 0%, #C8922A 40%, #F5E6C4 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-style: italic;
}

/* ---------- Animations ---------- */
.fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.7s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-up-delay-1 { transition-delay: 0.1s; }
.fade-up-delay-2 { transition-delay: 0.2s; }
.fade-up-delay-3 { transition-delay: 0.3s; }
.fade-up-delay-4 { transition-delay: 0.4s; }
.fade-up-delay-5 { transition-delay: 0.5s; }

/* ============================================
   TAXAT PAGE
   END
   ============================================ */












/* ============================================
   AUDIT AND COMPANY REGISTRATION PAGE
   Page-specific styles: audit-* prefix
   LEFT ALIGN HEADERS - FULLY RESPONSIVE
   ============================================ */

/* ---------- Hero Section - Perfect Height ---------- */
.audit-hero {
    position: relative;
    padding: 120px 0 80px 0;
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
    overflow: hidden;
    isolation: isolate;
    min-height: 350px;
    display: flex;
    align-items: center;
}

.audit-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
            rgba(5, 8, 18, 0.88) 0%,
            rgba(10, 15, 30, 0.82) 50%,
            rgba(5, 8, 18, 0.88) 100%);
    z-index: 1;
}

.audit-hero .auto-container {
    position: relative;
    z-index: 2;
    width: 100%;
}

.audit-hero-content {
    position: relative;
    z-index: 2;
}

.audit-hero-wrapper {
    position: relative;
}

.audit-hero-title h1 {
    font-size: 42px;
    font-weight: 800;
    color: #FFFFFF;
    font-family: 'Playfair Display', Georgia, serif;
    margin-bottom: 8px;
    line-height: 1.2;
}

.audit-hero-title h1 span {
    background: linear-gradient(135deg, #E6B04A 0%, #C8922A 40%, #F5E6C4 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.audit-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 8px;
}

.audit-breadcrumb li {
    color: #B4C0DD;
    font-size: 15px;
}

.audit-breadcrumb li a {
    color: #E6B04A;
    text-decoration: none;
    transition: color 0.3s ease;
}

.audit-breadcrumb li a:hover {
    color: #C8922A;
}

.audit-breadcrumb li span {
    color: #FFFFFF;
}

.audit-breadcrumb li+li::before {
    content: '/';
    margin-right: 8px;
    color: rgba(255, 255, 255, 0.3);
}

/* ---------- Responsive Hero ---------- */
@media (max-width: 1200px) {
    .audit-hero-title h1 {
        font-size: 38px;
    }
}

@media (max-width: 992px) {
    .audit-hero {
        padding: 100px 0 60px 0;
        min-height: 300px;
    }
    .audit-hero-title h1 {
        font-size: 34px;
    }
}

@media (max-width: 768px) {
    .audit-hero {
        padding: 80px 0 50px 0;
        min-height: 250px;
    }
    .audit-hero-title h1 {
        font-size: 28px;
    }
    .audit-breadcrumb li {
        font-size: 14px;
    }
}

@media (max-width: 576px) {
    .audit-hero {
        padding: 70px 0 40px 0;
        min-height: 200px;
    }
    .audit-hero-title h1 {
        font-size: 24px;
    }
    .audit-breadcrumb li {
        font-size: 13px;
    }
}

@media (max-width: 400px) {
    .audit-hero {
        padding: 60px 0 35px 0;
        min-height: 180px;
    }
    .audit-hero-title h1 {
        font-size: 20px;
    }
    .audit-breadcrumb li {
        font-size: 12px;
    }
}

/* ---------- Form Section ---------- */
.audit-form-section {
    background: #0A0F1A;
    padding: 60px 0;
}

@media (max-width: 768px) {
    .audit-form-section {
        padding: 40px 0;
    }
}

@media (max-width: 576px) {
    .audit-form-section {
        padding: 30px 0;
    }
    .audit-form-section .py-5 {
        padding-top: 20px !important;
        padding-bottom: 20px !important;
    }
}

.audit-form {
    border-radius: 16px;
    padding: 30px 28px 40px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(12px);
    transition: all 0.4s ease;
}

.audit-form:hover {
    border-color: rgba(200, 146, 42, 0.3);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
}

.audit-form h3 {
    font-weight: 700;
    font-size: 24px;
    padding-bottom: 20px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: linear-gradient(135deg, #FFFFFF 0%, #E6B04A 40%, #C8922A 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    margin-bottom: 24px;
}

@media (max-width: 576px) {
    .audit-form {
        padding: 20px 16px 30px;
    }
    .audit-form h3 {
        font-size: 20px;
        padding-bottom: 16px;
        margin-bottom: 18px;
    }
}

.audit-form-group {
    margin-bottom: 16px;
}

@media (max-width: 576px) {
    .audit-form-group {
        margin-bottom: 12px;
    }
}

.audit-form-group label {
    color: #B4C0DD;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 6px;
    display: block;
}

@media (max-width: 576px) {
    .audit-form-group label {
        font-size: 13px;
        margin-bottom: 4px;
    }
}

.audit-form-group label span {
    color: #FF6B6B;
}

.audit-form-control {
    height: 48px;
    width: 100%;
    font-size: 14px;
    color: #FFFFFF;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 10px 18px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s ease;
    box-sizing: border-box;
}

@media (max-width: 576px) {
    .audit-form-control {
        height: 44px;
        font-size: 13px;
        padding: 8px 14px;
        border-radius: 8px;
    }
}

.audit-form-control:focus {
    outline: none;
    border-color: #C8922A;
    box-shadow: 0 0 0 3px rgba(200, 146, 42, 0.15);
    background: rgba(255, 255, 255, 0.08);
}

.audit-form-control::placeholder {
    color: rgba(180, 192, 221, 0.5);
}

.audit-btn-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    background: linear-gradient(135deg, #C8922A 0%, #A8711A 100%);
    color: #FFFFFF;
    font-weight: 700;
    font-size: 16px;
    padding: 14px 32px;
    border-radius: 60px;
    border: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    box-shadow: 0 10px 25px -8px rgba(200, 146, 42, 0.4);
    letter-spacing: 0.5px;
    margin-top: 8px;
    position: relative;
    overflow: hidden;
}

@media (max-width: 576px) {
    .audit-btn-submit {
        font-size: 14px;
        padding: 12px 20px;
        border-radius: 50px;
        margin-top: 4px;
    }
}

.audit-btn-submit::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.audit-btn-submit:hover {
    transform: translateY(-3px);
    background: linear-gradient(135deg, #E6B04A 0%, #C8922A 100%);
    box-shadow: 0 18px 32px -12px rgba(200, 146, 42, 0.6);
}

.audit-btn-submit:hover::before {
    left: 100%;
}

.audit-video {
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    width: 100%;
    height: auto;
}

@media (max-width: 992px) {
    .audit-video-col {
        margin-top: 40px;
    }
}

@media (max-width: 576px) {
    .audit-video {
        border-radius: 12px;
    }
    .audit-video-col {
        margin-top: 30px;
    }
}

/* ---------- About Section - Left Align ---------- */
.audit-about {
    background: #0C1325;
    padding: 80px 0;
}

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

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

.audit-about-content h4 {
    font-size: 20px;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 16px;
}

@media (max-width: 576px) {
    .audit-about-content h4 {
        font-size: 17px;
        margin-bottom: 12px;
    }
}

.audit-about-text p {
    color: #B4C0DD;
    font-size: 16px;
    line-height: 1.8;
}

@media (max-width: 576px) {
    .audit-about-text p {
        font-size: 15px;
        line-height: 1.7;
    }
}

/* ---------- Info Section - Left Align ---------- */
.audit-info {
    background: #0A0F1A;
    padding: 80px 0;
}

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

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

.audit-info-text {
    width: 100%;
}

.audit-info-text p {
    color: #B4C0DD;
    font-size: 16px;
    line-height: 1.8;
}

@media (max-width: 576px) {
    .audit-info-text p {
        font-size: 15px;
        line-height: 1.7;
    }
}

.audit-info-text p+p {
    margin-top: 12px;
}

/* ---------- Header Styles (Left Align) ---------- */
.audit-header-left {
    text-align: left;
    margin-bottom: 40px;
    position: relative;
    z-index: 2;
}

@media (max-width: 768px) {
    .audit-header-left {
        margin-bottom: 30px;
    }
}

@media (max-width: 576px) {
    .audit-header-left {
        margin-bottom: 24px;
    }
}

.audit-label {
    display: inline-block;
    background: rgba(200, 146, 42, 0.12);
    padding: 6px 20px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #E6B04A;
    border: 1px solid rgba(200, 146, 42, 0.2);
    margin-bottom: 16px;
}

@media (max-width: 576px) {
    .audit-label {
        font-size: 10px;
        padding: 5px 16px;
        letter-spacing: 1px;
        margin-bottom: 12px;
    }
}

.audit-title {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 800;
    color: #FFFFFF;
    font-family: 'Playfair Display', Georgia, serif;
    line-height: 1.2;
}

@media (max-width: 576px) {
    .audit-title {
        font-size: clamp(1.6rem, 5vw, 2rem);
    }
}

.audit-title span {
    background: linear-gradient(135deg, #E6B04A 0%, #C8922A 40%, #F5E6C4 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-style: italic;
}

.audit-subtitle {
    color: #8B9AC0;
    font-size: 17px;
    max-width: 550px;
    font-weight: 400;
    line-height: 1.6;
    margin-top: 8px;
}

@media (max-width: 576px) {
    .audit-subtitle {
        font-size: 14px;
    }
}

/* ============================================
   AUDIT CARDS - ULTRA PREMIUM DARK THEME
   FULLY RESPONSIVE
   ============================================ */

/* ---------- Cards Section ---------- */
.audit-cards-section {
    padding: 100px 0;
    background: #0A0F1A;
    position: relative;
    overflow: hidden;
}

@media (max-width: 992px) {
    .audit-cards-section {
        padding: 80px 0;
    }
}

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

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

.audit-cards-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -30%;
    width: 80%;
    height: 150%;
    background: radial-gradient(ellipse, rgba(200, 146, 42, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.audit-cards-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    right: -20%;
    width: 60%;
    height: 120%;
    background: radial-gradient(ellipse, rgba(22, 201, 88, 0.03) 0%, transparent 70%);
    pointer-events: none;
}

/* ---------- Cards Grid ---------- */
.audit-cards-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
    position: relative;
    z-index: 2;
}

@media (max-width: 1200px) {
    .audit-cards-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}

@media (max-width: 992px) {
    .audit-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 576px) {
    .audit-cards-grid {
        grid-template-columns: 1fr;
        gap: 16px;
        max-width: 400px;
        margin: 0 auto;
    }
}

/* ---------- Card Item ---------- */
.audit-card-item {
    position: relative;
    perspective: 800px;
    height: 100%;
}

.audit-card-inner {
    position: relative;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01));
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    padding: 30px 20px 25px;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    height: 100%;
    overflow: hidden;
    backdrop-filter: blur(8px);
    transform-style: preserve-3d;
    min-height: 260px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

@media (max-width: 768px) {
    .audit-card-inner {
        padding: 25px 18px 20px;
        min-height: 230px;
        border-radius: 16px;
    }
}

@media (max-width: 576px) {
    .audit-card-inner {
        padding: 20px 16px 18px;
        min-height: 200px;
        border-radius: 14px;
    }
}

.audit-card-inner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(200, 146, 42, 0.05), transparent 50%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.audit-card-item:hover .audit-card-inner::before {
    opacity: 1;
}

.audit-card-inner:hover {
    transform: translateY(-12px) rotateX(2deg);
    border-color: rgba(200, 146, 42, 0.4);
    box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.5),
                0 0 0 1px rgba(200, 146, 42, 0.15) inset,
                0 0 40px rgba(200, 146, 42, 0.08);
}

@media (max-width: 768px) {
    .audit-card-inner:hover {
        transform: translateY(-8px) rotateX(1deg);
    }
}

@media (max-width: 576px) {
    .audit-card-inner:hover {
        transform: translateY(-5px) rotateX(0deg);
    }
}

/* ---------- Card Glow Effect ---------- */
.audit-card-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(200, 146, 42, 0.08), transparent 60%);
    opacity: 0;
    transition: opacity 0.6s ease;
    pointer-events: none;
    border-radius: 50%;
}

.audit-card-item:hover .audit-card-glow {
    opacity: 1;
    animation: glowPulse 2s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% { transform: scale(1); opacity: 0.4; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

/* ---------- Card Icon ---------- */
.audit-card-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, rgba(200, 146, 42, 0.15), rgba(200, 146, 42, 0.05));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #E6B04A;
    border: 1px solid rgba(200, 146, 42, 0.15);
    transition: all 0.5s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    position: relative;
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .audit-card-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
        margin: 0 auto 16px;
    }
}

@media (max-width: 576px) {
    .audit-card-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
        margin: 0 auto 12px;
    }
}

.audit-card-icon::after {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(200, 146, 42, 0.2), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.audit-card-item:hover .audit-card-icon {
    background: linear-gradient(135deg, #C8922A, #E6B04A);
    color: #0A0F1A;
    transform: scale(1.1) rotateY(10deg);
    box-shadow: 0 15px 35px -8px rgba(200, 146, 42, 0.4);
    border-color: transparent;
}

.audit-card-item:hover .audit-card-icon::after {
    opacity: 1;
}

/* ---------- Card Number ---------- */
.audit-card-number {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 48px;
    font-weight: 800;
    background: linear-gradient(135deg, rgba(200, 146, 42, 0.15), rgba(200, 146, 42, 0.05));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    position: absolute;
    top: 10px;
    right: 15px;
    opacity: 0.3;
    transition: all 0.4s ease;
    line-height: 1;
}

@media (max-width: 768px) {
    .audit-card-number {
        font-size: 36px;
        top: 8px;
        right: 12px;
    }
}

@media (max-width: 576px) {
    .audit-card-number {
        font-size: 30px;
        top: 6px;
        right: 10px;
    }
}

.audit-card-item:hover .audit-card-number {
    opacity: 0.6;
    transform: scale(1.1);
}

/* ---------- Card Body ---------- */
.audit-card-body {
    position: relative;
    z-index: 2;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.audit-card-title {
    font-size: 18px;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 12px;
    transition: color 0.3s ease;
    line-height: 1.3;
}

@media (max-width: 768px) {
    .audit-card-title {
        font-size: 16px;
        margin-bottom: 10px;
    }
}

@media (max-width: 576px) {
    .audit-card-title {
        font-size: 15px;
        margin-bottom: 8px;
    }
}

.audit-card-item:hover .audit-card-title {
    background: linear-gradient(135deg, #E6B04A, #C8922A);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.audit-card-text {
    font-size: 14px;
    color: #8B9AC0;
    line-height: 1.7;
    margin-bottom: 0;
    transition: color 0.3s ease;
}

@media (max-width: 768px) {
    .audit-card-text {
        font-size: 13px;
        line-height: 1.6;
    }
}

@media (max-width: 576px) {
    .audit-card-text {
        font-size: 13px;
        line-height: 1.5;
    }
}

.audit-card-item:hover .audit-card-text {
    color: #B4C0DD;
}

/* REMOVE these styles - Not needed anymore */
/* .audit-card-link {
    display: none;
} */

/* ---------- Card Link ---------- */
.audit-card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    color: #E6B04A;
    text-decoration: none;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(10px);
    align-self: center;
}

@media (max-width: 576px) {
    .audit-card-link {
        font-size: 12px;
    }
}

.audit-card-item:hover .audit-card-link {
    opacity: 1;
    transform: translateY(0);
}

.audit-card-link i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.audit-card-link:hover {
    color: #C8922A;
}

.audit-card-link:hover i {
    transform: translateX(6px);
}

/* ---------- Details Section - Left Align ---------- */
.audit-details {
    background: #0C1325;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

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

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

.audit-details::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 30% 50%, rgba(200, 146, 42, 0.04) 0%, transparent 60%);
    pointer-events: none;
}

.audit-details .auto-container {
    position: relative;
    z-index: 2;
}

.audit-details-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.audit-details-list ul li {
    margin-bottom: 20px;
}

@media (max-width: 576px) {
    .audit-details-list ul li {
        margin-bottom: 16px;
    }
}

.audit-details-list ul li h4 {
    color: #FFFFFF;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
}

@media (max-width: 576px) {
    .audit-details-list ul li h4 {
        font-size: 16px;
        margin-bottom: 6px;
    }
}

.audit-details-list ul li ul {
    padding-left: 20px;
    list-style: none;
}

@media (max-width: 576px) {
    .audit-details-list ul li ul {
        padding-left: 10px;
    }
}

.audit-details-list ul li ul li {
    color: #B4C0DD;
    font-size: 15px;
    line-height: 1.7;
    padding: 4px 0;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

@media (max-width: 576px) {
    .audit-details-list ul li ul li {
        font-size: 14px;
        line-height: 1.6;
        padding: 3px 0;
        gap: 8px;
    }
}

.audit-details-list ul li ul li i {
    color: #C8922A;
    margin-top: 4px;
    font-size: 14px;
    flex-shrink: 0;
}

@media (max-width: 576px) {
    .audit-details-list ul li ul li i {
        font-size: 12px;
        margin-top: 3px;
    }
}

/* ---------- Animations ---------- */
.fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.7s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-up-delay-1 { transition-delay: 0.1s; }
.fade-up-delay-2 { transition-delay: 0.2s; }
.fade-up-delay-3 { transition-delay: 0.3s; }
.fade-up-delay-4 { transition-delay: 0.4s; }
.fade-up-delay-5 { transition-delay: 0.5s; }

/* ============================================
   AUDIT AND COMPANY REGISTRATION PAGE
   END
   ============================================ */
















   


   /* ============================================
   LEGAL SERVICES PAGE
   Page-specific styles: legal-* prefix
   LEFT ALIGN HEADERS - FULLY RESPONSIVE
   ============================================ */

/* ---------- Hero Section - Perfect Height ---------- */
.legal-hero {
    position: relative;
    padding: 120px 0 80px 0;
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
    overflow: hidden;
    isolation: isolate;
    min-height: 350px;
    display: flex;
    align-items: center;
}

.legal-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
            rgba(5, 8, 18, 0.88) 0%,
            rgba(10, 15, 30, 0.82) 50%,
            rgba(5, 8, 18, 0.88) 100%);
    z-index: 1;
}

.legal-hero .auto-container {
    position: relative;
    z-index: 2;
    width: 100%;
}

.legal-hero-content {
    position: relative;
    z-index: 2;
}

.legal-hero-wrapper {
    position: relative;
}

.legal-hero-title h1 {
    font-size: 42px;
    font-weight: 800;
    color: #FFFFFF;
    font-family: 'Playfair Display', Georgia, serif;
    margin-bottom: 8px;
    line-height: 1.2;
}

.legal-hero-title h1 span {
    background: linear-gradient(135deg, #E6B04A 0%, #C8922A 40%, #F5E6C4 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.legal-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 8px;
}

.legal-breadcrumb li {
    color: #B4C0DD;
    font-size: 15px;
}

.legal-breadcrumb li a {
    color: #E6B04A;
    text-decoration: none;
    transition: color 0.3s ease;
}

.legal-breadcrumb li a:hover {
    color: #C8922A;
}

.legal-breadcrumb li span {
    color: #FFFFFF;
}

.legal-breadcrumb li+li::before {
    content: '/';
    margin-right: 8px;
    color: rgba(255, 255, 255, 0.3);
}

/* ---------- Responsive Hero ---------- */
@media (max-width: 1200px) {
    .legal-hero-title h1 {
        font-size: 38px;
    }
}

@media (max-width: 992px) {
    .legal-hero {
        padding: 100px 0 60px 0;
        min-height: 300px;
    }
    .legal-hero-title h1 {
        font-size: 34px;
    }
}

@media (max-width: 768px) {
    .legal-hero {
        padding: 80px 0 50px 0;
        min-height: 250px;
    }
    .legal-hero-title h1 {
        font-size: 28px;
    }
    .legal-breadcrumb li {
        font-size: 14px;
    }
}

@media (max-width: 576px) {
    .legal-hero {
        padding: 70px 0 40px 0;
        min-height: 200px;
    }
    .legal-hero-title h1 {
        font-size: 24px;
    }
    .legal-breadcrumb li {
        font-size: 13px;
    }
}

@media (max-width: 400px) {
    .legal-hero {
        padding: 60px 0 35px 0;
        min-height: 180px;
    }
    .legal-hero-title h1 {
        font-size: 20px;
    }
    .legal-breadcrumb li {
        font-size: 12px;
    }
}

/* ---------- Form Section ---------- */
.legal-form-section {
    background: #0A0F1A;
    padding: 60px 0;
}

@media (max-width: 768px) {
    .legal-form-section {
        padding: 40px 0;
    }
}

@media (max-width: 576px) {
    .legal-form-section {
        padding: 30px 0;
    }
    .legal-form-section .py-5 {
        padding-top: 20px !important;
        padding-bottom: 20px !important;
    }
}

.legal-form {
    border-radius: 16px;
    padding: 30px 28px 40px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(12px);
    transition: all 0.4s ease;
}

.legal-form:hover {
    border-color: rgba(200, 146, 42, 0.3);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
}

.legal-form h3 {
    font-weight: 700;
    font-size: 24px;
    padding-bottom: 20px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: linear-gradient(135deg, #FFFFFF 0%, #E6B04A 40%, #C8922A 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    margin-bottom: 24px;
}

@media (max-width: 576px) {
    .legal-form {
        padding: 20px 16px 30px;
    }
    .legal-form h3 {
        font-size: 20px;
        padding-bottom: 16px;
        margin-bottom: 18px;
    }
}

.legal-form-group {
    margin-bottom: 16px;
}

@media (max-width: 576px) {
    .legal-form-group {
        margin-bottom: 12px;
    }
}

.legal-form-group label {
    color: #B4C0DD;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 6px;
    display: block;
}

@media (max-width: 576px) {
    .legal-form-group label {
        font-size: 13px;
        margin-bottom: 4px;
    }
}

.legal-form-group label span {
    color: #FF6B6B;
}

.legal-form-control {
    height: 48px;
    width: 100%;
    font-size: 14px;
    color: #FFFFFF;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 10px 18px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s ease;
    box-sizing: border-box;
}

@media (max-width: 576px) {
    .legal-form-control {
        height: 44px;
        font-size: 13px;
        padding: 8px 14px;
        border-radius: 8px;
    }
}

.legal-form-control:focus {
    outline: none;
    border-color: #C8922A;
    box-shadow: 0 0 0 3px rgba(200, 146, 42, 0.15);
    background: rgba(255, 255, 255, 0.08);
}

.legal-form-control::placeholder {
    color: rgba(180, 192, 221, 0.5);
}

.legal-btn-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    background: linear-gradient(135deg, #C8922A 0%, #A8711A 100%);
    color: #FFFFFF;
    font-weight: 700;
    font-size: 16px;
    padding: 14px 32px;
    border-radius: 60px;
    border: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    box-shadow: 0 10px 25px -8px rgba(200, 146, 42, 0.4);
    letter-spacing: 0.5px;
    margin-top: 8px;
    position: relative;
    overflow: hidden;
}

@media (max-width: 576px) {
    .legal-btn-submit {
        font-size: 14px;
        padding: 12px 20px;
        border-radius: 50px;
        margin-top: 4px;
    }
}

.legal-btn-submit::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.legal-btn-submit:hover {
    transform: translateY(-3px);
    background: linear-gradient(135deg, #E6B04A 0%, #C8922A 100%);
    box-shadow: 0 18px 32px -12px rgba(200, 146, 42, 0.6);
}

.legal-btn-submit:hover::before {
    left: 100%;
}

.legal-video {
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    width: 100%;
    height: auto;
}

@media (max-width: 992px) {
    .legal-video-col {
        margin-top: 40px;
    }
}

@media (max-width: 576px) {
    .legal-video {
        border-radius: 12px;
    }
    .legal-video-col {
        margin-top: 30px;
    }
}

/* ---------- About Section - Left Align ---------- */
.legal-about {
    background: #0C1325;
    padding: 80px 0;
}

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

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

.legal-about-content h4 {
    font-size: 20px;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 16px;
}

@media (max-width: 576px) {
    .legal-about-content h4 {
        font-size: 17px;
        margin-bottom: 12px;
    }
}

.legal-about-text p {
    color: #B4C0DD;
    font-size: 16px;
    line-height: 1.8;
}

@media (max-width: 576px) {
    .legal-about-text p {
        font-size: 15px;
        line-height: 1.7;
    }
}

/* ---------- News Section ---------- */
.legal-news {
    background: #0A0F1A;
    padding: 80px 0;
}

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

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

.legal-news-text p {
    color: #B4C0DD;
    font-size: 16px;
    line-height: 1.8;
}

@media (max-width: 576px) {
    .legal-news-text p {
        font-size: 15px;
        line-height: 1.7;
    }
}

.legal-news-text p+p {
    margin-top: 12px;
}

/* ---------- License Section ---------- */
.legal-license {
    background: #0C1325;
    padding: 80px 0;
}

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

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

.legal-license-text p {
    color: #B4C0DD;
    font-size: 16px;
    line-height: 1.8;
}

@media (max-width: 576px) {
    .legal-license-text p {
        font-size: 15px;
        line-height: 1.7;
    }
}

.legal-license-text p+p {
    margin-top: 12px;
}

.legal-license-image img {
    width: 100%;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

@media (max-width: 992px) {
    .legal-license-image {
        margin-top: 40px;
    }
}

@media (max-width: 576px) {
    .legal-license-image img {
        border-radius: 12px;
    }
    .legal-license-image {
        margin-top: 30px;
    }
}

/* ---------- Who Needs Section ---------- */
.legal-who-needs {
    background: #0A0F1A;
    padding: 80px 0;
}

@media (max-width: 768px) {
    .legal-who-needs {
        padding: 60px 0;
    }
}

@media (max-width: 576px) {
    .legal-who-needs {
        padding: 40px 0;
    }
}

.legal-who-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

@media (max-width: 992px) {
    .legal-who-list ul {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .legal-who-list ul {
        grid-template-columns: 1fr;
    }
}

.legal-who-list ul li {
    color: #B4C0DD;
    font-size: 15px;
    line-height: 1.7;
    padding: 10px 16px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.legal-who-list ul li:hover {
    background: rgba(200, 146, 42, 0.08);
    border-color: rgba(200, 146, 42, 0.2);
    transform: translateY(-2px);
}

@media (max-width: 576px) {
    .legal-who-list ul li {
        font-size: 14px;
        padding: 8px 14px;
    }
}

.legal-who-list ul li i {
    color: #C8922A;
    font-size: 16px;
    flex-shrink: 0;
}

/* ---------- Services Offer Section ---------- */
.legal-services-offer {
    background: #0C1325;
    padding: 80px 0;
}

@media (max-width: 768px) {
    .legal-services-offer {
        padding: 60px 0;
    }
}

@media (max-width: 576px) {
    .legal-services-offer {
        padding: 40px 0;
    }
}

.legal-services-text p {
    color: #B4C0DD;
    font-size: 16px;
    line-height: 1.8;
}

@media (max-width: 576px) {
    .legal-services-text p {
        font-size: 15px;
        line-height: 1.7;
    }
}

.legal-services-text p+p {
    margin-top: 12px;
}

/* ---------- Header Styles (Left Align) ---------- */
.legal-header-left {
    text-align: left;
    margin-bottom: 40px;
    position: relative;
    z-index: 2;
}

@media (max-width: 768px) {
    .legal-header-left {
        margin-bottom: 30px;
    }
}

@media (max-width: 576px) {
    .legal-header-left {
        margin-bottom: 24px;
    }
}

.legal-label {
    display: inline-block;
    background: rgba(200, 146, 42, 0.12);
    padding: 6px 20px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #E6B04A;
    border: 1px solid rgba(200, 146, 42, 0.2);
    margin-bottom: 16px;
}

@media (max-width: 576px) {
    .legal-label {
        font-size: 10px;
        padding: 5px 16px;
        letter-spacing: 1px;
        margin-bottom: 12px;
    }
}

.legal-title {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 800;
    color: #FFFFFF;
    font-family: 'Playfair Display', Georgia, serif;
    line-height: 1.2;
}

@media (max-width: 576px) {
    .legal-title {
        font-size: clamp(1.6rem, 5vw, 2rem);
    }
}

.legal-title span {
    background: linear-gradient(135deg, #E6B04A 0%, #C8922A 40%, #F5E6C4 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-style: italic;
}

.legal-subtitle {
    color: #8B9AC0;
    font-size: 17px;
    max-width: 550px;
    font-weight: 400;
    line-height: 1.6;
    margin-top: 8px;
}

@media (max-width: 576px) {
    .legal-subtitle {
        font-size: 14px;
    }
}

/* ============================================
   LEGAL CARDS - ULTRA PREMIUM DARK THEME
   FULLY RESPONSIVE
   ============================================ */

/* ---------- Cards Section ---------- */
.legal-cards-section {
    padding: 100px 0;
    background: #0A0F1A;
    position: relative;
    overflow: hidden;
}

@media (max-width: 992px) {
    .legal-cards-section {
        padding: 80px 0;
    }
}

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

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

.legal-cards-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -30%;
    width: 80%;
    height: 150%;
    background: radial-gradient(ellipse, rgba(200, 146, 42, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.legal-cards-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    right: -20%;
    width: 60%;
    height: 120%;
    background: radial-gradient(ellipse, rgba(22, 201, 88, 0.03) 0%, transparent 70%);
    pointer-events: none;
}

/* ---------- Cards Grid ---------- */
.legal-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    position: relative;
    z-index: 2;
}

@media (max-width: 992px) {
    .legal-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 576px) {
    .legal-cards-grid {
        grid-template-columns: 1fr;
        gap: 16px;
        max-width: 400px;
        margin: 0 auto;
    }
}

/* ---------- Card Item ---------- */
.legal-card-item {
    position: relative;
    perspective: 800px;
    height: 100%;
}

.legal-card-inner {
    position: relative;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01));
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    padding: 30px 20px 25px;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    height: 100%;
    overflow: hidden;
    backdrop-filter: blur(8px);
    transform-style: preserve-3d;
    min-height: 260px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

@media (max-width: 768px) {
    .legal-card-inner {
        padding: 25px 18px 20px;
        min-height: 230px;
        border-radius: 16px;
    }
}

@media (max-width: 576px) {
    .legal-card-inner {
        padding: 20px 16px 18px;
        min-height: 200px;
        border-radius: 14px;
    }
}

.legal-card-inner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(200, 146, 42, 0.05), transparent 50%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.legal-card-item:hover .legal-card-inner::before {
    opacity: 1;
}

.legal-card-inner:hover {
    transform: translateY(-12px) rotateX(2deg);
    border-color: rgba(200, 146, 42, 0.4);
    box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.5),
                0 0 0 1px rgba(200, 146, 42, 0.15) inset,
                0 0 40px rgba(200, 146, 42, 0.08);
}

@media (max-width: 768px) {
    .legal-card-inner:hover {
        transform: translateY(-8px) rotateX(1deg);
    }
}

@media (max-width: 576px) {
    .legal-card-inner:hover {
        transform: translateY(-5px) rotateX(0deg);
    }
}

/* ---------- Card Glow Effect ---------- */
.legal-card-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(200, 146, 42, 0.08), transparent 60%);
    opacity: 0;
    transition: opacity 0.6s ease;
    pointer-events: none;
    border-radius: 50%;
}

.legal-card-item:hover .legal-card-glow {
    opacity: 1;
    animation: glowPulse 2s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% { transform: scale(1); opacity: 0.4; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

/* ---------- Card Icon ---------- */
.legal-card-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, rgba(200, 146, 42, 0.15), rgba(200, 146, 42, 0.05));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #E6B04A;
    border: 1px solid rgba(200, 146, 42, 0.15);
    transition: all 0.5s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    position: relative;
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .legal-card-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
        margin: 0 auto 16px;
    }
}

@media (max-width: 576px) {
    .legal-card-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
        margin: 0 auto 12px;
    }
}

.legal-card-icon::after {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(200, 146, 42, 0.2), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.legal-card-item:hover .legal-card-icon {
    background: linear-gradient(135deg, #C8922A, #E6B04A);
    color: #0A0F1A;
    transform: scale(1.1) rotateY(10deg);
    box-shadow: 0 15px 35px -8px rgba(200, 146, 42, 0.4);
    border-color: transparent;
}

.legal-card-item:hover .legal-card-icon::after {
    opacity: 1;
}

/* ---------- Card Number ---------- */
.legal-card-number {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 48px;
    font-weight: 800;
    background: linear-gradient(135deg, rgba(200, 146, 42, 0.15), rgba(200, 146, 42, 0.05));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    position: absolute;
    top: 10px;
    right: 15px;
    opacity: 0.3;
    transition: all 0.4s ease;
    line-height: 1;
}

@media (max-width: 768px) {
    .legal-card-number {
        font-size: 36px;
        top: 8px;
        right: 12px;
    }
}

@media (max-width: 576px) {
    .legal-card-number {
        font-size: 30px;
        top: 6px;
        right: 10px;
    }
}

.legal-card-item:hover .legal-card-number {
    opacity: 0.6;
    transform: scale(1.1);
}

/* ---------- Card Body ---------- */
.legal-card-body {
    position: relative;
    z-index: 2;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.legal-card-title {
    font-size: 18px;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 12px;
    transition: color 0.3s ease;
    line-height: 1.3;
}

@media (max-width: 768px) {
    .legal-card-title {
        font-size: 16px;
        margin-bottom: 10px;
    }
}

@media (max-width: 576px) {
    .legal-card-title {
        font-size: 15px;
        margin-bottom: 8px;
    }
}

.legal-card-item:hover .legal-card-title {
    background: linear-gradient(135deg, #E6B04A, #C8922A);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.legal-card-text {
    font-size: 14px;
    color: #8B9AC0;
    line-height: 1.7;
    margin-bottom: 0;
    transition: color 0.3s ease;
}

@media (max-width: 768px) {
    .legal-card-text {
        font-size: 13px;
        line-height: 1.6;
    }
}

@media (max-width: 576px) {
    .legal-card-text {
        font-size: 13px;
        line-height: 1.5;
    }
}

.legal-card-item:hover .legal-card-text {
    color: #B4C0DD;
}

/* ---------- Documents Section ---------- */
.legal-documents {
    background: #0C1325;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

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

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

.legal-documents::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 30% 50%, rgba(200, 146, 42, 0.04) 0%, transparent 60%);
    pointer-events: none;
}

.legal-documents .auto-container {
    position: relative;
    z-index: 2;
}

.legal-documents-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.legal-documents-list ul li {
    color: #B4C0DD;
    font-size: 15px;
    line-height: 1.7;
    padding: 8px 0;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

@media (max-width: 576px) {
    .legal-documents-list ul li {
        font-size: 14px;
        line-height: 1.6;
        padding: 6px 0;
        gap: 10px;
    }
}

.legal-documents-list ul li:last-child {
    border-bottom: none;
}

.legal-documents-list ul li i {
    color: #C8922A;
    margin-top: 4px;
    font-size: 16px;
    flex-shrink: 0;
}

@media (max-width: 576px) {
    .legal-documents-list ul li i {
        font-size: 14px;
        margin-top: 3px;
    }
}

/* ---------- Animations ---------- */
.fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.7s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-up-delay-1 { transition-delay: 0.1s; }
.fade-up-delay-2 { transition-delay: 0.2s; }
.fade-up-delay-3 { transition-delay: 0.3s; }
.fade-up-delay-4 { transition-delay: 0.4s; }
.fade-up-delay-5 { transition-delay: 0.5s; }
.fade-up-delay-6 { transition-delay: 0.6s; }

/* ============================================
   LEGAL SERVICES PAGE
   END
   ============================================ */




















   /* ============================================
   INFORMATION TECHNOLOGY PAGE
   Page-specific styles: it-* prefix
   LEFT ALIGN HEADERS - FULLY RESPONSIVE
   ============================================ */

/* ---------- Hero Section ---------- */
.it-hero {
    position: relative;
    padding: 120px 0 80px 0;
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
    overflow: hidden;
    isolation: isolate;
    min-height: 350px;
    display: flex;
    align-items: center;
}

.it-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
            rgba(5, 8, 18, 0.88) 0%,
            rgba(10, 15, 30, 0.82) 50%,
            rgba(5, 8, 18, 0.88) 100%);
    z-index: 1;
}

.it-hero .auto-container {
    position: relative;
    z-index: 2;
    width: 100%;
}

.it-hero-content {
    position: relative;
    z-index: 2;
}

.it-hero-wrapper {
    position: relative;
}

.it-hero-title h1 {
    font-size: 42px;
    font-weight: 800;
    color: #FFFFFF;
    font-family: 'Playfair Display', Georgia, serif;
    margin-bottom: 8px;
    line-height: 1.2;
}

.it-hero-title h1 span {
    background: linear-gradient(135deg, #E6B04A 0%, #C8922A 40%, #F5E6C4 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.it-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 8px;
}

.it-breadcrumb li {
    color: #B4C0DD;
    font-size: 15px;
}

.it-breadcrumb li a {
    color: #E6B04A;
    text-decoration: none;
    transition: color 0.3s ease;
}

.it-breadcrumb li a:hover {
    color: #C8922A;
}

.it-breadcrumb li span {
    color: #FFFFFF;
}

.it-breadcrumb li+li::before {
    content: '/';
    margin-right: 8px;
    color: rgba(255, 255, 255, 0.3);
}

/* ---------- Responsive Hero ---------- */
@media (max-width: 1200px) {
    .it-hero-title h1 {
        font-size: 38px;
    }
}

@media (max-width: 992px) {
    .it-hero {
        padding: 100px 0 60px 0;
        min-height: 300px;
    }
    .it-hero-title h1 {
        font-size: 34px;
    }
}

@media (max-width: 768px) {
    .it-hero {
        padding: 80px 0 50px 0;
        min-height: 250px;
    }
    .it-hero-title h1 {
        font-size: 28px;
    }
    .it-breadcrumb li {
        font-size: 14px;
    }
}

@media (max-width: 576px) {
    .it-hero {
        padding: 70px 0 40px 0;
        min-height: 200px;
    }
    .it-hero-title h1 {
        font-size: 24px;
    }
    .it-breadcrumb li {
        font-size: 13px;
    }
}

@media (max-width: 400px) {
    .it-hero {
        padding: 60px 0 35px 0;
        min-height: 180px;
    }
    .it-hero-title h1 {
        font-size: 20px;
    }
    .it-breadcrumb li {
        font-size: 12px;
    }
}

/* ---------- Form Section ---------- */
.it-form-section {
    background: #0A0F1A;
    padding: 60px 0;
}

@media (max-width: 768px) {
    .it-form-section {
        padding: 40px 0;
    }
}

@media (max-width: 576px) {
    .it-form-section {
        padding: 30px 0;
    }
    .it-form-section .py-5 {
        padding-top: 20px !important;
        padding-bottom: 20px !important;
    }
}

.it-form {
    border-radius: 16px;
    padding: 30px 28px 40px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(12px);
    transition: all 0.4s ease;
}

.it-form:hover {
    border-color: rgba(200, 146, 42, 0.3);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
}

.it-form h3 {
    font-weight: 700;
    font-size: 24px;
    padding-bottom: 20px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: linear-gradient(135deg, #FFFFFF 0%, #E6B04A 40%, #C8922A 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    margin-bottom: 24px;
}

@media (max-width: 576px) {
    .it-form {
        padding: 20px 16px 30px;
    }
    .it-form h3 {
        font-size: 20px;
        padding-bottom: 16px;
        margin-bottom: 18px;
    }
}

.it-form-group {
    margin-bottom: 16px;
}

@media (max-width: 576px) {
    .it-form-group {
        margin-bottom: 12px;
    }
}

.it-form-group label {
    color: #B4C0DD;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 6px;
    display: block;
}

@media (max-width: 576px) {
    .it-form-group label {
        font-size: 13px;
        margin-bottom: 4px;
    }
}

.it-form-group label span {
    color: #FF6B6B;
}

.it-form-control {
    height: 48px;
    width: 100%;
    font-size: 14px;
    color: #FFFFFF;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 10px 18px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s ease;
    box-sizing: border-box;
}

@media (max-width: 576px) {
    .it-form-control {
        height: 44px;
        font-size: 13px;
        padding: 8px 14px;
        border-radius: 8px;
    }
}

.it-form-control:focus {
    outline: none;
    border-color: #C8922A;
    box-shadow: 0 0 0 3px rgba(200, 146, 42, 0.15);
    background: rgba(255, 255, 255, 0.08);
}

.it-form-control::placeholder {
    color: rgba(180, 192, 221, 0.5);
}

.it-btn-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    background: linear-gradient(135deg, #C8922A 0%, #A8711A 100%);
    color: #FFFFFF;
    font-weight: 700;
    font-size: 16px;
    padding: 14px 32px;
    border-radius: 60px;
    border: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    box-shadow: 0 10px 25px -8px rgba(200, 146, 42, 0.4);
    letter-spacing: 0.5px;
    margin-top: 8px;
    position: relative;
    overflow: hidden;
}

@media (max-width: 576px) {
    .it-btn-submit {
        font-size: 14px;
        padding: 12px 20px;
        border-radius: 50px;
        margin-top: 4px;
    }
}

.it-btn-submit::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.it-btn-submit:hover {
    transform: translateY(-3px);
    background: linear-gradient(135deg, #E6B04A 0%, #C8922A 100%);
    box-shadow: 0 18px 32px -12px rgba(200, 146, 42, 0.6);
}

.it-btn-submit:hover::before {
    left: 100%;
}

/* ---------- About Text ---------- */
.it-about-text p {
    color: #B4C0DD;
    font-size: 16px;
    line-height: 1.8;
}

@media (max-width: 576px) {
    .it-about-text p {
        font-size: 15px;
        line-height: 1.7;
    }
}

.it-about-text p+p {
    margin-top: 12px;
}

/* ---------- Image Styles ---------- */
.it-image img {
    width: 100%;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

@media (max-width: 992px) {
    .it-image {
        margin-top: 30px;
    }
}

@media (max-width: 576px) {
    .it-image img {
        border-radius: 12px;
    }
    .it-image {
        margin-top: 20px;
    }
}

/* ---------- Section Backgrounds ---------- */
.it-website {
    background: #0C1325;
    padding: 40px 0;
}

.it-app {
    background: #0A0F1A;
    padding: 40px 0;
}

.it-digital-marketing {
    background: #0C1325;
    padding: 40px 0;
}

.it-brand {
    background: #0A0F1A;
    padding: 40px 0;
}

.it-google-ads {
    background: #0C1325;
    padding: 40px 0;
}

.it-social {
    background: #0A0F1A;
    padding: 40px 0;
}

.it-logo {
    background: #0C1325;
    padding: 40px 0;
}

.it-functionality {
    background: #0A0F1A;
    padding: 80px 0;
}

@media (max-width: 768px) {
    .it-website,
    .it-app,
    .it-digital-marketing,
    .it-brand,
    .it-google-ads,
    .it-social,
    .it-logo {
        padding: 30px 0;
    }
    .it-functionality {
        padding: 60px 0;
    }
}

@media (max-width: 576px) {
    .it-website,
    .it-app,
    .it-digital-marketing,
    .it-brand,
    .it-google-ads,
    .it-social,
    .it-logo {
        padding: 20px 0;
    }
    .it-functionality {
        padding: 40px 0;
    }
}

/* ---------- Section Text Styles ---------- */
.it-website-text p,
.it-app-text p,
.it-digital-text p,
.it-brand-text p,
.it-google-text p,
.it-social-text p,
.it-logo-text p,
.it-functionality-text p {
    color: #B4C0DD;
    font-size: 16px;
    line-height: 1.8;
}

@media (max-width: 576px) {
    .it-website-text p,
    .it-app-text p,
    .it-digital-text p,
    .it-brand-text p,
    .it-google-text p,
    .it-social-text p,
    .it-logo-text p,
    .it-functionality-text p {
        font-size: 15px;
        line-height: 1.7;
    }
}

.it-website-text p+p,
.it-app-text p+p,
.it-digital-text p+p,
.it-brand-text p+p,
.it-google-text p+p,
.it-social-text p+p,
.it-logo-text p+p,
.it-functionality-text p+p {
    margin-top: 12px;
}

.it-app-text h4,
.it-app-benefits h4 {
    color: #FFFFFF;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
}

@media (max-width: 576px) {
    .it-app-text h4,
    .it-app-benefits h4 {
        font-size: 16px;
    }
}

/* ---------- App Benefits List ---------- */
.it-app-benefits {
    margin-top: 20px;
}

.it-app-benefits ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.it-app-benefits ul li {
    color: #B4C0DD;
    font-size: 15px;
    line-height: 1.7;
    padding: 6px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

@media (max-width: 576px) {
    .it-app-benefits ul li {
        font-size: 14px;
        padding: 4px 0;
    }
}

.it-app-benefits ul li i {
    color: #C8922A;
    font-size: 16px;
    flex-shrink: 0;
}

/* ---------- Full Width Details ---------- */
.it-app-details p,
.it-digital-details p,
.it-brand-details p,
.it-social-details p,
.it-logo-details p {
    color: #B4C0DD;
    font-size: 16px;
    line-height: 1.8;
}

@media (max-width: 576px) {
    .it-app-details p,
    .it-digital-details p,
    .it-brand-details p,
    .it-social-details p,
    .it-logo-details p {
        font-size: 15px;
        line-height: 1.7;
    }
}

.it-app-details p+p,
.it-digital-details p+p,
.it-brand-details p+p,
.it-social-details p+p,
.it-logo-details p+p {
    margin-top: 12px;
}

.it-app-details h6,
.it-brand-details h6,
.it-social-details h6,
.it-logo-details h6 {
    color: #FFFFFF;
    font-size: 18px;
    font-weight: 600;
    margin-top: 20px;
    padding: 20px;
    background: rgba(200, 146, 42, 0.08);
    border-radius: 12px;
    border-left: 4px solid #C8922A;
}

@media (max-width: 576px) {
    .it-app-details h6,
    .it-brand-details h6,
    .it-social-details h6,
    .it-logo-details h6 {
        font-size: 15px;
        padding: 15px;
    }
}

.it-app-details h6 a,
.it-brand-details h6 a,
.it-social-details h6 a,
.it-logo-details h6 a {
    color: #E6B04A;
    text-decoration: none;
    transition: color 0.3s ease;
}

.it-app-details h6 a:hover,
.it-brand-details h6 a:hover,
.it-social-details h6 a:hover,
.it-logo-details h6 a:hover {
    color: #C8922A;
}

/* ---------- Functionality Section ---------- */
.it-functionality-text {
    max-width: 900px;
}

/* ---------- Header Styles (Left Align) ---------- */
.it-header-left {
    text-align: left;
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
}

@media (max-width: 768px) {
    .it-header-left {
        margin-bottom: 20px;
    }
}

@media (max-width: 576px) {
    .it-header-left {
        margin-bottom: 16px;
    }
}

.it-label {
    display: inline-block;
    background: rgba(200, 146, 42, 0.12);
    padding: 6px 20px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #E6B04A;
    border: 1px solid rgba(200, 146, 42, 0.2);
    margin-bottom: 16px;
}

@media (max-width: 576px) {
    .it-label {
        font-size: 10px;
        padding: 5px 16px;
        letter-spacing: 1px;
        margin-bottom: 12px;
    }
}

.it-title {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 800;
    color: #FFFFFF;
    font-family: 'Playfair Display', Georgia, serif;
    line-height: 1.2;
}

@media (max-width: 576px) {
    .it-title {
        font-size: clamp(1.6rem, 5vw, 2rem);
    }
}

.it-title span {
    background: linear-gradient(135deg, #E6B04A 0%, #C8922A 40%, #F5E6C4 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-style: italic;
}

/* ---------- Animations ---------- */
.fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.7s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-up-delay-1 { transition-delay: 0.1s; }
.fade-up-delay-2 { transition-delay: 0.2s; }
.fade-up-delay-3 { transition-delay: 0.3s; }
.fade-up-delay-4 { transition-delay: 0.4s; }
.fade-up-delay-5 { transition-delay: 0.5s; }
.fade-up-delay-6 { transition-delay: 0.6s; }

/* ============================================
   INFORMATION TECHNOLOGY PAGE
   END
   ============================================ */


















   /* ============================================
   PROPERTY INVESTMENT PAGE
   Page-specific styles: property-* prefix
   LEFT ALIGN HEADERS - FULLY RESPONSIVE
   ============================================ */

/* ---------- Hero Section ---------- */
.property-hero {
    position: relative;
    padding: 140px 0 80px 0;
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
    overflow: hidden;
    isolation: isolate;
    min-height: 400px;
    display: flex;
    align-items: center;
}

.property-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
            rgba(5, 8, 18, 0.92) 0%,
            rgba(10, 15, 30, 0.88) 50%,
            rgba(5, 8, 18, 0.92) 100%);
    z-index: 1;
}

.property-hero .auto-container {
    position: relative;
    z-index: 2;
    width: 100%;
}

.property-hero-badge {
    display: inline-block;
    background: linear-gradient(135deg, rgba(200, 146, 42, 0.15), rgba(200, 146, 42, 0.05));
    color: #E6B04A;
    padding: 6px 20px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 16px;
    border: 1px solid rgba(200, 146, 42, 0.2);
}

.property-hero-title h1 {
    font-size: 48px;
    font-weight: 800;
    color: #FFFFFF;
    font-family: 'Playfair Display', Georgia, serif;
    margin-bottom: 16px;
    line-height: 1.2;
}

.property-hero-title h1 span {
    background: linear-gradient(135deg, #E6B04A 0%, #C8922A 40%, #F5E6C4 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.property-hero-title p {
    font-size: 18px;
    color: #B4C0DD;
    max-width: 600px;
    line-height: 1.8;
}

.property-hero-cta {
    margin-top: 30px;
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* ---------- Buttons ---------- */
.property-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #C8922A 0%, #A8711A 100%);
    color: #FFFFFF;
    font-weight: 700;
    padding: 16px 36px;
    border-radius: 60px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    border: none;
    cursor: pointer;
    box-shadow: 0 10px 30px -8px rgba(200, 146, 42, 0.4);
    position: relative;
    overflow: hidden;
}

.property-btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.property-btn-primary:hover {
    transform: translateY(-3px);
    background: linear-gradient(135deg, #E6B04A 0%, #C8922A 100%);
    box-shadow: 0 15px 40px -10px rgba(200, 146, 42, 0.5);
    color: #ffffff;
    text-decoration: none;
}

.property-btn-primary:hover::before {
    left: 100%;
}

.property-btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: #ffffff;
    font-weight: 600;
    padding: 16px 36px;
    border-radius: 60px;
    text-decoration: none;
    border: 1.5px solid rgba(255, 255, 255, 0.15);
    transition: all 0.3s ease;
}

.property-btn-outline:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: #E6B04A;
    color: #E6B04A;
    transform: translateY(-3px);
    text-decoration: none;
}

@media (max-width: 992px) {
    .property-hero { padding: 120px 0 60px 0; min-height: 350px; }
    .property-hero-title h1 { font-size: 38px; }
}

@media (max-width: 768px) {
    .property-hero { padding: 100px 0 50px 0; min-height: 300px; text-align: center; }
    .property-hero-title h1 { font-size: 32px; }
    .property-hero-title p { margin: 0 auto; }
    .property-hero-cta { justify-content: center; }
    .property-btn-primary, .property-btn-outline { padding: 12px 24px; font-size: 14px; }
}

@media (max-width: 576px) {
    .property-hero { padding: 80px 0 40px 0; min-height: 250px; }
    .property-hero-title h1 { font-size: 26px; }
    .property-hero-badge { font-size: 10px; padding: 4px 14px; }
}

/* ---------- Property Header Styles ---------- */
.property-header-left {
    text-align: left;
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
}

.property-label {
    display: inline-block;
    background: rgba(200, 146, 42, 0.12);
    padding: 6px 20px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #E6B04A;
    border: 1px solid rgba(200, 146, 42, 0.2);
    margin-bottom: 16px;
}

.property-title {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 800;
    color: #FFFFFF;
    font-family: 'Playfair Display', Georgia, serif;
    line-height: 1.2;
}

.property-title span {
    background: linear-gradient(135deg, #E6B04A 0%, #C8922A 40%, #F5E6C4 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-style: italic;
}

.property-subtitle {
    color: #8B9AC0;
    font-size: 17px;
    max-width: 550px;
    font-weight: 400;
    line-height: 1.6;
    margin-top: 8px;
}

@media (max-width: 576px) {
    .property-label { font-size: 10px; padding: 5px 16px; }
    .property-title { font-size: clamp(1.6rem, 5vw, 2rem); }
    .property-subtitle { font-size: 14px; }
}

/* ---------- Sections Background ---------- */
.property-about { background: #0C1325; padding: 80px 0; }
.property-why { background: #0A0F1A; padding: 80px 0; }
.property-options { background: #0C1325; padding: 80px 0; }
.property-process { background: #0A0F1A; padding: 80px 0; }
.property-enquiry { background: #0C1325; padding: 80px 0; }
.property-testimonial { background: #0A0F1A; padding: 80px 0; }

@media (max-width: 768px) {
    .property-about, .property-why, .property-options,
    .property-process, .property-enquiry, .property-testimonial {
        padding: 60px 0;
    }
}

@media (max-width: 576px) {
    .property-about, .property-why, .property-options,
    .property-process, .property-enquiry, .property-testimonial {
        padding: 40px 0;
    }
}

/* ---------- Image ---------- */
.property-image img {
    width: 100%;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

@media (max-width: 992px) {
    .property-image { margin-top: 30px; }
}

/* ---------- Why Invest Grid ---------- */
.property-why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

@media (max-width: 992px) {
    .property-why-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
}

@media (max-width: 576px) {
    .property-why-grid { grid-template-columns: 1fr; gap: 16px; max-width: 400px; margin: 0 auto; }
}

.property-why-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 30px 24px;
    text-align: center;
    transition: all 0.4s ease;
}

.property-why-card:hover {
    transform: translateY(-6px);
    border-color: rgba(200, 146, 42, 0.2);
    background: rgba(255, 255, 255, 0.04);
}

.property-why-icon {
    width: 65px;
    height: 65px;
    margin: 0 auto 16px;
    background: linear-gradient(135deg, rgba(200, 146, 42, 0.12), rgba(200, 146, 42, 0.05));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #E6B04A;
}

.property-why-card h4 {
    color: #FFFFFF;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
}

.property-why-card p {
    color: #B4C0DD;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 0;
}

/* ---------- Property Option Cards ---------- */
.property-option-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 35px 30px;
    transition: all 0.4s ease;
    height: 100%;
}

.property-option-card:hover {
    transform: translateY(-6px);
    border-color: rgba(200, 146, 42, 0.2);
    background: rgba(255, 255, 255, 0.04);
}

.property-option-card.gold {
    border-color: rgba(200, 146, 42, 0.15);
}

.property-option-card.gold:hover {
    border-color: rgba(200, 146, 42, 0.35);
}

.property-option-icon {
    width: 65px;
    height: 65px;
    margin-bottom: 16px;
    background: linear-gradient(135deg, rgba(200, 146, 42, 0.12), rgba(200, 146, 42, 0.05));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #E6B04A;
}

.property-option-card h3 {
    color: #FFFFFF;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 16px;
}

.property-option-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.property-option-card ul li {
    color: #B4C0DD;
    font-size: 15px;
    padding: 6px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.property-option-card ul li i {
    color: #C8922A;
    font-size: 16px;
    flex-shrink: 0;
}

/* ---------- Process Steps ---------- */
.property-process-steps {
    max-width: 900px;
}

.property-process-step {
    display: flex;
    gap: 30px;
    margin-bottom: 24px;
    padding: 25px 30px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 16px;
    border-left: 4px solid #C8922A;
    transition: all 0.3s ease;
    align-items: center;
}

@media (max-width: 768px) {
    .property-process-step {
        flex-direction: column;
        gap: 10px;
        padding: 20px;
        text-align: center;
        align-items: flex-start;
    }
}

.property-process-step:hover {
    transform: translateX(8px);
    background: rgba(255, 255, 255, 0.04);
}

.property-process-number {
    font-size: 32px;
    font-weight: 800;
    color: #E6B04A;
    min-width: 60px;
    font-family: 'Playfair Display', Georgia, serif;
}

@media (max-width: 768px) {
    .property-process-number { font-size: 24px; min-width: auto; }
}

.property-process-content h4 {
    color: #FFFFFF;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 4px;
}

.property-process-content p {
    color: #B4C0DD;
    font-size: 15px;
    margin-bottom: 0;
    line-height: 1.6;
}

/* ---------- Form ---------- */
.property-form {
    border-radius: 16px;
    padding: 30px 28px 40px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(12px);
    transition: all 0.4s ease;
}

.property-form:hover {
    border-color: rgba(200, 146, 42, 0.3);
}

.property-form h3 {
    font-weight: 700;
    font-size: 24px;
    padding-bottom: 20px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: linear-gradient(135deg, #FFFFFF 0%, #E6B04A 40%, #C8922A 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    margin-bottom: 24px;
}

.property-form-group {
    margin-bottom: 16px;
}

.property-form-group label {
    color: #B4C0DD;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 6px;
    display: block;
}

.property-form-group label span {
    color: #FF6B6B;
}

.property-form-control {
    height: 48px;
    width: 100%;
    font-size: 14px;
    color: #FFFFFF;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 10px 18px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.property-form-control:focus {
    outline: none;
    border-color: #C8922A;
    box-shadow: 0 0 0 3px rgba(200, 146, 42, 0.15);
    background: rgba(255, 255, 255, 0.08);
}

.property-form-control::placeholder {
    color: rgba(180, 192, 221, 0.5);
}

.property-form-control textarea {
    height: auto;
    resize: vertical;
    min-height: 80px;
}

.property-btn-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    background: linear-gradient(135deg, #C8922A 0%, #A8711A 100%);
    color: #FFFFFF;
    font-weight: 700;
    font-size: 16px;
    padding: 14px 32px;
    border-radius: 60px;
    border: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    box-shadow: 0 10px 25px -8px rgba(200, 146, 42, 0.4);
    letter-spacing: 0.5px;
    margin-top: 8px;
    position: relative;
    overflow: hidden;
}

.property-btn-submit::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.property-btn-submit:hover {
    transform: translateY(-3px);
    background: linear-gradient(135deg, #E6B04A 0%, #C8922A 100%);
    box-shadow: 0 18px 32px -12px rgba(200, 146, 42, 0.6);
}

.property-btn-submit:hover::before {
    left: 100%;
}

.property-enquiry-benefits ul {
    list-style: none;
    padding: 0;
    margin: 20px 0 0;
}

.property-enquiry-benefits ul li {
    color: #B4C0DD;
    font-size: 15px;
    padding: 8px 0;
    display: flex;
    align-items: center;
    gap: 12px;
}

.property-enquiry-benefits ul li i {
    color: #C8922A;
    font-size: 18px;
    flex-shrink: 0;
}

/* ---------- Testimonial ---------- */
.property-testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

@media (max-width: 992px) {
    .property-testimonial-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
}

@media (max-width: 576px) {
    .property-testimonial-grid { grid-template-columns: 1fr; gap: 16px; max-width: 400px; margin: 0 auto; }
}

.property-testimonial-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 30px 24px;
    transition: all 0.4s ease;
}

.property-testimonial-item:hover {
    transform: translateY(-4px);
    border-color: rgba(200, 146, 42, 0.15);
}

.property-testimonial-icon {
    color: #C8922A;
    font-size: 28px;
    margin-bottom: 12px;
    opacity: 0.5;
}

.property-testimonial-item p {
    color: #B4C0DD;
    font-size: 15px;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 16px;
}

.property-testimonial-author h4 {
    color: #FFFFFF;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 2px;
}

.property-testimonial-author span {
    color: #8B9AC0;
    font-size: 13px;
}

/* ---------- Animations ---------- */
.fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.7s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-up-delay-1 { transition-delay: 0.1s; }
.fade-up-delay-2 { transition-delay: 0.2s; }
.fade-up-delay-3 { transition-delay: 0.3s; }
.fade-up-delay-4 { transition-delay: 0.4s; }
.fade-up-delay-5 { transition-delay: 0.5s; }












/* ============================================
   CIVIL AND CONSTRUCTION PAGE
   Page-specific styles: civil-* prefix
   LEFT ALIGN HEADERS - FULLY RESPONSIVE
   ============================================ */

/* ---------- Hero Section ---------- */
.civil-hero {
    position: relative;
    padding: 120px 0 80px 0;
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
    overflow: hidden;
    isolation: isolate;
    min-height: 350px;
    display: flex;
    align-items: center;
}

.civil-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
            rgba(5, 8, 18, 0.88) 0%,
            rgba(10, 15, 30, 0.82) 50%,
            rgba(5, 8, 18, 0.88) 100%);
    z-index: 1;
}

.civil-hero .auto-container {
    position: relative;
    z-index: 2;
    width: 100%;
}

.civil-hero-title h1 {
    font-size: 42px;
    font-weight: 800;
    color: #FFFFFF;
    font-family: 'Playfair Display', Georgia, serif;
    margin-bottom: 8px;
    line-height: 1.2;
}

.civil-hero-title h1 span {
    background: linear-gradient(135deg, #E6B04A 0%, #C8922A 40%, #F5E6C4 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.civil-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 8px;
}

.civil-breadcrumb li {
    color: #B4C0DD;
    font-size: 15px;
}

.civil-breadcrumb li a {
    color: #E6B04A;
    text-decoration: none;
    transition: color 0.3s ease;
}

.civil-breadcrumb li a:hover {
    color: #C8922A;
}

.civil-breadcrumb li span {
    color: #FFFFFF;
}

.civil-breadcrumb li+li::before {
    content: '/';
    margin-right: 8px;
    color: rgba(255, 255, 255, 0.3);
}

/* ---------- Responsive Hero ---------- */
@media (max-width: 1200px) {
    .civil-hero-title h1 { font-size: 38px; }
}

@media (max-width: 992px) {
    .civil-hero { padding: 100px 0 60px 0; min-height: 300px; }
    .civil-hero-title h1 { font-size: 34px; }
}

@media (max-width: 768px) {
    .civil-hero { padding: 80px 0 50px 0; min-height: 250px; }
    .civil-hero-title h1 { font-size: 28px; }
    .civil-breadcrumb li { font-size: 14px; }
}

@media (max-width: 576px) {
    .civil-hero { padding: 70px 0 40px 0; min-height: 200px; }
    .civil-hero-title h1 { font-size: 24px; }
    .civil-breadcrumb li { font-size: 13px; }
}

/* ---------- Form Section ---------- */
.civil-form-section {
    background: #0A0F1A;
    padding: 60px 0;
}

@media (max-width: 768px) {
    .civil-form-section { padding: 40px 0; }
}

@media (max-width: 576px) {
    .civil-form-section { padding: 30px 0; }
    .civil-form-section .py-5 { padding-top: 20px !important; padding-bottom: 20px !important; }
}

.civil-form {
    border-radius: 16px;
    padding: 30px 28px 40px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(12px);
    transition: all 0.4s ease;
}

.civil-form:hover {
    border-color: rgba(200, 146, 42, 0.3);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
}

.civil-form h3 {
    font-weight: 700;
    font-size: 24px;
    padding-bottom: 20px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: linear-gradient(135deg, #FFFFFF 0%, #E6B04A 40%, #C8922A 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    margin-bottom: 24px;
}

@media (max-width: 576px) {
    .civil-form { padding: 20px 16px 30px; }
    .civil-form h3 { font-size: 20px; padding-bottom: 16px; margin-bottom: 18px; }
}

.civil-form-group {
    margin-bottom: 16px;
}

@media (max-width: 576px) {
    .civil-form-group { margin-bottom: 12px; }
}

.civil-form-group label {
    color: #B4C0DD;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 6px;
    display: block;
}

@media (max-width: 576px) {
    .civil-form-group label { font-size: 13px; margin-bottom: 4px; }
}

.civil-form-group label span {
    color: #FF6B6B;
}

.civil-form-control {
    height: 48px;
    width: 100%;
    font-size: 14px;
    color: #FFFFFF;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 10px 18px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s ease;
    box-sizing: border-box;
}

@media (max-width: 576px) {
    .civil-form-control { height: 44px; font-size: 13px; padding: 8px 14px; border-radius: 8px; }
}

.civil-form-control:focus {
    outline: none;
    border-color: #C8922A;
    box-shadow: 0 0 0 3px rgba(200, 146, 42, 0.15);
    background: rgba(255, 255, 255, 0.08);
}

.civil-btn-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    background: linear-gradient(135deg, #C8922A 0%, #A8711A 100%);
    color: #FFFFFF;
    font-weight: 700;
    font-size: 16px;
    padding: 14px 32px;
    border-radius: 60px;
    border: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    box-shadow: 0 10px 25px -8px rgba(200, 146, 42, 0.4);
    letter-spacing: 0.5px;
    margin-top: 8px;
    position: relative;
    overflow: hidden;
}

@media (max-width: 576px) {
    .civil-btn-submit { font-size: 14px; padding: 12px 20px; border-radius: 50px; margin-top: 4px; }
}

.civil-btn-submit::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.civil-btn-submit:hover {
    transform: translateY(-3px);
    background: linear-gradient(135deg, #E6B04A 0%, #C8922A 100%);
    box-shadow: 0 18px 32px -12px rgba(200, 146, 42, 0.6);
}

.civil-btn-submit:hover::before { left: 100%; }

.civil-video {
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    width: 100%;
    height: auto;
}

@media (max-width: 992px) {
    .civil-video-col { margin-top: 40px; }
}

@media (max-width: 576px) {
    .civil-video { border-radius: 12px; }
    .civil-video-col { margin-top: 30px; }
}

/* ---------- About Section ---------- */
.civil-about {
    background: #0C1325;
    padding: 80px 0;
}

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

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

.civil-about-content h4 {
    font-size: 20px;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 16px;
}

@media (max-width: 576px) {
    .civil-about-content h4 { font-size: 17px; margin-bottom: 12px; }
}

.civil-about-text p {
    color: #B4C0DD;
    font-size: 16px;
    line-height: 1.8;
}

@media (max-width: 576px) {
    .civil-about-text p { font-size: 15px; line-height: 1.7; }
}

/* ---------- Info Section ---------- */
.civil-info {
    background: #0A0F1A;
    padding: 60px 0;
}

@media (max-width: 768px) {
    .civil-info { padding: 40px 0; }
}

@media (max-width: 576px) {
    .civil-info { padding: 30px 0; }
}

.civil-info-text h4 {
    font-size: 20px;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 12px;
}

@media (max-width: 576px) {
    .civil-info-text h4 { font-size: 17px; }
}

.civil-info-text p {
    color: #B4C0DD;
    font-size: 16px;
    line-height: 1.8;
}

@media (max-width: 576px) {
    .civil-info-text p { font-size: 15px; line-height: 1.7; }
}

.civil-info-footer {
    margin-top: 30px;
}

.civil-info-footer p {
    color: #B4C0DD;
    font-size: 16px;
    line-height: 1.8;
}

@media (max-width: 576px) {
    .civil-info-footer p { font-size: 15px; line-height: 1.7; }
}

.civil-info-footer p+p {
    margin-top: 12px;
}

.civil-image img {
    width: 100%;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

@media (max-width: 992px) {
    .civil-image { margin-top: 30px; }
}

/* ---------- Tasks Section ---------- */
.civil-tasks {
    background: #0C1325;
    padding: 80px 0;
}

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

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

.civil-tasks-text p {
    color: #B4C0DD;
    font-size: 16px;
    line-height: 1.8;
}

@media (max-width: 576px) {
    .civil-tasks-text p { font-size: 15px; line-height: 1.7; }
}

.civil-tasks-text p+p {
    margin-top: 12px;
}

.civil-tasks-list {
    margin-top: 25px;
}

.civil-tasks-list h6 {
    color: #FFFFFF;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
}

@media (max-width: 576px) {
    .civil-tasks-list h6 { font-size: 16px; }
}

.civil-tasks-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.civil-tasks-list ul li {
    color: #B4C0DD;
    font-size: 15px;
    line-height: 1.7;
    padding: 8px 0;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

@media (max-width: 576px) {
    .civil-tasks-list ul li { font-size: 14px; padding: 6px 0; gap: 10px; }
}

.civil-tasks-list ul li:last-child {
    border-bottom: none;
}

.civil-tasks-list ul li i {
    color: #C8922A;
    margin-top: 4px;
    font-size: 16px;
    flex-shrink: 0;
}

@media (max-width: 576px) {
    .civil-tasks-list ul li i { font-size: 14px; margin-top: 3px; }
}

/* ---------- Projects Section ---------- */
.civil-projects {
    background: #0A0F1A;
    padding: 80px 0;
}

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

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

.civil-projects-text p {
    color: #B4C0DD;
    font-size: 16px;
    line-height: 1.8;
}

@media (max-width: 576px) {
    .civil-projects-text p { font-size: 15px; line-height: 1.7; }
}

.civil-projects-list {
    margin-top: 25px;
}

.civil-projects-list h6 {
    color: #FFFFFF;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
}

@media (max-width: 576px) {
    .civil-projects-list h6 { font-size: 16px; }
}

.civil-projects-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.civil-projects-list ul li {
    color: #B4C0DD;
    font-size: 15px;
    line-height: 1.7;
    padding: 8px 0;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

@media (max-width: 576px) {
    .civil-projects-list ul li { font-size: 14px; padding: 6px 0; gap: 10px; }
}

.civil-projects-list ul li:last-child {
    border-bottom: none;
}

.civil-projects-list ul li i {
    color: #C8922A;
    margin-top: 4px;
    font-size: 16px;
    flex-shrink: 0;
}

@media (max-width: 576px) {
    .civil-projects-list ul li i { font-size: 14px; margin-top: 3px; }
}

/* ---------- Header Styles ---------- */
.civil-header-left {
    text-align: left;
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
}

@media (max-width: 768px) {
    .civil-header-left { margin-bottom: 24px; }
}

@media (max-width: 576px) {
    .civil-header-left { margin-bottom: 20px; }
}

.civil-label {
    display: inline-block;
    background: rgba(200, 146, 42, 0.12);
    padding: 6px 20px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #E6B04A;
    border: 1px solid rgba(200, 146, 42, 0.2);
    margin-bottom: 16px;
}

@media (max-width: 576px) {
    .civil-label { font-size: 10px; padding: 5px 16px; letter-spacing: 1px; margin-bottom: 12px; }
}

.civil-title {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 800;
    color: #FFFFFF;
    font-family: 'Playfair Display', Georgia, serif;
    line-height: 1.2;
}

@media (max-width: 576px) {
    .civil-title { font-size: clamp(1.6rem, 5vw, 2rem); }
}

.civil-title span {
    background: linear-gradient(135deg, #E6B04A 0%, #C8922A 40%, #F5E6C4 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-style: italic;
}

.civil-subtitle {
    color: #8B9AC0;
    font-size: 17px;
    max-width: 550px;
    font-weight: 400;
    line-height: 1.6;
    margin-top: 8px;
}

@media (max-width: 576px) {
    .civil-subtitle { font-size: 14px; }
}

/* ============================================
   CIVIL CARDS - ULTRA PREMIUM DARK THEME
   ============================================ */

.civil-cards-section {
    padding: 100px 0;
    background: #0C1325;
    position: relative;
    overflow: hidden;
}

@media (max-width: 992px) {
    .civil-cards-section { padding: 80px 0; }
}

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

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

.civil-cards-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -30%;
    width: 80%;
    height: 150%;
    background: radial-gradient(ellipse, rgba(200, 146, 42, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.civil-cards-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    right: -20%;
    width: 60%;
    height: 120%;
    background: radial-gradient(ellipse, rgba(22, 201, 88, 0.03) 0%, transparent 70%);
    pointer-events: none;
}

.civil-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    position: relative;
    z-index: 2;
}

@media (max-width: 992px) {
    .civil-cards-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
}

@media (max-width: 576px) {
    .civil-cards-grid { grid-template-columns: 1fr; gap: 16px; max-width: 400px; margin: 0 auto; }
}

.civil-card-item {
    position: relative;
    perspective: 800px;
    height: 100%;
}

.civil-card-inner {
    position: relative;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01));
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    padding: 30px 20px 25px;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    height: 100%;
    overflow: hidden;
    backdrop-filter: blur(8px);
    transform-style: preserve-3d;
    min-height: 260px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

@media (max-width: 768px) {
    .civil-card-inner { padding: 25px 18px 20px; min-height: 230px; border-radius: 16px; }
}

@media (max-width: 576px) {
    .civil-card-inner { padding: 20px 16px 18px; min-height: 200px; border-radius: 14px; }
}

.civil-card-inner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(200, 146, 42, 0.05), transparent 50%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.civil-card-item:hover .civil-card-inner::before { opacity: 1; }

.civil-card-inner:hover {
    transform: translateY(-12px) rotateX(2deg);
    border-color: rgba(200, 146, 42, 0.4);
    box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.5),
                0 0 0 1px rgba(200, 146, 42, 0.15) inset,
                0 0 40px rgba(200, 146, 42, 0.08);
}

@media (max-width: 768px) {
    .civil-card-inner:hover { transform: translateY(-8px) rotateX(1deg); }
}

@media (max-width: 576px) {
    .civil-card-inner:hover { transform: translateY(-5px) rotateX(0deg); }
}

.civil-card-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(200, 146, 42, 0.08), transparent 60%);
    opacity: 0;
    transition: opacity 0.6s ease;
    pointer-events: none;
    border-radius: 50%;
}

.civil-card-item:hover .civil-card-glow {
    opacity: 1;
    animation: glowPulse 2s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% { transform: scale(1); opacity: 0.4; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

.civil-card-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, rgba(200, 146, 42, 0.15), rgba(200, 146, 42, 0.05));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #E6B04A;
    border: 1px solid rgba(200, 146, 42, 0.15);
    transition: all 0.5s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    position: relative;
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .civil-card-icon { width: 60px; height: 60px; font-size: 24px; margin: 0 auto 16px; }
}

@media (max-width: 576px) {
    .civil-card-icon { width: 50px; height: 50px; font-size: 20px; margin: 0 auto 12px; }
}

.civil-card-icon::after {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(200, 146, 42, 0.2), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.civil-card-item:hover .civil-card-icon {
    background: linear-gradient(135deg, #C8922A, #E6B04A);
    color: #0A0F1A;
    transform: scale(1.1) rotateY(10deg);
    box-shadow: 0 15px 35px -8px rgba(200, 146, 42, 0.4);
    border-color: transparent;
}

.civil-card-item:hover .civil-card-icon::after { opacity: 1; }

.civil-card-number {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 48px;
    font-weight: 800;
    background: linear-gradient(135deg, rgba(200, 146, 42, 0.15), rgba(200, 146, 42, 0.05));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    position: absolute;
    top: 10px;
    right: 15px;
    opacity: 0.3;
    transition: all 0.4s ease;
    line-height: 1;
}

@media (max-width: 768px) {
    .civil-card-number { font-size: 36px; top: 8px; right: 12px; }
}

@media (max-width: 576px) {
    .civil-card-number { font-size: 30px; top: 6px; right: 10px; }
}

.civil-card-item:hover .civil-card-number {
    opacity: 0.6;
    transform: scale(1.1);
}

.civil-card-body {
    position: relative;
    z-index: 2;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.civil-card-title {
    font-size: 18px;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 12px;
    transition: color 0.3s ease;
    line-height: 1.3;
}

@media (max-width: 768px) {
    .civil-card-title { font-size: 16px; margin-bottom: 10px; }
}

@media (max-width: 576px) {
    .civil-card-title { font-size: 15px; margin-bottom: 8px; }
}

.civil-card-item:hover .civil-card-title {
    background: linear-gradient(135deg, #E6B04A, #C8922A);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.civil-card-text {
    font-size: 14px;
    color: #8B9AC0;
    line-height: 1.7;
    margin-bottom: 0;
    transition: color 0.3s ease;
}

@media (max-width: 768px) {
    .civil-card-text { font-size: 13px; line-height: 1.6; }
}

@media (max-width: 576px) {
    .civil-card-text { font-size: 13px; line-height: 1.5; }
}

.civil-card-item:hover .civil-card-text { color: #B4C0DD; }

/* ---------- Animations ---------- */
.fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.7s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-up-delay-1 { transition-delay: 0.1s; }
.fade-up-delay-2 { transition-delay: 0.2s; }
.fade-up-delay-3 { transition-delay: 0.3s; }
.fade-up-delay-4 { transition-delay: 0.4s; }
.fade-up-delay-5 { transition-delay: 0.5s; }
.fade-up-delay-6 { transition-delay: 0.6s; }

/* ============================================
   CIVIL AND CONSTRUCTION PAGE
   END
   ============================================ */














   /* ============================================
   PRIVATE LIMITED COMPANY PAGE
   Page-specific styles: plc-* prefix
   LEFT ALIGN HEADERS - FULLY RESPONSIVE
   ============================================ */

/* ---------- Hero Section ---------- */
.plc-hero {
    position: relative;
    padding: 120px 0 80px 0;
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
    overflow: hidden;
    isolation: isolate;
    min-height: 350px;
    display: flex;
    align-items: center;
}

.plc-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
            rgba(5, 8, 18, 0.88) 0%,
            rgba(10, 15, 30, 0.82) 50%,
            rgba(5, 8, 18, 0.88) 100%);
    z-index: 1;
}

.plc-hero .auto-container {
    position: relative;
    z-index: 2;
    width: 100%;
}

.plc-hero-title h1 {
    font-size: 42px;
    font-weight: 800;
    color: #FFFFFF;
    font-family: 'Playfair Display', Georgia, serif;
    margin-bottom: 8px;
    line-height: 1.2;
}

.plc-hero-title h1 span {
    background: linear-gradient(135deg, #E6B04A 0%, #C8922A 40%, #F5E6C4 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.plc-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 8px;
}

.plc-breadcrumb li {
    color: #B4C0DD;
    font-size: 15px;
}

.plc-breadcrumb li a {
    color: #E6B04A;
    text-decoration: none;
    transition: color 0.3s ease;
}

.plc-breadcrumb li a:hover {
    color: #C8922A;
}

.plc-breadcrumb li span {
    color: #FFFFFF;
}

.plc-breadcrumb li+li::before {
    content: '/';
    margin-right: 8px;
    color: rgba(255, 255, 255, 0.3);
}

/* ---------- Responsive Hero ---------- */
@media (max-width: 1200px) {
    .plc-hero-title h1 { font-size: 38px; }
}

@media (max-width: 992px) {
    .plc-hero { padding: 100px 0 60px 0; min-height: 300px; }
    .plc-hero-title h1 { font-size: 34px; }
}

@media (max-width: 768px) {
    .plc-hero { padding: 80px 0 50px 0; min-height: 250px; }
    .plc-hero-title h1 { font-size: 28px; }
    .plc-breadcrumb li { font-size: 14px; }
}

@media (max-width: 576px) {
    .plc-hero { padding: 70px 0 40px 0; min-height: 200px; }
    .plc-hero-title h1 { font-size: 24px; }
    .plc-breadcrumb li { font-size: 13px; }
}

/* ---------- Form Section ---------- */
.plc-form-section {
    background: #0A0F1A;
    padding: 60px 0;
}

@media (max-width: 768px) {
    .plc-form-section { padding: 40px 0; }
}

@media (max-width: 576px) {
    .plc-form-section { padding: 30px 0; }
    .plc-form-section .py-5 { padding-top: 20px !important; padding-bottom: 20px !important; }
}

.plc-form {
    border-radius: 16px;
    padding: 30px 28px 40px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(12px);
    transition: all 0.4s ease;
}

.plc-form:hover {
    border-color: rgba(200, 146, 42, 0.3);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
}

.plc-form h3 {
    font-weight: 700;
    font-size: 24px;
    padding-bottom: 20px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: linear-gradient(135deg, #FFFFFF 0%, #E6B04A 40%, #C8922A 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    margin-bottom: 24px;
}

@media (max-width: 576px) {
    .plc-form { padding: 20px 16px 30px; }
    .plc-form h3 { font-size: 20px; padding-bottom: 16px; margin-bottom: 18px; }
}

.plc-form-group {
    margin-bottom: 16px;
}

@media (max-width: 576px) {
    .plc-form-group { margin-bottom: 12px; }
}

.plc-form-group label {
    color: #B4C0DD;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 6px;
    display: block;
}

@media (max-width: 576px) {
    .plc-form-group label { font-size: 13px; margin-bottom: 4px; }
}

.plc-form-group label span {
    color: #FF6B6B;
}

.plc-form-control {
    height: 48px;
    width: 100%;
    font-size: 14px;
    color: #FFFFFF;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 10px 18px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s ease;
    box-sizing: border-box;
}

@media (max-width: 576px) {
    .plc-form-control { height: 44px; font-size: 13px; padding: 8px 14px; border-radius: 8px; }
}

.plc-form-control:focus {
    outline: none;
    border-color: #C8922A;
    box-shadow: 0 0 0 3px rgba(200, 146, 42, 0.15);
    background: rgba(255, 255, 255, 0.08);
}

.plc-btn-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    background: linear-gradient(135deg, #C8922A 0%, #A8711A 100%);
    color: #FFFFFF;
    font-weight: 700;
    font-size: 16px;
    padding: 14px 32px;
    border-radius: 60px;
    border: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    box-shadow: 0 10px 25px -8px rgba(200, 146, 42, 0.4);
    letter-spacing: 0.5px;
    margin-top: 8px;
    position: relative;
    overflow: hidden;
}

@media (max-width: 576px) {
    .plc-btn-submit { font-size: 14px; padding: 12px 20px; border-radius: 50px; margin-top: 4px; }
}

.plc-btn-submit::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.plc-btn-submit:hover {
    transform: translateY(-3px);
    background: linear-gradient(135deg, #E6B04A 0%, #C8922A 100%);
    box-shadow: 0 18px 32px -12px rgba(200, 146, 42, 0.6);
}

.plc-btn-submit:hover::before { left: 100%; }

.plc-video {
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    width: 100%;
    height: auto;
}

@media (max-width: 992px) {
    .plc-video-col { margin-top: 40px; }
}

@media (max-width: 576px) {
    .plc-video { border-radius: 12px; }
    .plc-video-col { margin-top: 30px; }
}

/* ---------- About Section ---------- */
.plc-about {
    background: #0C1325;
    padding: 80px 0;
}

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

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

.plc-about-text p {
    color: #B4C0DD;
    font-size: 16px;
    line-height: 1.8;
}

@media (max-width: 576px) {
    .plc-about-text p { font-size: 15px; line-height: 1.7; }
}

.plc-about-text p+p {
    margin-top: 12px;
}

/* ---------- Benefits Section ---------- */
.plc-benefits {
    background: #0A0F1A;
    padding: 80px 0;
}

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

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

.plc-benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

@media (max-width: 992px) {
    .plc-benefits-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
}

@media (max-width: 576px) {
    .plc-benefits-grid { grid-template-columns: 1fr; gap: 16px; max-width: 400px; margin: 0 auto; }
}

.plc-benefit-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 30px 24px;
    text-align: center;
    transition: all 0.4s ease;
}

.plc-benefit-card:hover {
    transform: translateY(-6px);
    border-color: rgba(200, 146, 42, 0.2);
    background: rgba(255, 255, 255, 0.04);
}

.plc-benefit-icon {
    width: 65px;
    height: 65px;
    margin: 0 auto 16px;
    background: linear-gradient(135deg, rgba(200, 146, 42, 0.12), rgba(200, 146, 42, 0.05));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #E6B04A;
}

.plc-benefit-card h4 {
    color: #FFFFFF;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
}

.plc-benefit-card p {
    color: #B4C0DD;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 0;
}

/* ---------- Eligibility Section ---------- */
.plc-eligibility {
    background: #0C1325;
    padding: 80px 0;
}

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

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

.plc-eligibility-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

@media (max-width: 992px) {
    .plc-eligibility-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
}

@media (max-width: 576px) {
    .plc-eligibility-grid { grid-template-columns: 1fr; gap: 16px; max-width: 400px; margin: 0 auto; }
}

.plc-eligibility-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 25px 20px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
}

.plc-eligibility-card:hover {
    transform: translateY(-6px);
    border-color: rgba(200, 146, 42, 0.2);
    background: rgba(255, 255, 255, 0.04);
}

.plc-eligibility-number {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 32px;
    font-weight: 800;
    color: #C8922A;
    opacity: 0.3;
    margin-bottom: 8px;
}

.plc-eligibility-card h4 {
    color: #FFFFFF;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 6px;
}

.plc-eligibility-card p {
    color: #B4C0DD;
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 0;
}

/* ---------- Compliance Section ---------- */
.plc-compliance {
    background: #0A0F1A;
    padding: 80px 0;
}

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

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

.plc-compliance-text p {
    color: #B4C0DD;
    font-size: 16px;
    line-height: 1.8;
}

@media (max-width: 576px) {
    .plc-compliance-text p { font-size: 15px; line-height: 1.7; }
}

.plc-compliance-text p+p {
    margin-top: 12px;
}

/* ---------- Governance Section ---------- */
.plc-governance {
    background: #0C1325;
    padding: 80px 0;
}

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

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

.plc-governance-text p {
    color: #B4C0DD;
    font-size: 16px;
    line-height: 1.8;
}

@media (max-width: 576px) {
    .plc-governance-text p { font-size: 15px; line-height: 1.7; }
}

.plc-governance-text p+p {
    margin-top: 12px;
}

/* ---------- Capital Section ---------- */
.plc-capital {
    background: #0A0F1A;
    padding: 80px 0;
}

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

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

.plc-capital-text p {
    color: #B4C0DD;
    font-size: 16px;
    line-height: 1.8;
}

@media (max-width: 576px) {
    .plc-capital-text p { font-size: 15px; line-height: 1.7; }
}

.plc-capital-text p+p {
    margin-top: 12px;
}

/* ---------- IP Section ---------- */
.plc-ip {
    background: #0C1325;
    padding: 80px 0;
}

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

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

.plc-ip-text p {
    color: #B4C0DD;
    font-size: 16px;
    line-height: 1.8;
}

@media (max-width: 576px) {
    .plc-ip-text p { font-size: 15px; line-height: 1.7; }
}

.plc-ip-text p+p {
    margin-top: 12px;
}

/* ---------- Image Styles ---------- */
.plc-image img {
    width: 100%;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

@media (max-width: 992px) {
    .plc-image { margin-top: 30px; }
}

/* ---------- Documents Section ---------- */
.plc-documents {
    background: #0A0F1A;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

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

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

.plc-documents::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 30% 50%, rgba(200, 146, 42, 0.04) 0%, transparent 60%);
    pointer-events: none;
}

.plc-documents .auto-container {
    position: relative;
    z-index: 2;
}

.plc-documents-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.plc-documents-list ul li {
    color: #B4C0DD;
    font-size: 15px;
    line-height: 1.7;
    padding: 8px 0;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

@media (max-width: 576px) {
    .plc-documents-list ul li { font-size: 14px; padding: 6px 0; gap: 10px; }
}

.plc-documents-list ul li:last-child {
    border-bottom: none;
}

.plc-documents-list ul li i {
    color: #C8922A;
    margin-top: 4px;
    font-size: 16px;
    flex-shrink: 0;
}

@media (max-width: 576px) {
    .plc-documents-list ul li i { font-size: 14px; margin-top: 3px; }
}

/* ---------- Header Styles ---------- */
.plc-header-left {
    text-align: left;
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
}

@media (max-width: 768px) {
    .plc-header-left { margin-bottom: 24px; }
}

@media (max-width: 576px) {
    .plc-header-left { margin-bottom: 20px; }
}

.plc-label {
    display: inline-block;
    background: rgba(200, 146, 42, 0.12);
    padding: 6px 20px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #E6B04A;
    border: 1px solid rgba(200, 146, 42, 0.2);
    margin-bottom: 16px;
}

@media (max-width: 576px) {
    .plc-label { font-size: 10px; padding: 5px 16px; letter-spacing: 1px; margin-bottom: 12px; }
}

.plc-title {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 800;
    color: #FFFFFF;
    font-family: 'Playfair Display', Georgia, serif;
    line-height: 1.2;
}

@media (max-width: 576px) {
    .plc-title { font-size: clamp(1.6rem, 5vw, 2rem); }
}

.plc-title span {
    background: linear-gradient(135deg, #E6B04A 0%, #C8922A 40%, #F5E6C4 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-style: italic;
}

.plc-subtitle {
    color: #8B9AC0;
    font-size: 17px;
    max-width: 550px;
    font-weight: 400;
    line-height: 1.6;
    margin-top: 8px;
}

@media (max-width: 576px) {
    .plc-subtitle { font-size: 14px; }
}

/* ---------- Animations ---------- */
.fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.7s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-up-delay-1 { transition-delay: 0.1s; }
.fade-up-delay-2 { transition-delay: 0.2s; }
.fade-up-delay-3 { transition-delay: 0.3s; }
.fade-up-delay-4 { transition-delay: 0.4s; }
.fade-up-delay-5 { transition-delay: 0.5s; }
.fade-up-delay-6 { transition-delay: 0.6s; }
.fade-up-delay-7 { transition-delay: 0.7s; }

/* ============================================
   PRIVATE LIMITED COMPANY PAGE
   END
   ============================================ */










   /* ============================================
   LLP REGISTRATION PAGE
   Page-specific styles: llp-* prefix
   LEFT ALIGN HEADERS - FULLY RESPONSIVE
   ============================================ */

/* ---------- Hero Section ---------- */
.llp-hero {
    position: relative;
    padding: 120px 0 80px 0;
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
    overflow: hidden;
    isolation: isolate;
    min-height: 350px;
    display: flex;
    align-items: center;
}

.llp-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
            rgba(5, 8, 18, 0.88) 0%,
            rgba(10, 15, 30, 0.82) 50%,
            rgba(5, 8, 18, 0.88) 100%);
    z-index: 1;
}

.llp-hero .auto-container {
    position: relative;
    z-index: 2;
    width: 100%;
}

.llp-hero-title h1 {
    font-size: 42px;
    font-weight: 800;
    color: #FFFFFF;
    font-family: 'Playfair Display', Georgia, serif;
    margin-bottom: 8px;
    line-height: 1.2;
}

.llp-hero-title h1 span {
    background: linear-gradient(135deg, #E6B04A 0%, #C8922A 40%, #F5E6C4 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.llp-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 8px;
}

.llp-breadcrumb li {
    color: #B4C0DD;
    font-size: 15px;
}

.llp-breadcrumb li a {
    color: #E6B04A;
    text-decoration: none;
    transition: color 0.3s ease;
}

.llp-breadcrumb li a:hover {
    color: #C8922A;
}

.llp-breadcrumb li span {
    color: #FFFFFF;
}

.llp-breadcrumb li+li::before {
    content: '/';
    margin-right: 8px;
    color: rgba(255, 255, 255, 0.3);
}

/* ---------- Responsive Hero ---------- */
@media (max-width: 1200px) {
    .llp-hero-title h1 { font-size: 38px; }
}

@media (max-width: 992px) {
    .llp-hero { padding: 100px 0 60px 0; min-height: 300px; }
    .llp-hero-title h1 { font-size: 34px; }
}

@media (max-width: 768px) {
    .llp-hero { padding: 80px 0 50px 0; min-height: 250px; }
    .llp-hero-title h1 { font-size: 28px; }
    .llp-breadcrumb li { font-size: 14px; }
}

@media (max-width: 576px) {
    .llp-hero { padding: 70px 0 40px 0; min-height: 200px; }
    .llp-hero-title h1 { font-size: 24px; }
    .llp-breadcrumb li { font-size: 13px; }
}

/* ---------- Form Section ---------- */
.llp-form-section {
    background: #0A0F1A;
    padding: 60px 0;
}

@media (max-width: 768px) {
    .llp-form-section { padding: 40px 0; }
}

@media (max-width: 576px) {
    .llp-form-section { padding: 30px 0; }
    .llp-form-section .py-5 { padding-top: 20px !important; padding-bottom: 20px !important; }
}

.llp-form {
    border-radius: 16px;
    padding: 30px 28px 40px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(12px);
    transition: all 0.4s ease;
}

.llp-form:hover {
    border-color: rgba(200, 146, 42, 0.3);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
}

.llp-form h3 {
    font-weight: 700;
    font-size: 24px;
    padding-bottom: 20px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: linear-gradient(135deg, #FFFFFF 0%, #E6B04A 40%, #C8922A 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    margin-bottom: 24px;
}

@media (max-width: 576px) {
    .llp-form { padding: 20px 16px 30px; }
    .llp-form h3 { font-size: 20px; padding-bottom: 16px; margin-bottom: 18px; }
}

.llp-form-group {
    margin-bottom: 16px;
}

@media (max-width: 576px) {
    .llp-form-group { margin-bottom: 12px; }
}

.llp-form-group label {
    color: #B4C0DD;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 6px;
    display: block;
}

@media (max-width: 576px) {
    .llp-form-group label { font-size: 13px; margin-bottom: 4px; }
}

.llp-form-group label span {
    color: #FF6B6B;
}

.llp-form-control {
    height: 48px;
    width: 100%;
    font-size: 14px;
    color: #FFFFFF;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 10px 18px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s ease;
    box-sizing: border-box;
}

@media (max-width: 576px) {
    .llp-form-control { height: 44px; font-size: 13px; padding: 8px 14px; border-radius: 8px; }
}

.llp-form-control:focus {
    outline: none;
    border-color: #C8922A;
    box-shadow: 0 0 0 3px rgba(200, 146, 42, 0.15);
    background: rgba(255, 255, 255, 0.08);
}

.llp-btn-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    background: linear-gradient(135deg, #C8922A 0%, #A8711A 100%);
    color: #FFFFFF;
    font-weight: 700;
    font-size: 16px;
    padding: 14px 32px;
    border-radius: 60px;
    border: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    box-shadow: 0 10px 25px -8px rgba(200, 146, 42, 0.4);
    letter-spacing: 0.5px;
    margin-top: 8px;
    position: relative;
    overflow: hidden;
}

@media (max-width: 576px) {
    .llp-btn-submit { font-size: 14px; padding: 12px 20px; border-radius: 50px; margin-top: 4px; }
}

.llp-btn-submit::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.llp-btn-submit:hover {
    transform: translateY(-3px);
    background: linear-gradient(135deg, #E6B04A 0%, #C8922A 100%);
    box-shadow: 0 18px 32px -12px rgba(200, 146, 42, 0.6);
}

.llp-btn-submit:hover::before { left: 100%; }

.llp-video {
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    width: 100%;
    height: auto;
}

@media (max-width: 992px) {
    .llp-video-col { margin-top: 40px; }
}

@media (max-width: 576px) {
    .llp-video { border-radius: 12px; }
    .llp-video-col { margin-top: 30px; }
}

/* ---------- About Section ---------- */
.llp-about {
    background: #0C1325;
    padding: 80px 0;
}

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

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

.llp-about-text p {
    color: #B4C0DD;
    font-size: 16px;
    line-height: 1.8;
}

@media (max-width: 576px) {
    .llp-about-text p { font-size: 15px; line-height: 1.7; }
}

.llp-about-text p+p {
    margin-top: 12px;
}

/* ---------- What is LLP Section ---------- */
.llp-what {
    background: #0A0F1A;
    padding: 80px 0;
}

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

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

.llp-what-text p {
    color: #B4C0DD;
    font-size: 16px;
    line-height: 1.8;
}

/* ---------- Features Section ---------- */
.llp-features {
    background: #0C1325;
    padding: 80px 0;
}

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

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

.llp-features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

@media (max-width: 992px) {
    .llp-features-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
}

@media (max-width: 576px) {
    .llp-features-grid { grid-template-columns: 1fr; gap: 16px; max-width: 400px; margin: 0 auto; }
}

.llp-feature-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 25px 20px;
    text-align: center;
    transition: all 0.4s ease;
}

.llp-feature-card:hover {
    transform: translateY(-6px);
    border-color: rgba(200, 146, 42, 0.2);
    background: rgba(255, 255, 255, 0.04);
}

.llp-feature-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 14px;
    background: linear-gradient(135deg, rgba(200, 146, 42, 0.12), rgba(200, 146, 42, 0.05));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #E6B04A;
}

.llp-feature-card h4 {
    color: #FFFFFF;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
}

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

/* ---------- Benefits Section ---------- */
.llp-benefits {
    background: #0A0F1A;
    padding: 80px 0;
}

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

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

.llp-benefits-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

@media (max-width: 768px) {
    .llp-benefits-list ul { grid-template-columns: 1fr; gap: 16px; }
}

.llp-benefits-list ul li {
    padding: 20px 25px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
    border-left: 4px solid #C8922A;
    transition: all 0.3s ease;
}

.llp-benefits-list ul li:hover {
    background: rgba(255, 255, 255, 0.04);
    transform: translateX(5px);
}

@media (max-width: 576px) {
    .llp-benefits-list ul li { padding: 15px 18px; }
}

.llp-benefits-list ul li h4 {
    color: #FFFFFF;
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 4px;
}

@media (max-width: 576px) {
    .llp-benefits-list ul li h4 { font-size: 15px; }
}

.llp-benefits-list ul li p {
    color: #B4C0DD;
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 0;
}

@media (max-width: 576px) {
    .llp-benefits-list ul li p { font-size: 14px; line-height: 1.6; }
}

/* ---------- Filings, Taxation, Fundraising, Drafting Sections ---------- */
.llp-filings {
    background: #0C1325;
    padding: 80px 0;
}

.llp-taxation {
    background: #0A0F1A;
    padding: 80px 0;
}

.llp-fundraising {
    background: #0C1325;
    padding: 80px 0;
}

.llp-drafting {
    background: #0A0F1A;
    padding: 80px 0;
}

@media (max-width: 768px) {
    .llp-filings, .llp-taxation, .llp-fundraising, .llp-drafting {
        padding: 60px 0;
    }
}

@media (max-width: 576px) {
    .llp-filings, .llp-taxation, .llp-fundraising, .llp-drafting {
        padding: 40px 0;
    }
}

.llp-filings-text p,
.llp-taxation-text p,
.llp-fundraising-text p,
.llp-drafting-text p {
    color: #B4C0DD;
    font-size: 16px;
    line-height: 1.8;
}

@media (max-width: 576px) {
    .llp-filings-text p,
    .llp-taxation-text p,
    .llp-fundraising-text p,
    .llp-drafting-text p {
        font-size: 15px;
        line-height: 1.7;
    }
}

.llp-filings-text p+p,
.llp-taxation-text p+p,
.llp-fundraising-text p+p,
.llp-drafting-text p+p {
    margin-top: 12px;
}

/* ---------- Image Styles ---------- */
.llp-image img {
    width: 100%;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

@media (max-width: 992px) {
    .llp-image { margin-top: 30px; }
}

/* ---------- Documents Section ---------- */
.llp-documents {
    background: #0C1325;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

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

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

.llp-documents::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 30% 50%, rgba(200, 146, 42, 0.04) 0%, transparent 60%);
    pointer-events: none;
}

.llp-documents .auto-container {
    position: relative;
    z-index: 2;
}

.llp-documents-content h6 {
    color: #FFFFFF;
    font-size: 18px;
    font-weight: 700;
    margin-top: 20px;
    margin-bottom: 12px;
}

@media (max-width: 576px) {
    .llp-documents-content h6 { font-size: 16px; }
}

.llp-documents-content h6:first-child {
    margin-top: 0;
}

.llp-documents-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.llp-documents-content ul li {
    color: #B4C0DD;
    font-size: 15px;
    line-height: 1.7;
    padding: 6px 0;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

@media (max-width: 576px) {
    .llp-documents-content ul li { font-size: 14px; padding: 5px 0; gap: 8px; }
}

.llp-documents-content ul li:last-child {
    border-bottom: none;
}

.llp-documents-content ul li i {
    color: #C8922A;
    font-size: 16px;
    flex-shrink: 0;
}

@media (max-width: 576px) {
    .llp-documents-content ul li i { font-size: 14px; }
}

/* ---------- Header Styles ---------- */
.llp-header-left {
    text-align: left;
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
}

@media (max-width: 768px) {
    .llp-header-left { margin-bottom: 24px; }
}

@media (max-width: 576px) {
    .llp-header-left { margin-bottom: 20px; }
}

.llp-label {
    display: inline-block;
    background: rgba(200, 146, 42, 0.12);
    padding: 6px 20px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #E6B04A;
    border: 1px solid rgba(200, 146, 42, 0.2);
    margin-bottom: 16px;
}

@media (max-width: 576px) {
    .llp-label { font-size: 10px; padding: 5px 16px; letter-spacing: 1px; margin-bottom: 12px; }
}

.llp-title {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 800;
    color: #FFFFFF;
    font-family: 'Playfair Display', Georgia, serif;
    line-height: 1.2;
}

@media (max-width: 576px) {
    .llp-title { font-size: clamp(1.6rem, 5vw, 2rem); }
}

.llp-title span {
    background: linear-gradient(135deg, #E6B04A 0%, #C8922A 40%, #F5E6C4 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-style: italic;
}

/* ---------- Animations ---------- */
.fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.7s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-up-delay-1 { transition-delay: 0.1s; }
.fade-up-delay-2 { transition-delay: 0.2s; }
.fade-up-delay-3 { transition-delay: 0.3s; }
.fade-up-delay-4 { transition-delay: 0.4s; }
.fade-up-delay-5 { transition-delay: 0.5s; }
.fade-up-delay-6 { transition-delay: 0.6s; }
.fade-up-delay-7 { transition-delay: 0.7s; }

/* ============================================
   LLP REGISTRATION PAGE
   END
   ============================================ */





   /* ============================================
   OPC REGISTRATION PAGE
   Page-specific styles: opc-* prefix
   LEFT ALIGN HEADERS - FULLY RESPONSIVE
   ============================================ */

/* ---------- Hero Section ---------- */
.opc-hero {
    position: relative;
    padding: 120px 0 80px 0;
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
    overflow: hidden;
    isolation: isolate;
    min-height: 350px;
    display: flex;
    align-items: center;
}

.opc-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
            rgba(5, 8, 18, 0.88) 0%,
            rgba(10, 15, 30, 0.82) 50%,
            rgba(5, 8, 18, 0.88) 100%);
    z-index: 1;
}

.opc-hero .auto-container {
    position: relative;
    z-index: 2;
    width: 100%;
}

.opc-hero-title h1 {
    font-size: 42px;
    font-weight: 800;
    color: #FFFFFF;
    font-family: 'Playfair Display', Georgia, serif;
    margin-bottom: 8px;
    line-height: 1.2;
}

.opc-hero-title h1 span {
    background: linear-gradient(135deg, #E6B04A 0%, #C8922A 40%, #F5E6C4 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.opc-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 8px;
}

.opc-breadcrumb li {
    color: #B4C0DD;
    font-size: 15px;
}

.opc-breadcrumb li a {
    color: #E6B04A;
    text-decoration: none;
    transition: color 0.3s ease;
}

.opc-breadcrumb li a:hover {
    color: #C8922A;
}

.opc-breadcrumb li span {
    color: #FFFFFF;
}

.opc-breadcrumb li+li::before {
    content: '/';
    margin-right: 8px;
    color: rgba(255, 255, 255, 0.3);
}

/* ---------- Responsive Hero ---------- */
@media (max-width: 1200px) {
    .opc-hero-title h1 { font-size: 38px; }
}

@media (max-width: 992px) {
    .opc-hero { padding: 100px 0 60px 0; min-height: 300px; }
    .opc-hero-title h1 { font-size: 34px; }
}

@media (max-width: 768px) {
    .opc-hero { padding: 80px 0 50px 0; min-height: 250px; }
    .opc-hero-title h1 { font-size: 28px; }
    .opc-breadcrumb li { font-size: 14px; }
}

@media (max-width: 576px) {
    .opc-hero { padding: 70px 0 40px 0; min-height: 200px; }
    .opc-hero-title h1 { font-size: 24px; }
    .opc-breadcrumb li { font-size: 13px; }
}

/* ---------- Form Section ---------- */
.opc-form-section {
    background: #0A0F1A;
    padding: 60px 0;
}

@media (max-width: 768px) {
    .opc-form-section { padding: 40px 0; }
}

@media (max-width: 576px) {
    .opc-form-section { padding: 30px 0; }
    .opc-form-section .py-5 { padding-top: 20px !important; padding-bottom: 20px !important; }
}

.opc-form {
    border-radius: 16px;
    padding: 30px 28px 40px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(12px);
    transition: all 0.4s ease;
}

.opc-form:hover {
    border-color: rgba(200, 146, 42, 0.3);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
}

.opc-form h3 {
    font-weight: 700;
    font-size: 24px;
    padding-bottom: 20px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: linear-gradient(135deg, #FFFFFF 0%, #E6B04A 40%, #C8922A 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    margin-bottom: 24px;
}

@media (max-width: 576px) {
    .opc-form { padding: 20px 16px 30px; }
    .opc-form h3 { font-size: 20px; padding-bottom: 16px; margin-bottom: 18px; }
}

.opc-form-group {
    margin-bottom: 16px;
}

@media (max-width: 576px) {
    .opc-form-group { margin-bottom: 12px; }
}

.opc-form-group label {
    color: #B4C0DD;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 6px;
    display: block;
}

@media (max-width: 576px) {
    .opc-form-group label { font-size: 13px; margin-bottom: 4px; }
}

.opc-form-group label span {
    color: #FF6B6B;
}

.opc-form-control {
    height: 48px;
    width: 100%;
    font-size: 14px;
    color: #FFFFFF;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 10px 18px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s ease;
    box-sizing: border-box;
}

@media (max-width: 576px) {
    .opc-form-control { height: 44px; font-size: 13px; padding: 8px 14px; border-radius: 8px; }
}

.opc-form-control:focus {
    outline: none;
    border-color: #C8922A;
    box-shadow: 0 0 0 3px rgba(200, 146, 42, 0.15);
    background: rgba(255, 255, 255, 0.08);
}

.opc-btn-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    background: linear-gradient(135deg, #C8922A 0%, #A8711A 100%);
    color: #FFFFFF;
    font-weight: 700;
    font-size: 16px;
    padding: 14px 32px;
    border-radius: 60px;
    border: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    box-shadow: 0 10px 25px -8px rgba(200, 146, 42, 0.4);
    letter-spacing: 0.5px;
    margin-top: 8px;
    position: relative;
    overflow: hidden;
}

@media (max-width: 576px) {
    .opc-btn-submit { font-size: 14px; padding: 12px 20px; border-radius: 50px; margin-top: 4px; }
}

.opc-btn-submit::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.opc-btn-submit:hover {
    transform: translateY(-3px);
    background: linear-gradient(135deg, #E6B04A 0%, #C8922A 100%);
    box-shadow: 0 18px 32px -12px rgba(200, 146, 42, 0.6);
}

.opc-btn-submit:hover::before { left: 100%; }

.opc-video {
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    width: 100%;
    height: auto;
}

@media (max-width: 992px) {
    .opc-video-col { margin-top: 40px; }
}

@media (max-width: 576px) {
    .opc-video { border-radius: 12px; }
    .opc-video-col { margin-top: 30px; }
}

/* ---------- About Section ---------- */
.opc-about {
    background: #0C1325;
    padding: 80px 0;
}

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

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

.opc-about-text p {
    color: #B4C0DD;
    font-size: 16px;
    line-height: 1.8;
}

@media (max-width: 576px) {
    .opc-about-text p { font-size: 15px; line-height: 1.7; }
}

.opc-about-text p+p {
    margin-top: 12px;
}

/* ---------- Ideal Section ---------- */
.opc-ideal {
    background: #0A0F1A;
    padding: 60px 0;
}

@media (max-width: 768px) {
    .opc-ideal { padding: 40px 0; }
}

@media (max-width: 576px) {
    .opc-ideal { padding: 30px 0; }
}

.opc-ideal-content h6 {
    color: #FFFFFF;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
}

@media (max-width: 576px) {
    .opc-ideal-content h6 { font-size: 16px; }
}

.opc-ideal-content p {
    color: #B4C0DD;
    font-size: 16px;
    line-height: 1.8;
}

@media (max-width: 576px) {
    .opc-ideal-content p { font-size: 15px; line-height: 1.7; }
}

/* ---------- Image Styles ---------- */
.opc-image img {
    width: 100%;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

@media (max-width: 992px) {
    .opc-image { margin-top: 30px; }
}

/* ---------- Benefits Section ---------- */
.opc-benefits {
    background: #0C1325;
    padding: 80px 0;
}

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

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

.opc-benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

@media (max-width: 992px) {
    .opc-benefits-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
}

@media (max-width: 576px) {
    .opc-benefits-grid { grid-template-columns: 1fr; gap: 16px; max-width: 400px; margin: 0 auto; }
}

.opc-benefit-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 25px 20px;
    text-align: center;
    transition: all 0.4s ease;
}

.opc-benefit-card:hover {
    transform: translateY(-6px);
    border-color: rgba(200, 146, 42, 0.2);
    background: rgba(255, 255, 255, 0.04);
}

.opc-benefit-number {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 36px;
    font-weight: 800;
    color: #C8922A;
    opacity: 0.3;
    margin-bottom: 6px;
}

.opc-benefit-card h4 {
    color: #FFFFFF;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 6px;
}

.opc-benefit-card p {
    color: #B4C0DD;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 0;
}

/* ---------- Process Section ---------- */
.opc-process {
    background: #0A0F1A;
    padding: 80px 0;
}

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

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

.opc-process-list ol {
    padding-left: 20px;
    margin: 0 0 16px 0;
}

.opc-process-list ol li {
    color: #B4C0DD;
    font-size: 16px;
    line-height: 1.8;
    padding: 4px 0;
}

@media (max-width: 576px) {
    .opc-process-list ol li { font-size: 15px; line-height: 1.7; }
}

.opc-process-list p {
    color: #B4C0DD;
    font-size: 16px;
    line-height: 1.8;
}

@media (max-width: 576px) {
    .opc-process-list p { font-size: 15px; line-height: 1.7; }
}

/* ---------- Eligibility Section ---------- */
.opc-eligibility {
    background: #0C1325;
    padding: 80px 0;
}

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

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

.opc-eligibility-list ul {
    list-style: none;
    padding: 0;
    margin: 0 0 16px 0;
}

.opc-eligibility-list ul li {
    color: #B4C0DD;
    font-size: 16px;
    line-height: 1.8;
    padding: 6px 0;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

@media (max-width: 576px) {
    .opc-eligibility-list ul li { font-size: 15px; padding: 4px 0; }
}

.opc-eligibility-list ul li i {
    color: #C8922A;
    margin-top: 4px;
    font-size: 16px;
    flex-shrink: 0;
}

.opc-eligibility-list p {
    color: #B4C0DD;
    font-size: 16px;
    line-height: 1.8;
}

@media (max-width: 576px) {
    .opc-eligibility-list p { font-size: 15px; line-height: 1.7; }
}

/* ---------- Tax Section ---------- */
.opc-tax {
    background: #0A0F1A;
    padding: 80px 0;
}

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

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

.opc-tax-list ul {
    list-style: none;
    padding: 0;
    margin: 0 0 16px 0;
}

.opc-tax-list ul li {
    color: #B4C0DD;
    font-size: 16px;
    line-height: 1.8;
    padding: 6px 0;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

@media (max-width: 576px) {
    .opc-tax-list ul li { font-size: 15px; padding: 4px 0; }
}

.opc-tax-list ul li i {
    color: #C8922A;
    margin-top: 4px;
    font-size: 16px;
    flex-shrink: 0;
}

.opc-tax-list p {
    color: #B4C0DD;
    font-size: 16px;
    line-height: 1.8;
}

@media (max-width: 576px) {
    .opc-tax-list p { font-size: 15px; line-height: 1.7; }
}

/* ---------- Support Section ---------- */
.opc-support {
    background: #0C1325;
    padding: 80px 0;
}

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

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

.opc-support-list ul {
    list-style: none;
    padding: 0;
    margin: 0 0 16px 0;
}

.opc-support-list ul li {
    color: #B4C0DD;
    font-size: 16px;
    line-height: 1.8;
    padding: 6px 0;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

@media (max-width: 576px) {
    .opc-support-list ul li { font-size: 15px; padding: 4px 0; }
}

.opc-support-list ul li i {
    color: #C8922A;
    margin-top: 4px;
    font-size: 16px;
    flex-shrink: 0;
}

.opc-support-list p {
    color: #B4C0DD;
    font-size: 16px;
    line-height: 1.8;
}

@media (max-width: 576px) {
    .opc-support-list p { font-size: 15px; line-height: 1.7; }
}

/* ---------- Documents Section ---------- */
.opc-documents {
    background: #0A0F1A;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

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

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

.opc-documents::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 30% 50%, rgba(200, 146, 42, 0.04) 0%, transparent 60%);
    pointer-events: none;
}

.opc-documents .auto-container {
    position: relative;
    z-index: 2;
}

.opc-documents-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.opc-documents-list ul li {
    color: #B4C0DD;
    font-size: 15px;
    line-height: 1.7;
    padding: 8px 0;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

@media (max-width: 576px) {
    .opc-documents-list ul li { font-size: 14px; padding: 6px 0; gap: 10px; }
}

.opc-documents-list ul li:last-child {
    border-bottom: none;
}

.opc-documents-list ul li i {
    color: #C8922A;
    font-size: 16px;
    flex-shrink: 0;
}

@media (max-width: 576px) {
    .opc-documents-list ul li i { font-size: 14px; }
}

/* ---------- Header Styles ---------- */
.opc-header-left {
    text-align: left;
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
}

@media (max-width: 768px) {
    .opc-header-left { margin-bottom: 24px; }
}

@media (max-width: 576px) {
    .opc-header-left { margin-bottom: 20px; }
}

.opc-label {
    display: inline-block;
    background: rgba(200, 146, 42, 0.12);
    padding: 6px 20px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #E6B04A;
    border: 1px solid rgba(200, 146, 42, 0.2);
    margin-bottom: 16px;
}

@media (max-width: 576px) {
    .opc-label { font-size: 10px; padding: 5px 16px; letter-spacing: 1px; margin-bottom: 12px; }
}

.opc-title {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 800;
    color: #FFFFFF;
    font-family: 'Playfair Display', Georgia, serif;
    line-height: 1.2;
}

@media (max-width: 576px) {
    .opc-title { font-size: clamp(1.6rem, 5vw, 2rem); }
}

.opc-title span {
    background: linear-gradient(135deg, #E6B04A 0%, #C8922A 40%, #F5E6C4 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-style: italic;
}

/* ---------- Animations ---------- */
.fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.7s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-up-delay-1 { transition-delay: 0.1s; }
.fade-up-delay-2 { transition-delay: 0.2s; }
.fade-up-delay-3 { transition-delay: 0.3s; }
.fade-up-delay-4 { transition-delay: 0.4s; }
.fade-up-delay-5 { transition-delay: 0.5s; }
.fade-up-delay-6 { transition-delay: 0.6s; }
.fade-up-delay-7 { transition-delay: 0.7s; }

/* ============================================
   OPC REGISTRATION PAGE
   END
   ============================================ */






       /* ============================================
   PUBLIC LIMITED COMPANY REGISTRATION PAGE
   Page-specific styles: plc-* prefix
   LEFT ALIGN HEADERS - FULLY RESPONSIVE
   ============================================ */

    /* ---------- Hero Section ---------- */
    .plc-hero {
        position: relative;
        padding: 120px 0 80px 0;
        background-size: cover !important;
        background-position: center center !important;
        background-repeat: no-repeat !important;
        overflow: hidden;
        isolation: isolate;
        min-height: 350px;
        display: flex;
        align-items: center;
    }

    .plc-hero::before {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(135deg,
                rgba(5, 8, 18, 0.88) 0%,
                rgba(10, 15, 30, 0.82) 50%,
                rgba(5, 8, 18, 0.88) 100%);
        z-index: 1;
    }

    .plc-hero .auto-container {
        position: relative;
        z-index: 2;
        width: 100%;
    }

    .plc-hero-title h1 {
        font-size: 42px;
        font-weight: 800;
        color: #FFFFFF;
        font-family: 'Playfair Display', Georgia, serif;
        margin-bottom: 8px;
        line-height: 1.2;
    }

    .plc-hero-title h1 span {
        background: linear-gradient(135deg, #E6B04A 0%, #C8922A 40%, #F5E6C4 100%);
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
    }

    .plc-breadcrumb {
        display: flex;
        flex-wrap: wrap;
        list-style: none;
        padding: 0;
        margin: 0;
        gap: 8px;
    }

    .plc-breadcrumb li {
        color: #B4C0DD;
        font-size: 15px;
    }

    .plc-breadcrumb li a {
        color: #E6B04A;
        text-decoration: none;
        transition: color 0.3s ease;
    }

    .plc-breadcrumb li a:hover {
        color: #C8922A;
    }

    .plc-breadcrumb li span {
        color: #FFFFFF;
    }

    .plc-breadcrumb li+li::before {
        content: '/';
        margin-right: 8px;
        color: rgba(255, 255, 255, 0.3);
    }

    /* ---------- Responsive Hero ---------- */
    @media (max-width: 1200px) {
        .plc-hero-title h1 {
            font-size: 38px;
        }
    }

    @media (max-width: 992px) {
        .plc-hero {
            padding: 100px 0 60px 0;
            min-height: 300px;
        }
        .plc-hero-title h1 {
            font-size: 34px;
        }
    }

    @media (max-width: 768px) {
        .plc-hero {
            padding: 80px 0 50px 0;
            min-height: 250px;
        }
        .plc-hero-title h1 {
            font-size: 28px;
        }
        .plc-breadcrumb li {
            font-size: 14px;
        }
    }

    @media (max-width: 576px) {
        .plc-hero {
            padding: 70px 0 40px 0;
            min-height: 200px;
        }
        .plc-hero-title h1 {
            font-size: 24px;
        }
        .plc-breadcrumb li {
            font-size: 13px;
        }
    }

    /* ---------- Form Section ---------- */
    .plc-form-section {
        background: #0A0F1A;
        padding: 60px 0;
    }

    @media (max-width: 768px) {
        .plc-form-section {
            padding: 40px 0;
        }
    }

    @media (max-width: 576px) {
        .plc-form-section {
            padding: 30px 0;
        }
        .plc-form-section .py-5 {
            padding-top: 20px !important;
            padding-bottom: 20px !important;
        }
    }

    .plc-form {
        border-radius: 16px;
        padding: 30px 28px 40px;
        background: rgba(255, 255, 255, 0.03);
        border: 1px solid rgba(255, 255, 255, 0.06);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
        backdrop-filter: blur(12px);
        transition: all 0.4s ease;
    }

    .plc-form:hover {
        border-color: rgba(200, 146, 42, 0.3);
        box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
    }

    .plc-form h3 {
        font-weight: 700;
        font-size: 24px;
        padding-bottom: 20px;
        text-align: center;
        text-transform: uppercase;
        letter-spacing: 1px;
        background: linear-gradient(135deg, #FFFFFF 0%, #E6B04A 40%, #C8922A 100%);
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
        margin-bottom: 24px;
    }

    @media (max-width: 576px) {
        .plc-form {
            padding: 20px 16px 30px;
        }
        .plc-form h3 {
            font-size: 20px;
            padding-bottom: 16px;
            margin-bottom: 18px;
        }
    }

    .plc-form-group {
        margin-bottom: 16px;
    }

    @media (max-width: 576px) {
        .plc-form-group {
            margin-bottom: 12px;
        }
    }

    .plc-form-group label {
        color: #B4C0DD;
        font-size: 14px;
        font-weight: 500;
        margin-bottom: 6px;
        display: block;
    }

    @media (max-width: 576px) {
        .plc-form-group label {
            font-size: 13px;
            margin-bottom: 4px;
        }
    }

    .plc-form-group label span {
        color: #FF6B6B;
    }

    .plc-form-control {
        height: 48px;
        width: 100%;
        font-size: 14px;
        color: #FFFFFF;
        background: rgba(255, 255, 255, 0.05);
        border-radius: 10px;
        padding: 10px 18px;
        border: 1px solid rgba(255, 255, 255, 0.08);
        transition: all 0.3s ease;
        box-sizing: border-box;
    }

    @media (max-width: 576px) {
        .plc-form-control {
            height: 44px;
            font-size: 13px;
            padding: 8px 14px;
            border-radius: 8px;
        }
    }

    .plc-form-control:focus {
        outline: none;
        border-color: #C8922A;
        box-shadow: 0 0 0 3px rgba(200, 146, 42, 0.15);
        background: rgba(255, 255, 255, 0.08);
    }

    .plc-btn-submit {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        width: 100%;
        background: linear-gradient(135deg, #C8922A 0%, #A8711A 100%);
        color: #FFFFFF;
        font-weight: 700;
        font-size: 16px;
        padding: 14px 32px;
        border-radius: 60px;
        border: none;
        cursor: pointer;
        transition: all 0.3s cubic-bezier(0.2, 0.9, 0.4, 1.1);
        box-shadow: 0 10px 25px -8px rgba(200, 146, 42, 0.4);
        letter-spacing: 0.5px;
        margin-top: 8px;
        position: relative;
        overflow: hidden;
    }

    @media (max-width: 576px) {
        .plc-btn-submit {
            font-size: 14px;
            padding: 12px 20px;
            border-radius: 50px;
            margin-top: 4px;
        }
    }

    .plc-btn-submit::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
        transition: left 0.5s ease;
    }

    .plc-btn-submit:hover {
        transform: translateY(-3px);
        background: linear-gradient(135deg, #E6B04A 0%, #C8922A 100%);
        box-shadow: 0 18px 32px -12px rgba(200, 146, 42, 0.6);
    }

    .plc-btn-submit:hover::before {
        left: 100%;
    }

    .plc-video {
        border-radius: 16px;
        border: 1px solid rgba(255, 255, 255, 0.06);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
        width: 100%;
        height: auto;
    }

    @media (max-width: 992px) {
        .plc-video-col {
            margin-top: 40px;
        }
    }

    @media (max-width: 576px) {
        .plc-video {
            border-radius: 12px;
        }
        .plc-video-col {
            margin-top: 30px;
        }
    }

    /* ---------- About Section ---------- */
    .plc-about {
        background: #0C1325;
        padding: 80px 0;
    }

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

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

    .plc-about-text p {
        color: #B4C0DD;
        font-size: 16px;
        line-height: 1.8;
    }

    @media (max-width: 576px) {
        .plc-about-text p {
            font-size: 15px;
            line-height: 1.7;
        }
    }

    .plc-about-text p+p {
        margin-top: 12px;
    }

    /* ---------- Eligibility Section ---------- */
    .plc-eligibility {
        background: #0A0F1A;
        padding: 80px 0;
    }

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

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

    .plc-eligibility-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 24px;
    }

    @media (max-width: 992px) {
        .plc-eligibility-grid {
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
        }
    }

    @media (max-width: 576px) {
        .plc-eligibility-grid {
            grid-template-columns: 1fr;
            gap: 16px;
            max-width: 400px;
            margin: 0 auto;
        }
    }

    .plc-eligibility-card {
        background: rgba(255, 255, 255, 0.02);
        border: 1px solid rgba(255, 255, 255, 0.05);
        border-radius: 16px;
        padding: 25px 20px;
        text-align: center;
        transition: all 0.4s ease;
    }

    .plc-eligibility-card:hover {
        transform: translateY(-6px);
        border-color: rgba(200, 146, 42, 0.2);
        background: rgba(255, 255, 255, 0.04);
    }

    .plc-eligibility-icon {
        width: 60px;
        height: 60px;
        margin: 0 auto 14px;
        background: linear-gradient(135deg, rgba(200, 146, 42, 0.12), rgba(200, 146, 42, 0.05));
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 24px;
        color: #E6B04A;
    }

    .plc-eligibility-card h4 {
        color: #FFFFFF;
        font-size: 16px;
        font-weight: 700;
        margin-bottom: 6px;
    }

    .plc-eligibility-card p {
        color: #B4C0DD;
        font-size: 14px;
        line-height: 1.6;
        margin-bottom: 0;
    }

    /* ---------- Benefits Section ---------- */
    .plc-benefits {
        background: #0C1325;
        padding: 80px 0;
    }

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

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

    .plc-benefits-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 24px;
    }

    @media (max-width: 992px) {
        .plc-benefits-grid {
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
        }
    }

    @media (max-width: 576px) {
        .plc-benefits-grid {
            grid-template-columns: 1fr;
            gap: 16px;
            max-width: 400px;
            margin: 0 auto;
        }
    }

    .plc-benefit-card {
        background: rgba(255, 255, 255, 0.02);
        border: 1px solid rgba(255, 255, 255, 0.05);
        border-radius: 16px;
        padding: 25px 20px;
        text-align: center;
        transition: all 0.4s ease;
    }

    .plc-benefit-card:hover {
        transform: translateY(-6px);
        border-color: rgba(200, 146, 42, 0.2);
        background: rgba(255, 255, 255, 0.04);
    }

    .plc-benefit-number {
        font-family: 'Playfair Display', Georgia, serif;
        font-size: 36px;
        font-weight: 800;
        color: #C8922A;
        opacity: 0.3;
        margin-bottom: 6px;
    }

    .plc-benefit-card h4 {
        color: #FFFFFF;
        font-size: 16px;
        font-weight: 700;
        margin-bottom: 6px;
    }

    .plc-benefit-card p {
        color: #B4C0DD;
        font-size: 14px;
        line-height: 1.6;
        margin-bottom: 0;
    }

    /* ---------- Process Section ---------- */
    .plc-process {
        background: #0A0F1A;
        padding: 80px 0;
    }

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

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

    .plc-process-list ol {
        padding-left: 20px;
        margin: 0 0 16px 0;
    }

    .plc-process-list ol li {
        color: #B4C0DD;
        font-size: 16px;
        line-height: 1.8;
        padding: 4px 0;
    }

    @media (max-width: 576px) {
        .plc-process-list ol li {
            font-size: 15px;
            line-height: 1.7;
        }
    }

    .plc-process-list p {
        color: #B4C0DD;
        font-size: 16px;
        line-height: 1.8;
    }

    @media (max-width: 576px) {
        .plc-process-list p {
            font-size: 15px;
            line-height: 1.7;
        }
    }

    /* ---------- Image Styles ---------- */
    .plc-image img {
        width: 100%;
        border-radius: 16px;
        border: 1px solid rgba(255, 255, 255, 0.06);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    }

    @media (max-width: 992px) {
        .plc-image {
            margin-top: 30px;
        }
    }

    /* ---------- Eligibility Criteria Section ---------- */
    .plc-eligibility-criteria {
        background: #0C1325;
        padding: 80px 0;
    }

    @media (max-width: 768px) {
        .plc-eligibility-criteria {
            padding: 60px 0;
        }
    }

    @media (max-width: 576px) {
        .plc-eligibility-criteria {
            padding: 40px 0;
        }
    }

    .plc-eligibility-criteria-list ul {
        list-style: none;
        padding: 0;
        margin: 0 0 16px 0;
    }

    .plc-eligibility-criteria-list ul li {
        color: #B4C0DD;
        font-size: 16px;
        line-height: 1.8;
        padding: 6px 0;
        display: flex;
        align-items: flex-start;
        gap: 10px;
    }

    @media (max-width: 576px) {
        .plc-eligibility-criteria-list ul li {
            font-size: 15px;
            padding: 4px 0;
        }
    }

    .plc-eligibility-criteria-list ul li i {
        color: #C8922A;
        margin-top: 4px;
        font-size: 16px;
        flex-shrink: 0;
    }

    .plc-eligibility-criteria-list p {
        color: #B4C0DD;
        font-size: 16px;
        line-height: 1.8;
    }

    @media (max-width: 576px) {
        .plc-eligibility-criteria-list p {
            font-size: 15px;
            line-height: 1.7;
        }
    }

    /* ---------- Tax Section ---------- */
    .plc-tax {
        background: #0A0F1A;
        padding: 80px 0;
    }

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

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

    .plc-tax-list ul {
        list-style: none;
        padding: 0;
        margin: 0 0 16px 0;
    }

    .plc-tax-list ul li {
        color: #B4C0DD;
        font-size: 16px;
        line-height: 1.8;
        padding: 6px 0;
        display: flex;
        align-items: flex-start;
        gap: 10px;
    }

    @media (max-width: 576px) {
        .plc-tax-list ul li {
            font-size: 15px;
            padding: 4px 0;
        }
    }

    .plc-tax-list ul li i {
        color: #C8922A;
        margin-top: 4px;
        font-size: 16px;
        flex-shrink: 0;
    }

    .plc-tax-list p {
        color: #B4C0DD;
        font-size: 16px;
        line-height: 1.8;
    }

    @media (max-width: 576px) {
        .plc-tax-list p {
            font-size: 15px;
            line-height: 1.7;
        }
    }

    /* ---------- Support Section ---------- */
    .plc-support {
        background: #0C1325;
        padding: 80px 0;
    }

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

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

    .plc-support-list ul {
        list-style: none;
        padding: 0;
        margin: 0 0 16px 0;
    }

    .plc-support-list ul li {
        color: #B4C0DD;
        font-size: 16px;
        line-height: 1.8;
        padding: 6px 0;
        display: flex;
        align-items: flex-start;
        gap: 10px;
    }

    @media (max-width: 576px) {
        .plc-support-list ul li {
            font-size: 15px;
            padding: 4px 0;
        }
    }

    .plc-support-list ul li i {
        color: #C8922A;
        margin-top: 4px;
        font-size: 16px;
        flex-shrink: 0;
    }

    .plc-support-list p {
        color: #B4C0DD;
        font-size: 16px;
        line-height: 1.8;
    }

    @media (max-width: 576px) {
        .plc-support-list p {
            font-size: 15px;
            line-height: 1.7;
        }
    }

    /* ---------- Documents Section ---------- */
    .plc-documents {
        background: #0A0F1A;
        padding: 80px 0;
        position: relative;
        overflow: hidden;
    }

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

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

    .plc-documents::before {
        content: '';
        position: absolute;
        inset: 0;
        background: radial-gradient(ellipse at 30% 50%, rgba(200, 146, 42, 0.04) 0%, transparent 60%);
        pointer-events: none;
    }

    .plc-documents .auto-container {
        position: relative;
        z-index: 2;
    }

    .plc-documents-list ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .plc-documents-list ul li {
        color: #B4C0DD;
        font-size: 15px;
        line-height: 1.7;
        padding: 8px 0;
        display: flex;
        align-items: center;
        gap: 12px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    }

    @media (max-width: 576px) {
        .plc-documents-list ul li {
            font-size: 14px;
            padding: 6px 0;
            gap: 10px;
        }
    }

    .plc-documents-list ul li:last-child {
        border-bottom: none;
    }

    .plc-documents-list ul li i {
        color: #C8922A;
        font-size: 16px;
        flex-shrink: 0;
    }

    @media (max-width: 576px) {
        .plc-documents-list ul li i {
            font-size: 14px;
        }
    }

    /* ---------- Header Styles ---------- */
    .plc-header-left {
        text-align: left;
        margin-bottom: 30px;
        position: relative;
        z-index: 2;
    }

    @media (max-width: 768px) {
        .plc-header-left {
            margin-bottom: 24px;
        }
    }

    @media (max-width: 576px) {
        .plc-header-left {
            margin-bottom: 20px;
        }
    }

    .plc-label {
        display: inline-block;
        background: rgba(200, 146, 42, 0.12);
        padding: 6px 20px;
        border-radius: 50px;
        font-size: 12px;
        font-weight: 600;
        letter-spacing: 1.5px;
        text-transform: uppercase;
        color: #E6B04A;
        border: 1px solid rgba(200, 146, 42, 0.2);
        margin-bottom: 16px;
    }

    @media (max-width: 576px) {
        .plc-label {
            font-size: 10px;
            padding: 5px 16px;
            letter-spacing: 1px;
            margin-bottom: 12px;
        }
    }

    .plc-title {
        font-size: clamp(2rem, 4vw, 2.8rem);
        font-weight: 800;
        color: #FFFFFF;
        font-family: 'Playfair Display', Georgia, serif;
        line-height: 1.2;
    }

    @media (max-width: 576px) {
        .plc-title {
            font-size: clamp(1.6rem, 5vw, 2rem);
        }
    }

    .plc-title span {
        background: linear-gradient(135deg, #E6B04A 0%, #C8922A 40%, #F5E6C4 100%);
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
        font-style: italic;
    }

    /* ---------- Animations ---------- */
    .fade-up {
        opacity: 0;
        transform: translateY(40px);
        transition: all 0.7s ease;
    }

    .fade-up.visible {
        opacity: 1;
        transform: translateY(0);
    }

    .fade-up-delay-1 {
        transition-delay: 0.1s;
    }
    .fade-up-delay-2 {
        transition-delay: 0.2s;
    }
    .fade-up-delay-3 {
        transition-delay: 0.3s;
    }
    .fade-up-delay-4 {
        transition-delay: 0.4s;
    }
    .fade-up-delay-5 {
        transition-delay: 0.5s;
    }
    .fade-up-delay-6 {
        transition-delay: 0.6s;
    }
    .fade-up-delay-7 {
        transition-delay: 0.7s;
    }

    /* public limited company registration page
    end */



        /* ============================================
   TRADEMARK REGISTRATION PAGE
   Page-specific styles: tm-* prefix
   LEFT ALIGN HEADERS - FULLY RESPONSIVE
   ============================================ */

    /* ---------- Hero Section ---------- */
    .tm-hero {
        position: relative;
        padding: 120px 0 80px 0;
        background-size: cover !important;
        background-position: center center !important;
        background-repeat: no-repeat !important;
        overflow: hidden;
        isolation: isolate;
        min-height: 350px;
        display: flex;
        align-items: center;
    }

    .tm-hero::before {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(135deg,
                rgba(5, 8, 18, 0.88) 0%,
                rgba(10, 15, 30, 0.82) 50%,
                rgba(5, 8, 18, 0.88) 100%);
        z-index: 1;
    }

    .tm-hero .auto-container {
        position: relative;
        z-index: 2;
        width: 100%;
    }

    .tm-hero-title h1 {
        font-size: 42px;
        font-weight: 800;
        color: #FFFFFF;
        font-family: 'Playfair Display', Georgia, serif;
        margin-bottom: 8px;
        line-height: 1.2;
    }

    .tm-hero-title h1 span {
        background: linear-gradient(135deg, #E6B04A 0%, #C8922A 40%, #F5E6C4 100%);
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
    }

    .tm-breadcrumb {
        display: flex;
        flex-wrap: wrap;
        list-style: none;
        padding: 0;
        margin: 0;
        gap: 8px;
    }

    .tm-breadcrumb li {
        color: #B4C0DD;
        font-size: 15px;
    }

    .tm-breadcrumb li a {
        color: #E6B04A;
        text-decoration: none;
        transition: color 0.3s ease;
    }

    .tm-breadcrumb li a:hover {
        color: #C8922A;
    }

    .tm-breadcrumb li span {
        color: #FFFFFF;
    }

    .tm-breadcrumb li+li::before {
        content: '/';
        margin-right: 8px;
        color: rgba(255, 255, 255, 0.3);
    }

    /* ---------- Responsive Hero ---------- */
    @media (max-width: 1200px) {
        .tm-hero-title h1 {
            font-size: 38px;
        }
    }

    @media (max-width: 992px) {
        .tm-hero {
            padding: 100px 0 60px 0;
            min-height: 300px;
        }
        .tm-hero-title h1 {
            font-size: 34px;
        }
    }

    @media (max-width: 768px) {
        .tm-hero {
            padding: 80px 0 50px 0;
            min-height: 250px;
        }
        .tm-hero-title h1 {
            font-size: 28px;
        }
        .tm-breadcrumb li {
            font-size: 14px;
        }
    }

    @media (max-width: 576px) {
        .tm-hero {
            padding: 70px 0 40px 0;
            min-height: 200px;
        }
        .tm-hero-title h1 {
            font-size: 24px;
        }
        .tm-breadcrumb li {
            font-size: 13px;
        }
    }

    /* ---------- Form Section ---------- */
    .tm-form-section {
        background: #0A0F1A;
        padding: 60px 0;
    }

    @media (max-width: 768px) {
        .tm-form-section {
            padding: 40px 0;
        }
    }

    @media (max-width: 576px) {
        .tm-form-section {
            padding: 30px 0;
        }
        .tm-form-section .py-5 {
            padding-top: 20px !important;
            padding-bottom: 20px !important;
        }
    }

    .tm-form {
        border-radius: 16px;
        padding: 30px 28px 40px;
        background: rgba(255, 255, 255, 0.03);
        border: 1px solid rgba(255, 255, 255, 0.06);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
        backdrop-filter: blur(12px);
        transition: all 0.4s ease;
    }

    .tm-form:hover {
        border-color: rgba(200, 146, 42, 0.3);
        box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
    }

    .tm-form h3 {
        font-weight: 700;
        font-size: 24px;
        padding-bottom: 20px;
        text-align: center;
        text-transform: uppercase;
        letter-spacing: 1px;
        background: linear-gradient(135deg, #FFFFFF 0%, #E6B04A 40%, #C8922A 100%);
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
        margin-bottom: 24px;
    }

    @media (max-width: 576px) {
        .tm-form {
            padding: 20px 16px 30px;
        }
        .tm-form h3 {
            font-size: 20px;
            padding-bottom: 16px;
            margin-bottom: 18px;
        }
    }

    .tm-form-group {
        margin-bottom: 16px;
    }

    @media (max-width: 576px) {
        .tm-form-group {
            margin-bottom: 12px;
        }
    }

    .tm-form-group label {
        color: #B4C0DD;
        font-size: 14px;
        font-weight: 500;
        margin-bottom: 6px;
        display: block;
    }

    @media (max-width: 576px) {
        .tm-form-group label {
            font-size: 13px;
            margin-bottom: 4px;
        }
    }

    .tm-form-group label span {
        color: #FF6B6B;
    }

    .tm-form-control {
        height: 48px;
        width: 100%;
        font-size: 14px;
        color: #FFFFFF;
        background: rgba(255, 255, 255, 0.05);
        border-radius: 10px;
        padding: 10px 18px;
        border: 1px solid rgba(255, 255, 255, 0.08);
        transition: all 0.3s ease;
        box-sizing: border-box;
    }

    @media (max-width: 576px) {
        .tm-form-control {
            height: 44px;
            font-size: 13px;
            padding: 8px 14px;
            border-radius: 8px;
        }
    }

    .tm-form-control:focus {
        outline: none;
        border-color: #C8922A;
        box-shadow: 0 0 0 3px rgba(200, 146, 42, 0.15);
        background: rgba(255, 255, 255, 0.08);
    }

    .tm-btn-submit {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        width: 100%;
        background: linear-gradient(135deg, #C8922A 0%, #A8711A 100%);
        color: #FFFFFF;
        font-weight: 700;
        font-size: 16px;
        padding: 14px 32px;
        border-radius: 60px;
        border: none;
        cursor: pointer;
        transition: all 0.3s cubic-bezier(0.2, 0.9, 0.4, 1.1);
        box-shadow: 0 10px 25px -8px rgba(200, 146, 42, 0.4);
        letter-spacing: 0.5px;
        margin-top: 8px;
        position: relative;
        overflow: hidden;
    }

    @media (max-width: 576px) {
        .tm-btn-submit {
            font-size: 14px;
            padding: 12px 20px;
            border-radius: 50px;
            margin-top: 4px;
        }
    }

    .tm-btn-submit::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
        transition: left 0.5s ease;
    }

    .tm-btn-submit:hover {
        transform: translateY(-3px);
        background: linear-gradient(135deg, #E6B04A 0%, #C8922A 100%);
        box-shadow: 0 18px 32px -12px rgba(200, 146, 42, 0.6);
    }

    .tm-btn-submit:hover::before {
        left: 100%;
    }

    .tm-video {
        border-radius: 16px;
        border: 1px solid rgba(255, 255, 255, 0.06);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
        width: 100%;
        height: auto;
    }

    @media (max-width: 992px) {
        .tm-video-col {
            margin-top: 40px;
        }
    }

    @media (max-width: 576px) {
        .tm-video {
            border-radius: 12px;
        }
        .tm-video-col {
            margin-top: 30px;
        }
    }

    /* ---------- About Section ---------- */
    .tm-about {
        background: #0C1325;
        padding: 80px 0;
    }

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

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

    .tm-about-content h4 {
        font-size: 20px;
        font-weight: 700;
        color: #FFFFFF;
        margin-bottom: 16px;
    }

    @media (max-width: 576px) {
        .tm-about-content h4 {
            font-size: 17px;
            margin-bottom: 12px;
        }
    }

    .tm-about-text p {
        color: #B4C0DD;
        font-size: 16px;
        line-height: 1.8;
    }

    @media (max-width: 576px) {
        .tm-about-text p {
            font-size: 15px;
            line-height: 1.7;
        }
    }

    /* ---------- Importance Section ---------- */
    .tm-importance {
        background: #0A0F1A;
        padding: 80px 0;
    }

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

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

    .tm-importance-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
    }

    @media (max-width: 992px) {
        .tm-importance-grid {
            grid-template-columns: repeat(3, 1fr);
            gap: 18px;
        }
    }

    @media (max-width: 768px) {
        .tm-importance-grid {
            grid-template-columns: repeat(2, 1fr);
            gap: 16px;
        }
    }

    @media (max-width: 576px) {
        .tm-importance-grid {
            grid-template-columns: 1fr;
            gap: 14px;
            max-width: 400px;
            margin: 0 auto;
        }
    }

    .tm-importance-card {
        background: rgba(255, 255, 255, 0.02);
        border: 1px solid rgba(255, 255, 255, 0.05);
        border-radius: 14px;
        padding: 25px 20px;
        text-align: center;
        transition: all 0.4s ease;
    }

    .tm-importance-card:hover {
        transform: translateY(-6px);
        border-color: rgba(200, 146, 42, 0.2);
        background: rgba(255, 255, 255, 0.04);
    }

    .tm-importance-icon {
        width: 55px;
        height: 55px;
        margin: 0 auto 12px;
        background: linear-gradient(135deg, rgba(200, 146, 42, 0.12), rgba(200, 146, 42, 0.05));
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 22px;
        color: #E6B04A;
    }

    .tm-importance-card h5 {
        color: #FFFFFF;
        font-size: 15px;
        font-weight: 700;
        margin-bottom: 6px;
    }

    .tm-importance-card p {
        color: #B4C0DD;
        font-size: 13px;
        line-height: 1.6;
        margin-bottom: 0;
    }

    /* ---------- Types Section ---------- */
    .tm-types {
        background: #0C1325;
        padding: 80px 0;
    }

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

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

    .tm-types-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
    }

    @media (max-width: 992px) {
        .tm-types-grid {
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
        }
    }

    @media (max-width: 576px) {
        .tm-types-grid {
            grid-template-columns: 1fr;
            gap: 16px;
            max-width: 400px;
            margin: 0 auto;
        }
    }

    .tm-type-card {
        background: rgba(255, 255, 255, 0.02);
        border: 1px solid rgba(255, 255, 255, 0.05);
        border-radius: 16px;
        padding: 30px 24px;
        text-align: center;
        transition: all 0.4s ease;
    }

    .tm-type-card:hover {
        transform: translateY(-6px);
        border-color: rgba(200, 146, 42, 0.2);
        background: rgba(255, 255, 255, 0.04);
    }

    .tm-type-icon {
        font-size: 48px;
        color: #E6B04A;
        margin-bottom: 14px;
    }

    .tm-type-card h5 {
        color: #FFFFFF;
        font-size: 18px;
        font-weight: 700;
        margin-bottom: 10px;
    }

    .tm-type-card p {
        color: #B4C0DD;
        font-size: 14px;
        line-height: 1.7;
        margin-bottom: 0;
    }

    /* ---------- Eligibility Section ---------- */
    .tm-eligibility {
        background: #0A0F1A;
        padding: 80px 0;
    }

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

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

    .tm-eligibility-text p {
        color: #B4C0DD;
        font-size: 16px;
        line-height: 1.8;
    }

    @media (max-width: 576px) {
        .tm-eligibility-text p {
            font-size: 15px;
            line-height: 1.7;
        }
    }

    .tm-eligibility-text p+p {
        margin-top: 12px;
    }

    /* ---------- Process Cards ---------- */
    .tm-process {
        background: #0C1325;
        padding: 80px 0;
    }

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

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

    .tm-process-grid {
        display: grid;
        grid-template-columns: repeat(5, 1fr);
        gap: 16px;
    }

    @media (max-width: 992px) {
        .tm-process-grid {
            grid-template-columns: repeat(3, 1fr);
            gap: 16px;
        }
    }

    @media (max-width: 768px) {
        .tm-process-grid {
            grid-template-columns: repeat(2, 1fr);
            gap: 14px;
        }
    }

    @media (max-width: 576px) {
        .tm-process-grid {
            grid-template-columns: 1fr;
            gap: 12px;
            max-width: 400px;
            margin: 0 auto;
        }
    }

    .tm-process-card {
        background: rgba(255, 255, 255, 0.02);
        border: 1px solid rgba(255, 255, 255, 0.05);
        border-radius: 12px;
        padding: 20px 16px;
        text-align: center;
        transition: all 0.4s ease;
    }

    .tm-process-card:hover {
        transform: translateY(-4px);
        border-color: rgba(200, 146, 42, 0.15);
        background: rgba(255, 255, 255, 0.04);
    }

    .tm-process-number {
        font-family: 'Playfair Display', Georgia, serif;
        font-size: 28px;
        font-weight: 800;
        color: #C8922A;
        opacity: 0.3;
        margin-bottom: 4px;
    }

    .tm-process-card h5 {
        color: #FFFFFF;
        font-size: 14px;
        font-weight: 700;
        margin-bottom: 4px;
    }

    .tm-process-card p {
        color: #B4C0DD;
        font-size: 12px;
        line-height: 1.5;
        margin-bottom: 0;
    }

    /* ---------- Image Styles ---------- */
    .tm-image img {
        width: 100%;
        border-radius: 16px;
        border: 1px solid rgba(255, 255, 255, 0.06);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    }

    @media (max-width: 992px) {
        .tm-image {
            margin-top: 30px;
        }
    }

    /* ---------- Sections with Image + Text ---------- */
    .tm-registration {
        background: #0A0F1A;
        padding: 80px 0;
    }

    .tm-eligibility-criteria {
        background: #0C1325;
        padding: 80px 0;
    }

    .tm-benefits {
        background: #0A0F1A;
        padding: 80px 0;
    }

    .tm-support {
        background: #0C1325;
        padding: 80px 0;
    }

    @media (max-width: 768px) {
        .tm-registration,
        .tm-eligibility-criteria,
        .tm-benefits,
        .tm-support {
            padding: 60px 0;
        }
    }

    @media (max-width: 576px) {
        .tm-registration,
        .tm-eligibility-criteria,
        .tm-benefits,
        .tm-support {
            padding: 40px 0;
        }
    }

    .tm-registration-text p,
    .tm-eligibility-criteria-text p,
    .tm-benefits-text p,
    .tm-support-text p {
        color: #B4C0DD;
        font-size: 16px;
        line-height: 1.8;
    }

    @media (max-width: 576px) {
        .tm-registration-text p,
        .tm-eligibility-criteria-text p,
        .tm-benefits-text p,
        .tm-support-text p {
            font-size: 15px;
            line-height: 1.7;
        }
    }

    .tm-registration-list ol {
        padding-left: 20px;
        margin: 0 0 16px 0;
    }

    .tm-registration-list ol li {
        color: #B4C0DD;
        font-size: 16px;
        line-height: 1.8;
        padding: 4px 0;
    }

    @media (max-width: 576px) {
        .tm-registration-list ol li {
            font-size: 15px;
            line-height: 1.7;
        }
    }

    .tm-registration-list p {
        color: #B4C0DD;
        font-size: 16px;
        line-height: 1.8;
    }

    @media (max-width: 576px) {
        .tm-registration-list p {
            font-size: 15px;
            line-height: 1.7;
        }
    }

    .tm-eligibility-criteria-list ul {
        list-style: none;
        padding: 0;
        margin: 0 0 16px 0;
    }

    .tm-eligibility-criteria-list ul li {
        color: #B4C0DD;
        font-size: 16px;
        line-height: 1.8;
        padding: 6px 0;
        display: flex;
        align-items: flex-start;
        gap: 10px;
    }

    @media (max-width: 576px) {
        .tm-eligibility-criteria-list ul li {
            font-size: 15px;
            padding: 4px 0;
        }
    }

    .tm-eligibility-criteria-list ul li i {
        color: #C8922A;
        margin-top: 4px;
        font-size: 16px;
        flex-shrink: 0;
    }

    .tm-eligibility-criteria-list p {
        color: #B4C0DD;
        font-size: 16px;
        line-height: 1.8;
    }

    @media (max-width: 576px) {
        .tm-eligibility-criteria-list p {
            font-size: 15px;
            line-height: 1.7;
        }
    }

    .tm-benefits-list ul {
        list-style: none;
        padding: 0;
        margin: 0 0 16px 0;
    }

    .tm-benefits-list ul li {
        color: #B4C0DD;
        font-size: 16px;
        line-height: 1.8;
        padding: 6px 0;
        display: flex;
        align-items: flex-start;
        gap: 10px;
    }

    @media (max-width: 576px) {
        .tm-benefits-list ul li {
            font-size: 15px;
            padding: 4px 0;
        }
    }

    .tm-benefits-list ul li i {
        color: #C8922A;
        margin-top: 4px;
        font-size: 16px;
        flex-shrink: 0;
    }

    .tm-benefits-list p {
        color: #B4C0DD;
        font-size: 16px;
        line-height: 1.8;
    }

    @media (max-width: 576px) {
        .tm-benefits-list p {
            font-size: 15px;
            line-height: 1.7;
        }
    }

    .tm-support-list ul {
        list-style: none;
        padding: 0;
        margin: 0 0 16px 0;
    }

    .tm-support-list ul li {
        color: #B4C0DD;
        font-size: 16px;
        line-height: 1.8;
        padding: 6px 0;
        display: flex;
        align-items: flex-start;
        gap: 10px;
    }

    @media (max-width: 576px) {
        .tm-support-list ul li {
            font-size: 15px;
            padding: 4px 0;
        }
    }

    .tm-support-list ul li i {
        color: #C8922A;
        margin-top: 4px;
        font-size: 16px;
        flex-shrink: 0;
    }

    .tm-support-list p {
        color: #B4C0DD;
        font-size: 16px;
        line-height: 1.8;
    }

    @media (max-width: 576px) {
        .tm-support-list p {
            font-size: 15px;
            line-height: 1.7;
        }
    }

    /* ---------- Documents Section ---------- */
    .tm-documents {
        background: #0A0F1A;
        padding: 80px 0;
        position: relative;
        overflow: hidden;
    }

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

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

    .tm-documents::before {
        content: '';
        position: absolute;
        inset: 0;
        background: radial-gradient(ellipse at 30% 50%, rgba(200, 146, 42, 0.04) 0%, transparent 60%);
        pointer-events: none;
    }

    .tm-documents .auto-container {
        position: relative;
        z-index: 2;
    }

    .tm-documents-list ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .tm-documents-list ul li {
        color: #B4C0DD;
        font-size: 15px;
        line-height: 1.7;
        padding: 8px 0;
        display: flex;
        align-items: flex-start;
        gap: 12px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    }

    @media (max-width: 576px) {
        .tm-documents-list ul li {
            font-size: 14px;
            padding: 6px 0;
            gap: 10px;
        }
    }

    .tm-documents-list ul li:last-child {
        border-bottom: none;
    }

    .tm-documents-list ul li i {
        color: #C8922A;
        margin-top: 4px;
        font-size: 16px;
        flex-shrink: 0;
    }

    @media (max-width: 576px) {
        .tm-documents-list ul li i {
            font-size: 14px;
            margin-top: 3px;
        }
    }

    .tm-documents-list ul li h4 {
        color: #FFFFFF;
        font-size: 16px;
        font-weight: 700;
        margin-bottom: 2px;
    }

    @media (max-width: 576px) {
        .tm-documents-list ul li h4 {
            font-size: 14px;
        }
    }

    .tm-documents-list ul li p {
        color: #B4C0DD;
        font-size: 14px;
        line-height: 1.6;
        margin-bottom: 0;
        padding-left: 4px;
    }

    @media (max-width: 576px) {
        .tm-documents-list ul li p {
            font-size: 13px;
            line-height: 1.5;
        }
    }

    /* ---------- Header Styles ---------- */
    .tm-header-left {
        text-align: left;
        margin-bottom: 30px;
        position: relative;
        z-index: 2;
    }

    @media (max-width: 768px) {
        .tm-header-left {
            margin-bottom: 24px;
        }
    }

    @media (max-width: 576px) {
        .tm-header-left {
            margin-bottom: 20px;
        }
    }

    .tm-label {
        display: inline-block;
        background: rgba(200, 146, 42, 0.12);
        padding: 6px 20px;
        border-radius: 50px;
        font-size: 12px;
        font-weight: 600;
        letter-spacing: 1.5px;
        text-transform: uppercase;
        color: #E6B04A;
        border: 1px solid rgba(200, 146, 42, 0.2);
        margin-bottom: 16px;
    }

    @media (max-width: 576px) {
        .tm-label {
            font-size: 10px;
            padding: 5px 16px;
            letter-spacing: 1px;
            margin-bottom: 12px;
        }
    }

    .tm-title {
        font-size: clamp(2rem, 4vw, 2.8rem);
        font-weight: 800;
        color: #FFFFFF;
        font-family: 'Playfair Display', Georgia, serif;
        line-height: 1.2;
    }

    @media (max-width: 576px) {
        .tm-title {
            font-size: clamp(1.6rem, 5vw, 2rem);
        }
    }

    .tm-title span {
        background: linear-gradient(135deg, #E6B04A 0%, #C8922A 40%, #F5E6C4 100%);
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
        font-style: italic;
    }

    .tm-subtitle {
        color: #8B9AC0;
        font-size: 17px;
        max-width: 550px;
        font-weight: 400;
        line-height: 1.6;
        margin-top: 8px;
    }

    @media (max-width: 576px) {
        .tm-subtitle {
            font-size: 14px;
        }
    }

    /* ---------- Animations ---------- */
    .fade-up {
        opacity: 0;
        transform: translateY(40px);
        transition: all 0.7s ease;
    }

    .fade-up.visible {
        opacity: 1;
        transform: translateY(0);
    }

    .fade-up-delay-1 {
        transition-delay: 0.1s;
    }
    .fade-up-delay-2 {
        transition-delay: 0.2s;
    }
    .fade-up-delay-3 {
        transition-delay: 0.3s;
    }
    .fade-up-delay-4 {
        transition-delay: 0.4s;
    }
    .fade-up-delay-5 {
        transition-delay: 0.5s;
    }
    .fade-up-delay-6 {
        transition-delay: 0.6s;
    }
    .fade-up-delay-7 {
        transition-delay: 0.7s;
    }

    /* trademark registration page
    end  */