/* 
  SyncLink66 Modern Design System 
*/

:root {
    --bg-main: #0f1419;
    --bg-header: rgba(26, 31, 46, 0.95);
    --bg-card: rgba(31, 41, 55, 0.5);
    --bg-card-hover: rgba(31, 41, 55, 0.8);
    --primary: #133682;
    /* Indigo-500 */
    --primary-hover: #5c8cf1;
    /* Indigo-600 */
    --accent: #818cf8;
    /* Indigo-400 */
    --accent-light: #a5b4fc;
    /* Indigo-300 */
    --text-main: #ffffff;
    --text-muted: #9ca3af;
    --text-dark: #6b7280;
    --border: rgba(75, 85, 99, 0.4);
    --border-accent: rgba(99, 102, 241, 0.5);
    /* Indigo-500/50 */
    --success: #10b981;
    --shadow-blue: rgba(79, 70, 229, 0.2);
    /* Indigo, keeping vars logic */
    --font-sans: 'Inter', -apple-system, system-ui, sans-serif;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.text-gray-400 {
    --tw-text-opacity: 1;
    color: #9ca3af;
}

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

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

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

.no-scroll {
    overflow: hidden;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Utilities */
.hidden {
    display: none !important;
}

.text-center {
    text-align: center;
}

.mb-4 {
    margin-bottom: 1rem;
}
.mb-8 {
    margin-bottom: 2rem;
}
.mb-12 {
    margin-bottom: 3rem;
}
.pt-0{
    padding-top: 0 !important;
}
.block{
    display: block;
}

/* Typography */
h1,
h2,
h3,
h4,
h5 {
    font-family: var(--font-sans);
    font-weight: 700;
    line-height: 1.2;
}

/* Header */
.header {
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: var(--transition);
    padding: 1rem 0;
}

.header.scrolled {
    background-color: var(--bg-header);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    padding: 0.75rem 0;
}

.header-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-img {
    height: 40px;
    width: auto;
    transition: var(--transition);
}

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

.nav-desktop {
    display: none;
    align-items: center;
    gap: 2rem;
    /* Increased gap to match React */
}

@media (min-width: 768px) {
    .nav-desktop {
        display: flex;
    }
}

.nav-link {
    color: var(--text-main);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    position: relative;
    transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: #60a5fa;
    /* Blue-400 to match React header */
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #3b82f6;
    /* Blue-500 underline */
    transition: var(--transition);
}

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

.nav-link.highlight {
    color: var(--accent-light);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.account-btn {
    background-color: rgba(31, 41, 55, 1);
    border: 1px solid var(--border);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--text-muted);
    transition: var(--transition);
}

.account-btn:hover {
    background-color: #374151;
    color: white;
}

.user-icon {
    width: 20px;
    height: 20px;
}

.menu-toggle {
    display: flex;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    position: relative;
    z-index: 1001;
}

@media (min-width: 768px) {
    .menu-toggle {
        display: none;
    }
}

.hamburger {
    width: 24px;
    height: 2px;
    background-color: var(--text-muted);
    position: relative;
    transition: var(--transition);
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 2px;
    background-color: inherit;
    transition: var(--transition);
}

.hamburger::before {
    top: -8px;
}

.hamburger::after {
    bottom: -8px;
}

.menu-toggle.active .hamburger {
    background-color: transparent;
}

.menu-toggle.active .hamburger::before {
    transform: rotate(45deg);
    top: 0;
    background-color: white;
}

.menu-toggle.active .hamburger::after {
    transform: rotate(-45deg);
    bottom: 0;
    background-color: white;
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background-color: #1a1f2e;
    overflow: hidden;
    transition: height 0.4s ease;
    z-index: 999;
}

.mobile-menu.active {
    height: 100vh;
}

.mobile-menu-content {
    padding: 6rem 1.5rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.mobile-nav-link {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    transition: var(--transition);
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
    background-color: var(--primary);
    color: white;
}

.mobile-nav-link.highlight {
    color: var(--accent-light);
}

.mobile-menu-divider {
    height: 1px;
    background-color: var(--border);
    margin: 1rem 0;
}

.mobile-nav-link.secondary {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.icon-small {
    width: 18px;
    height: 18px;
}

.logout-btn {
    border: none;
    background: none;
    text-align: left;
    width: 100%;
    cursor: pointer;
    color: #f87171;
}

.logout-btn:hover {
    background-color: rgba(248, 113, 113, 0.1);
    color: #ef4444;
}

/* Hero Section */
.hero {
    position: relative;
    padding: 2rem 0;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: -1;
}

.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.2;
    animation: pulse 10s infinite alternate;
}

.blob-blue {
    width: 400px;
    height: 400px;
    background-color: var(--primary);
    top: 10%;
    left: -5%;
}

.blob-purple {
    width: 500px;
    height: 500px;
    background-color: #7c3aed;
    bottom: 10%;
    right: -10%;
    animation-delay: -5s;
}

@keyframes pulse {
    0% {
        transform: scale(1) translate(0, 0);
    }

    100% {
        transform: scale(1.1) translate(20px, 30px);
    }
}

.hero-inner {
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.badge-container {
    display: flex;
    justify-content: center;
    margin-bottom: 1.2rem;
}

.hero-badge {
    background-color: rgb(37 99 235 / 0.2);
    border: 1px solid rgba(59, 130, 246, 0.3);
    color: rgb(96 165 250 / var(--tw-text-opacity, 1));
    padding: 0.4rem 1rem;
    border-radius: 9px;
    font-size: 0.875rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.zap-icon {
    width: 1rem;
}

.hero-title {
    margin-bottom: 1.5rem;
    color: white;
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 4.5rem;
        line-height: 1;
    }
}

.gradient-blue {
    background: linear-gradient(to right, #3b82f6, #60a5fa);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-desc {
    color: var(--text-muted);
    font-size: 1.25rem;
    line-height: 1.75rem;
    margin-bottom: 2rem;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    justify-content: center;
}

@media (min-width: 640px) {
    .hero-cta {
        flex-direction: row;
        gap: 1rem;
    }
}

.btn {
    padding: 0.5rem 2rem;
    border-radius: 0.5rem;
    font-weight: 600;
    font-size: 0.875rem;
    text-decoration: none;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background-color: var(--primary);
    color: white;
    box-shadow: 0 10px 15px -3px var(--shadow-blue);
}

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

.btn-outline {
    background-color: #020817;
    border: 1px solid #374151;
    /* gray-700 to match React */
    color: #d1d5db;
    /* gray-300 to match React */
}

.btn-outline:hover {
    background-color: #1f2937;
    /* gray-800 to match React */
    color: white;
    border-color: #374151;
}

.btn-arrow {
    width: 18px;
    height: 18px;
    margin-left: 0.5rem;
    transition: var(--transition);
}

.btn:hover .btn-arrow {
    transform: translateX(4px);
}

/* Specific Home Hero Button Overrides to match React Blue-600 */
.btn-bg-blue {
    background-color: #2563eb !important;
    /* blue-600 */
    box-shadow: 0 10px 15px -3px rgba(59, 130, 246, 0.2) !important;
    /* shadow-blue-500/20 to match React */
    border: none;
}

.btn-bg-blue:hover {
    background-color: #1d4ed8 !important;
    /* blue-700 */
}

.btn-hero-size {
    padding: .55rem 2.1rem;
    font-size: 1rem;
    font-size: 1.125rem;
    line-height: 1.75rem;
    font-weight: 400;
}

/* Integrations */
.integrations {
    margin-top: 3rem;
}

.integrations-label {
    font-size: 0.875rem;
    color: var(--text-dark);
    margin-bottom: 1.8rem;
}

.platform-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
}

.platform-card {
    background-color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    width: 140px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border);
    transition: var(--transition);
}

@media (min-width: 768px) {
    .platform-card {
        width: 154px;
        height: 77px;
    }
}

.platform-card:hover {
    border-color: var(--accent);
    transform: translateY(-5px);
}

.platform-img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.platform-img.woo,
.platform-img.tiktok {
    height: 35px;
}

/* Features Section */
.features {
    padding: 6rem 0;
    background-color: var(--bg-main);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .section-title {
        font-size: 2.25rem;
        line-height: 2.5rem;
    }
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 1.125rem;
    max-width: 700px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(4, 1fr);
        max-width: 64rem;
        margin: 0 auto;
    }
}

.feature-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border);
    padding: 1.5rem;
    border-radius: 1rem;
    transition: var(--transition);
}

.feature-card:hover {
    background-color: var(--bg-card-hover);
    border-color: var(--primary);
    transform: translateY(-5px);
}

.feature-icon-wrapper {
    width: 48px;
    height: 48px;
    background-color: rgb(37 99 235 / 0.2);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--accent);
    transition: var(--transition);
}

.feature-card:hover .feature-icon-wrapper {
    background-color: var(--primary);
    color: white;
}

.feature-icon {
    width: 24px;
    height: 24px;
}

.feature-title {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.feature-text {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.features-action {
    display: flex;
    justify-content: center;
    margin-top: 3rem;
}

/* Command Center Section */
.command-center {
    padding: 6rem 0;
    background-color: #1a1f2e;
}

.command-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: center;
}

@media (min-width: 768px) {
    .command-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (min-width: 992px) {
    .command-grid .section-title {
        font-size: 3rem;
        line-height: 1;
        margin-bottom: 1.5rem;
    }

    .command-grid .section-subtitle {
        font-size: 1.25rem;
        line-height: 1.75rem;
        margin-bottom: 2rem;
    }
    .benefits-list {
      margin-top: 0;
    }
}

.text-left {
    text-align: left;
    margin-left: 0;
}

.benefits-list {
    margin-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.benefit-item {
    display: flex;
    gap: 1rem;
}



.check-circle svg {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--success);
}

.benefit-title {
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.benefit-desc {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.command-visual {
    position: relative;
}

.dashboard-frame {
    background-color: var(--bg-card);
    padding: 1rem;
    border: 1px solid var(--border);
    border-radius: 1.5rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    overflow: hidden;
}

.dashboard-img {
    width: 100%;
    height: auto;
    border-radius: 0.75rem;
    display: block;
}

/* Footer */
.footerMain {
    background-color: rgb(10 14 20 / var(--tw-bg-opacity, 1));
    padding-top: 5rem;
}
/* Footer */
.footer {
    background-color: #0a0e14;
    padding: 3rem 0;
    border-top: 1px solid #1f2937;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 640px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.footer-logo {
    height: 40px;
    /* matches h-10 */
    margin-bottom: 1rem;
}

.footer-slogan {
    color: #6b7280;
    /* text-gray-500 */
    font-size: 0.875rem;
}

.footer-heading {
    font-size: 0.875rem;
    /* text-sm */
    font-weight: 600;
    /* font-semibold */
    margin-bottom: 1rem;
    color: white;
}

.footer-list {
    list-style: none;
}

.footer-list li {
    margin-bottom: 0.25rem;
    /* matches space-y-2 */
}

.footer-list a {
    color: #9ca3af;
    /* text-gray-400 */
    text-decoration: none;
    font-size: 0.875rem;
    transition: var(--transition);
}

.footer-list a:hover {
    color: #60a5fa;
    /* blue-400 hover */
}

.footer-copyright {
    margin-top: 1rem;
    /* matches mt-8 */
    padding-top: 2rem;
    /* matches pt-8 */
    border-top: 1px solid #1f2937;
    /* gray-800 */
    text-align: center;
    color: #6b7280;
    /* text-gray-500 */
    font-size: 0.875rem;
}
@media (max-width: 767px) {
    .hero-badge {
        font-size: 0.75rem;
        padding: 0.25rem 0.75rem;
    }
}

/* Features Page Specifics (Matches Features.jsx) */
.features-hero {
    padding: 4rem 1rem 5rem;
    text-align: center;
    background-color: #1a1f2e;
}
.features-hero .hero-desc{
   max-width: 100%;
}
.features-hero .btn{
    padding: 0.85rem 2.2rem;
    font-size: 1.125rem;
    font-weight: 400;
}
.features-hero .btn-primary{
    background-color: rgb(37 99 235 / var(--tw-bg-opacity, 1));
}
@media (min-width: 1024px) {
   .features-hero .gradient-blue{
    padding-top: 10px;
   }
}
@media (min-width: 640px) {
    .features-hero {
        padding: 5rem 1.5rem 5.40rem;
    }
    .features-hero .hero-title {
        font-size: 3.75rem;
        line-height: 1;
    }
}

.container-narrow {
    max-width: 56rem;
    /* max-w-4xl */
    margin: 0 auto;
}

.features-list-section {
    padding: 5rem 1rem;
    background-color: var(--bg-main);
}

@media (min-width: 640px) {
    .features-list-section {
        padding: 5rem 1.5rem;
    }
}

@media (min-width: 1024px) {
    .features-list-section {
        padding: 5rem 2rem;
    }
}

.features-stack {
    max-width: 80rem;
    /* max-w-7xl */
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 5rem;
    /* space-y-20 */
}

.showcase-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 768px) {
    .showcase-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .showcase-grid:nth-child(even) .showcase-content {
        order: 2;
    }

    .showcase-grid:nth-child(even) .showcase-visual-container {
        order: 1;
    }
}

.feature-icon-wrapper-blue {
    width: 4rem;
    height: 4rem;
    background-color: rgba(37, 99, 235, 0.2);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--accent);
}

.feature-icon {
    width: 2rem;
    height: 2rem;
    color: #3b82f6;
}

.showcase-title {
    font-size: 1.875rem;
    /* text-3xl */
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

.showcase-desc {
    font-size: 1.125rem;
    /* text-lg */
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.benefit-list-v2 {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    /* space-y-3 */
}

.benefit-list-v2 li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.check-icon {
    width: 1.25rem;
    height: 1.25rem;
    color: #22c55e;
    /* text-green-500 */
    flex-shrink: 0;
}

.benefit-list-v2 span {
    color: #d1d5db;
    /* text-gray-300 */
}

.feature-card-frame {
    overflow: hidden;
    border-radius: 0.5rem;
    border: 2px solid #374151;
    /* border-gray-700 */
    background-color: rgba(31, 41, 55, 0.5);
    /* bg-gray-800/50 */
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    transition: all 0.3s;
    padding: 1.5rem;
    background-color: #0a0e14;
}

.feature-card-frame:hover {
    border-color: var(--primary);
}

.feature-card-img {
    width: 100%;
    height: auto;
    border-radius: 0.5rem;
    transition: transform 0.3s;
    cursor: pointer;
}

.feature-card-img:hover {
    transform: scale(1.1);
}

/* Pricing Page Specifics */
.pricing-hero {
    padding: 5rem 0 4rem;
    background-color: #1a1f2e;
    /* Matches bg-[#1a1f2e] */
}

.pricing-header {
    text-align: center;
    max-width: 56rem;
    margin: 0 auto;
}

.pricing-title {
    font-size: 2.25rem;
    /* text-3xl */
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
    /* mb-6 */
    padding: 0 0.5rem;
}

@media (min-width: 640px) {
    .pricing-title {
        font-size: 2.25rem;
        /* sm:text-4xl */
    }
}

@media (min-width: 768px) {
    .pricing-title {
        font-size: 3rem;
        /* md:text-5xl */
    }
}

.pricing-subtitle {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    padding: 0 0.5rem;
}

@media (min-width: 640px) {
    .pricing-subtitle {
        font-size: 1.25rem;
    }
}

.billing-toggle-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.billing-toggle {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    /* gap-3 */
    background-color: rgba(31, 41, 55, 0.5);
    border: 1px solid #374151;
    border-radius: 9999px;
    padding: 0.25rem;
}

.toggle-btn {
    padding: 0.5rem 1.6rem;
    border-radius: 9999px;
    font-weight: 500;
    cursor: pointer;
    border: none;
    background: transparent;
    color: var(--text-muted);
    transition: var(--transition);
    font-size: 0.875rem;
    line-height: 1.25rem;
}

.toggle-btn:hover {
    color: white;
}

.toggle-btn.active {
    background-color: #2563eb;
    color: white;
}

.annual-badge {
    animation: fadeIn 0.3s ease-out;
}

.annual-badge.hidden {
    display: none;
}

.badge-success {
    background-color: rgba(16, 185, 129, 0.2);
    color: #4ade80;
    border: 1px solid rgba(16, 185, 129, 0.3);
    padding: 0.20rem 0.70rem;
    border-radius: 9px;
    font-size: 0.75rem;
    font-weight: 500;
}

.pricing-cards-section {
    padding: 5rem 0;
    background-color: var(--bg-main);
}

.pricing-grid {
    max-width: 1150px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .pricing-grid {
        grid-template-columns: 1fr 1fr;
        align-items: start;
    }
}

.pricing-card {
    background-color: #1a2332;
    border: 2px solid #374151;
    /* gray-700 */
    border-radius: 1rem;
    position: relative;
    transition: var(--transition);
    height: 100%;
}

.pricing-card:hover {
    border-color: #4b5563;
    /* gray-600 */
}

.pricing-card.recommended {
    background: linear-gradient(to bottom, rgba(99, 102, 241, 0.1), #1a2332, #1a2332);
    border-color: var(--primary);
    box-shadow: 0 25px 50px -12px rgba(79, 70, 229, 0.2);
    transform: scale(1.05);
    /* Match React scale-105 */
    z-index: 10;
}

.card-badge-container {
    position: absolute;
    top: -1rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 20;
}

.card-badge {
    color: white;
    padding: 0.365rem 1.64rem;
    border-radius: 9px;
    font-size: 0.875rem;
    font-weight: 600;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    /* shadow-lg */
    display: flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
}

.card-badge.blue {
    background-color: #2563eb;
}

.card-badge.gray {
    background-color: #4b5563;
    /* gray-600 */
}

.card-content {
    padding: 2.5rem 1.5rem 2rem;
    /* p-8 pt-10 */
}

/* Specific button styles for pricing to override defaults if needed */
.pricing-card .btn-outline {
    background-color: #1f2937;
    /* bg-gray-800 */
    border-color: #4b5563;
    /* border-gray-600 */
    color: #d1d5db;
    /* text-gray-300 */
}

.pricing-card .btn-outline:hover {
    background-color: #374151;
    /* hover:bg-gray-700 */
    color: white;
}
.pricing-card .btn{
    min-height: 48px;
    font-size: 1rem;
    line-height: 1.5rem;
    margin-bottom: 1.5rem;
}
.pricing-card .btn-primary{
    background-color: #2563eb;
}
.plan-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    text-align: center;
    margin-bottom: 0.75rem;
}

.plan-price-wrapper {
    display: flex;
    justify-content: center;
    align-items: baseline;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.plan-price {
    font-size: 3rem;
    font-weight: 700;
    color: white;
}

.plan-period {
    font-size: 1.25rem;
    color: var(--text-muted);
}

.savings-badge-wrapper {
    text-align: center;
    margin-top: 0.75rem;
}

.savings-badge-wrapper.hidden {
    display: none;
}

.plan-desc {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.875rem;
    padding-bottom: 1.5rem;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid #374151;
    /* gray-700 */
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.feature-item {
    display: flex;
    align-items: start;
    gap: 0.75rem;
}

.check-icon {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.check-icon.bg-green {
    background-color: rgba(16, 185, 129, 0.2);
}

.check-icon.bg-blue {
    background-color: rgb(37 99 235 / 0.1);
}

.text-green {
    color: #10b981;
}

.text-blue {
    color: #2563eb;
}

.feature-text {
    font-size: 0.875rem;
    color: #d1d5db;
    /* text-gray-300 */
    line-height: 1.4;
}

.feature-text.font-bold {
    font-weight: 600;
}

.feature-text.text-white {
    color: white;
}

.feature-subtext {
    font-size: 0.75rem;
    color: var(--text-dark);
    margin-top: 0.170rem;
}

.w-full {
    width: 100%;
}

.list-mb {
    margin-bottom: 1.5rem;
}

/* FAQ Section */
.faq-section {
    padding: 5rem 0;
    background-color: #1a1f2e;
    /* Matches bg-[#1a1f2e] */
    text-align: center;
}

.faq-container {
    max-width: 48rem;
    /* max-w-3xl */
    margin: 0 auto;
}

.accordion {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.accordion-item {
    border: 1px solid #374151;
    /* gray-700 */
    border-radius: 0.5rem;
    background-color: rgba(31, 41, 55, 0.5);
    /* bg-gray-800/50 */
    overflow: hidden;
    transition: var(--transition);
}

.accordion-trigger {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.915rem 1.5rem;
    /* Matches px-6 */
    background: none;
    border: none;
    color: white;
    font-weight: 600;
    cursor: pointer;
    text-align: left;
    font-size: 1rem;
    transition: var(--transition);
}

.accordion-trigger:hover {
    background-color: rgba(31, 41, 55, 0.8);
}

.trigger-content {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.875rem;
    line-height: 1.25rem;
}

.trigger-content i{
    font-size: 24px;
    color: #3b82f6;
}
.accordion-icon {
    font-size: 1.25rem;
    color: var(--text-muted);
    transition: transform 0.3s ease;
}

.accordion-item.active .accordion-icon {
    transform: rotate(180deg);
}

.accordion-content {
    display: none;
    padding: 0.25rem 1rem 1rem;
    color: var(--text-muted);
    font-size: 0.875rem;
    line-height: 1.25rem;
    text-align: left;
}

.accordion-item.active .accordion-content {
    display: block;
    animation: fadeIn 0.3s ease;
}

/* About Page Specifics */
.about-hero {
    padding: 4rem 0 5rem;
    background-color: #1a1f2e;
    text-align: center;
}

@media (min-width: 640px) {
    .about-hero {
        padding: 5rem 0 5rem;
    }
}

.about-hero-content {
    max-width: 56rem;
    /* max-w-4xl */
    margin: 0 auto;
}

.about-hero-title {
    font-size: 1.875rem;
    /* text-3xl */
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
    line-height: 1.2;
    padding: 0 0.5rem;
}

@media (min-width: 640px) {
    .about-hero-title {
        font-size: 2.25rem;
        /* text-4xl */
    }
}

@media (min-width: 768px) {
    .about-hero-title {
        font-size: 3rem;
        /* text-5xl */
    }
}

@media (min-width: 1024px) {
    .about-hero-title {
        font-size: 3.75rem;
        /* text-6xl */
    }
}

.gradient-text-blue {
    background: linear-gradient(to right, #3b82f6, #60a5fa);
    /* from-blue-500 to-blue-400 */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    margin-top: 0.5rem;
}

.about-hero-desc {
    font-size: 0.875rem;
    /* text-sm */
    color: #9ca3af;
    /* text-gray-400 */
    max-width: 48rem;
    /* max-w-3xl */
    margin: 0 auto;
    padding: 0 0.5rem;
    line-height: 1.6;
}

@media (min-width: 640px) {
    .about-hero-desc {
        font-size: 1rem;
        /* text-base */
    }
}

@media (min-width: 768px) {
    .about-hero-desc {
        font-size: 1.125rem;
        /* text-lg */
    }
}

@media (min-width: 1024px) {
    .about-hero-desc {
        font-size: 1.25rem;
        /* text-xl */
    }
}

/* Mission Section */
.mission-section {
    padding: 5rem 0;
    background-color: #0f1419;
}

.mission-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
    max-width: 80rem;
    /* max-w-7xl */
    margin: 0 auto;
}

@media (min-width: 768px) {
    .mission-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.icon-box-lg {
    width: 4rem;
    /* w-16 */
    height: 4rem;
    /* h-16 */
    background-color: rgba(37, 99, 235, 0.2);
    /* bg-blue-600/20 */
    border: 1px solid rgba(59, 130, 246, 0.3);
    /* border-blue-500/30 */
    border-radius: 1rem;
    /* rounded-2xl */
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.text-left {
    text-align: left;
}

.mission-content .section-title {
    margin-bottom: 1.5rem;
    font-size: 1.875rem;
    /* text-3xl */
}

@media (min-width: 640px) {
    .mission-content .section-title {
        font-size: 2.25rem;
        /* text-4xl */
    }
}

.section-desc {
    font-size: 1.125rem;
    /* text-lg */
    color: #9ca3af;
    /* text-gray-400 */
    line-height: 1.7;
}

.mission-image-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
}

.mission-img {
    width: 100%;
    height: auto;
    max-width: 42rem;
    /* max-w-2xl */
}

/* Values Section */
.values-section {
    padding: 4rem 0 5rem;
    background-color: #1a1f2e;
}

@media (min-width: 640px) {
    .values-section {
        padding: 5rem 0;
    }
}

.values-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: 80rem;
    /* max-w-7xl */
    margin: 0 auto;
}

@media (min-width: 768px) {
    .values-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (min-width: 1024px) {
    .values-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.value-card {
    background-color: rgba(31, 41, 55, 0.7);
    /* bg-gray-800/70 */
    border: 1px solid #374151;
    /* border-gray-700 */
    border-radius: 0.75rem;
    padding: 1.5rem;
    height: 100%;
    transition: all 0.3s ease;
}

.value-card:hover {
    background-color: #1f2937;
    /* bg-gray-800 */
    border-color: rgba(59, 130, 246, 0.5);
    /* border-blue-500/50 */
}

.icon-box-md {
    width: 3.5rem;
    /* w-14 */
    height: 3.5rem;
    /* h-14 */
    background-color: rgba(37, 99, 235, 0.2);
    /* bg-blue-600/20 */
    border: 1px solid rgba(59, 130, 246, 0.3);
    /* border-blue-500/30 */
    border-radius: 0.75rem;
    /* rounded-xl */
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    font-size: 1.75rem;
}

.text-blue-400 {
    color: #60a5fa;
}

.value-title {
    font-size: 1.25rem;
    /* text-xl */
    font-weight: 600;
    /* font-semibold */
    color: white;
    margin-bottom: 0.75rem;
}

.value-desc {
    color: #9ca3af;
    /* text-gray-400 */
    line-height: 1.6;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-5px);
    }

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

/* Contact Page Specifics */
.contact-hero {
    padding: 5rem 0;
    background-color: #1a1f2e;
    text-align: center;
}

.contact-hero-title {
    font-size: 2.25rem;
    /* text-4xl */
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
    .contact-hero-title {
        font-size: 3rem;
        /* sm:text-5xl */
    }
}

@media (min-width: 768px) {
    .contact-hero-title {
        font-size: 3.75rem;
        /* md:text-6xl */
    }
    .text-2xl{
        font-size: 1.5rem;
        line-height: 2rem;
    }
    .text-sm {
        font-size: 0.875rem;
        line-height: 1.25rem;
    }
}

.contact-hero-desc {
    font-size: 1.125rem;
    /* text-lg */
    color: #9ca3af;
    /* text-gray-400 */
}

@media (min-width: 640px) {
    .contact-hero-desc {
        font-size: 1.25rem;
        /* sm:text-xl */
    }
}

.contact-section {
    padding: 5rem 0;
    background-color: #0f1419;
}

.contact-grid {
    display: grid;
    gap: 3rem;
}

@media (min-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr 1fr;
        align-items: start;
    }
}

.contact-faq {
    padding-right: 0;
}

@media (min-width: 1024px) {
    .contact-faq {
        padding-right: 2rem;
    }
}

.faq-question {
    font-size: 0.875rem;
    /* text-sm */
}

@media (min-width: 640px) {
    .faq-question {
        font-size: 1rem;
        /* sm:text-base */
    }
}

/* Form Styles */
.form-card {
    background-color: rgba(31, 41, 55, 0.5);
    /* bg-gray-800/50 */
    border: 1px solid #374151;
    /* border-gray-700 */
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    /* shadow-2xl */
    border-radius: 0.5rem;
}

.card-header {
    padding: 1.5rem;
}

.card-title {
    margin: 0;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: #d1d5db;
    /* text-gray-300 */
    margin-bottom: 0.5rem;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    background-color: rgba(17, 24, 39, 0.5);
    /* bg-gray-900/50 */
    border: 1px solid #374151;
    /* border-gray-700 */
    border-radius: 0.375rem;
    padding: 0.5rem 0.75rem;
    color: white;
    font-size: 0.875rem;
    transition: var(--transition);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 1px var(--primary);
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: #6b7280;
    /* text-gray-500 */
}

/* File Upload */
.file-upload-container {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.file-upload-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background-color: rgba(17, 24, 39, 0.5);
    /* bg-gray-900/50 */
    border: 1px solid #374151;
    /* border-gray-700 */
    border-radius: 0.375rem;
    color: #d1d5db;
    /* text-gray-300 */
    font-size: 0.875rem;
    cursor: pointer;
    transition: var(--transition);
}

.file-upload-btn:hover {
    background-color: #1f2937;
    /* bg-gray-800 */
}

.file-help-text {
    font-size: 0.75rem;
    color: #6b7280;
    /* text-gray-500 */
}

.file-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: rgba(17, 24, 39, 0.5);
    /* bg-gray-900/50 */
    border: 1px solid #374151;
    /* border-gray-700 */
    border-radius: 0.375rem;
    padding: 0.5rem 0.75rem;
    margin-top: 0.5rem;
}

.file-name {
    font-size: 0.875rem;
    /* text-sm */
    color: #d1d5db;
    /* text-gray-300 */
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.remove-file-btn {
    background: none;
    border: none;
    color: #9ca3af;
    /* text-gray-400 */
    cursor: pointer;
    padding: 0.25rem;
    transition: var(--transition);
}

.remove-file-btn:hover {
    color: #f87171;
    /* text-red-400 */
}

.text-blue-500 {
    color: #3b82f6 !important;
    /* Force Blue for specific stats/icons */
}

/* Refer Friends Page Specifics */
.refer-page-bg {
    background-color: #0f1419;
    min-height: 100vh;
    padding: 2rem 0;
}

@media (min-width: 640px) {
    .refer-page-bg {
        padding: 4rem 0;
    }
}

.refer-container {
    max-width: 56rem;
    /* max-w-4xl */
    margin: 0 auto;
    padding: 0 1rem;
}

.refer-header {
    margin-bottom: 2rem;
}

@media (min-width: 640px) {
    .refer-header {
        margin-bottom: 3rem;
    }
}

.icon-box-lg-refer {
    width: 4rem;
    height: 4rem;
    background-color: rgba(37, 99, 235, 0.2);
    /* bg-blue-600/20 */
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 2rem;
}

.refer-title {
    font-size: 1.5rem;
    /* text-2xl */
    font-weight: 700;
    color: white;
    margin-bottom: 0.75rem;
}

@media (min-width: 640px) {
    .refer-title {
        font-size: 1.875rem;
        /* text-3xl */
    }
}

@media (min-width: 768px) {
    .refer-title {
        font-size: 2.25rem;
        /* text-4xl */
    }
}

.refer-desc {
    font-size: 0.875rem;
    /* text-sm */
    color: #9ca3af;
    max-width: 42rem;
    margin: 0 auto;
}

@media (min-width: 640px) {
    .refer-desc {
        font-size: 1rem;
        /* text-base */
    }
}

.refer-content-space {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.refer-card {
    background-color: #1a2332;
    border: 1px solid #374151;
    /* border-gray-700 */
    border-radius: 0.5rem;
    padding: 1.5rem;
}

.card-heading {
    font-size: 1.125rem;
    /* text-lg */
    font-weight: 600;
    color: white;
    margin-bottom: 1rem;
}

.refer-link-group {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

@media (min-width: 640px) {
    .refer-link-group {
        flex-direction: row;
    }
}

.refer-input {
    flex: 1;
    background-color: rgba(17, 24, 39, 0.5);
    /* bg-gray-900/50 */
    border: 1px solid #374151;
    border-radius: 0.375rem;
    padding: 0.5rem 0.75rem;
    color: white;
    font-family: monospace;
    font-size: 0.875rem;
}

.refer-copy-btn {
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-success {
    background-color: #16a34a;
    /* green-600 */
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 0.375rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}

.btn-success:hover {
    background-color: #15803d;
    /* green-700 */
}

/* Stats Cards */
.stats-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.stat-card {
    background-color: #1a2332;
    border: 1px solid #374151;
    border-radius: 0.5rem;
    padding: 1.5rem;
    transition: var(--transition);
}

.stat-card:hover {
    border-color: rgba(59, 130, 246, 0.5);
    /* border-blue-500/50 */
}

.stat-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
}

.icon-box-sm-blue,
.icon-box-sm-green,
.icon-box-sm-purple {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.icon-box-sm-blue {
    background-color: rgba(37, 99, 235, 0.2);
    border: 1px solid rgba(59, 130, 246, 0.3);
}

.icon-box-sm-green {
    background-color: rgba(22, 163, 74, 0.2);
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.icon-box-sm-purple {
    background-color: rgba(147, 51, 234, 0.2);
    border: 1px solid rgba(168, 85, 247, 0.3);
}

.text-green-500 {
    color: #22c55e;
}

.text-purple-500 {
    color: #a855f7;
}

.stat-label {
    color: #9ca3af;
    /* text-gray-400 */
    font-size: 0.875rem;
    /* text-sm */
    margin-bottom: 0.25rem;
}

.stat-value {
    font-size: 1.5rem;
    /* text-2xl */
    font-weight: 700;
    color: white;
}

@media (min-width: 640px) {
    .stat-value {
        font-size: 1.875rem;
        /* text-3xl */
    }
}

/* Steps List */
.steps-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.step-item {
    display: flex;
    align-items: start;
    gap: 0.75rem;
}

.step-number {
    width: 2rem;
    height: 2rem;
    background-color: rgba(37, 99, 235, 0.2);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #3b82f6;
    /* blue-500 */
    font-weight: 600;
    font-size: 0.875rem;
}

.step-title {
    color: white;
    font-weight: 500;
    margin-bottom: 0.25rem;
}

.step-desc {
    color: #9ca3af;
    /* text-gray-400 */
    font-size: 0.875rem;
}

/* Note Card */
.note-card {
    background-color: rgba(37, 99, 235, 0.1);
    /* bg-blue-600/10 */
    border: 1px solid rgba(59, 130, 246, 0.3);
    /* border-blue-500/30 */
    border-radius: 0.5rem;
    padding: 1.5rem;
}

.note-flex {
    display: flex;
    align-items: start;
    gap: 0.75rem;
}

.note-icon-box {
    width: 2.5rem;
    height: 2.5rem;
    background-color: rgba(37, 99, 235, 0.2);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.25rem;
}

.note-title {
    color: white;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.note-text {
    color: #d1d5db;
    /* text-gray-300 */
    font-size: 0.875rem;
    line-height: 1.6;
}

/* Blog Page Styles */
.blog-page {
    background-color: var(--bg-main);
}

.blog-hero {
    position: relative;
    padding: 6rem 0 4rem;
    background: linear-gradient(to bottom, #1a1f2e, #0f1419);
    border-bottom: 1px solid var(--border);
    overflow: hidden;
}

.blog-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.blog-hero .container {
    position: relative;
    z-index: 1;
}

.blog-hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.blog-main {
    padding: 4rem 0;
}

.blog-layout {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

@media (min-width: 1024px) {
    .blog-layout {
        flex-direction: row;
    }
}

.blog-sidebar {
    width: 100%;
}

@media (min-width: 1024px) {
    .blog-sidebar {
        width: 280px;
        flex-shrink: 0;
    }
}

.sidebar-card {
    background-color: #1a2332;
    border: 1px solid var(--border);
    border-radius: 1rem;
    padding: 1.5rem;
    position: sticky;
    top: 100px;
}

.sidebar-title {
    font-size: 1.25rem;
    color: white;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.category-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.category-btn {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 0.75rem 1rem;
    background: transparent;
    border: none;
    border-radius: 0.5rem;
    color: var(--text-muted);
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    text-align: left;
}

.category-btn:hover {
    background-color: rgba(31, 41, 55, 0.5);
    color: white;
}

.category-btn.active {
    background-color: #2563eb;
    color: white;
}

.category-count {
    font-size: 0.75rem;
    padding: 0.125rem 0.5rem;
    background-color: rgba(31, 41, 55, 0.8);
    border-radius: 999px;
    color: var(--text-muted);
}

.category-btn.active .category-count {
    background-color: #1d4ed8;
    color: white;
}

.blog-content {
    flex-grow: 1;
}

.blog-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.blog-card {
    background-color: #1a2332;
    border: 1px solid var(--border);
    border-radius: 1rem;
    overflow: hidden;
    transition: var(--transition);
    cursor: pointer;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    border-color: rgba(59, 130, 246, 0.5);
    transform: translateY(-4px);
}

.blog-card-img-wrapper {
    height: 200px;
    position: relative;
    overflow: hidden;
}

.blog-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.blog-card:hover .blog-card-img {
    transform: scale(1.1);
}

.blog-card-overlay {
    position: absolute;
    inset: 0;
    opacity: 0.9;
    mix-blend-mode: overlay;
    z-index: 1;
}

.bg-blue-purple {
    background: linear-gradient(to bottom right, #3b82f6, #9333ea);
}

.bg-green-teal {
    background: linear-gradient(to bottom right, #10b981, #0d9488);
}

.bg-orange-red {
    background: linear-gradient(to bottom right, #f59e0b, #dc2626);
}

.bg-pink-rose {
    background: linear-gradient(to bottom right, #ec4899, #e11d48);
}

.bg-indigo-blue {
    background: linear-gradient(to bottom right, #6366f1, #3b82f6);
}

.bg-yellow-orange {
    background: linear-gradient(to bottom right, #eab308, #ea580c);
}

.blog-card-body {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-card-tag {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background-color: rgba(37, 99, 235, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.3);
    color: #60a5fa;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 500;
    margin-bottom: 1rem;
    width: fit-content;
}

.blog-card-title {
    font-size: 1.25rem;
    color: white;
    margin-bottom: 0.75rem;
    font-weight: 700;
    line-height: 1.4;
    transition: var(--transition);
}

.blog-card:hover .blog-card-title {
    color: #60a5fa;
}

.blog-card-excerpt {
    color: var(--text-muted);
    font-size: 0.875rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-card-footer {
    margin-top: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid rgba(75, 85, 99, 0.2);
}

.blog-card-meta {
    display: flex;
    gap: 1rem;
    color: var(--text-dark);
    font-size: 0.75rem;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 0.375rem;
}

.meta-icon {
    width: 12px;
    height: 12px;
}

.arrow-icon {
    width: 16px;
    height: 16px;
    color: #3b82f6;
    transition: var(--transition);
}

.blog-card:hover .arrow-icon {
    transform: translateX(4px);
}
#contact-form .btn-primary{
    background-color: #2563eb;
}