/* Global Variables */
:root {
    --primary-color: #0d6efd; /* Blue */
    --secondary-color: #0dcaf0; /* Teal/Cyan */
    --accent-color: #6610f2; /* Purple/Indigo */
    --accent-orange: #fd7e14; /* Orange Texture */
    --text-color: #333;
    --light-bg: #f8f9fa;
    --white: #ffffff;
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    --transition-speed: 0.3s;
    --shadow-soft: 0 4px 6px rgba(0, 0, 0, 0.05);
}

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

body {
    font-family: var(--font-body);
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
}

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

ul {
    list-style: none;
}

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.sticky-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: background-color 0.3s, padding 0.3s, box-shadow 0.3s;
    padding: 20px 0;
    background-color: transparent; 
}

.sticky-header.scrolled {
    background-color: var(--white);
    padding: 10px 0;
    box-shadow: var(--shadow-soft);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.logo-img {
    height: 40px;
}

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

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

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

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

.nav-links a:hover::after {
    width: 100%;
}

.cta-buttons {
    display: flex;
    gap: 15px;
}

.btn {
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    display: inline-block;
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(13, 110, 253, 0.2);
}

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

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

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

.hamburger-menu {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Mobile Responsive Placeholder */
@media (max-width: 768px) {
    .nav-links {
        display: none; /* Add JS to toggle */
    }
    .cta-buttons {
        display: none; /* Add JS to toggle */
    }
}

/* Hero Section */
.hero-section {
    padding: 140px 0 80px; /* Top padding accounts for sticky header */
    background: linear-gradient(135deg, #f0f8ff 0%, #e6fffb 100%);
    position: relative;
    overflow: hidden;
}

.hero-background .blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    z-index: 0;
    opacity: 0.7;
    animation: moveBlob 20s infinite alternate;
}

.blob-1 {
    width: 500px;
    height: 500px;
    background: linear-gradient(180deg, rgba(13, 110, 253, 0.3) 0%, rgba(13, 202, 240, 0.3) 100%);
    top: -150px;
    right: -100px;
    animation-duration: 25s;
}

.blob-2 {
    width: 400px;
    height: 400px;
    background: linear-gradient(180deg, rgba(102, 16, 242, 0.25) 0%, rgba(13, 110, 253, 0.25) 100%);
    bottom: -100px;
    left: -100px;
    animation-duration: 30s;
    animation-direction: reverse;
}

.blob-3 {
    width: 300px;
    height: 300px;
    background: linear-gradient(180deg, rgba(13, 202, 240, 0.3) 0%, rgba(32, 201, 151, 0.3) 100%);
    bottom: 20%;
    right: 30%;
    animation-duration: 22s;
    animation-delay: -5s;
}

.blob-4 {
    width: 250px;
    height: 250px;
    background: rgba(253, 126, 20, 0.25); /* Orange Texture */
    top: 20%;
    left: 20%;
    animation-duration: 28s;
    animation-delay: -10s;
}

@keyframes moveBlob {
    0% {
        transform: translate(0, 0) scale(1);
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    }
    25% {
         transform: translate(50px, 30px) scale(1.1);
         border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%;
    }
    50% {
        transform: translate(-30px, 50px) scale(0.9);
        border-radius: 70% 30% 40% 60% / 30% 60% 40% 70%;
    }
    75% {
         transform: translate(20px, -40px) scale(1.05);
         border-radius: 40% 60% 30% 70% / 60% 40% 70% 30%;
    }
    100% {
        transform: translate(-20px, -20px) scale(1);
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    }
}


.hero-container {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.hero-content {
    flex: 1;
    /* Animation handled by AOS */
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--text-color);
}

.hero-title .highlight {
    background: linear-gradient(to right, var(--accent-orange), var(--primary-color), var(--accent-orange)); /* Orange -> Blue -> Orange */
    background-size: 200% auto;
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: textGradient 3s linear infinite;
    display: inline-block;
    font-weight: 700;
}

/* Clear the old underline */
.hero-title .highlight::after {
    display: none;
}

@keyframes textGradient {
    0% {
        background-position: 0% 50%;
    }
    100% {
        background-position: 200% 50%;
    }
}

.hero-subtitle {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--secondary-color); /* Actually using teal for subtitle pop */
    margin-bottom: 10px;
    color: #0d6efd; /* Override to blue for contrast */
}

.hero-description {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 30px;
    max-width: 500px;
}

.hero-cta {
    display: flex;
    gap: 15px;
}

.hero-visuals {
    flex: 1;
    display: flex;
    justify-content: center;
    position: relative;
}

.visual-container {
    position: relative;
    max-width: 500px;
}

.hero-img {
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    transform: perspective(1000px) rotateY(-5deg);
    transition: transform 0.5s;
}

.hero-img:hover {
    transform: perspective(1000px) rotateY(0deg);
}

/* Floating Elements */
.float-card {
    position: absolute;
    background: white;
    padding: 10px 15px;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 0.9rem;
    animation: float 6s ease-in-out infinite;
}

.float-card i {
    color: #198754; /* Success Green */
}

.card-1 {
    top: 20%;
    left: -30px;
    animation-delay: 0s;
}

.card-2 {
    bottom: 20%;
    right: -20px;
    animation-delay: 3s;
}

/* Why Us Section */
.why-us-section {
    padding: 80px 0;
    background-color: var(--white);
    position: relative;
}

.why-us-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 30c0-5 3-9 7-11 4-2 9-2 13 1 1 3 0 8-3 12s-8 5-13 3c-2-1-4-3-4-5zm0-1c-5 1-9-1-12-4-3-3-4-8-2-12 1-3 5-5 9-5 4 0 8 3 9 7 1 4-1 10-4 14z' fill='%23f0f0f0' fill-opacity='0.4' fill-rule='evenodd'/%3E%3C/svg%3E"); /* Simple abstract pattern */
    z-index: 0;
    opacity: 0.4;
    pointer-events: none;
}

/* Features Page Hero Specifics */
.features-hero-section {
    background-image: url('../images/wave_featurespage.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed; /* Parallax effect */
}

.features-hero-section::before {
    background: rgba(255, 255, 255, 0.9) !important; /* Strong white overlay */
    background-image: none !important; /* Remove pattern */
    backdrop-filter: blur(2px);
}

.section-header {
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: var(--text-color);
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;

}

.section-header p {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}


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

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 1;
    perspective: 1000px; /* Perspective for 3D effect */
}

.feature-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05); /* Deeper shadow */
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s; /* Bouncy transition */
    border-bottom: 3px solid transparent;
    position: relative;
    z-index: 1;
    transform-style: preserve-3d; /* Enable 3D children */
}

.feature-card:hover {
    transform: translateY(-15px) rotateX(5deg) rotateY(2deg); /* 3D Tilt */
    box-shadow: 0 20px 40px rgba(13, 110, 253, 0.15); /* Colored shadow */
    border-bottom-color: var(--primary-color);
}

.icon-box {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    background: rgba(13, 110, 253, 0.1);
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.3s, color 0.3s;
}

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

.feature-card h3 {
    margin-bottom: 15px;
    font-size: 1.25rem;
}

.feature-card p {
    color: #666;
    font-size: 0.95rem;
}

/* Feature Strip */
.feature-strip {
    background-color: var(--primary-color);
    padding: 15px 0;
    overflow: hidden;
    color: white;
}

.marquee-container {
    width: 100%;
    overflow: hidden;
}

.marquee-content {
    display: flex;
    gap: 50px;
    animation: marquee 20s linear infinite;
    white-space: nowrap;
}

.strip-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: transform 0.3s;
}

.strip-item:hover {
    transform: scale(1.1);
}

/* Animations */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Helper Class */
.text-center { text-align: center; }
.mt-3 { margin-top: 1rem; }
.mt-5 { margin-top: 3rem; }

/* Support Section */
.support-section {
    padding: 80px 0;
    background: white;
}

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

.support-card {
    text-align: center;
    padding: 30px 20px;
    border-radius: 15px;
    border: 1px solid #e9ecef;
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.support-icon {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.support-card:hover .support-icon {
    transform: rotate(5deg);
    transition: transform 0.3s;
}

/* Contact Section */
.contact-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #eef2ff 0%, #f0f7ff 100%);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
    padding: 50px;
}

.contact-info h2 {
    margin-bottom: 15px;
    color: var(--primary-color);
}

.contact-info p {
    margin-bottom: 30px;
    color: #666;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.info-item i {
    width: 40px;
    height: 40px;
    background: rgba(13, 110, 253, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
}

.map-embed {
    margin-top: 30px;
    height: 200px;
    background: #e9ecef;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #adb5bd;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ced4da;
    border-radius: 8px;
    font-family: inherit;
    transition: border 0.3s, box-shadow 0.3s;
}

.form-control:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 3px rgba(13, 110, 253, 0.2);
}

.form-checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 25px;
}

.btn-block {
    width: 100%;
}

/* Footer */
footer {
    background-color: #0d1b2a; /* Very Dark Blue */
    color: #e0e6ed;
    padding: 80px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 50px;
    margin-bottom: 30px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
}

.footer-logo img {
    height: 60px;
    filter: brightness(0) invert(1); /* Make logo white */
}

/* Home Values Section Spacing */
.home-values-section .values-list li {
    margin-bottom: 5px; /* Highly reduced margin */
    display: flex; /* Ensure flex alignment */
    align-items: flex-start; /* Align top to handle multi-line text */
    padding-bottom: 5px; /* Slight padding for breathing room but tight */
}

.values-content h2 {
    margin-bottom: 15px; /* Restore slight breathing room for title */
}

.footer-col h4 {
    color: white;
    margin-bottom: 25px;
    font-size: 1.1rem;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: #adb5bd;
    font-size: 0.95rem;
}

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

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
}

.social-links a:hover {
    background: var(--primary-color);
    color: white;
}

.footer-bottom {
    text-align: center;
    font-size: 0.9rem;
    color: #6c757d;
}


/* Product Section */
.product-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.product-tabs-container {
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    overflow: hidden;
    margin-top: 40px;
}

.tabs-header {
    display: flex;
    background: #eef2f7;
    border-bottom: 1px solid #dee2e6;
}

.tab-btn {
    flex: 1;
    padding: 20px;
    border: none;
    background: transparent;
    font-size: 1.1rem;
    font-weight: 600;
    color: #6c757d;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.tab-btn:hover {
    background: rgba(13, 110, 253, 0.05);
    color: var(--primary-color);
}

.tab-btn.active {
    background: white;
    color: var(--primary-color);
    border-top: 3px solid var(--primary-color);
}

.tabs-content {
    padding: 40px;
    min-height: 400px;
}

.tab-pane {
    display: none;
    animation: fadeIn 0.5s ease;
}

.tab-pane.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

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

.tab-text h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--text-color);
}

.tab-text ul {
    margin-bottom: 30px;
}

.tab-text ul li {
    margin-bottom: 15px;
    display: grid;
    grid-template-columns: 25px 160px 1fr; /* Icon, Label, Desc */
    gap: 10px;
    align-items: start;
}

.tab-text ul li i {
    color: var(--primary-color);
    margin-top: 4px; /* Align with text top */
}

/* Ensure strong label doesn't shrink */
.tab-text ul li strong {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis; /* Just in case */
}

/* Mockups */
/* Old CSS Mockups removed for images, keeping class for reference if needed or replacing */

.mockup-box-image {
    position: relative;
    border-radius: 10px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.15); /* Slightly stronger shadow for images */
    transform: rotateY(-10deg) rotateX(5deg); /* 3D Angle */
    transition: transform 0.5s ease, box-shadow 0.5s ease;
    transform-style: preserve-3d;
    overflow: hidden; /* Clip image to radius */
}

.mockup-box-image img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.mockup-box-image:hover {
    transform: rotateY(0deg) rotateX(0deg) scale(1.02);
    box-shadow: 0 25px 50px rgba(0,0,0,0.2);
}

/* Parent container needs perspective */
.tab-visual {
    perspective: 1500px;
    display: flex;
    justify-content: center;
    align-items: center; /* Center vertical */
}

.mockup-header {
    display: flex;
    gap: 5px;
    margin-bottom: 20px;
}

.dot { width: 10px; height: 10px; border-radius: 50%; }
.red { background: #ff5f56; }
.yellow { background: #ffbd2e; }
.green { background: #27c93f; }

.skeleton-chart {
    height: 100px;
    background: #dee2e6;
    border-radius: 5px;
    margin-bottom: 15px;
}

.skeleton-lines {
    height: 10px;
    background: #e9ecef;
    border-radius: 5px;
    width: 80%;
    margin-bottom: 10px;
}

.teeth-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    font-size: 2rem;
    gap: 10px;
    text-align: center;
}

/* Tech Section */
.tech-section {
    padding: 80px 0;
    background-color: #0b1c3c; /* Dark Blue */
    color: white;
    position: relative;
    overflow: hidden;
}

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

.tech-content h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.tech-features {
    margin-top: 30px;
}

.tech-features li {
    display: grid;
    grid-template-columns: 25px 190px 1fr; /* Fixed width for label column */
    gap: 10px;
    align-items: start; /* Top align for multi-line text */
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.tech-features i {
    color: var(--secondary-color);
    margin-top: 5px; /* Visual alignment with text */
}

.tech-stack {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.tech-badge {
    background: rgba(255,255,255,0.1);
    padding: 15px 25px;
    border-radius: 50px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: transform 0.3s;
}

.tech-badge:hover {
    transform: translateY(-5px);
    background: rgba(255,255,255,0.2);
}

/* About Section */
.about-section {
    padding: 100px 0;
}

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

.rounded-img {
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.about-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--text-color);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 columns for desktop */
    gap: 20px;
    margin-top: 40px;
}

@media (max-width: 992px) {
    .values-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 columns for tablet */
    }
}

@media (max-width: 576px) {
    .values-grid {
        grid-template-columns: 1fr; /* 1 column for mobile */
    }
}

.value-card {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
}

.value-card h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.value-card p {
    font-size: 0.9rem;
    margin-bottom: 0;
    color: #666;
}

/* -------------------------------------------
   New Sections Styling (Home Page)
   ------------------------------------------- */

/* Global Perspective for 3D */
.container {
    perspective: 1000px;
}

/* Process / How It Works */
.process-section {
    position: relative;
    background: white;
    overflow: visible; /* For 3D elements popping out */
}

.process-grid {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-top: 50px;
    position: relative;
}

.process-step {
    flex: 1;
    text-align: center;
    padding: 30px 20px;
    position: relative;
    z-index: 2;
    transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.4s ease;
    border-radius: 15px;
    background: white; /* Needed for reliable 3D */
}

.process-step:hover {
    transform: translateY(-10px) rotateX(5deg);
    box-shadow: 0 15px 35px rgba(253, 126, 20, 0.15); /* Orange shadow */
    z-index: 10;
}

.step-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    position: relative;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    transition: all 0.4s ease;
    border: 2px solid transparent;
}

.process-step:hover .step-icon {
    transform: scale(1.1) rotateZ(10deg);
    background: var(--primary-color); /* Blue bg on hover */
    border-color: rgba(253, 126, 20, 0.5); /* Orange border hint */
    box-shadow: 0 10px 25px rgba(13, 110, 253, 0.3);
}

.process-step:hover .step-icon i {
    color: white;
    transform: scale(1.2);
}

.step-icon i {
    font-size: 2.5rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.step-number {
    position: absolute;
    top: -5px;
    right: -5px;
    width: 35px;
    height: 35px;
    background: var(--accent-orange);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    border: 3px solid white;
    box-shadow: 0 3px 6px rgba(0,0,0,0.1);
}

.process-line {
    flex-grow: 1;
    height: 3px;
    background: linear-gradient(90deg, #e9ecef 0%, var(--primary-color) 50%, #e9ecef 100%);
    background-size: 200% 100%;
    margin-top: 45px; 
    position: relative;
    z-index: 1;
    opacity: 0.5;
    animation: flowLine 3s linear infinite;
}

@keyframes flowLine {
    0% { background-position: 100% 0; }
    100% { background-position: -100% 0; }
}

.process-step h3 {
    margin-bottom: 15px;
    font-size: 1.3rem;
    margin-top: 20px;
    font-weight: 700;
}

/* Stats Section */
.stats-section {
    background: linear-gradient(135deg, #0d6efd 0%, #0099ff 100%);
    color: white;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

/* Abstract shapes for Stats bg */
.stats-section::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
    z-index: 0;
}
.stats-section::after {
    content: '';
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(253, 126, 20, 0.1); /* Orange tint */
    z-index: 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.stat-item {
    transition: transform 0.3s;
}

.stat-item:hover {
    transform: translateY(-10px);
}

.stat-item h2 {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 5px;
    color: white; 
    text-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.stat-item p {
    font-size: 1.2rem;
    opacity: 0.9;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Testimonials */
.testimonials-section {
    background-color: #f8f9fa;
    position: relative;
}

.testimonial-carousel .owl-stage-outer {
    padding: 20px 0; /* Space for shadows */
}

.testimonial-carousel .testimonial-item {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    margin: 15px; 
    text-align: center;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    border-bottom: 4px solid transparent;
}

.testimonial-carousel .testimonial-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    border-bottom-color: var(--accent-orange);
}

.quote-icon {
    font-size: 2.5rem;
    color: var(--accent-orange);
    margin-bottom: 25px;
    opacity: 0.6;
}

.client-info h4 {
    margin-top: 25px;
    margin-bottom: 5px;
    font-size: 1.15rem;
    font-weight: 700;
}

.client-info span {
    font-size: 0.95rem;
    color: #6c757d;
    font-weight: 500;
}

/* FAQ Section */
.faq-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

/* Subtle Overlay Effect */
.faq-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(13, 110, 253, 0.05) 0%, transparent 70%); /* Light blue glow */
    border-radius: 50%;
    z-index: 1;
    pointer-events: none;
}

.faq-container {
    max-width: 850px;
    margin: 50px auto 0;
    position: relative;
    z-index: 2;
}

.faq-item {
    background: white;
    border: none;
    margin-bottom: 20px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0,0,0,0.03);
    transition: transform 0.3s, box-shadow 0.3s;
}

.faq-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.06);
}

.faq-question {
    padding: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    background: white;
    user-select: none;
}

.faq-question h3 {
    font-size: 1.15rem;
    margin: 0;
    font-weight: 600;
    color: var(--text-color);
}

.faq-question i {
    color: var(--primary-color);
    transition: transform 0.3s ease, color 0.3s;
    font-size: 1.2rem;
}

.faq-item.active .faq-question i {
    transform: rotate(45deg); 
    color: var(--accent-orange);
}

.faq-item.active .faq-question h3 {
    color: var(--primary-color);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 25px;
    border-top: 1px solid transparent;
    transition: max-height 0.4s ease, padding 0.4s ease, border-top 0.4s;
    background: #fdfdfd;
}

.faq-item.active .faq-answer {
    padding: 0 25px 25px 25px; /* bottom padding */
    border-top: 1px solid #f1f1f1;
    max-height: 300px;
}

/* CTA Banner */
.cta-banner {
    background: #0d1b2a;
    padding: 50px 0; /* Compact padding */
    position: relative;
    overflow: hidden;
    color: white;
    text-align: center;
}

/* Animated Pulse Background for CTA */
.cta-banner::before, .cta-banner::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(253, 126, 20, 0.4) 0%, transparent 70%);
    animation: floatBlob 10s infinite alternate;
    z-index: 0;
}

.cta-banner::before {
    top: -100px;
    left: -100px;
}

.cta-banner::after {
    bottom: -100px;
    right: -100px;
    background: radial-gradient(circle, rgba(13, 110, 253, 0.4) 0%, transparent 70%);
    animation-delay: -5s;
}

.cta-banner .container {
    position: relative;
    z-index: 2;
}

.cta-banner h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    font-weight: 800;
}

.cta-banner p {
    font-size: 1.3rem;
    margin-bottom: 40px;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.btn-warning {
    background-color: var(--accent-orange);
    color: white;
    border: none;
    padding: 18px 50px;
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 50px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s;
    box-shadow: 0 10px 25px rgba(253, 126, 20, 0.4);
}

.btn-warning:hover {
    background-color: #e86b0c;
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 40px rgba(253, 126, 20, 0.6);
}

/* Button Glow Effect */
.btn-warning::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 300px;
    height: 300px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(0);
    transition: transform 0.5s;
}

.btn-warning:hover::after {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0;
}


/* Responsive */
@media (max-width: 991px) {
    .process-grid {
        flex-direction: column;
        align-items: center;
        gap: 50px;
    }
    .process-line {
        display: none; /* Hide line on tablet/mobile */
        width: 3px;
        height: 50px;
        margin: 0;
        background: linear-gradient(180deg, #e9ecef 0%, var(--primary-color) 50%, #e9ecef 100%);
    }
    
    .process-step {
        width: 100%;
        max-width: 500px;
        display: flex;
        align-items: center;
        text-align: left;
        padding: 20px;
        gap: 20px;
    }
    
    .step-icon {
        margin: 0; /* Reset margin */
        flex-shrink: 0;
    }
    
    .process-step h3 {
        margin-top: 0;
    }
}

@media (max-width: 768px) {
    .stat-item h2 {
        font-size: 3rem;
    }
    .cta-banner h2 {
        font-size: 2.2rem;
    }
    .process-step {
        flex-direction: column;
        text-align: center;
    }
    .step-icon {
        margin: 0 auto 15px;
    }
}

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

/* =========================================
   Homepage Enhancements & New Sections
   ========================================= */

/* Feature Snapshot Section */
.features-snapshot {
    padding: 80px 0;
}

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

.snap-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0,0,0,0.03);
}

.snap-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(13, 110, 253, 0.15);
}

.snap-img {
    height: 200px;
    overflow: hidden;
}

.snap-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.snap-content {
    padding: 25px;
    position: relative;
}

.snap-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    position: absolute;
    top: -25px;
    right: 25px;
    box-shadow: 0 5px 15px rgba(13, 110, 253, 0.3);
}

.snap-content h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.snap-content p {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 0;
}

/* Home Values / Why Us Section (Split Layout) */
.values-wrapper {
    display: flex;
    align-items: center;
    gap: 60px;
    position: relative;
    z-index: 1;
}

.values-content, 
.values-visual {
    flex: 1; /* Ensure 50/50 split */
}

.values-visual {
    display: flex;
    justify-content: center; /* Center the orbit in its half */
    align-items: center;
}

.section-label {
    display: inline-block;
    padding: 5px 15px;
    background: rgba(13, 202, 240, 0.1);
    color: var(--secondary-color); /* Cyan/Teal */
    font-weight: 600;
    border-radius: 20px;
    font-size: 0.9rem;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.highlight-text {
    position: relative;
    z-index: 1;
}

.highlight-text::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    width: 100%;
    height: 8px;
    background: rgba(253, 126, 20, 0.2); /* Orange highlight */
    z-index: -1;
    border-radius: 4px;
}

.values-list {
    margin-top: 30px;
    list-style: none; /* Ensure no default bullets */
    padding-left: 0;
}

.values-list li {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.v-icon {
    flex-shrink: 0;
    width: 25px;
    height: 25px;
    background: #e7f1ff;
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    margin-top: 2px;
}

.v-text {
    font-size: 1rem;
    color: #555;
    line-height: 1.5;
}

.v-text strong {
    color: var(--text-color);
    font-weight: 600;
}

/* Orbit Visual Style (Hub & Spoke) */
.orbit-container {
    position: relative;
    width: 100%;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 1000px; /* Add perspective for 3D feel */
}

.orbit-circles {
    position: absolute;
    width: 550px; /* Slightly tighter orbit */
    height: 550px;
    border: 2px dashed rgba(13, 110, 253, 0.15);
    border-radius: 50%;
    z-index: 0;
    animation: spin 60s linear infinite;
}

.center-image-wrapper {
    position: relative;
    z-index: 2;
    width: 320px; /* Slightly wider */
    height: 420px;
    border-radius: 160px 160px 20px 20px; /* Arch shape */
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(13, 110, 253, 0.15); /* Deep shadow for pop-out */
    background: white;
    /* border removed as per request */
    animation: float 6s ease-in-out infinite; /* The WHOLE frame floats now */
}

/* Make the doctor pop on hover */
.center-image-wrapper:hover {
    transform: scale(1.02) translateY(-10px);
    box-shadow: 0 40px 80px rgba(13, 110, 253, 0.25);
    transition: all 0.4s ease;
}

.center-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.sat-icon {
    position: absolute;
    width: 70px;
    height: 70px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.5rem;
    box-shadow: 0 15px 35px rgba(13, 110, 253, 0.2);
    z-index: 3;
    border: 4px solid #f8f9fa;
    transition: transform 0.3s ease;
}

.sat-icon:hover {
    transform: scale(1.1) rotate(10deg);
}

/* Positioning Satellites closer to the frame for "Cluster/Pop" effect */
.sat-icon.si-1 { top: 15%; right: 22%; color: #fd7e14; }
.sat-icon.si-2 { top: 14%; left: 18%; color: #0dcaf0; }
.sat-icon.si-3 { bottom: 25%; right: 18%; color: #6610f2; }
.sat-icon.si-4 { bottom: 12%; left: 28%; color: #20c997; }

/* Delay float animations so they don't sync perfectly */
.delay-1 { animation-delay: 1.5s; }
.delay-2 { animation-delay: 3s; }
.delay-3 { animation-delay: 4.5s; }

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@media (max-width: 991px) {
    .orbit-container {
        height: 400px; /* Smaller on tablet */
    }
    .orbit-circles {
        width: 400px;
        height: 400px;
    }
    .center-image-wrapper {
        width: 250px;
        height: 320px;
    }
}

/* Main Image and pop-cards replaced by orbit layout */

/* Button Shine Animation */
.btn-shine {
    position: relative;
    overflow: hidden;
}

.btn-shine::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        to right,
        rgba(255,255,255,0) 0%,
        rgba(255,255,255,0.8) 50%, /* Much brighter/shinier (0.8) */
        rgba(255,255,255,0) 100%
    );
    transform: skewX(-25deg);
    animation: shine 4s infinite; /* Loop every 4 seconds */
    pointer-events: none;
}

@keyframes shine {
    0% { left: -100%; }
    90% { left: 200%; } /* Shine takes 90% of time (3.6s) - Same speed, less wait */
    100% { left: 200%; } /* Tiny 10% wait (0.4s) */
}

@keyframes popFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

/* Responsive Fixes for New Sections */
@media (max-width: 991px) {
    .values-wrapper {
        flex-direction: column;
        text-align: center;
    }
    
    .values-content, .values-visual {
        width: 100%;
    }
    
    .values-list li {
        justify-content: center;
        text-align: left;
    }
    
    /* Ensure Orbit stays centered and managed on tablets */
    .orbit-circles {
        opacity: 0.5; /* Fade orbit lines on smaller screens to reduce noise */
    }
}

@media (max-width: 768px) {
    .orbit-container {
        height: 350px;
        transform: scale(0.8); /* Scale down entire orbit for mobile */
    }
    
    .sat-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    /* Better footer alignment for mobile */
    .footer-grid {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 40px;
    }
}

/* Gradient Text / Calligraphy Effect */
.gradient-text {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    -webkit-background-clip: text;
    background-clip: text; /* Standard property for compatibility */
    -webkit-text-fill-color: transparent;
    display: inline-block;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1)); /* Subtle shadow for depth */
}

/* Ensure images fit perfectly */
.center-img {
    object-fit: cover;
    object-position: center top; /* Focus on faces */
}

.snap-img img {
    object-fit: cover;
}

/* Back to Top Button */
#backToTop {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    cursor: pointer;
    opacity: 0;
    pointer-events: none; /* Hidden by default */
    transition: opacity 0.3s ease, transform 0.3s ease;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

#backToTop.show {
    opacity: 1;
    pointer-events: all;
    transform: translateY(0);
}

#backToTop:hover {
    background: var(--secondary-color);
    transform: translateY(-5px);
}

/* About Page Video Hero */
.about-hero {
    position: relative;
    height: 60vh; /* Cinematic height */
    min-height: 400px;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(13, 27, 42, 0.6); /* Dark blue overlay for text readability */
    z-index: 1;
}

.about-hero-content {
    position: relative;
    z-index: 2;
    color: white;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.about-hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.about-hero-content p {
    font-size: 1.5rem;
    font-weight: 300;
    opacity: 0.9;
}

/* Utilities */
.h-100 { height: 100%; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.z-2 { z-index: 2; }
.relative { position: relative; }

/* Mobile Responsive Video */
@media (max-width: 768px) {
    .about-hero-content h1 { font-size: 2.2rem; }
    .about-hero-content p { font-size: 1.1rem; }
}

/* -------------------------------------------
   Pain Points Section (Premium & Professional)
   ------------------------------------------- */
.pain-points-section {
    background-color: #fdfafa; /* Very subtle warm gray/pink, not alarming */
    overflow: hidden;
    position: relative;
}

.pain-points-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.pain-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.03); /* Soft, deep shadow */
    text-align: center;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid rgba(0,0,0,0.02);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.pain-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--accent-orange) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.pain-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(13, 110, 253, 0.15); /* Blue-tinted shadow on hover */
}

.pain-card:hover::before {
    opacity: 1;
}

.pain-icon {
    width: 80px;
    height: 80px;
    background: rgba(13, 110, 253, 0.1); /* Light blue */
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2rem;
    transition: all 0.4s ease;
    box-shadow: 0 5px 15px rgba(13, 110, 253, 0.1);
}

.pain-card:hover .pain-icon {
    transform: rotateY(180deg);
    background: var(--primary-color);
    color: white;
    box-shadow: 0 10px 25px rgba(13, 110, 253, 0.3);
}

.pain-card h3 {
    margin-bottom: 15px;
    font-size: 1.35rem;
    font-weight: 700;
    color: #2c3e50;
}

.pain-card p {
    color: #6c757d;
    margin-bottom: 0;
    font-size: 1rem;
    line-height: 1.6;
}

/* -------------------------------------------
   Why Choose List (Perfect Alignment & Premium Look)
   ------------------------------------------- */
.values-list {
    display: grid;
    gap: 20px; /* Consistent spacing between items */
}

.values-list li {
    display: flex;
    align-items: flex-start !important;
    gap: 20px;
    padding: 20px;
    border-radius: 12px;
    background: transparent;
    transition: background 0.3s ease, transform 0.3s ease;
}

.values-list li:hover {
    background: white;
    box-shadow: 0 5px 20px rgba(13, 110, 253, 0.05);
    transform: translateX(10px); /* Subtle nudge right on hover */
}

.v-icon {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    background: rgba(13, 110, 253, 0.1); /* Light blue bg */
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    margin-top: 3px; /* Perfect optical alignment with line-height */
}

.v-text {
    flex: 1;
    font-size: 1.05rem;
    color: #495057; /* Softer dark gray */
    line-height: 1.6;
}

.v-text strong {
    display: block; /* Make title its own line for clarity */
    color: #0b1c3c; /* Dark navy for contrast */
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 4px;
}

/* Section Header Label Style */
.section-label {
    display: inline-block;
    padding: 8px 20px;
    border-radius: 50px;
    background: #eef2ff; /* Indigo tint */
    color: var(--primary-color);
    font-weight: 800;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    border: 1px solid rgba(13, 110, 253, 0.1);
}

.pain-points-section .section-label {
    background: #eef2ff;
    color: var(--primary-color);
    border-color: rgba(13, 110, 253, 0.1);
}

/* Center Alignment for Why Choose Header (User Request) */
.values-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start; /* Prevent button from stretching */
}

/* Specific targeted alignment for the header elements within values-content - REMOVED/RESET as header is now outside */
/* .values-content .section-label,
.values-content .gradient-text {
    align-self: center; 
    text-align: center;
} */

/* Update Pain Points Header Theme Color */
.pain-points-section h2 {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-orange) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    /* Ensure readability if gradient fails */
    color: var(--primary-color);
    margin-bottom: 0 !important; /* Remove margin to align with label */
}

.pain-header-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
    flex-wrap: wrap; /* Allow wrap on mobile */
}

/* =========================================
   About Page Specific Styles
   ========================================= */

/* Navbar Color Override for Video Background */
.about-page .navbar .logo,
.about-page .nav-links a,
.about-page .btn-secondary,
.about-page .hamburger-menu {
    color: white !important;
}

.about-page .navbar .logo-img {
    filter: brightness(0) invert(1);
}

/* Revert colors when sticky header is active (white background) */
.about-page .sticky-header.scrolled .navbar .logo,
.about-page .sticky-header.scrolled .nav-links a,
.about-page .sticky-header.scrolled .hamburger-menu {
    color: var(--text-color) !important;
}

.about-page .sticky-header.scrolled .navbar .logo-img {
    filter: none;
}

.about-page .sticky-header.scrolled .btn-secondary {
    color: var(--primary-color) !important;
}

/* Mission & Vision Cards */
.mission-card {
    background: #f8fbff;
    padding: 30px;
    border-radius: 15px;
    height: 100%;
    border-bottom: 4px solid transparent;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.mission-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(13, 110, 253, 0.1);
    border-bottom-color: var(--primary-color);
    background: white;
}

.mission-card h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 700;
}

/* Story Section */
.story-section {
    max-width: 800px;
    margin: 0 auto;
}

/* Specific Label adjustment for inside wrapper */
.pain-header-wrapper .section-label {
    margin-bottom: 0;
    vertical-align: middle;
}

/* =========================================
   Stats Section Styles
   ========================================= */
.stats-section {
    background: var(--primary-color);
    color: white;
    padding: 80px 0;
}

.stats-section h2 {
    color: white !important;
    margin-bottom: 60px;
}

/* Custom Grid for Stats (since Bootstrap isn't loaded) */
.stats-section .row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.stats-section .col-md-3 {
    flex: 1 1 200px; /* Grow, shrink, base width */
    max-width: 300px;
}

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

.counter-wrapper {
    display: flex;
    justify-content: center;
    align-items: baseline;
    font-weight: 700;
    margin-bottom: 10px;
}

.counter, .plus, .symbol {
    font-size: 3.5rem;
    line-height: 1;
}

.stat-item p {
    font-size: 1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    opacity: 0.9;
    font-weight: 500;
} 

@media (max-width: 768px) {
    .counter, .plus, .symbol {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .pain-header-wrapper {
        flex-direction: column;
        gap: 10px;
    }
}

/* ----------------------------------------------------------------
   New Feature Block Styles (Vertical Layout)
---------------------------------------------------------------- */

.feature-block {
    position: relative;
    z-index: 1;
}

.feature-row {
    margin-top: 40px; /* Increased top margin */
}

/* Typography Enhancements */
/* Typography Enhancements */
.section-label {
    text-transform: uppercase;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    color: #0d6efd; /* Bootstrap Primary Blue */
    margin-bottom: 20px;
    display: inline-block;
    background: #e7f1ff; /* Light Blue Background */
    padding: 8px 16px;
    border-radius: 50px; /* Pill Shape */
    box-shadow: 0 4px 10px rgba(13, 110, 253, 0.15); /* Soft shadow */
    border: 1px solid rgba(255, 255, 255, 0.5); /* Glassy border */
    backdrop-filter: blur(5px);
}

.lead {
    font-size: 1.2rem;
    color: #555;
    font-weight: 400;
    line-height: 1.8;
    margin-bottom: 2rem;
}

/* Feature Lists (Icon + Text) */
.feature-list {
    display: flex;
    flex-direction: column;
    gap: 20px; /* Reduced gap */
}

.f-item {
    display: flex;
    gap: 25px;
    padding: 10px;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.f-item:hover {
    background: white;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transform: translateY(-5px);
}

.f-icon {
    width: 65px;
    height: 65px;
    min-width: 65px;
    background: #e7f1ff; /* Light Blue styling */
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #0d6efd;
    transition: all 0.3s ease;
}

.f-item:hover .f-icon {
    background: #0d6efd;
    color: white;
    transform: scale(1.1) rotate(5deg);
}

.f-text h5 {
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: #222;
    font-weight: 700;
}

.f-text p {
    font-size: 1rem;
    color: #666;
    margin: 0;
    line-height: 1.6;
}

/* Visual Column & Effects */
.visual-wrapper {
    position: relative;
    padding: 30px; /* More breathing room around visuals */
}


/* Abstract Blobs behind images */
/* Unified Abstract Blobs */
.blob-bg-1::before, .blob-bg-2::before, .blob-bg-3::before {
    content: '';
    position: absolute;
    z-index: -1;
    border-radius: 50%; /* Perfect Circle */
    opacity: 0.12; /* Consistent opacity */
    width: 130%; /* Uniform Large Size */
    height: 130%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); /* Perfectly Centered */
    transition: all 0.5s ease;
}

.blob-bg-1::before {
    background: linear-gradient(135deg, var(--primary-color) 0%, #6610f2 100%); /* Blue-Purple */
}

.blob-bg-2::before {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #20c997 100%); /* Teal */
}

.blob-bg-3::before {
    background: linear-gradient(135deg, var(--accent-orange) 0%, #ffc107 100%); /* Orange */
}


.feature-main-img {
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.12); /* Softer, larger shadow */
    transition: transform 0.5s ease;
    width: 100%;
    border: 8px solid white; /* Thicker border */
}

.feature-main-img:hover {
    transform: scale(1.02);
}

/* Floating Badges */
.float-badge {
    position: absolute;
    background: white;
    padding: 12px 25px; /* Larger badge */
    border-radius: 50px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.12);
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    font-size: 1rem;
    z-index: 2;
}

.top-right { top: 40px; right: -20px; }
.bottom-left { bottom: 40px; left: -20px; }

.floating-anim {
    animation: floatBadge 4s ease-in-out infinite;
}

@keyframes floatBadge {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Accordion Style List */
.accordion-style-list {
    display: flex;
    flex-direction: column;
    gap: 20px; /* Increased gap */
}

.acc-item {
    background: white;
    border: 1px solid #f0f0f0; /* Lighter border */
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.acc-item:hover {
    box-shadow: 0 12px 25px rgba(0,0,0,0.06);
    border-color: var(--primary-color);
}

.acc-header {
    padding: 18px 25px; /* Larger click area */
    display: flex;
    align-items: center;
    gap: 18px;
    cursor: default; 
}

.acc-header i {
    color: var(--primary-color);
    font-size: 1.3rem;
}

.acc-header h4 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
}

.acc-body {
    padding: 0 25px 20px 60px; /* More left padding to align with text */
    color: #666;
    font-size: 1rem;
    line-height: 1.7; /* Readable body text */
    display: none; /* Hidden by default for accordion */
}

.acc-item.active {
    border-color: var(--primary-color);
    box-shadow: 0 12px 25px rgba(13, 110, 253, 0.1);
}

.acc-item.active .acc-header {
    background: #f8f9fa;
}

.acc-item.active .acc-header i {
    transform: scale(1.1);
    color: var(--secondary-color);
}

/* Feature Highlight Box */
.feature-highlight-box {
    background: white;
    padding: 40px; /* More padding */
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    border-top: 5px solid var(--accent-orange);
    text-align: center;
}

.feature-highlight-box .main-icon {
    font-size: 3.5rem;
    color: var(--accent-orange);
    margin-bottom: 25px;
}

.feature-highlight-box p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1.5rem;
}

/* Admin Grid */
.admin-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); /* Slightly wider cards */
    gap: 30px; /* Balanced gap */
}

.admin-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    border: 1px solid rgba(0,0,0,0.04); /* Subtle border */
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    text-align: center;
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 4px 6px rgba(0,0,0,0.02); /* Very minimal initial shadow */
}

.admin-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(13, 110, 253, 0.12); /* Blue tint shadow on hover */
    border-color: rgba(13, 110, 253, 0.2);
}




.ac-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, #f0f7ff 0%, #eef2ff 100%); /* Soft gradient bg */
    border-radius: 20px; /* Soft square */
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
    box-shadow: inset 0 0 0 1px rgba(13, 110, 253, 0.1);
}

.admin-card:hover .ac-icon {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    transform: scale(1.1) rotate(3deg);
    box-shadow: 0 10px 20px rgba(13, 110, 253, 0.3);
}



.admin-card h4 {
    margin-bottom: 15px;
    font-size: 1.25rem;
    font-weight: 700;
}

.admin-card p {
    font-size: 1rem;
    color: #777;
    margin: 0;
    line-height: 1.6;
}

.highlight-card {
    background: linear-gradient(135deg, var(--primary-color) 0%, #0056b3 100%);
    color: white;
}

.highlight-card .ac-icon {
    background: rgba(255,255,255,0.2);
    color: white;
}

.highlight-card h4, .highlight-card p {
    color: white;
}

.highlight-card:hover {
    transform: translateY(-10px) scale(1.02);
}

/* Force Side-by-Side on Desktop */
@media (min-width: 769px) {
    .feature-row {
        display: flex !important;
        flex-direction: row !important; /* Force horizontal */
        flex-wrap: nowrap !important;
        align-items: center !important;
    }
    
    .content-col, .visual-col {
        width: 50% !important;
        flex: 0 0 50% !important;
        max-width: 50% !important;
    }
    
    /* Ensure no text alignment overrides */
    .content-col {
        text-align: left !important;
        padding-right: 3rem !important; /* Ensure spacing */
    }
    
    .visual-col {
        padding-left: 3rem !important;
    }
}

/* Responsive Utilities */
@media (max-width: 768px) {
    .feature-row {
        flex-direction: column;
        gap: 40px;
    }
    

    
    .visual-col {
        margin-top: 30px;
    }
    
    .feature-list {
        gap: 20px;
    }
    
    .feature-block {
         text-align: center;
    }
    
    .content-col {
        text-align: center !important;
        padding-right: 0 !important;
    }
    
    .visual-col {
        margin-top: 40px;
        padding-left: 0 !important;
    }
    
    .float-badge {
        display: none; /* Often distracts on mobile, or keep if user wants */
    }
}

/* ----------------------------------------------------------------
   Refined Homepage Styles (Spacing, Hero, FAQs)
---------------------------------------------------------------- */

/* Global Spacing Reductions */
.section-padding {
    padding: 30px 0 !important; /* Minimized section padding */
}

/* Reduce specific section gaps if they have margins */
.home-values-section {
    padding-bottom: 10px !important;
}

.features-snapshot {
    padding-top: 50px !important; /* Adjusted as per user preference */
}

.section-header {
    margin-bottom: 20px !important;
}

.mt-5 {
    margin-top: 1rem !important;
}

/* FAQ Section Gradient & Styling */
.faq-section {
    background: linear-gradient(180deg, #ffffff 0%, #f0f4f8 100%); /* Subtle gradient */
}

.faq-container {
    margin-top: 25px;
}

.faq-item {
    margin-bottom: 12px;
}

.faq-question {
    padding: 12px 18px;
}

.faq-question h3 {
    font-size: 1.05rem;
}

/* About Hero Video Styles */
.about-hero {
    position: relative;
    height: 60vh;
    min-height: 400px;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.video-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: -1;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 0;
}

.about-hero .container {
    position: relative;
    z-index: 2;
}

/* Revamped Tech & Security Section */
.tech-section {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%); /* Dark Slate theme */
    padding: 100px 0;
    color: white;
    position: relative;
    overflow: hidden;
}

/* Background Pattern */
.tech-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(#334155 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: 0.1;
    z-index: 0;
}

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

.tech-header {
    margin-bottom: 60px;
    text-align: center;
}

.tech-header h2 {
    font-size: 2.5rem;
    background: linear-gradient(to right, #60a5fa, #c084fc); /* Blue to Purple */
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
}

.tech-header p {
    color: #94a3b8;
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.1rem;
}

/* Security Grid */
.security-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-bottom: 60px;
}

.sec-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 16px;
    transition: all 0.3s ease;
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.sec-card:hover {
    background: rgba(255, 255, 255, 0.06);
    transform: translateY(-5px);
    border-color: rgba(96, 165, 250, 0.3); /* Blue hint */
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.sec-icon {
    min-width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(96, 165, 250, 0.1), rgba(192, 132, 252, 0.1));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: #60a5fa;
}

.sec-content h4 {
    margin: 0 0 8px;
    font-size: 1.1rem;
    color: white;
}

.sec-content p {
    margin: 0;
    font-size: 0.95rem;
    color: #94a3b8;
    line-height: 1.5;
}

/* Tech Stack Banner */
.tech-stack-banner {
    background: rgba(0,0,0,0.2);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.05);
}

.tech-stack-row {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    align-items: center;
    margin-top: 30px;
}

.tech-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: #cbd5e1;
    font-weight: 500;
    transition: transform 0.3s;
}

.tech-item:hover {
    transform: translateY(-5px);
    color: white;
}

.tech-item i {
    font-size: 2.5rem;
    margin-bottom: 5px;
}

.tech-item.laravel i { color: #ef3b2d; }
.tech-item.bootstrap i { color: #7952b3; }
.tech-item.mysql i { color: #00758f; }
.tech-item.ssl i { color: #10b981; }
