/* CASINDI - Dark Theme Design */

/* Root Variables */
:root {
    --primary-bg: #0a0a0a;
    --secondary-bg: #1a1a1a;
    --card-bg: #2a2a2a;
    --card-border: #3a3a3a;
    --text-primary: #ffffff;
    --text-secondary: #DED6DC;
    --text-muted: #808080;
    --accent-color: #7226FF;
    --accent-hover: #3d8ce6;
    --success-color: #00d4aa;
    --border-radius: 20px;
    --border-radius-sm: 15px;
    --border-radius-lg: 25px;
    --shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    --shadow-hover: 0 12px 48px rgba(0, 0, 0, 0.4);
}

/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', sans-serif;
    background: var(--primary-bg);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--secondary-bg);
}

::-webkit-scrollbar-thumb {
    background: var(--accent-color);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent-hover);
}

/* Navigation */
.navbar {
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--card-border);
    padding: 12px 0;
    transition: all 0.3s ease;
}

.navbar-brand {
    color: var(--text-primary) !important;
    font-weight: 700;
    font-size: 1.5rem;
    text-decoration: none;
    display: flex;
    align-items: center;
}

.navbar-brand img {
    vertical-align: middle;
}

.brand-text {
    background: linear-gradient(135deg, var(--accent-color), var(--success-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.navbar-nav {
    align-items: center;
}

.navbar-nav .nav-link {
    color: var(--text-secondary) !important;
    font-weight: 500;
    margin: 0 8px;
    padding: 8px 16px !important;
    border-radius: var(--border-radius-sm);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.navbar-nav .nav-link:hover {
    color: var(--text-primary) !important;
    background: rgba(74, 158, 255, 0.1);

}

.login-btn {
    border: 1px solid var(--card-border) !important;
    border-radius: var(--border-radius-lg) !important;
}

.signup-btn {
    background: var(--accent-color) !important;
    color: var(--text-primary) !important;
    border-radius: var(--border-radius-lg) !important;
}

.signup-btn:hover {
    background: var(--accent-hover) !important;
}

.navbar-toggler {
    border: none;
    padding: 4px 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.8%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    width: 24px;
    height: 24px;
}

/* Hero Section */
.hero-section {
    background: url('./hero-section-banner.png');
    display: flex;
    align-items: center;
    padding: 120px 0 20px;
    position: relative;
    overflow: hidden;
    background-size: cover;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 1;
}

.wave-pattern {
    display: none;
    /* Hide since we're using the background image */
}

.molecular-animation {
    display: none;
    /* Hide since we're using the background image */
}

.molecule {
    position: absolute;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    opacity: 0.6;
    animation: float 6s ease-in-out infinite;
}

.molecule-1 {
    background: radial-gradient(circle, rgba(74, 158, 255, 0.3), rgba(74, 158, 255, 0.1));
    top: 20%;
    right: 15%;
    animation-delay: 0s;
}

.molecule-2 {
    background: radial-gradient(circle, rgba(0, 212, 170, 0.3), rgba(0, 212, 170, 0.1));
    top: 60%;
    right: 25%;
    animation-delay: 2s;
    width: 40px;
    height: 40px;
}

.molecule-3 {
    background: radial-gradient(circle, rgba(255, 107, 107, 0.3), rgba(255, 107, 107, 0.1));
    top: 40%;
    right: 5%;
    animation-delay: 4s;
    width: 30px;
    height: 30px;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }

    33% {
        transform: translateY(-20px) rotate(120deg);
    }

    66% {
        transform: translateY(10px) rotate(240deg);
    }
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

.highlight-text {
    background: #F042FF;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    position: relative;
}

.chemical-structure {
    position: relative;
    animation: pulse 4s ease-in-out infinite;
}

.molecule-svg {
    width: 100%;
    max-width: 400px;
    height: auto;
    filter: drop-shadow(0 0 20px rgba(74, 158, 255, 0.3));
}

.atom {
    animation: atomPulse 3s ease-in-out infinite;
}

.atom.carbon {
    fill: #4a9eff;
}

.atom.oxygen {
    fill: #ff6b6b;
}

.atom.nitrogen {
    fill: #00d4aa;
}

.atom.hydrogen {
    fill: #ffffff;
}

.bond {
    stroke: rgba(255, 255, 255, 0.6);
    stroke-width: 2;
    animation: bondGlow 2s ease-in-out infinite alternate;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

@keyframes atomPulse {

    0%,
    100% {
        opacity: 0.8;
    }

    50% {
        opacity: 1;
    }
}

@keyframes bondGlow {
    0% {
        stroke-opacity: 0.6;
    }

    100% {
        stroke-opacity: 1;
    }
}

.hero-title {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--text-primary), var(--text-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 30px;
    font-weight: 600;
    color: var(--accent-color);
    margin-bottom: 2rem;
    line-height: 1.3;
}

.hero-description {
    list-style: none;
    line-height: inherit;
    font-size: 24px;
    color: var(--text-secondary);
    max-width: 100%;
    position: relative;
    margin-bottom: 12px;
    text-align: start;
}

.hero-description li {
    list-style: none;
    position: relative;
    padding-left: 20px;
    text-indent: -20px;
}

.hero-description li::before {
    content: "●";
    color: var(--accent-color);
    font-size: 24px;
    line-height: 1.6;
    flex-shrink: 0;
    margin-top: 6px;
    margin-right: 10px;
}

.hero-description li span {
    color: #F042FF;
    font-weight: 600;
}




/* Stat Cards */
.stat-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--border-radius);
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
    justify-content: space-between;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: transparent linear-gradient(269deg, #7226FF 0%, #782180 100%) 0% 0% no-repeat padding-box;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: var(--accent-color);
}

.stat-card.secondary {
    background: rgba(42, 42, 42, 0.5);
    border-color: rgba(58, 58, 58, 0.5);
}

.stat-label {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
    font-weight: 500;
    min-height: 50px;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0;
}

/* Buttons */
.btn {
    border-radius: var(--border-radius-lg);
    padding: 12px 30px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: none;
    text-decoration: none;
    display: inline-block;
}

.btn-primary {
    background: transparent linear-gradient(98deg, #F042FF 0%, #7226FF 100%) 0% 0% no-repeat padding-box;
    color: var(--text-primary);
    box-shadow: 0 4px 20px rgba(74, 158, 255, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(74, 158, 255, 0.4);
    color: var(--text-primary);
}

.btn-outline-light {
    border: 2px solid var(--text-secondary);
    color: var(--text-secondary);
    background: transparent;
}

.btn-outline-light:hover {
    background: var(--text-secondary);
    color: var(--primary-bg);
    border-color: var(--text-secondary);
}

.hero-buttons {
    margin-top: 3rem;
}

/* Section Styles */
section {
    padding: 40px 0;
}

/* Compact Section Spacing */
.py-4 {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
}

.py-3 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
    text-align: center;
}

.section-subtitle {
    font-size: 24px;
    color: #F042FF;
    text-align: center;
    margin-bottom: 2rem;
}

/* About Us Section */
.about-section {
    background: var(--primary-bg);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.about-grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        linear-gradient(rgba(147, 51, 234, 0.3) 1px, transparent 1px),
        linear-gradient(90deg, rgba(147, 51, 234, 0.3) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.3;
    pointer-events: none;
}

.section-subtitle-purple {
    font-size: 24px;
    color: #a855f7;
    text-align: center;
    margin-bottom: 2rem;
    font-weight: 500;
}


.joint-venture-text {
    color: var(--text-secondary);
    font-size: 24px;
    font-weight: 500;
    margin: 0;
    line-height: inherit;
}

.about-companies {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.company-card {
    display: flex;
    align-items: stretch;
    background: var(--card-bg);
    border: 2px solid #a855f7;
    border-radius: var(--border-radius);
    overflow: hidden;
    position: relative;
    min-height: 200px;
}

.company-logo-container {
    flex: 0 0 300px;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 2rem;
}

.company-logo {
    text-align: center;
}

.logo-text {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
    line-height: 1.2;
}

.logo-subtitle {
    font-size: 0.9rem;
    color: #666;
    margin: 0.5rem 0 0 0;
    font-weight: 400;
}

.company-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #a855f7;
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.company-content {
    flex: 1;
    padding: 2rem;
    display: flex;
    align-items: center;
    position: relative;
}

.company-description {
    flex: 1;
}

.company-description p {
    color: var(--text-secondary);
    line-height: inherit;
    margin-bottom: 1rem;
    font-size: 18px;
}

.company-description p:last-child {
    margin-bottom: 0;
}

.company-badge-right {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: #a855f7;
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* Categories Section */
.categories-section {
    background: var(--secondary-bg);
    padding: 80px 0;
    padding-top: 80px;
}

.category-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--border-radius);
    padding: 2rem;
    height: 100%;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: transparent linear-gradient(269deg, #7226FF 0%, #782180 100%) 0% 0% no-repeat padding-box;
}

.category-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: var(--accent-color);
}

.category-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.category-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent-color), var(--success-color));
    border-radius: var(--border-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.category-icon i {
    font-size: 1.5rem;
    color: var(--text-primary);
}

.category-header h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
}

.category-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.category-tag {
    background: rgba(74, 158, 255, 0.1);
    color: var(--accent-color);
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius-lg);
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid rgba(74, 158, 255, 0.2);
    transition: all 0.3s ease;
    cursor: pointer;
}

.category-tag:hover {
    background: #782180;
    color: var(--text-primary);
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(74, 158, 255, 0.3);
}

/* Services Section */
.services-section {
    background: var(--primary-bg);
}

.service-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--border-radius);
    padding: 2rem;
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-color), var(--success-color));
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: var(--accent-color);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--accent-color), var(--success-color));
    border-radius: var(--border-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.service-icon i {
    font-size: 1.8rem;
    color: var(--text-primary);
}

.service-card h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

/* Joint Venture Info */
.joint-venture-info {
    background: rgba(74, 158, 255, 0.1);
    border: 1px solid rgba(74, 158, 255, 0.3);
    border-radius: var(--border-radius-sm);
    padding: 1rem 1.5rem;
    margin: 1.5rem 0;
    text-align: center;
    width: 100%;
    box-sizing: border-box;
}

/* Joint Venture Info Centered with Auto Width */
.joint-venture-info-centered {
    display: inline-block;
}

.joint-venture-text {
    color: var(--text-secondary);
    font-size: 24px;
    font-weight: 500;
    margin: 0;
    line-height: auto;
}

.joint-venture-text strong {
    color: var(--text-secondary);
    font-weight: 700;
}

/* Pricing Section */
.pricing-section {
    background: var(--primary-bg);
    padding: 80px 0;
    padding-top: 80px;
}

.subscription-card {
    background: var(--card-bg);
    border: 2px solid #a855f7;
    border-radius: var(--border-radius);
    padding: 0;
    box-shadow: var(--shadow);
    overflow: hidden;
    position: relative;
    max-width: 500px;
    margin: 0 auto;
}

.subscription-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #a855f7, #d946ef);
}

.subscription-header {
    text-align: left;
    padding: 2.5rem 2rem;
}

.plan-name {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}

.plan-price {
    margin-bottom: 2rem;
}

.price-amount {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-primary);
    display: block;
    line-height: 1;
}

.gst-info {
    font-size: 1rem;
    color: var(--text-secondary);
    margin: 0.5rem 0;
}

.total-price {
    font-size: 24px;
    color: #F042FF;
    font-weight: 600;
    margin-top: 0.5rem;
}

.btn-choose-plan {
    color: white;
    padding: 0.8rem 3.4rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    display: inline-block;
    transition: all 0.3s ease;
    border: none;
    background: transparent linear-gradient(94deg, #F042FF 0%, #7226FF 100%) 0% 0% no-repeat padding-box;
}

.btn-choose-plan:hover {
    background: #9333ea;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(168, 85, 247, 0.4);
}

.subscription-features {
    padding: 2rem;
    padding-top: 0px;
    background: var(--card-bg);
}

.subscription-features .feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 15px;
    padding: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.subscription-features .feature-item:last-child {
    border-bottom: none;
}

.subscription-features .feature-item i {
    color: #a855f7;
    font-size: 1.2rem;
    width: 24px;
    text-align: center;
}

.subscription-features .feature-item span {
    color: var(--text-secondary);
    font-size: 1rem;
    font-weight: 500;
}

/* Features & Workflow Section */
.features-workflow {
    padding: 2rem;
}

.features-title {
    color: var(--text-primary);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    border-bottom: 2px solid var(--accent-color);
    padding-bottom: 0.5rem;
}

.basic-features {
    margin-bottom: 2rem;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: rgba(74, 158, 255, 0.1);
    border-radius: var(--border-radius-sm);
    border: 1px solid rgba(74, 158, 255, 0.2);
}

.feature-item i {
    color: var(--accent-color);
    font-size: 1.1rem;
    width: 20px;
}

.feature-item span {
    color: var(--text-primary);
    font-size: 0.9rem;
    font-weight: 500;
}

/* Workflow Steps */
.workflow-steps {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.workflow-step {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--secondary-bg);
    border-radius: var(--border-radius-sm);
    border: 1px solid var(--card-border);
    transition: all 0.3s ease;
}

.workflow-step:hover {
    border-color: var(--accent-color);
    background: rgba(74, 158, 255, 0.05);
}

.step-icon-small {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--accent-color), var(--success-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.step-icon-small i {
    color: var(--text-primary);
    font-size: 1rem;
}

.step-info h6 {
    color: var(--text-primary);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.step-info p {
    color: var(--text-secondary);
    font-size: 0.85rem;
    margin: 0;
    line-height: 1.4;
}

.workflow-arrow {
    text-align: center;
    color: var(--accent-color);
    font-size: 1rem;
    margin: 0.25rem 0;
}

/* Feature Rows for Single Plan */
.feature-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid var(--card-border);
}

.feature-row:last-child {
    border-bottom: none;
}

.feature-name {
    color: var(--text-secondary);
    font-size: 0.95rem;
    font-weight: 500;
}

.feature-value {
    color: var(--text-primary);
    font-weight: 600;
    font-size: 1rem;
}

.feature-value i {
    font-size: 1.1rem;
}

.text-success {
    color: var(--success-color) !important;
}

.text-danger {
    color: #ef4444 !important;
}

/* Legacy pricing features for backward compatibility */
.pricing-features ul {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.pricing-features li {
    padding: 0.75rem 0;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.pricing-features i {
    color: var(--success-color);
    font-size: 0.9rem;
    width: 16px;
}

/* Contact Section */
.contact-section {
    background: var(--primary-bg);
    padding: 40px 0;
}

.contact-form {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--border-radius);
    padding: 2.5rem;
    box-shadow: var(--shadow);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-control {
    background: var(--secondary-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--border-radius-sm);
    color: var(--text-primary);
    padding: 12px 16px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-control:focus {
    background: var(--secondary-bg);
    border-color: var(--accent-color);
    color: var(--text-primary);
    box-shadow: 0 0 0 0.2rem rgba(74, 158, 255, 0.25);
}

.form-control::placeholder {
    color: var(--text-muted);
}

.contact-info {
    text-align: center;
    padding: 1.5rem;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent-color), var(--success-color));
    border-radius: var(--border-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.contact-icon i {
    font-size: 1.5rem;
    color: var(--text-primary);
}

.contact-info h5 {
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.contact-info p {
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.6;
}

/* Footer */
.footer {
    background: var(--secondary-bg);
    border-top: 1px solid var(--card-border);
    padding: 60px 0 30px;
}

.footer-brand h5 {
    color: var(--text-primary);
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-brand p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--border-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--accent-color);
    color: var(--text-primary);
    border-color: var(--accent-color);
    transform: translateY(-2px);
}

.footer-title {
    color: var(--text-primary);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--accent-color);
}

.footer hr {
    border-color: var(--card-border);
    margin: 2rem 0 1rem;
}

.footer .row:last-child p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
        text-align: center;
    }

    .hero-subtitle {
        font-size: 1.5rem;
        text-align: center;
    }

    .hero-description {
        font-size: 18px;
        line-height: 1.4;
    }

    .hero-description li::before {
        font-size: 18px;
        margin-right: 6px;
    }

    .hero-visual {
        margin-top: 2rem;
    }

    .molecule-svg {
        max-width: 300px;
    }

    .molecule {
        display: none;
    }

    .section-title {
        font-size: 2rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .pricing-card.featured {
        transform: none;
        margin-bottom: 2rem;
    }

    .pricing-card.featured:hover {
        transform: translateY(-8px);
    }

    .amount {
        font-size: 2.5rem;
    }

    .category-tags {
        gap: 0.25rem;
    }

    .category-tag {
        font-size: 0.75rem;
        padding: 0.4rem 0.8rem;
    }

    .contact-form {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.25rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .stat-card,
    .category-card,
    .service-card,
    .pricing-card {
        padding: 1rem 0.75rem;
    }

    .stat-card {
        min-height: 120px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        text-align: center;
    }

    .stat-label {
        font-size: 0.75rem;
        line-height: 1.2;
        margin-bottom: 0.5rem;
        word-wrap: break-word;
        hyphens: auto;
    }

    .stat-number {
        font-size: 1.8rem;
        font-weight: 700;
        line-height: 1;
    }

    .contact-form {
        padding: 1.5rem;
    }

    .hero-section {
        padding: 100px 0 40px;
    }

    section {
        padding: 30px 0;
    }

    /* Enhanced Pricing Mobile */
    .pricing-card-enhanced .row {
        flex-direction: column;
    }

    .pricing-header {
        border-right: none;
        border-bottom: 1px solid var(--card-border);
        padding: 1.5rem;
    }

    .features-workflow {
        padding: 1.5rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .workflow-step {
        padding: 0.75rem;
    }

    .step-info h6 {
        font-size: 0.9rem;
    }

    .step-info p {
        font-size: 0.8rem;
    }

    .feature-item {
        padding: 0.5rem;
    }

    .feature-item span {
        font-size: 0.85rem;
    }
}

/* Extra Small Mobile Devices */
@media (max-width: 480px) {
    .stat-card {
        padding: 0.75rem 0.5rem;
        min-height: 100px;
    }

    .stat-label {
        font-size: 0.7rem;
        line-height: 1.1;
        margin-bottom: 0.4rem;
        overflow-wrap: break-word;
        word-break: break-word;
    }

    .stat-number {
        font-size: 1.5rem;
        font-weight: 700;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 0.75rem;
    }

    .hero-buttons .btn {
        width: 100%;
        max-width: 200px;
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .navbar-brand img {
        height: 35px;
    }

    .container {
        padding-left: 10px;
        padding-right: 10px;
    }
}

/* Ultra Small Screens */
@media (max-width: 360px) {
    .stat-card {
        padding: 0.5rem 0.25rem;
        min-height: 90px;
    }

    .stat-label {
        font-size: 0.65rem;
        line-height: 1;
        margin-bottom: 0.3rem;
    }

    .stat-number {
        font-size: 1.3rem;
    }

    .g-3 {
        --bs-gutter-x: 0.5rem;
        --bs-gutter-y: 0.5rem;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease forwards;
}

/* Legal Pages Styles */
.legal-section {
    background: var(--primary-bg);
    padding: 120px 0 80px;
    min-height: 100vh;
}

.legal-content {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--border-radius);
    padding: 3rem;
    box-shadow: var(--shadow);
}

.legal-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
    text-align: center;
}

.legal-updated {
    text-align: center;
    color: var(--text-secondary);
    font-style: italic;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--card-border);
}

.legal-section-content {
    margin-bottom: 2.5rem;
}

.legal-section-content h2 {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
    padding-top: 1rem;
}

.legal-section-content h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--accent-color);
    margin-bottom: 0.8rem;
    margin-top: 1.5rem;
}

.legal-section-content p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.legal-section-content ul {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}

.legal-section-content li {
    margin-bottom: 0.5rem;
}

.legal-section-content strong {
    color: var(--text-primary);
    font-weight: 600;
}

/* Enhanced Responsive Design */
@media (max-width: 1200px) {
    .pricing-card.single-plan {
        max-width: 400px;
    }
}

@media (max-width: 992px) {
    .hero-section {
        padding: 120px 0 20px;
    }

    .hero-section .row {
        align-items: stretch;
    }

    .hero-content {
        text-align: center;
        margin-bottom: 1rem;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .hero-stats-container {
        margin-top: 1rem;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .pricing-card.single-plan {
        max-width: 100%;
    }

    .joint-venture-info {
        margin: 1rem 0;
        padding: 0.8rem 1rem;
    }

    .joint-venture-text {
        font-size: 0.9rem;
    }

    .categories-section {
        padding-top: 20px;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 10px 0;
    }

    .navbar-nav .nav-link {
        margin: 0 4px;
        padding: 6px 12px !important;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.5rem;
    }

    .hero-description {
        font-size: 1rem;
        text-align: left;
    }

    .section-title {
        font-size: 2rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .stat-card {
        padding: 1.5rem 1rem;
    }

    .pricing-card {
        padding: 2rem 1.5rem;
    }

    .pricing-card.single-plan {
        max-width: 100%;
    }

    .amount {
        font-size: 2.5rem;
    }

    .category-tags {
        gap: 0.25rem;
    }

    .category-tag {
        font-size: 0.75rem;
        padding: 0.4rem 0.8rem;
    }

    .contact-form {
        padding: 2rem 1.5rem;
    }

    .legal-content {
        padding: 2rem 1.5rem;
    }

    .legal-title {
        font-size: 2rem;
    }

    .joint-venture-info {
        margin: 1rem 0;
        padding: 0.8rem 1rem;
    }

    .joint-venture-text {
        font-size: 0.85rem;
        line-height: 1.4;
    }

    /* Infographic Mobile Styles */
    .infographic-container {
        flex-direction: column;
        gap: 3rem;
    }

    .infographic-step {
        max-width: 100%;
    }

    .step-arrow {
        display: none;
    }

    .step-icon {
        width: 70px;
        height: 70px;
    }

    .step-icon i {
        font-size: 1.8rem;
    }

    .step-content h4 {
        font-size: 1.1rem;
    }

    .step-content p {
        font-size: 0.85rem;
    }

    .benefit-card {
        padding: 1.5rem;
    }

    .benefit-icon {
        width: 50px;
        height: 50px;
    }

    .benefit-icon i {
        font-size: 1.3rem;
    }

    /* Enhanced Pricing Mobile */
    .pricing-card-enhanced .row {
        flex-direction: column;
    }

    .pricing-header {
        border-right: none;
        border-bottom: 1px solid var(--card-border);
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .workflow-step {
        padding: 0.75rem;
    }

    .step-info h6 {
        font-size: 0.9rem;
    }

    .step-info p {
        font-size: 0.8rem;
    }
}

@media (max-width: 576px) {
    .navbar {
        padding: 8px 0;
    }

    .navbar-brand {
        font-size: 1.3rem;
    }

    .navbar-brand img {
        height: 35px;
    }

    .hero-title {
        font-size: 2rem;
        text-align: center;
    }

    .hero-subtitle {
        font-size: 1.25rem;
        text-align: center;
    }

    .hero-description {
        font-size: 16px;
        line-height: 1.3;
    }

    .hero-description li::before {
        font-size: 16px;
        margin-right: 5px;
    }
    .hero-description li {
        text-indent: -15px;
        padding-left: 0px;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .stat-card,
    .category-card,
    .service-card,
    .pricing-card {
        padding: 1.5rem;
    }

    .contact-form {
        padding: 1.5rem;
    }

    .hero-section {
        padding: 100px 0 60px;
    }

    section {
        padding: 60px 0;
    }

    .legal-content {
        padding: 1.5rem;
    }

    .legal-title {
        font-size: 1.75rem;
    }

    .legal-section-content h2 {
        font-size: 1.5rem;
    }

    .legal-section-content h3 {
        font-size: 1.2rem;
    }

    .joint-venture-info {
        margin: 0.8rem 0;
        padding: 0.6rem 0.8rem;
    }

    .joint-venture-text {
        font-size: 0.8rem;
        line-height: 1.3;
    }

    .hero-buttons {
        margin-top: 2rem;
        display: flex;
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }

    .hero-buttons .btn {
        width: 100%;
        max-width: 250px;
    }
}

/* iPad Specific Styles */
@media (min-width: 768px) and (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }

    .hero-title {
        font-size: 2.8rem;
    }

    .hero-subtitle {
        font-size: 1.6rem;
    }

    .stat-card {
        padding: 1.8rem 1.2rem;
    }

    .category-card {
        padding: 2rem 1.5rem;
    }

    .pricing-card.single-plan {
        max-width: 450px;
    }

    .legal-content {
        padding: 2.5rem;
    }
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--accent-color), var(--success-color));
    border: none;
    border-radius: 50%;
    color: var(--text-primary);
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(74, 158, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
}

.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(74, 158, 255, 0.4);
}

.scroll-to-top i {
    font-size: 1.1rem;
    line-height: 1;
}

/* CAS Search Section */
.cas-search-section {
    background: var(--primary-bg);
    padding: 40px 0;
}

.cas-search-box {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    box-shadow: var(--shadow);
}

.cas-search-box .input-group {
    border-radius: var(--border-radius);
    overflow: hidden;
}

.cas-search-box .form-control {
    border: none;
    background: var(--secondary-bg);
    color: var(--text-primary);
    font-size: 1.1rem;
    padding: 15px 20px;
}

.cas-search-box .btn {
    padding: 15px 25px;
    font-weight: 600;
}

.search-result-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--border-radius);
    padding: 2rem;
    margin-bottom: 1rem;
    box-shadow: var(--shadow);
}

.search-result-card h5 {
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-weight: 600;
}

.chemical-info {
    color: var(--text-secondary);
    line-height: 1.6;
}

.supplier-communication {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    box-shadow: var(--shadow);
}

.supplier-communication h6 {
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-weight: 600;
}

.supplier-list {
    max-height: 200px;
    overflow-y: auto;
    margin-bottom: 1rem;
}

.supplier-item {
    background: var(--secondary-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--border-radius-sm);
    padding: 0.75rem;
    margin-bottom: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.supplier-item:hover {
    border-color: var(--accent-color);
    background: rgba(74, 158, 255, 0.1);
}

.supplier-name {
    color: var(--text-primary);
    font-weight: 500;
    font-size: 0.9rem;
}

.supplier-location {
    color: var(--text-secondary);
    font-size: 0.8rem;
}

.communication-panel textarea {
    background: var(--secondary-bg);
    border: 1px solid var(--card-border);
    color: var(--text-primary);
    resize: vertical;
}

/* GST Info Styles */
.gst-info {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--card-border);
}

.gst-text {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.total-price {
    color: #F042FF;
    font-size: 24px;
    margin-top: 0.25rem;
}

.secure-payment-text {
    color: var(--text-secondary);
    font-size: 0.85rem;
    display: block;
}

/* Infographic Section */
.infographic-section {
    background: var(--secondary-bg);
    padding: 80px 0;
}

.infographic-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-bottom: 3rem;
}

.infographic-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    flex: 1;
    min-width: 200px;
    max-width: 250px;
}

.step-number {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, var(--accent-color), var(--success-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    font-weight: 700;
    font-size: 0.9rem;
    z-index: 2;
}

.step-icon {
    width: 80px;
    height: 80px;
    background: var(--card-bg);
    border: 2px solid var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.step-icon i {
    font-size: 2rem;
    color: var(--accent-color);
}

.step-content h4 {
    color: var(--text-primary);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.step-content p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

.step-arrow {
    position: absolute;
    right: -30px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--accent-color);
    font-size: 1.5rem;
}

.infographic-step:last-child .step-arrow {
    display: none;
}

.infographic-step:hover .step-icon {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(74, 158, 255, 0.3);
}

.infographic-step:hover .step-icon i {
    color: var(--text-primary);
}

.infographic-step:hover .step-icon {
    background: linear-gradient(135deg, var(--accent-color), var(--success-color));
}

/* Benefits Grid */
.benefits-grid {
    margin-top: 4rem;
}

.benefit-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--border-radius);
    padding: 2rem 1.5rem;
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-color), var(--success-color));
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: var(--accent-color);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent-color), var(--success-color));
    border-radius: var(--border-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.benefit-icon i {
    font-size: 1.5rem;
    color: var(--text-primary);
}

.benefit-card h5 {
    color: var(--text-primary);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.benefit-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

/* Compact Section Spacing */
.py-4 {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
}

/* Large Desktop Styles */
@media (min-width: 1400px) {
    .container {
        max-width: 1320px;
    }

    .hero-title {
        font-size: 45px;
    }

    .hero-subtitle {
        font-size: 30px;
    }

    .section-title {
        font-size: 3rem;
    }
}

.states-card-section {
    padding-top: 80px;
}

/* Resp
onsive Design for About Section */
@media (max-width: 768px) {
    .company-card {
        flex-direction: column;
        min-height: auto;
    }

    .company-logo-container {
        flex: none;
        min-height: 150px;
    }

    .company-content {
        padding: 1.5rem;
    }

    .company-badge-right {
        position: static;
        align-self: flex-end;
        margin-top: 1rem;
    }

    .about-companies {
        gap: 2rem;
    }
}

@media (max-width: 576px) {
    .company-logo-container {
        padding: 1.5rem;
        min-height: 120px;
    }

    .logo-text {
        font-size: 1.5rem;
    }

    .company-content {
        padding: 1rem;
    }

    .company-description p {
        font-size: 0.9rem;
    }
}

/*
 Responsive Design for Subscription Section */
@media (max-width: 768px) {
    .subscription-card {
        max-width: 100%;
        margin: 0 1rem;
    }

    .subscription-header {
        padding: 2rem 1.5rem;
    }

    .plan-name {
        font-size: 1.5rem;
    }

    .price-amount {
        font-size: 2.5rem;
    }

    .subscription-features {
        padding: 1.5rem;
    }
}

@media (max-width: 576px) {
    .subscription-header {
        padding: 1.5rem 1rem;
    }

    .plan-name {
        font-size: 1.3rem;
    }

    .price-amount {
        font-size: 2rem;
    }

    .btn-choose-plan {
        padding: 0.7rem 2rem;
        font-size: 0.9rem;
    }

    .subscription-features {
        padding: 1rem;
    }

    .subscription-features .feature-item {
        padding: 0.8rem 0;
    }

    .subscription-features .feature-item span {
        font-size: 0.9rem;
    }
}

/* 
Sourcing Workflow Section */
.workflow-section {
    background: var(--primary-bg);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.workflow-container {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.workflow-steps-hex {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.workflow-step-hex {
    display: flex;
    align-items: center;
    position: relative;
}

.hex-shape {
    width: 200px;
    height: 173px;
    position: relative;
    margin: 0 1rem;
}

.hex-shape::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--card-bg);
    border: 2px solid #a855f7;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    transition: all 0.3s ease;
}

.hex-shape:hover::before {
    background: rgba(168, 85, 247, 0.1);
    border-color: #d946ef;
    transform: scale(1.05);
}

.hex-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 2;
    padding: 1rem;
}

.hex-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.8rem;
    line-height: 1.2;
}

.hex-content p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.3;
}

.highlight-number {
    color: #a855f7;
    font-weight: 700;
    font-size: 1rem;
}

.hex-connector {
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, #a855f7, #d946ef);
    position: relative;
    margin: 0 -1rem;
}

.hex-connector::after {
    content: '';
    position: absolute;
    right: -6px;
    top: -4px;
    width: 0;
    height: 0;
    border-left: 8px solid #d946ef;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
}

.workflow-step-hex:last-child .hex-connector {
    display: none;
}

/* Responsive Design for Workflow Section */
@media (max-width: 1200px) {
    .workflow-steps-hex {
        gap: 1rem;
    }

    .hex-shape {
        width: 180px;
        height: 156px;
    }

    .hex-content h4 {
        font-size: 1rem;
    }

    .hex-content p {
        font-size: 0.8rem;
    }
}

@media (max-width: 992px) {
    .workflow-steps-hex {
        flex-direction: column;
        gap: 2rem;
    }

    .hex-connector {
        transform: rotate(90deg);
        width: 30px;
        margin: -1rem 0;
    }

    .hex-connector::after {
        right: -4px;
        top: -4px;
        border-left: 6px solid #d946ef;
        border-top: 4px solid transparent;
        border-bottom: 4px solid transparent;
        transform: rotate(90deg);
    }

    .workflow-step-hex:last-child .hex-connector {
        display: none;
    }
}

@media (max-width: 768px) {
    .hex-shape {
        width: 160px;
        height: 139px;
    }

    .hex-content h4 {
        font-size: 0.9rem;
    }

    .hex-content p {
        font-size: 0.75rem;
    }

    .highlight-number {
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .workflow-section {
        padding: 60px 0;
    }

    .hex-shape {
        width: 140px;
        height: 121px;
    }

    .hex-content {
        padding: 0.5rem;
    }

    .hex-content h4 {
        font-size: 0.8rem;
        margin-bottom: 0.5rem;
    }

    .hex-content p {
        font-size: 0.7rem;
    }

    .highlight-number {
        font-size: 0.8rem;
    }
}
/* Section background same as workflow */
#events {
  background-color: #000; 
  padding: 40px 0;   
}
#events .section-title {
  color: #fff;
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 40px;
}

#events .container {
  max-width: 1140px;
  margin: 0 auto;
  position: relative;
  overflow: visible;
}

.carousel-wrapper {
  overflow: hidden;
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease;
  gap: 9px;
}

.carousel-item-custom {
  flex: 0 0 33.33%; /* default 3 per view */
  max-width: 33.33%;
}

.carousel-item-custom img {
  width: 100%;
  height: 250px;
  border-radius: 8px;
  object-fit: cover;
}

.carousel-button {
  position: absolute;
  top: 55%;
  transform: translateY(-50%);
  background: none;
  border: none;
  font-size: 40px;
  color: #fff;
  cursor: pointer;
  z-index: 5;
}

.carousel-button.prev {
  left: -40px;  
}

.carousel-button.next {
  right: -40px; 
}

/* Responsive */
@media (max-width: 1024px) {
  .carousel-item-custom {
    flex: 0 0 calc(33.333% - 6px); /* subtract part of gap to prevent cutting */
    max-width: calc(33.333% - 6px);
  }
    #events .container {
  max-width: 80%;
}
}

@media (max-width: 768px) {
 .carousel-item-custom {
    flex: 0 0 calc(33.333% - 6px); /* subtract part of gap to prevent cutting */
    max-width: calc(33.333% - 6px);
  }
      #events .container {
          max-width: 90%;
}
  .carousel-button.prev {
  left: -20px;  
}

.carousel-button.next {
  right: -20px; 
}
}

@media (max-width: 480px) {
  .carousel-item-custom {
    flex: 0 0 100%;
    max-width: 100%;
  }
  #events .container {
  max-width: 90%;
}
  .carousel-button.prev {
  left: -20px;  
}

.carousel-button.next {
  right: -20px; 
}
}

