/*
Theme Name: Visament OCI Services
Theme URI: https://visament.com
Author: Visament
Author URI: https://visament.com
Description: Professional landing page theme for Visament OCI Card Services with full admin panel content management.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: visament
Requires at least: 6.0
Requires PHP: 8.0
*/

/* ============================================
   CSS VARIABLES & RESET
   ============================================ */
:root {
    --primary: #023987;
    --primary-dark: #0D47A1;
    --primary-light: #1E88E5;
    --primary-gradient: linear-gradient(135deg, #023987 0%, #0D47A1 100%);
    --accent: #FF6F00;
    --accent-light: #FFA000;
    --text-dark: #1a1a2e;
    --text-body: #4a4a68;
    --text-light: #7a7a96;
    --bg-white: #ffffff;
    --bg-light: #F5F7FA;
    --bg-blue-light: #EBF2FC;
    --bg-section: #F8FAFD;
    --border: #E2E8F0;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.1);
    --shadow-lg: 0 8px 32px rgba(0,0,0,0.12);
    --shadow-card: 0 2px 12px rgba(21,101,192,0.08);
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Open Sans', sans-serif;
    --container: 1200px;
}

*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--text-body);
    line-height: 1.7;
    background: var(--bg-white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul, ol {
    list-style: none;
}

.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 20px;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--text-dark);
    font-weight: 700;
    line-height: 1.3;
}

h1 { font-size: clamp(1.8rem, 4vw, 2.6rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.1rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); }
h4 { font-size: 1.1rem; }

p { margin-bottom: 1rem; }

.section-title {
    text-align: center;
    margin-bottom: 12px;
    position: relative;
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    max-width: 680px;
    margin: 0 auto 48px;
    font-size: 0.95rem;
}

.section-divider {
    width: 60px;
    height: 3px;
    background: var(--primary);
    margin: 12px auto 20px;
    border-radius: 3px;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: var(--radius-sm);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9rem;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}

.btn-primary {
    background: var(--primary);
    color: #fff;
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(21,101,192,0.35);
}

.btn-secondary {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-secondary:hover {
    background: var(--primary);
    color: #fff;
}

.btn-accent {
    background: var(--accent);
    color: #fff;
}

.btn-accent:hover {
    background: #E65100;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255,111,0,0.35);
}

.btn-white {
    background: #fff;
    color: var(--primary);
}

.btn-white:hover {
    background: var(--bg-light);
    transform: translateY(-2px);
}

.btn-sm {
    padding: 8px 18px;
    font-size: 0.82rem;
}

.btn-lg {
    padding: 14px 36px;
    font-size: 1rem;
}

/* ============================================
   HEADER / NAVIGATION
   ============================================ */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--bg-white);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.site-header.scrolled {
    box-shadow: var(--shadow-md);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.site-logo img {
    height:55px;
    width: auto;
}

.site-logo .logo-text {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
}

.site-logo .logo-text span {
    color: var(--text-dark);
}

.main-nav ul {
    display: flex;
    gap: 32px;
    align-items: center;
}

.main-nav a {
    font-family: var(--font-heading);
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--text-dark);
    position: relative;
    padding: 4px 0;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
}

.main-nav a:hover::after,
.main-nav a.active::after {
    width: 100%;
}

.main-nav a:hover {
    color: var(--primary);
}

.header-cta .btn {
    padding: 10px 24px;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 5px;
    background: none;
    border: none;
}

.mobile-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text-dark);
    transition: var(--transition);
    border-radius: 2px;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero-section {
    padding: 120px 0 80px;
    /* background: linear-gradient(135deg, #f8faff 0%, #eef4ff 50%, #f0f6ff 100%); */
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 70% 60% at -10% 50%, rgba(14, 140, 126, 0.07) 0%, transparent 65%), radial-gradient(ellipse 50% 50% at 110% 20%, rgba(244, 161, 42, 0.10) 0%, transparent 60%);
    pointer-events: none;
    z-index: -1;
}

.hero-section::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(13, 31, 76, 0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(13, 31, 76, 0.03) 1px, transparent 1px);
    background-size: 48px 48px;
    pointer-events: none;
    z-index: -1;
}

/* .hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(21,101,192,0.06) 0%, transparent 70%);
    pointer-events: none;
} */

.hero-inner {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 60px;
    align-items: center;
}

.hero-content h1 {
    margin-bottom: 16px;
    font-size:50px;
}

.hero-content h1 .highlight {
    color: var(--primary);
}

.hero-content > p {
    color: var(--text-light);
    margin-bottom: 24px;
    font-size: 1rem;
    max-width: 520px;
}

.hero-trust {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 28px;
    flex-wrap: wrap;
}

.trust-avatars {
    display: flex;
}

/* .trust-avatars img {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2px solid #fff;
    margin-left: -10px;
    object-fit: cover;
}

.trust-avatars img:first-child {
    margin-left: 0;
} */

.trust-text {
    font-size: 0.85rem;
    color: var(--text-light);
}

.trust-text strong {
    color: var(--text-dark);
}

.hero-stats {
    display: flex;
    gap:20px;
    flex-wrap: wrap;
}

.hero-stat {
    display: flex;
    align-items: center;
    gap: 8px;
}

.hero-stat i {
      color: var(--text-dark);
    font-size: 1.1rem;
      background: linear-gradient(90deg, #FAFAFA 0%, #EBE5FF 100%);
    border-radius: var(--theme_border_radius_5);
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-stat:nth-child(2) i {
    background: linear-gradient(90deg, #FAFAFA 0%, #FFE5E5 100%);
}

.hero-stat:nth-child(3) i {
    background: linear-gradient(90deg, #FAFAFA 0%, #E5FFEB 100%);
}

.hero-stat:nth-child(4) i {
    background: linear-gradient(90deg, #FAFAFA 0%, #E5F6FF 100%);
}

.hero-stat span {
    font-size: 0.85rem;
    color: var(--text-body);
}

.hero-stat strong {
    color: var(--text-dark);
}

/* Hero Form Card */
.hero-form-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.form-card-header {
    background: var(--primary-gradient);
    padding: 20px 28px;
    color: #fff;
}

.form-card-header h3 {
    color: #fff;
    font-size: 1.15rem;
    margin-bottom: 2px;
}

.form-card-header p {
    font-size: 0.82rem;
    opacity: 0.85;
    margin: 0;
}

.form-card-body {
    padding: 24px 28px 28px;
}

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

.form-group label {
    display: block;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 6px;
    font-family: var(--font-heading);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 10px 14px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 0.88rem;
    color: var(--text-dark);
    transition: var(--transition);
    background: var(--bg-white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(21,101,192,0.1);
}

.form-card-body .btn {
    width: 100%;
    margin-top: 4px;
}

.form-partners {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 14px 28px;
    border-top: 1px solid var(--border);
    flex-wrap: wrap;
}

.form-partners span {
    font-size: 0.75rem;
    color: var(--text-light);
}

.form-partners img {
    height: 22px;
    opacity: 0.5;
    filter: grayscale(100%);
    transition: var(--transition);
}

.form-partners img:hover {
    opacity: 1;
    filter: grayscale(0%);
}
/* ============================================
   SERVICE CATEGORIES / PRICING CARDS
   ============================================ */
.services-bar {
    background: var(--bg-light);
    padding: 48px 0;
    position: relative;
    z-index: 2;
}

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

.pricing-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1.5px solid var(--border);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.pricing-card-header {
    background: linear-gradient(135deg, #E3F0FF 0%, #F0F7FF 100%);
    padding: 18px 15px;
    border-bottom: 1.5px solid #D6E8FA;
}

.pricing-card-header h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
    text-align: center;
}

.pricing-card-body {
    padding: 20px 24px;
    flex: 1;
}

.pricing-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 9px 0;
    border-bottom: 1px dashed #EDF1F7;
}

.pricing-row:last-child {
    border-bottom: none;
}

.pricing-label {
    font-size: 0.88rem;
    color: var(--text-light);
    font-weight: 400;
}

.pricing-value {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-dark);
    text-align: right;
}

.pricing-card-footer {
    padding: 0 24px 24px;
}

.pricing-btn {
    width: 100%;
    padding: 12px 20px;
    font-size: 0.88rem;
    border-radius: var(--radius-sm);
    background: linear-gradient(135deg, #1E88E5 0%, #023987 100%);
    justify-content: center;
}

.pricing-btn:hover {
    background: linear-gradient(135deg, #023987 0%, #0D47A1 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(21, 101, 192, 0.35);
}

@media (max-width: 1024px) {
    .services-pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .services-pricing-grid {
        grid-template-columns: 1fr;
    }
}
/* ============================================
   REQUIRED DOCUMENTS SECTION
   ============================================ */
.documents-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.documents-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.doc-list {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: var(--shadow-card);
}

.doc-list h3 {
    font-size: 1.15rem;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--bg-blue-light);
}

.doc-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
}

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

.doc-item i {
    color: var(--primary);
    margin-top: 3px;
    flex-shrink: 0;
}

.doc-item span {
    font-size: 0.9rem;
}

.doc-note {
    margin-top: 20px;
    padding: 16px;
    background: var(--bg-blue-light);
    border-radius: var(--radius-md);
    border-left: 3px solid var(--primary);
}

.doc-note h4 {
    font-size: 0.9rem;
    margin-bottom: 8px;
    color: var(--primary);
}

.doc-note ul li {
    font-size: 0.85rem;
    padding: 3px 0;
    padding-left: 16px;
    position: relative;
}

.doc-note ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary);
}

/* ============================================
   WHY OCI & BASICS SECTION
   ============================================ */
.why-oci-section {
    padding: 80px 0;
}

.why-oci-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.why-oci-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: 36px;
    box-shadow: var(--shadow-card);
    border: 1px solid var(--border);
}

.why-oci-card h3 {
    font-size: 1.2rem;
    margin-bottom: 16px;
    color: var(--primary-dark);
}

.why-oci-card p {
    font-size: 0.92rem;
    margin-bottom: 16px;
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 8px 0;
    font-size: 0.9rem;
}

.feature-list li i {
    color: #4CAF50;
    margin-top: 3px;
    flex-shrink: 0;
}

/* ============================================
   HOW TO APPLY (STEPS) SECTION
   ============================================ */
.steps-section {
    padding: 80px 0;
    background: var(--bg-light);
}

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

.steps-grid::before {
    content: '';
    position: absolute;
    top: 44px;
    left: 12%;
    right: 12%;
    height: 2px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--primary-light) 100%);
    z-index: 0;
}

.step-card {
    text-align: center;
    position: relative;
    z-index: 1;
}

.step-number {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--primary-gradient);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.3rem;
    box-shadow: 0 4px 16px rgba(21,101,192,0.3);
}

.step-icon {
    width: 88px;
    height: 88px;
    border-radius: 50%;
    background: var(--bg-white);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    box-shadow: var(--shadow-card);
    font-size: 2rem;
    color: var(--primary);
}

.step-card h4 {
    font-size: 0.95rem;
    margin-bottom: 8px;
}

.step-card p {
    font-size: 0.82rem;
    color: var(--text-light);
    margin: 0;
}

/* ============================================
   OCI SERVICES OFFERED
   ============================================ */
.oci-services-section {
    padding: 80px 0;
}

.oci-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.oci-service-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    border: 1.5px solid var(--border);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.oci-service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--primary-gradient);
    opacity: 0;
    transition: var(--transition);
}

.oci-service-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.oci-service-card:hover::before {
    opacity: 1;
}

.oci-service-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-md);
    background: var(--bg-blue-light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    font-size: 1.5rem;
    color: var(--primary);
}

.oci-service-card h4 {
    font-size: 1rem;
    margin-bottom: 12px;
}

.oci-service-card ul {
    margin-bottom: 18px;
}

.oci-service-card ul li {
    font-size: 0.84rem;
    padding: 4px 0;
    padding-left: 18px;
    position: relative;
    color: var(--text-body);
}

.oci-service-card ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: 700;
    font-size: 0.8rem;
}

/* ============================================
   WHAT IS OCI CARD SECTION
   ============================================ */
.what-is-oci-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.what-is-oci-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.what-is-oci-image {
    position: relative;
}

.what-is-oci-image img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.what-is-oci-image::after {
    content: '';
    position: absolute;
    bottom: -12px;
    right: -12px;
    width: 60%;
    height: 60%;
    border: 3px solid var(--primary);
    border-radius: var(--radius-lg);
    z-index: -1;
    opacity: 0.2;
}

.what-is-oci-content h2 {
    text-align: left;
    margin-bottom: 16px;
}

.what-is-oci-content p {
    margin-bottom: 16px;
    font-size: 0.95rem;
}

/* ============================================
   FAST TRACK CTA SECTION
   ============================================ */
.fast-track-section {
    padding: 60px 0;
    background: var(--primary-gradient);
    position: relative;
    overflow: hidden;
}

.fast-track-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
}

.fast-track-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(255,255,255,0.03);
}

.fast-track-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 1;
}

.fast-track-content h2 {
    color: #fff;
    margin-bottom: 12px;
    text-align: left;
}

.fast-track-content p {
    color: rgba(255,255,255,0.85);
    max-width: 600px;
    margin-bottom: 0;
}

/* ============================================
   BENEFITS & ELIGIBILITY SECTION
   ============================================ */
.benefits-section {
    padding: 80px 0;
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.benefits-content .tab-buttons {
    display: flex;
    gap: 12px;
    margin-bottom: 24px;
}

.tab-btn {
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    font-family: var(--font-heading);
    cursor: pointer;
    transition: var(--transition);
    border: 1.5px solid var(--border);
    background: transparent;
    color: var(--text-body);
}

.tab-btn.active,
.tab-btn:hover {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

.benefit-item {
    display: flex;
    gap: 14px;
    padding: 12px 0;
}

.benefit-icon {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-sm);
    background: var(--bg-blue-light);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--primary);
}

.benefit-item h4 {
    font-size: 0.95rem;
    margin-bottom: 4px;
}

.benefit-item p {
    font-size: 0.84rem;
    margin: 0;
    color: var(--text-light);
}

.benefits-image img {
    border-radius: var(--radius-lg);
}

/* ============================================
   WHY VISAMENT SECTION
   ============================================ */
.why-visament-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.why-visament-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.why-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid var(--border);
}

.why-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary);
}

.why-card-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--bg-blue-light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    font-size: 1.5rem;
    color: var(--primary);
    transition: var(--transition);
}

.why-card:hover .why-card-icon {
    background: var(--primary);
    color: #fff;
}

.why-card h4 {
    font-size: 1rem;
    margin-bottom: 10px;
}

.why-card p {
    font-size: 0.86rem;
    color: var(--text-light);
    margin: 0;
}

/* ============================================
   TESTIMONIALS / SUCCESS STORIES
   ============================================ */
.testimonials-section {
    padding: 80px 0;
}

.testimonials-slider {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.testimonial-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: 28px;
    border: 1px solid var(--border);
    transition: var(--transition);
    position: relative;
}

.testimonial-card:hover {
    box-shadow: var(--shadow-md);
}

.testimonial-card::before {
    content: '"';
    font-family: Georgia, serif;
    font-size: 4rem;
    color: var(--primary);
    opacity: 0.15;
    position: absolute;
    top: 10px;
    right: 20px;
    line-height: 1;
}

.testimonial-stars {
    display: flex;
    gap: 3px;
    margin-bottom: 14px;
}

.testimonial-stars i {
    color: #FFC107;
    font-size: 0.85rem;
}

.testimonial-text {
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 18px;
    color: var(--text-body);
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    background: var(--bg-blue-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-weight: 700;
    font-family: var(--font-heading);
}

.testimonial-author-info h5 {
    font-size: 0.9rem;
    font-weight: 600;
}

.testimonial-author-info span {
    font-size: 0.78rem;
    color: var(--text-light);
}

/* ============================================
   ADDITIONAL SERVICES SECTION
   ============================================ */
.additional-services-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.additional-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.additional-card {
    background: var(--bg-white);
    border-radius: var(--radius-md);
    padding: 24px 20px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid var(--border);
}

.additional-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-card);
    transform: translateY(-4px);
}

.additional-card-icon {
    width: 52px;
    height: 52px;
    border-radius: var(--radius-md);
    background: var(--bg-blue-light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
    font-size: 1.3rem;
    color: var(--primary);
}

.additional-card h4 {
    font-size: 0.9rem;
    margin-bottom: 8px;
}

.additional-card p {
    font-size: 0.8rem;
    color: var(--text-light);
    margin-bottom: 14px;
}

/* ============================================
   FAQ SECTION
   ============================================ */
.faq-section {
    padding: 80px 0;
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    max-width: 1000px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    border-color: var(--primary);
}

.faq-item.active {
    border-color: var(--primary);
    box-shadow: var(--shadow-card);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    cursor: pointer;
    gap: 12px;
    background: none;
    border: none;
    width: 100%;
    text-align: left;
    font-family: var(--font-heading);
}

.faq-question h4 {
    font-size: 0.88rem;
    font-weight: 600;
    flex: 1;
}

.faq-question i {
    color: var(--primary);
    transition: var(--transition);
    flex-shrink: 0;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}

.faq-answer-inner {
    padding: 0 20px 16px;
    font-size: 0.86rem;
    color: var(--text-light);
    line-height: 1.7;
}



footer{background-color:#001424;color: #fff;padding:3rem 1rem;font-size: 15px;}
/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .hero-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-form-card {
        max-width: 480px;
    }

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

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

    .steps-grid::before {
        display: none;
    }

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

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

@media (max-width: 768px) {
    .main-nav,
    .header-cta {
        display: none;
    }

    .mobile-toggle {
        display: flex;
    }

    .hero-section {
        padding: 100px 0 60px;
    }

    .hero-inner {
        grid-template-columns: 1fr;
    }

    .services-bar-inner {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }

    .documents-grid,
    .why-oci-grid,
    .what-is-oci-grid,
    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .testimonials-slider {
        grid-template-columns: 1fr;
    }

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

    .fast-track-inner {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .fast-track-content h2 {
        text-align: center;
    }

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

    .why-visament-grid {
        grid-template-columns: 1fr;
    }

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

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

@media (max-width: 480px) {
    .services-bar-inner {
        grid-template-columns: repeat(2, 1fr);
    }

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

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

    .hero-stats {
        gap:10px;
    }
}

/* ============================================
   ANIMATIONS
   ============================================ */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s 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; }

/* Mobile Nav Overlay */
.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.mobile-nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-nav-panel {
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100%;
    background: var(--bg-white);
    z-index: 1001;
    transition: var(--transition);
    padding: 80px 24px 24px;
    box-shadow: var(--shadow-lg);
}

.mobile-nav-panel.active {
    right: 0;
}

.mobile-nav-panel a {
    display: block;
    padding: 12px 0;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-dark);
    border-bottom: 1px solid var(--border);
}

.mobile-nav-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-dark);
}


/*blogs-css*
    /* Section & Container Setup */
    .blog-listing-section {
        padding: 100px 0;
        background-color: #f9fafb; /* Light clean background */
    }
    .custom-container {
        max-width: 1140px;
        margin: 0 auto;
        padding: 0 15px;
    }

    /* Horizontal Card UI Design */
    .blog-horizontal-card {
        display: flex;
        background: #ffffff;
        border-radius: 12px;
        overflow: hidden;
        margin-bottom: 35px;
        box-shadow: 0 5px 25px rgba(0,0,0,0.06); /* Soft Shadow */
        transition: all 0.3s ease;
        border: 1px solid #eee;
        text-decoration: none !important;
    }
    .blog-horizontal-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 35px rgba(0,0,0,0.12);
    }

    /* Left Side - Image Box */
    .blog-img-box {
        flex: 0 0 42%; /* Image taking 42% width */
        position: relative;
        overflow: hidden;
        min-height: 280px;
    }
    .blog-img-box img {
        width: 100%;
        height: 100%;
        /* object-fit: cover;  */
        transition: 0.5s transform;
    }
    .blog-horizontal-card:hover .blog-img-box img {
        transform: scale(1.05);
    }

    /* Right Side - Content Box */
    .blog-content-box {
        flex: 1;
        padding: 40px;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .blog-category-tag {
        font-size: 11px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 1.2px;
        color: #64748b;
        margin-bottom: 12px;
        display: block;
    }

    .blog-post-title {
        font-size:24px;
        line-height: 1.3;
        color: #1e293b;
        margin-bottom: 15px;
        font-weight: 700;
        display: block;
        transition: 0.2s;
    }
    .blog-horizontal-card:hover .blog-post-title {
        color:var(--primary); /* Primary color from your logo */
    }

    .blog-meta-date {
        font-size: 14px;
        color: #94a3b8;
        margin-bottom: 20px;
        display: block;
    }

    .blog-post-excerpt {
        font-size: 16px;
        line-height: 1.7;
        color: #475569;
        margin-bottom: 25px;
        /* Limiting text to 3 lines */
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .blog-read-more {
        font-size: 13px;
        font-weight: 700;
        text-transform: uppercase;
        color: #1e293b;
        letter-spacing: 0.5px;
        border-bottom: 2px solid #e2e8f0;
        align-self: flex-start;
        padding-bottom: 3px;
        transition: 0.3s;
    }
    .blog-horizontal-card:hover .blog-read-more {
        border-color: #0044cc;
        color: #0044cc;
    }


   /* Premium Blog UI Styles */
    .blog-single-wrapper {
        background-color: #f8fafc;
        padding: 60px 0;
        font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    }
    .blog-container {
        max-width:1000px;
        margin: 0 auto;
        padding: 0 20px;
    }
    .blog-card {
        background: #ffffff;
        border-radius: 16px;
        overflow: hidden;
        padding: 40px;
    }
    /* Header Section */
    .entry-header {
        text-align: center;
        margin-bottom: 40px;
    }
    .entry-category {
        display: inline-block;
        background: #e0e7ff;
        color: #4338ca;
        padding: 5px 15px;
        border-radius: 50px;
        font-size: 13px;
        font-weight: 600;
        text-transform: uppercase;
        margin-bottom: 15px;
    }
    .entry-title {
        font-size: 42px;
        line-height: 1.2;
        color: #1e293b;
        font-weight: 800;
        margin-bottom: 20px;
    }
    .entry-meta {
        color: #64748b;
        font-size: 15px;
        display: flex;
        justify-content: center;
        gap: 20px;
    }
    /* Featured Image */
    .featured-image-container {
        margin: 0 -40px 40px -40px; /* Pulls image to edges of card */
    }
    .featured-image-container img {
        width: 100%;
        height: auto;
        display: block;
    }
   /* --- CONTENT & LINK STYLING --- */
    .entry-content {
        font-size:17px;
        line-height: 1.8;
        color: #334155; /* Dark Slate Gray (Easier on eyes than pure black) */
    }

    .entry-content ul {
    list-style: disc;
    margin:20px;
}

/* Table Layout Reset */
table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    background-color: #ffffff;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    border-radius: 8px;
    overflow: hidden;
    border: none !important; /* WordPress default borders hatane ke liye */
}

/* Header Styling */
table thead tr, 
table tbody tr:first-child {
    background-color:#023987!important;
    color: #ffffff !important;
    text-align: left;
}

table td, table th {
    padding: 15px 20px !important;
    border: 1px solid #f0f0f0 !important;
}

/* Header text color reset */
table tr:first-child td b, 
table tr:first-child td p b {
    color: #ffffff !important;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 1px;
}

/* Zebra Striping (Alternate Rows) */
table tbody tr:nth-child(even) {
    background-color: #f8fafc;
}



/* Removing any extra padding from WordPress default p tags inside td */
table td p {
    margin: 0 !important;
    padding: 0 !important;
}

/* Mobile Responsive Wrapper (Optional but recommended) */
@media screen and (max-width: 600px) {
    table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
    }
}

    /* This targets all internal/external links */
    .entry-content a {
        color: #1d4ed8; /* Modern Link Blue */
        text-decoration: underline;
        text-underline-offset: 4px;
        font-weight: 500;
        transition: all 0.2s ease;
    }

    .entry-content a:hover {
        color: #d97706; /* Logo Orange/Amber on hover */
        text-decoration-thickness: 2px;
    }

    .entry-content h2, .entry-content h3 {
        color: #0f172a;
        margin-top: 45px;
        margin-bottom: 20px;
        font-weight: 700;
    }
    
    /* FAQ styling improvement */
    /* .entry-content strong {
        color: #1e293b;
    } */
    /* Comments Section */
    .comments-area {
        margin-top: 50px;
        padding-top: 40px;
        border-top: 1px solid #e2e8f0;
    }
    #respond h3 {
        font-size: 24px;
        margin-bottom: 20px;
    }
    .comment-form-cookies-consent{display: flex;
    align-items: center;
    gap:10px;}
    .comment-form input, .comment-form textarea {
        width: 100%;
        padding: 12px 15px;
        border: 1px solid #cbd5e1;
        border-radius: 8px;
        margin-bottom: 15px;
        font-size: 16px;
    }
    #wp-comment-cookies-consent{width: auto;margin-bottom: 0;}
    .submit {
        background: #003366; /* Matching your logo blue */
        color: white;
        padding: 12px 30px;
        border: none;
        border-radius: 8px;
        cursor: pointer;
        font-weight: 600;
        transition: 0.3s;
    }
    .submit:hover {
        background: #002244;
    }


/* Container for the tags */
.custom-post-tags {
    display: flex;
    flex-wrap: wrap; /* Makes it responsive */
    gap: 10px;       /* Spacing between tags */
    margin-top: 20px;
    margin-bottom: 20px;
}

/* Individual Tag Style */
.custom-post-tags .tag-link {
    background-color: #f0f4f8; /* Light gray/blue background */
    color: #2d3748;            /* Dark text color */
    padding: 8px 16px;
    border-radius: 50px;       /* Pill shape */
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease; /* Smooth hover effect */
    display: inline-block;
}

/* Hover Effect */
.custom-post-tags .tag-link:hover {
    background-color: #3182ce; /* Change to your brand color */
    color: #ffffff;
    border-color: #3182ce;
    transform: translateY(-2px); /* Slight lift effect */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* ============================================
   BLOG PAGINATION DESIGN
   ============================================ */
.blog-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 50px 0 30px;
    width: 100%;
}

.blog-pagination .nav-links,
.blog-pagination {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    align-items: center;
}

.blog-pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    height: 44px;
    padding: 0 14px;
    font-size: 15px;
    font-weight: 600;
    color: #1e40af;
    background: #ffffff;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.04);
}

.blog-pagination .page-numbers:hover {
    background: #1e40af;
    color: #ffffff;
    border-color: #1e40af;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(30, 64, 175, 0.25);
}

.blog-pagination .page-numbers.current {
    background: #1e40af;
    color: #ffffff;
    border-color: #1e40af;
    box-shadow: 0 4px 12px rgba(30, 64, 175, 0.3);
    cursor: default;
}

.blog-pagination .page-numbers.dots {
    background: transparent;
    border: none;
    color: #9ca3af;
    box-shadow: none;
}

.blog-pagination .page-numbers.dots:hover {
    background: transparent;
    color: #9ca3af;
    transform: none;
    box-shadow: none;
}

/* Prev / Next buttons */
.blog-pagination .prev,
.blog-pagination .next {
    padding: 0 20px;
    font-weight: 600;
    background: #f3f4f6;
    color: #1e40af;
}

.blog-pagination .prev:hover,
.blog-pagination .next:hover {
    background: #1e40af;
    color: #ffffff;
}

/* Mobile responsive */
@media (max-width: 600px) {
    .blog-pagination {
        gap: 6px;
        margin: 30px 0 20px;
    }
    
    .blog-pagination .page-numbers {
        min-width: 38px;
        height: 38px;
        padding: 0 10px;
        font-size: 14px;
    }
    
    .blog-pagination .prev,
    .blog-pagination .next {
        padding: 0 14px;
        font-size: 13px;
    }
}

/* Optional: Make it look good on very small screens */
@media (max-width: 480px) {
    .custom-post-tags .tag-link {
        padding: 6px 12px;
        font-size: 13px;
    }
}

    @media (max-width: 768px) {
        .entry-title { font-size: 28px; }
        .blog-card { padding: 20px; }
        .featured-image-container { margin: 0 -20px 20px -20px; }
        .blog-container{padding: 0;}
        .entry-content{font-size: 17px;;}
    }

    /* Mobile Responsive Logic */
    @media (max-width: 768px) {
        .blog-horizontal-card {
            flex-direction: column; /* Stacks vertically on mobile */
        }
        .blog-img-box {
            flex: 0 0 220px;
        }
        .blog-content-box {
            padding: 25px;
        }
        .blog-post-title {
            font-size: 20px;
        }
    }