:root {
    --primary-color: #D4AF37;
    --primary-dark: #B8860B;
    --secondary-color: #0B1F3A;
    --text-dark: #1F2937;
    --text-light: #6B7280;
    --bg-light: #F9FAFB;
    --bg-white: #FFFFFF;
    --whatsapp-green: #22C55E;
    --container-width: 1200px;
    --header-height: 80px;
    --transition: all 0.3s ease;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

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

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--bg-white);
    overflow-x: hidden;
}

h1,
h2,
h3,
.brand-name {
    font-family: 'Montserrat', sans-serif;
}

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

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

ul {
    list-style: none;
}

img {
    max-width: 100%;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    text-align: center;
}

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

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-primary-dark {
    background-color: var(--secondary-color);
    color: var(--bg-white);
}

.btn-primary-dark:hover {
    background-color: #1a3a5a;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Header */
.header {
    height: var(--header-height);
    background-color: var(--bg-white);
    display: flex;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: var(--shadow);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

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

.nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-links {
    display: flex;
    gap: 25px;
}

.nav-links a {
    font-weight: 500;
    color: var(--secondary-color);
}

.nav-links a:hover,
.nav-links a.active {
    color: #0066CC;
}

.login-link {
    border-left: 1px solid #ddd;
    padding-left: 20px;
    margin-left: 5px;
    font-weight: 600 !important;
}

@media (max-width: 768px) {
    .login-link {
        border-left: none;
        padding-left: 0;
        margin-left: 0;
    }
}

.menu-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
}

/* Hero Section */
.hero {
    padding-top: calc(var(--header-height) + 60px);
    padding-bottom: 80px;
    background-color: var(--secondary-color);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 70% 30%, rgba(212, 175, 55, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.tagline {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.8);
}

.hero-title {
    font-size: clamp(32px, 5vw, 64px);
    font-weight: 800;
    margin-bottom: 25px;
    line-height: 1.1;
}

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

.hero-description {
    font-size: 18px;
    max-width: 800px;
    margin: 0 auto 40px;
    color: rgba(255, 255, 255, 0.9);
}

.hero-actions {
    margin-bottom: 60px;
}

.hero-features {
    display: grid;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    grid-template-columns: repeat(2, 1fr);
    /* margin: 0  auto; */

}

.feature-capsule {
    background-color: rgba(255, 255, 255, 0.95);
    color: var(--secondary-color);
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    box-shadow: var(--shadow);
    white-space: nowrap;
}

/* Stats Section */
.stats {
    padding: 80px 0;
    background-color: var(--bg-light);
    text-align: center;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 50px;
    color: var(--secondary-color);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.stat-card {
    background-color: var(--bg-white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.stat-number {
    font-size: 42px;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.stat-label {
    font-size: 16px;
    color: var(--secondary-color);
    font-weight: 500;
}

/* Partners Section */
.partners {
    padding: 60px 0;
    text-align: center;
    overflow: hidden;
}

.section-subtitle {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--text-light);
    margin-bottom: 20px;
}

.partners-slider {
    display: flex;
    align-items: center;
    gap: 60px;
    opacity: 1;
    /* Colorful, not gray */
    width: max-content;
    animation: scroll 30s linear infinite;
}

.partners-box {
    background-color: var(--bg-white);
    padding: 25px 20px;
    border-radius: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.05);
    overflow: hidden;
    position: relative;
}

.partners-slider:hover {
    animation-play-state: paused;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
        /* Move by half since content is duplicated */
    }
}

.partner-logo img {
    height: 45px;
    transition: var(--transition);
}

.partner-logo img:hover {
    transform: scale(1.1);
}

/* Why Us Section */
.why-us {
    padding: 80px 0;
    text-align: center;
    background-color: var(--bg-white);
}

.underline {
    width: 60px;
    height: 4px;
    background-color: var(--primary-color);
    margin: -30px auto 50px;
    border-radius: 2px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.feature-card {
    padding: 50px 40px;
    border-radius: 24px;
    background-color: var(--bg-white);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: var(--transition);
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-color);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background-color: rgba(212, 175, 55, 0.1);
    color: var(--primary-color);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    margin: 0 auto 25px;
    transition: var(--transition);
}

.feature-card:hover .feature-icon {
    background-color: var(--primary-color);
    color: white;
    transform: rotateY(180deg);
}

.feature-card h3 {
    margin-bottom: 15px;
    font-size: 22px;
    color: var(--secondary-color);
    font-weight: 700;
}

.feature-card p {
    color: var(--text-light);
    font-size: 15px;
    line-height: 1.7;
}

/* Testimonials */
.testimonials {
    padding: 80px 0;
    background-color: var(--bg-light);
    text-align: center;
    overflow: hidden;
    /* Contain the moving slider */
}

.testimonial-slider {
    display: flex;
    gap: 30px;
    margin-top: 50px;
    width: max-content;
    animation: scroll-testimonials 40s linear infinite;
}

.testimonial-slider:hover {
    animation-play-state: paused;
}

@keyframes scroll-testimonials {
    0% {
        transform: translateX(0);
    }

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

.testimonial-card {
    background-color: var(--bg-white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow);
    text-align: left;
    width: 350px;
    /* Fixed width for consistent scrolling */
    flex-shrink: 0;
}

.testimonial-card p {
    font-style: italic;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.testimonial-card h4 {
    margin-bottom: 5px;
}

.stars {
    color: var(--primary-color);
}

/* Footer */
.footer {
    padding: 80px 0 40px;
    background-color: #0b1f3a;
    color: #ffffff;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
}

.footer-col h3 {
    margin-bottom: 25px;
    font-size: 20px;
    position: relative;
    color: #ffffff;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--primary-color);
}

.footer-col p,
.footer-col li {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 10px;
    font-size: 15px;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.footer-col ul li a:hover {
    color: var(--primary-color);
    padding-left: 8px;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.newsletter-form input {
    padding: 12px 20px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background-color: rgba(255, 255, 255, 0.05);
    color: #ffffff;
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

/* WhatsApp FAB */
.whatsapp-fab {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: var(--whatsapp-green);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: var(--shadow-lg);
    z-index: 1000;
    transition: var(--transition);
}

.whatsapp-fab:hover {
    transform: scale(1.1);
}

/* Page Hero (Shared) */
.page-hero {
    padding: calc(var(--header-height) + 60px) 0 60px;
    background-color: var(--secondary-color);
    color: white;
    text-align: center;
}

.page-title {
    font-size: 48px;
    margin-bottom: 20px;
    font-weight: 800;
}

.page-description {
    font-size: 18px;
    max-width: 900px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.9);
}

/* Whitelabel Hero Specifics */
.whitelabel-hero {
    padding: calc(var(--header-height) + 100px) 0 120px;
    position: relative;
    overflow: hidden;
}

.whitelabel-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 80% 20%, rgba(212, 175, 55, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 20% 80%, rgba(0, 102, 204, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero-tagline {
    display: block;
    color: var(--primary-color);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 3px;
    margin-bottom: 25px;
    text-transform: uppercase;
    animation: fadeInUp 0.8s ease-out;
}

.whitelabel-hero .page-title {
    font-size: clamp(36px, 6vw, 72px);
    margin-bottom: 30px;
    font-weight: 800;
    line-height: 1.1;
    animation: fadeInUp 1s ease-out;
}

.whitelabel-hero .page-description {
    margin: 0 auto 50px;
    font-size: 20px;
    opacity: 0.9;
    max-width: 850px;
    animation: fadeInUp 1.2s ease-out;
}

.hero-capsules {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 40px;
    animation: fadeInUp 1.4s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.capsule {
    background-color: rgba(255, 255, 255, 1);
    color: var(--secondary-color);
    padding: 14px 35px;
    border-radius: 100px;
    font-weight: 700;
    font-size: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    transition: var(--transition);
    white-space: nowrap;
}

.capsule:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

/* Whitelabel Stats Section */
.whitelabel-stats {
    padding: 80px 0;
    position: relative;
    z-index: 10;
    background-color: #ffffff;
}

.stats-grid-premium {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
}

.stat-card-premium {
    background: #ffffff;
    padding: 35px 25px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: var(--transition);
}

.stat-card-premium:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.stat-icon {
    font-size: 28px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.stat-info h3 {
    font-size: 32px;
    color: var(--secondary-color);
    font-weight: 800;
    margin-bottom: 5px;
    line-height: 1.2;
}

.stat-info p {
    color: var(--text-light);
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Certifications Section */
.certifications {
    padding: 80px 0;
    background-color: var(--bg-white);
}

.cert-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.cert-card {
    background-color: var(--bg-light);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    transition: var(--transition);
}

.cert-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.cert-icon {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.cert-id {
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 20px;
}

.cert-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

/* Mission & Vision */
.mission-vision {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.mv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.mv-card {
    background-color: var(--bg-white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.mv-icon {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.mv-card h3 {
    margin-bottom: 20px;
    font-size: 24px;
}

.mv-card ul {
    text-align: left;
}

.mv-card ul li {
    margin-bottom: 15px;
    position: relative;
    padding-left: 25px;
}

.mv-card ul li::before {
    content: '•';
    color: var(--primary-color);
    font-weight: bold;
    position: absolute;
    left: 0;
    font-size: 20px;
}

/* Directors Section */
.directors {
    padding: 80px 0;
    text-align: center;
}

.directors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.director-card {
    background-color: var(--bg-light);
    padding: 40px;
    border-radius: 20px;
    transition: var(--transition);
}

.director-img {
    width: 150px;
    height: 150px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    border: 5px solid var(--primary-color);
}

.director-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.director-card h3 {
    font-size: 20px;
    margin-bottom: 5px;
}

.director-card .role {
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 15px;
    text-transform: uppercase;
    font-size: 14px;
}

.director-card .quote {
    font-style: italic;
    color: var(--text-light);
}

/* Partners Page */
.vision-box {
    margin-top: 30px;
    display: inline-block;
    padding: 10px 30px;
    background-color: var(--primary-color);
    color: var(--secondary-color);
    border-radius: 50px;
    font-weight: 700;
    letter-spacing: 1px;
}

.partners-detail-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    padding: 80px 0;
}

.partner-card-large {
    background-color: var(--bg-white);
    padding: 0;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: var(--transition);
    overflow: hidden;
    border: 1px solid #eee;
    display: flex;
    flex-direction: column;
}

.partner-card-large:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.partner-card-header {
    padding: 40px 30px;
    background-color: #f8fafc;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 180px;
}

.partner-card-large img {
    max-height: 90px;
    max-width: 100%;
    width: auto;
    object-fit: contain;
}

.partner-card-body {
    padding: 30px 25px;
    flex-grow: 1;
}

.partner-card-large h3 {
    font-size: 22px;
    color: var(--secondary-color);
    margin-bottom: 15px;
    font-weight: 700;
}

.partner-card-large p {
    font-size: 14px;
    color: #64748b;
    line-height: 1.6;
}

.co-lending-impact {
    padding: 80px 0;
    background-color: var(--secondary-color);
    color: white;
    text-align: center;
}

.impact-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.impact-content p {
    max-width: 800px;
    margin: 0 auto;
    font-size: 18px;
    opacity: 0.9;
}

.disclaimer {
    padding: 40px 0;
    background-color: var(--bg-light);
}

.disclaimer-box {
    padding: 30px;
    border-left: 5px solid var(--primary-color);
    background-color: var(--bg-white);
    font-size: 14px;
    color: var(--text-light);
}

/* Partners Page Enhancements */
.partners-page-hero {
    padding: calc(var(--header-height) + 60px) 0 80px;
    background-color: #fff;
    text-align: center;
}

.partners-page-hero .page-title {
    color: var(--secondary-color);
    font-size: clamp(32px, 5vw, 52px);
    margin-bottom: 30px;
    position: relative;
    display: inline-block;
}

.partners-page-hero .page-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--primary-color);
    border-radius: 2px;
}

.partners-page-hero .page-description {
    color: #4b5563;
    max-width: 800px;
    margin: 40px auto 60px;
    font-size: 18px;
    line-height: 1.6;
}

.vision-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 50px 40px 0;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
    max-width: 1000px;
    margin: 0 auto;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.vision-card h2 {
    font-size: 32px;
    color: var(--secondary-color);
    margin-bottom: 25px;
    font-weight: 700;
}

.vision-card p {
    color: #4b5563;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 45px;
    max-width: 850px;
    margin-left: auto;
    margin-right: auto;
}

.vision-banner {
    background-color: var(--secondary-color);
    color: #ffffff;
    padding: 30px 40px;
    margin: 0 -40px;
    font-weight: 500;
    font-size: 17px;
    line-height: 1.5;
}

.partners-section-title {
    font-size: 36px;
    color: var(--secondary-color);
    margin: 80px 0 40px;
    text-align: center;
    font-weight: 700;
}

.partners-section-title span {
    color: var(--primary-color);
}

/* New Pricing V2 Styles */
.pricing-grid-premium {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.pricing-card-v2 {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid #eee;
    transition: var(--transition);
}

.pricing-card-v2:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.pricing-card-v2.featured-v2 {
    border: 2px solid var(--primary-color);
}

.offer-banner {
    padding: 10px;
    text-align: center;
    font-size: 13px;
    font-weight: 600;
}

.offer-banner.orange {
    background-color: #FFF5F0;
    color: #FF6B00;
    border-bottom: 1px solid #FFE0D0;
}

.offer-banner.red {
    background-color: #FFF5F5;
    color: #FF4B4B;
    border-bottom: 1px solid #FFE0E0;
}

.plan-content {
    padding: 40px;
}

.plan-info h3 {
    font-size: 24px;
    font-weight: 800;
    color: var(--secondary-color);
    margin-bottom: 5px;
}

.plan-subtitle {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 25px;
}

.price-box {
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.old-price {
    font-size: 18px;
    color: #9CA3AF;
    text-decoration: line-through;
}

.discount-badge {
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
}

.discount-badge.orange {
    background-color: #FF6B00;
    color: #fff;
}

.discount-badge.gold {
    background-color: var(--primary-color);
    color: #fff;
}

.current-price {
    font-size: 42px;
    font-weight: 800;
    color: var(--secondary-color);
    width: 100%;
}

.setup-fee {
    width: 100%;
    font-size: 13px;
    color: #6B7280;
    margin-top: -5px;
    font-weight: 500;
}

.plan-details-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 20px;
    margin-bottom: 30px;
    text-align: left;
}

.details-col h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.details-col h4.gold-text {
    color: var(--primary-dark);
}

.details-col ul li {
    font-size: 14px;
    color: #4B5563;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.details-col ul li::before {
    content: '•';
    color: #9CA3AF;
    font-size: 18px;
}

.details-col ul li i {
    color: var(--primary-color);
}

.delivery-time {
    font-size: 13px;
    color: #6B7280;
    margin-bottom: 30px;
    text-align: left;
}

.plan-actions {
    display: flex;
    gap: 15px;
}

.plan-actions .btn {
    flex: 1;
    padding: 14px;
    font-size: 15px;
    white-space: nowrap;
}

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

.btn-gold {
    background-color: var(--primary-color);
    color: var(--secondary-color);
}

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

.btn-outline-dark {
    background-color: transparent;
    border: 1.5px solid var(--secondary-color);
    color: var(--secondary-color);
}

@media (max-width: 992px) {
    .pricing-grid-premium {
        grid-template-columns: 1fr;
        max-width: 600px;
    }
}

@media (max-width: 576px) {
    .plan-details-grid {
        grid-template-columns: 1fr;
    }

    .plan-actions {
        flex-direction: column;
    }

    .current-price {
        font-size: 32px;
    }

    .plan-content {
        padding: 25px;
    }
}

/* Comprehensive Services Styles */
.comprehensive-services {
    padding: 100px 0;
    background-color: #fff;
}

.services-grid-v2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.service-card-v2 {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
    border: 1px solid #f0f0f0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transition: var(--transition);
}

.service-card-v2:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
}

.icon-box-gold {
    width: 60px;
    height: 60px;
    background-color: #C5A059;
    /* Muted Gold as in image */
    color: #fff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 25px;
}

.service-content h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.service-content p {
    font-size: 15px;
    color: #6B7280;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .services-grid-v2 {
        grid-template-columns: 1fr;
    }
}

/* CTA Section */
.whitelabel-cta {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.cta-box {
    background-color: var(--secondary-color);
    color: white;
    padding: 60px;
    border-radius: 30px;
    text-align: center;
}

.cta-box h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.cta-box p {
    margin-bottom: 40px;
    font-size: 18px;
    opacity: 0.9;
}

.footer-bottom {
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .nav {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--bg-white);
        box-shadow: var(--shadow-lg);
        padding: 20px 0;
        flex-direction: column;
        align-items: center;
        gap: 20px;
        transform: translateY(-150%);
        opacity: 0;
        transition: var(--transition);
        z-index: -1;
        visibility: hidden;
    }

    .nav.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
        z-index: 999;
    }

    .nav-links {
        flex-direction: column;
        gap: 15px;
        text-align: center;
        width: 100%;
    }

    .nav-links a {
        display: block;
        padding: 10px;
    }

    .login-link {
        border-left: none;
        padding-left: 0;
        margin-left: 0;
    }

    .menu-toggle {
        display: block;
    }

    .hero-title {
        font-size: 32px !important;
    }

    .page-title, .whitelabel-hero .page-title {
        font-size: 28px !important;
    }

    .hero-features, .hero-capsules {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        width: 100%;
        margin-top: 25px;
    }

    .feature-capsule, .capsule {
        padding: 10px 5px;
        font-size: 11px;
        width: 100%;
        text-align: center;
        box-sizing: border-box;
    }

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

    .pricing-card.featured {
        transform: scale(1);
    }

    .cert-grid,
    .directors-grid {
        grid-template-columns: 1fr;
    }

    .cta-box {
        padding: 30px;
    }

    .whitelabel-stats {
        margin-top: -30px;
        padding: 0 0 40px;
    }

    .stats-grid-premium {
        gap: 15px;
    }

    .partners-detail-grid,
    .features-grid,
    .pricing-grid-premium,
    .services-grid-v2 {
        grid-template-columns: 1fr;
    }
    
    .privacy-card {
        padding: 20px;
    }
}

/* License Certificate Specific Styling */
.cert-card.license-premium {
    background: #ffffff;
    border-radius: 30px;
    padding: 50px 30px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.03);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.license-premium .cert-icon {
    font-size: 32px;
    /* Adjusted for stack scaling */
    color: #1A56DB;
    /* Premium Blue */
    margin-bottom: 25px;
    background: none;
    width: auto;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.license-premium .fa-stack {
    width: 2em;
    height: 2em;
    line-height: 2em;
}

.license-premium h3 {
    font-size: 28px;
    font-weight: 700;
    color: #111827;
    /* Dark Slate */
    margin-bottom: 12px;
}

.license-premium .cert-id {
    font-size: 20px;
    font-weight: 500;
    color: #6B7280;
    /* Gray Slate */
    margin-bottom: 30px;
}

.license-premium .cert-image {
    width: 100%;
    margin-top: 10px;
}

.license-premium .cert-image img {
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Authentication Pages */
.auth-page {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #1a3a5a 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.auth-container {
    width: 100%;
    max-width: 450px;
}

.auth-card {
    background: #fff;
    padding: 50px 40px;
    border-radius: 30px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
}

.auth-header {
    text-align: center;
    margin-bottom: 35px;
}

.auth-logo {
    display: inline-block;
    margin-bottom: 25px;
}

.auth-logo img {
    height: 50px;
}

.auth-header h2 {
    font-size: 28px;
    color: var(--secondary-color);
    margin-bottom: 10px;
    font-weight: 700;
}

.auth-header p {
    color: var(--text-light);
    font-size: 15px;
}

.auth-form .form-group {
    margin-bottom: 20px;
}

.auth-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 14px;
    color: var(--secondary-color);
}

.input-wrapper {
    position: relative;
}

.input-wrapper i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #9CA3AF;
    font-size: 18px;
}

.input-wrapper input {
    width: 100%;
    padding: 14px 15px 14px 45px;
    border: 1.5px solid #E5E7EB;
    border-radius: 12px;
    font-size: 15px;
    transition: var(--transition);
    background: #F9FAFB;
}

.input-wrapper input:focus {
    outline: none;
    border-color: var(--primary-color);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.1);
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    font-size: 14px;
}

.remember-me {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    color: var(--text-light);
}

.forgot-password {
    color: var(--primary-dark);
    font-weight: 600;
}

.auth-btn {
    width: 100%;
    padding: 15px;
    font-size: 16px;
    border-radius: 12px;
    margin-bottom: 25px;
}

.auth-footer {
    text-align: center;
    font-size: 14px;
    color: var(--text-light);
}

.auth-footer a {
    color: var(--primary-dark);
    font-weight: 700;
}


.footer-bottom {
    text-align: center;
    padding: 15px 0;
    border-top: 1px solid #ddd;
    margin-top: 20px;
    font-size: 14px;
    color: #777;
}

.auth-back {
    text-align: center;
    margin-top: 25px;
}

.auth-back a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.auth-back a:hover {
    color: #fff;
    transform: translateX(-5px);
}

@media (max-width: 480px) {
    .auth-card {
        padding: 40px 25px;
    }
}

/* Privacy Policy Page */
.privacy-card {
    background-color: #F8FAFC;
    border: 1px solid #E2E8F0;
    border-radius: 12px;
    padding: 30px 40px;
    margin-bottom: 25px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
    transition: var(--transition);
}

.privacy-card:hover {
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.05);
    border-color: #CBD5E1;
}

.privacy-card h2 {
    font-size: 22px;
    color: var(--secondary-color);
    margin-bottom: 15px;
    font-weight: 600;
}

.privacy-card ul {
    list-style-type: none;
    padding-left: 0;
}

.privacy-card ul li {
    position: relative;
    padding-left: 15px;
    margin-bottom: 12px;
    color: #475569;
    font-size: 15px;
    line-height: 1.6;
}

.privacy-card ul li::before {
    content: "•";
    color: #475569;
    position: absolute;
    left: 0;
    font-weight: bold;
}

.privacy-card p {
    color: #475569;
    font-size: 15px;
    line-height: 1.6;
}

/* Premium Contact Card */
.contact-card-premium {
    background-color: #0A192F;
    border-radius: 16px;
    padding: 40px 50px 30px;
    margin-top: 50px;
    position: relative;
    overflow: hidden;
    color: white;
}

.contact-card-premium::after {
    content: '';
    position: absolute;
    top: 20px;
    right: 40px;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.03);
    pointer-events: none;
}

.contact-content-premium {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 30px;
    position: relative;
    z-index: 2;
    margin-bottom: 30px;
}

@media (max-width: 768px) {
    .contact-content-premium {
        flex-direction: column;
        padding: 20px;
    }
    .contact-card-premium {
        padding: 30px 20px 20px;
    }
}

.contact-left {
    flex: 1.2;
}

.contact-title {
    font-size: 28px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.contact-title::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 60px;
    height: 2px;
    background-color: var(--primary-color);
}

.company-name {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.address, .cin-info, .licence-info {
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    margin-bottom: 8px;
    line-height: 1.6;
}

.contact-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    padding-top: 45px;
}
@media (max-width: 768px) {
    .contact-right {
        padding-top: 10px;
    }
}

.contact-item {
    font-size: 14px;
    margin-bottom: 12px;
    color: white;
}

.contact-item a {
    color: var(--primary-color);
    font-weight: 500;
}

.tagline-premium {
    margin-top: 15px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    font-style: italic;
}

.contact-card-premium .bottom-line {
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
    margin: 0 auto;
    border-radius: 2px;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 20px;
        margin-bottom: 30px;
        text-align: center;
    }
}