/* ------------------------- Components ® Code by The  Alvoria -------------------------------------------------- */

/* ------------------------- Navigation -------------------------------------------------- */

:root {
    --header-height: 80px;
    --color-bg: #ffffff;
    --border-color: #e5e7eb;
    --text-dark: #1f2937;
    --text-gray: #6b7280;
    --text-accent: #18c0c1;
    --menu-bg-featured: #f9fafb;
}

body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    background-color: #f3f4f6;
}

body.no-scroll {
    overflow: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

p {
    color: #666;
    line-height: 1.6;
    font-size: 1rem;
}

/* --- 2. Header & Navigation (Desktop) --- */
.header {
    background: transparent;
    border-bottom: 1px solid #2b2d42;
    position: fixed;
    top: 0;
    z-index: 1000;
    width: 100%;
    padding: 15px;
    color: white;
}
.header.scrolled {
    background: #2b2d42;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: var(--header-height);
}
.logo{
    height: 50px;
    display: block;
    width: auto;
}
.logo img {
    height: 70px;
    display: block;
}

.nav-links {
    display: none;
}

/* Hidden by default, enabled via media query */
.mobile-menu-toggle {
    display: block;
}

@media (min-width: 992px) {
    .nav-links {
        display: flex;
        align-items: center;
        gap: 2.5rem;
    }

    .mobile-menu-toggle {
        display: none;
    }

    .nav-item {
        position: relative;
        height: 100%;
        display: flex;
        align-items: center;
    }

    .nav-link {
        color: var(--color-bg);
        font-weight: 500;
        text-decoration: none;
        padding: 0 0.25rem;
        height: 100%;
        display: flex;
        align-items: center;
        border-bottom: 3px solid transparent;
        transition: color 0.3s, border-color 0.3s;
    }

    .nav-item:hover>.nav-link {
        color: var(--text-accent);
        border-bottom-color: var(--text-accent);
    }

    /* --- 3. Dropdown & Mega Menu (Desktop) --- */
    .dropdown {
        position: absolute;
        top: 100%;
        left: 190%;
        transform: translateX(-50%) translateY(20px);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: opacity 0.3s ease, transform 0.3s ease;
        padding-top: 10px;
    }


    .nav-item:hover>.dropdown {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateX(-50%) translateY(0);
    }

    .dropdown-menu {
        background-color: var(--color-bg);
        border-radius: 8px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        padding: 1.5rem;
        border: 1px solid var(--border-color);
    }

    .mega-menu {
        display: grid;
        gap: 2rem;
    }

    .services-menu {
        grid-template-columns: 250px 1fr 1fr 1.5fr;
        width: max-content;
        max-width: 1100px;
    }

    .industries-menu,
    .insights-menu {
        grid-template-columns: 250px 1fr;
        width: 600px;
    }

    .about-menu {
        grid-template-columns: 1fr 1fr;
        width: 500px;
    }

    /* Mega Menu Content */
    .mega-menu-featured {
        background-color: var(--menu-bg-featured);
        padding: 1.5rem;
        border-radius: 6px;
    }

    .mega-menu-featured>h5 {
        font-size: 1rem;
        font-weight: 700;
        color: var(--text-dark);
        margin: 0 0 1.5rem 0;
    }

    .mega-menu-featured img {
        width: 100%;
        border-radius: 4px;
        margin-bottom: 1rem;
    }

    .mega-menu-featured h4 {
        font-size: 1rem;
        font-weight: 500;
        color: var(--text-dark);
        margin: 0 0 1rem 0;
    }

    .learn-more-link {
        font-size: 0.8rem;
        font-weight: 700;
        color: var(--text-accent);
        text-decoration: none;
        display: inline-block;
        border-bottom: 1px solid var(--text-accent);
        padding-bottom: 2px;
    }

    .mega-menu-column h5 {
        font-size: 1rem;
        font-weight: 700;
        color: var(--text-dark);
        margin: 0 0 1.5rem 0;
    }

    .mega-menu-column ul {
        list-style: none;
        padding: 0;
        margin: 0 0 2rem 0;
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    .mega-menu-column ul a {
        text-decoration: none;
        color: var(--text-gray);
        font-weight: 500;
        transition: color 0.3s;
    }

    .mega-menu-column ul a:hover {
        color: var(--text-accent);
    }

    .mega-menu-column ul a span,
    .learn-more-link span {
        color: var(--text-accent);
        transition: transform 0.3s;
        display: inline-block;
    }

    .mega-menu-column ul a:hover span,
    .learn-more-link:hover span {
        transform: translateX(4px);
    }

    .standalone-link {
        display: block;
        color: var(--text-dark);
        font-weight: 500;
        text-decoration: none;
        margin-bottom: 1.5rem;
        transition: color 0.3s;
    }

    .standalone-link:hover {
        color: var(--text-accent);
    }

    .standalone-link.large {
        font-size: 1.1rem;
    }
}

/* --- 4. Mobile Menu --- */
.mobile-menu-toggle {
    width: 30px;
    height: 24px;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 0;
}

.hamburger-line {
    display: block;
    width: 100%;
    height: 3px;
    background-color: var(--color-bg);
    border-radius: 3px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
    transform: translateY(10px) rotate(45deg);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
    transform: translateY(-11px) rotate(-45deg);
}

.mobile-menu-panel {
    position: fixed;
    top: var(--header-height);
    left: 0;
    width: 100%;
    height: calc(100vh - var(--header-height));
    background-color: #111;
    color: white;
    z-index: 999;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.mobile-menu-panel.active {
    transform: translateX(0);
}

.panel-container {
    height: 100%;
    position: relative;
    display: flex;
    width: 100%;
    overflow-x: hidden;
}

.panel-content {
    padding: 2rem;
    width: 100%;
    height: 100%;
    overflow-y: auto;
    flex-shrink: 0;
    position: absolute;
    top: 0;
    left: 0;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.panel-content.active {
    transform: translateX(0);
}

.mobile-main-menu ul,
.mobile-sub-panel-content ul {
    list-style: none;
    padding: 0;
}

.mobile-main-menu a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding:
        1.2rem 0;
    font-size: 1.5rem;
    font-weight: 500;
    border-bottom: 1px solid #333;
    color: white;
    text-decoration: none;
}

.mobile-sub-panel-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 2rem 0 1rem;
    border-bottom: 1px solid #333;
}

.mobile-menu-back {
    background: none;
    border: none;
    font-size: 2rem;
    color: white;
    cursor: pointer;
}

.mobile-sub-panel-title {
    font-size: 1.5rem;
    font-weight: 500;
}

.mobile-sub-panel-content h5 {
    color: var(--text-accent);
    font-size: 1rem;
    margin: 1.5rem 0 1rem;
    text-transform: uppercase;
}

.mobile-sub-panel-content a {
    display: block;
    padding: 0.75rem 0;
    color: #eee;
    text-decoration: none;
}

/* ------------------------- CAREERS -------------------------------------------------- */

section {
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.section-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.2;
}

.icon-sparkle {
    display: inline-block;
    width: 1em;
    height: 1em;
    vertical-align: -0.125em;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%237C3AED'%3E%3Cpath d='M12 2l2.5 5.5L20 10l-5.5 2.5L12 18l-2.5-5.5L4 10l5.5-2.5L12 2z'/%3E%3C/svg%3E");
    background-size: contain;
}

/* --- 3. Hero Section --- */
.hero-section {
    min-height: 60vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('https://images.unsplash.com/photo-1542744173-8e7e53415bb0?q=80&w=1470&auto=format&fit=crop') no-repeat center center/cover;
    color: white;
    padding: 5rem 1.5rem;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 1.1rem;
    max-width: 600px;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    color: white;
}

.job-search-form {
    display: flex;
    width: 100%;
    max-width: 600px;
    background-color: white;
    border-radius: 50px;
    padding: 0.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.job-search-form input {
    flex-grow: 1;
    border: none;
    background: none;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-family: inherit;
}

.job-search-form input:focus {
    outline: none;
}

.job-search-form button {
    background-color: var(--color-primary-blue);
    color: white;
    border: none;
    padding: 0 2rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color var(--transition-speed);
}

.job-search-form button:hover {
    background-color: var(--color-primary-blue-hover);
}

/* --- 4. Content Sections --- */
.content-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: flex-start;
}

@media (min-width: 992px) {
    .content-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.stats-grid {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.stat-item {
    border: 2px solid var(--color-border);
    border-radius: 16px;
    padding: 1rem;
    text-align: center;
    flex-grow: 1;
}

.stat-item .number {
    font-size: 2rem;
    font-weight: 700;
}

.stat-item .label {
    font-size: 0.9rem;
    color: var(--color-text-secondary);
}

.map-container {
    margin-top: 4rem;
    text-align: center;
}

.map-container img {
    max-width: 100%;
}




/* --- 5. Expertise Section --- */
.expertise-section {
    background-color: var(--color-bg-grey);
    text-align: center;
}

.section-header {
    max-width: 700px;
    margin: 0 auto 3rem;
}

.section-header h2 {
    font-size: 2.75rem;
    margin-bottom: 1rem;
    color: #2b2d42;
}

.expertise-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: left;
    margin-top: 3rem;
}

@media (min-width: 768px) {
    .expertise-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .expertise-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}


.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.card {
    background: white;
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
    animation: slideUp 0.6s ease-out forwards;
}

.card:nth-child(1) {
    animation-delay: 0.1s;
}

.card:nth-child(2) {
    animation-delay: 0.2s;
}

.card:nth-child(3) {
    animation-delay: 0.3s;
}

.card:nth-child(4) {
    animation-delay: 0.4s;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #1C398E 0%, #162556 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.card:hover {
    transform: translateY(-10px);
    /* box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15); */
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.card:hover::before {
    transform: scaleX(1);
}

.card-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: #18c0c1;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
    position: relative;
    animation: pulse 2s infinite;
}

.card-icon::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    background: inherit;
    opacity: 0.3;
    animation: ripple 2s infinite;
}

.card h3 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 15px;
    font-weight: 600;
}

.card p {
    color: #666;
    line-height: 1.6;
    font-size: 1rem;
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

@keyframes ripple {
    0% {
        transform: scale(1);
        opacity: 0.3;
    }

    100% {
        transform: scale(1.3);
        opacity: 0;
    }
}

/* Hover animations for icons */
.card:hover .card-icon {
    animation: rotate 0.6s ease-in-out;
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Responsive design */
@media (max-width: 768px) {
    .container {
        padding: 40px 20px;
    }

    .header h1 {
        font-size: 2rem;
    }

    .header p {
        font-size: 1rem;
    }

    .cards-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .card {
        padding: 30px 20px;
    }
}

/* Loading animation */
.loading-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    animation: fadeOut 0.5s ease-out 1s forwards;
}

@keyframes fadeOut {
    to {
        opacity: 0;
        visibility: hidden;
    }
}

.spinner {
    width: 50px;
    height: 50px;
    border: 3px solid #f3f3f3;
    border-top: 3px solid #667eea;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}


/* Job Card Styles */
.job-card {
    background-color: #ffffff;
    border-radius: 0.5rem;
    border: 1px solid #e5e7eb;
    padding: 1.5rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    cursor: pointer;
}

.job-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.job-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.job-card .location {
    color: #6b7280;
    margin-bottom: 0.75rem;
}

.job-card .category-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
}

.job-card .type {
    color: #9ca3af;
    font-size: 0.875rem;
}

.job-card .view-btn {
    color: #2563eb;
    font-weight: 500;
    transition: color 0.2s ease;
}

.job-card .view-btn:hover {
    color: #1d4ed8;
}

/* Category Badge Colors */
.badge-tech {
    background-color: #dbeafe;
    color: #1d4ed8;
}

.badge-business {
    background-color: #d1fae5;
    color: #065f46;
}

.badge-creative {
    background-color: #e9d5ff;
    color: #6b21a8;
}

/* CTA Button */
.cta-button {
    background-color: #2563eb;
    color: white;
    padding: 0.75rem 2rem;
    border-radius: 0.5rem;
    font-weight: 500;
    transition: background-color 0.2s ease;
}

.cta-button:hover {
    background-color: #1d4ed8;
}

/* Modal Styles */
.modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 40;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.modal-container {
    background-color: white;
    border-radius: 0.5rem;
    max-width: 42rem;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.modal-header {
    padding: 1rem 1.5rem;
    border-bottom: 1px solid #e5e7eb;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    background-color: white;
    z-index: 10;
}

.modal-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
}

.modal-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #6b7280;
    cursor: pointer;
    transition: color 0.2s ease;
}

.modal-close:hover {
    color: #374151;
}

.modal-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1.5rem;
    color: #4b5563;
}

.modal-section {
    margin-bottom: 1.5rem;
}

.modal-section h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.modal-section p {
    color: #4b5563;
}

.modal-list {
    list-style-type: none;
    padding-left: 0;
}

.modal-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    color: #4b5563;
}

.modal-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #2563eb;
    font-weight: bold;
}

.modal-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.modal-btn {
    flex: 1;
    padding: 0.75rem;
    border-radius: 0.5rem;
    font-weight: 500;
    transition: all 0.2s ease;
    cursor: pointer;
}

.modal-btn-primary {
    background-color: #2563eb;
    color: white;
    border: none;
}

.modal-btn-primary:hover {
    background-color: #1d4ed8;
}

.modal-btn-secondary {
    background-color: white;
    color: #4b5563;
    border: 1px solid #d1d5db;
}

.modal-btn-secondary:hover {
    background-color: #f9fafb;
}

/* Responsive */
@media (max-width: 768px) {
    .job-card {
        margin-bottom: 1rem;
    }

    .modal-actions {
        flex-direction: column;
    }
}

/* --- 7. Decorative Squiggles --- */
.doodle {
    position: absolute;
    z-index: -1;
    opacity: 0.8;
    stroke: var(--color-accent-purple);
    stroke-width: 3;
    fill: none;
}

#doodle1 {
    top: 50%;
    left: -50px;
}

#doodle2 {
    top: 50%;
    right: -50px;
}

.career-section {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #3498db;
    border-radius: 2px;
}

.section-intro {
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto;
    color: #555;
}

.career-tracks {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 40px;
}

.career-card {
    flex: 1;
    min-width: 300px;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.career-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.12);
}

.card-image {
    height: 200px;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.career-card:hover .card-image img {
    transform: scale(1.05);
}

.card-content {
    padding: 25px;
}

.card-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.card-title i {
    margin-right: 10px;
    color: #18c0c1;
}

.card-description {
    color: #555;
    font-size: 0.95rem;
}

.section-footer {
    text-align: center;
    padding: 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.cta-button {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 30px;
    background-color: #3498db;
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #2980b9;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2.2rem;
    }

    .career-tracks {
        flex-direction: column;
    }

    .career-card {
        width: 100%;
    }
}

/* --- Hiring Process Section --- */
.hiring-process-section {
    padding: 6rem 0;
    text-align: center;
    background-color: #fdfdfd;
}

.eyebrow-title {
    font-size: 0.8rem;
    font-weight: 600;
    color: #777;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 4rem;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.process-step {
    padding: 2rem;
}

.icon-wrapper {
    height: 60px;
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.icon-wrapper img {
    height: 100%;
}

.step-number {
    font-size: 2rem;
    font-weight: 600;
    color: #ccc;
    margin-bottom: 0.5rem;
}

.step-title {
    font-size: 1rem;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 1rem;
    letter-spacing: 0.5px;
}

.process-step p {
    font-size: 0.9rem;
    color: #555;
    line-height: 1.6;
}

/* --- Responsive Design --- */
@media (max-width: 992px) {

    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .process-grid {
        grid-template-columns: 1fr;
    }
}

.carrercontainer {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Header Section */
.header-section {
    text-align: center;
    margin-bottom: 3rem;
    padding-top: 3rem;
}

.carrermain-title {
    font-size: 3rem;
    font-weight: 800;
    color: #1f2937;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
    text-transform: uppercase;
    font-size: 72px;
    background: -webkit-linear-gradient(#1C398E, #162556);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 0.05em;
}


.subtitle {
    font-size: 1rem;
    font-weight: 100;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.description {
    font-size: 1.125rem;
    color: #6b7280;
    margin-bottom: 2rem;
}

/* Social Media Icons */
.social-icons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background-color: white;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icon:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.social-icon i {
    font-size: 1.25rem;
}

.social-icon.facebook {
    color: #2563eb;
}

.social-icon.facebook:hover {
    background-color: #2563eb;
    color: white;
}

.social-icon.twitter {
    color: #3b82f6;
}

.social-icon.twitter:hover {
    background-color: #3b82f6;
    color: white;
}

.social-icon.instagram {
    color: #ec4899;
}

.social-icon.instagram:hover {
    background-color: #ec4899;
    color: white;
}

.social-icon.linkedin {
    color: #1e40af;
}

.social-icon.linkedin:hover {
    background-color: #1e40af;
    color: white;
}

.social-icon.youtube {
    color: #dc2626;
}

.social-icon.youtube:hover {
    background-color: #dc2626;
    color: white;
}

.social-icon.github {
    color: #1f2937;
}

.social-icon.github:hover {
    background-color: #1f2937;
    color: white;
}

/* Slider Container */
.slider-container {
    position: relative;
    overflow: hidden;
    border-radius: 1rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    background-color: white;
}

.slider-wrapper {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide {
    min-width: 100%;
    flex-shrink: 0;
    padding: 0.5rem;
}

.slide-content {
    background-color: white;
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.slide-content:hover {
    transform: translateY(-5px);
}

.slide-image {
    width: 100%;
    height: 16rem;
    object-fit: cover;
}

.slide-info {
    padding: 1rem;
}

.slide-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.slide-description {
    font-size: 0.875rem;
    color: #6b7280;
}

/* Navigation Buttons */
.nav-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.9);
    color: #1f2937;
    border: none;
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    z-index: 10;
}

.nav-button:hover {
    background-color: white;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.nav-button.prev {
    left: 1rem;
}

.nav-button.next {
    right: 1rem;
}

.nav-button i {
    font-size: 1.25rem;
}

/* Indicators */
.indicators {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
}

.indicator {
    width: 0.75rem;
    height: 0.75rem;
    border-radius: 50%;
    background-color: #d1d5db;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator:hover {
    background-color: #9ca3af;
}

.indicator.active {
    background-color: var(--text-gray);
    transform: scale(1.2);
}


/* Responsive Design */
@media (min-width: 768px) {
    .slide {
        min-width: 50%;
    }
}

@media (min-width: 1024px) {
    .slide {
        min-width: 33.333%;
    }

    .main-title {
        font-size: 3.75rem;
    }

    .subtitle {
        font-size: 2.25rem;
    }
}

--------------------- About ------------------ .About-eyebrow {
    font-size: 0.8rem;
    font-weight: 700;
    color: white;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
}

.btn-dark {
    background-color: var(--color-bg);
    color: var(--text-dark);
}

.btn-dark:hover {
    background-color: var(--text-dark);
    color: var(--color-bg);
}

.btn-blue {
    background-color: var(--accent-blue);
    color: var(--text-light);
    border: none;
}

.btn-blue:hover {
    background-color: #2563eb;
}

/* --- 2. Animation Base Styles --- */
.animate-on-scroll {
    opacity: 0;
    transition: opacity 1s ease-out, transform 1s ease-out;
}

.fade-in {
    transform: scale(0.95);
}

.fade-in-up {
    transform: translateY(50px);
}

.slide-in-left {
    transform: translateX(-50px);
}

.slide-in-right {
    transform: translateX(50px);
}

.is-visible {
    opacity: 1;
    transform: none;
}


/* --- 3. Section Styling --- */

/* Hero Section */
.About-hero-section {
    background-color: #2b2d42;
    color: var(--color-bg);
    height: 90vh;
    display: flex;
    align-items: center;
}

.About-hero-section {
    background: linear-gradient(180deg, #2b2d42 50%, #ffffff 50%);
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.About-hero-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.About-hero-text h1 {
    font-size: 5rem;
    font-weight: 300;
    margin: 0;
    margin-right: 400px;
    line-height: 1.1;
}

.About-hero-text .btn {
    margin-top: 2rem;
}

.About-side-nav h4 {
    margin-bottom: 1rem;
    font-weight: 500;
}

.About-side-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.About-side-nav li {
    margin-bottom: 0.8rem;
}

.About-side-nav a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.About-side-nav a:hover {
    color: #fff;
}

/* Philosophy Section */
.About-philosophy-section {
    padding: 6rem 0;
}

.About-philosophy-container {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.About-philosophy-container .text-content {
    flex: 1;
}

.About-large-text {
    font-size: 1.25rem;
    line-height: 1.8;
    color: #555;
}

.About-philosophy-container .image-content {
    flex-basis: 40%;
}

.About-philosophy-container img {
    max-width: 50%;
}

/* Core Values Section */
.About-core-values-section {
    padding: 6rem 0;
    background-color: var(--text-dark);
    color: var(--color-bg);
    text-align: center;
}

.About-core-values-section h2 {
    max-width: 700px;
    margin: 0 auto 4rem auto;
    font-size: 2rem;
    font-weight: 400;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.value-card {
    padding: 2rem;
    border-left: 1px solid #4a5568;
    text-align: left;
}

.value-card:first-child {
    border-left: none;
}

.value-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.value-card p {
    color: #ccc;
    line-height: 1.7;
}

/* Systems Way Section */
.About-systems-way-section {
    padding: 8rem 0;
    background: url('https://media.istockphoto.com/id/506859726/photo/blue-panoramic-butterfly-background.jpg?s=170667a&w=0&k=20&c=9CUt1dpIfObJegvRXYWynlwKZ5-7lcFVHEaqIcKs8GU=') no-repeat center center/cover;
    color: var(--color-bg);
    text-align: center;
}

.About-systems-way-section h2 {
    max-width: 800px;
    margin: 0 auto 4rem auto;
    font-size: 2.2rem;
}

.About-systems-way-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.About-systems-way-grid h3 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.About-systems-way-grid p {
    max-width: 300px;
    margin: 0 auto;
    color: var(--color-bg);
}



.About-esg-section {
    padding: 6rem 0;
}

.About-esg-container {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.About-esg-container .text-content {
    flex: 1;
}

.About-esg-container h2 {
    font-size: 3rem;
    font-weight: 300;
    margin-bottom: 1rem;
}

.About-esg-container p {
    line-height: 1.7;
    margin-bottom: 2rem;
}

.About-esg-container .image-content {
    flex-basis: 50%;
}

.About-esg-container img {
    max-width: 100%;
    border-radius: 10px;
}


/* --- Main Section and Grid Container --- */
.About-collaboration-section {
    width: 100%;
}

.About-collage-grid {
    display: grid;
    /* Using a 12-column grid provides great flexibility for positioning */
    grid-template-columns: repeat(12, 1fr);
    /* Auto-sizing rows based on content */
    grid-auto-rows: minmax(50px, auto);
    gap: 1.5rem;
    align-items: center;
}

/* --- Section Title Styling and Placement --- */
.About-section-title {
    /* Placing the title in the middle of the grid */
    grid-column: 4 / 10;
    grid-row: 1 / 3;
    font-size: 1.5rem;
    font-weight: 400;
    line-height: 1.6;
    text-align: center;
    color: #34495e;
    z-index: 10;
    /* Ensures the title stays on top of any overlapping images */
}



/* --- General Image Wrapper Styling --- */
.About-image-wrapper {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    /* Required for the pseudo-element gradient */
    width: 100%;
    height: 100%;

}

.About-image-wrapper img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Ensures images fill their container without distortion */
}

/* --- Gradient Fade Effect --- */
.About-image-wrapper.has-fade::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60%;
    /* Adjust the height of the fade */
    background: linear-gradient(to top, rgba(255, 255, 255, 1) 10%, transparent);
    pointer-events: none;
    /* Allows mouse events to pass through */
}

/* --- Specific Grid Placement for Each Image --- */
.image-1 {
    grid-column: 1 / 4;
    grid-row: 1 / 4;
}

.image-2 {
    grid-column: 1 / 4;
    grid-row: 5 / 11;
}

.image-3 {
    grid-column: 4 / 7;
    grid-row: 3 / 9;
    z-index: 2;
}

.image-4 {
    grid-column: 7 / 10;
    grid-row: 8 / 11;
    z-index: 3;
}

.image-5 {
    grid-column: 7 / 10;
    grid-row: 3 / 8;
    z-index: 1;
}

.image-6 {
    grid-column: 10 / 13;
    grid-row: 1 / 6;
}

.image-7 {
    grid-column: 10 / 13;
    grid-row: 6 / 11;
}


/* --- Responsive Design --- */

/* For tablets and smaller desktops */
@media (max-width: 992px) {
    .About-section-title {
        grid-column: 2 / 12;
        /* Make the title span more columns */
        font-size: 1.25rem;
        margin-bottom: 1rem;
    }

    .About-collage-grid {
        gap: 1rem;
    }

    /* Simplify the layout by hiding a few overlapping images */
    .image-4,
    .image-5 {
        display: none;
    }

    /* Readjust remaining images */
    .image-1 {
        grid-column: 1 / 6;
        grid-row: 1 / 4;
    }

    .image-2 {
        grid-column: 1 / 6;
        grid-row: 4 / 9;
    }

    .image-3 {
        grid-column: 5 / 9;
        grid-row: 2 / 7;
    }

    .image-6 {
        grid-column: 8 / 13;
        grid-row: 1 / 5;
    }

    .image-7 {
        grid-column: 8 / 13;
        grid-row: 5 / 9;
    }
}

/* For mobile devices */
@media (max-width: 768px) {
    .About-collage-grid {
        /* Switch to a simple single-column layout */
        grid-template-columns: 1fr;
        grid-auto-rows: auto;
    }

    /* Reset all grid placements so they stack naturally */
    .section-title,
    .image-wrapper {
        grid-column: 1 / -1;
        grid-row: auto;
    }

    /* Unhide the previously hidden images so they appear in the stack */
    .image-4,
    .image-5 {
        display: block;
    }

    .section-title {
        text-align: left;
        padding: 1rem 0;
    }
}

/* CTA Section */
.About-cta-section {
    padding: 2rem 0;
}

.About-cta-container {
    text-align: center;
}

.About-cta-container h2 {
    font-size: 3rem;
    font-weight: 300;
    margin-bottom: 1rem;
}

.About-cta-container p {
    margin-bottom: 2rem;
}

/* --- 5. Responsive Design --- */
@media (max-width: 992px) {
    .hero-text h1 {
        font-size: 3.5rem;
    }

    .side-nav {
        display: none;
    }

    .philosophy-container,
    .esg-container {
        flex-direction: column;
    }

    .values-grid,
    .systems-way-grid {
        grid-template-columns: 1fr;
    }

    .transform-item {
        padding-top: 0;
        background-image: none;
    }

    .slider-container {
        flex-direction: column;
    }

    .footer-main {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero-section {
        height: auto;
        padding: 4rem 0;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .accomplishments-section h2,
    .esg-container h2,
    .cta-container h2 {
        font-size: 2.2rem;
    }
}

.About-leadership-section {
    width: 100%;
    background-color: #202945;
    /* Dark blue background */
    color: var(--color-bg);
    padding: 5rem 0;
    overflow: hidden;
    /* Important for the slider */
}

.About-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
}

/* --- Header & Typography --- */
.About-section-header {
    margin-bottom: 3rem;
}

.About-eyebrow-title {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #a0aec0;
    margin-bottom: 1rem;

}

p.About-eyebrow-title {
    position: relative;
    text-decoration: none;
}

p.About-eyebrow-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -5px;
    /* 调整这个值来改变下划线与文字的距离 */
    width: 100%;
    height: 2px;
    background-color: white;
}

.About-section-headline {
    font-size: 2.25rem;
    font-weight: 400;
    line-height: 1.4;
    max-width: 650px;
    color: var(--color-bg);
}

/* --- Slider Mechanism --- */
.About-slider-container {
    overflow: hidden;
    /* Hides the cards that are off-screen */
}

.About-slider-track {
    display: flex;
    gap: 1.5rem;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    /* Smooth slide effect */
}

/* --- Profile Card Styling --- */
.About-profile-card {
    background-color: #2b385b;
    border-radius: 0.75rem;
    overflow: hidden;
    /* Ensures child elements conform to border-radius */
    flex: 0 0 280px;
    /* Base width for each card */
    display: flex;
    flex-direction: column;
}

.About-profile-image-container {
    background-color: #ffffff;
    padding: 0.5rem;
}

.About-profile-image-container img {
    width: 100%;
    display: block;
    border-radius: 0.5rem;
    /* Inner radius for the image */
}

.About-profile-info {
    padding: 1.5rem;
}

.About-profile-info h3 {
    font-size: 1.25rem;
    font-weight: 500;
    margin: 0 0 0.25rem 0;
}

.About-profile-info p {
    font-size: 0.9rem;
    color: #a0aec0;
    margin: 0 0 1rem 0;
}

.About-linkedin-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: #313f68;
    color: #a0aec0;
    transition: background-color 0.3s, color 0.3s;
}

.About-linkedin-link:hover {
    background-color: #4a5568;
    color: #fff;
}

.About-linkedin-icon {
    width: 16px;
    height: 16px;
}


/* --- Slider Navigation --- */
.About2-slider-navigation {
    position: absolute;
    top: 3rem;
    /* Aligns with the headline area */
    right: 2rem;
    display: flex;
    gap: 0.5rem;
}

.About2-slider-button {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: transparent;
    border: 1px solid #4a5568;
    color: #a0aec0;
    cursor: pointer;
    font-size: 2rem;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-bottom: 4px;
    /* Optical alignment */
    transition: background-color 0.3s, color 0.3s;
}

.About2-slider-button:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.About2-slider-button:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    background-color: transparent;
}


/* --- Responsive Design --- */
@media (max-width: 768px) {
    .About-container {
        padding: 0 1rem;
    }

    .About2-slider-navigation {
        position: static;
        justify-content: flex-end;
        margin-top: -3rem;
        /* Pull it up a bit */
        margin-bottom: 2rem;
        padding-right: 1rem;
    }

    .About2-profile-card {
        flex-basis: calc(50% - 0.75rem);
        /* Show 2 cards on mobile */
    }
}

@media (max-width: 500px) {
    .About2-profile-card {
        flex-basis: 80%;
        /* Show mostly one card on very small screens */
    }
}

.About-global-presence-section {
    padding-top: 5rem;
}

/* --- Header & Typography --- */
.About-section-header {
    margin-bottom: 3rem;
}

.About-eyebrow-title {
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    color: #555;
    margin-bottom: 1rem;
}

.About-section-headline {
    font-size: 2rem;
    font-weight: 300;
    line-height: 1.5;
    max-width: 700px;
    color: #2c3e50;
}

/* --- Region Tabs --- */
.regions-tabs {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
}

.region-card {
    padding: 2rem;
    text-align: center;
    border-right: 1px solid #e0e0e0;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.region-card:last-child {
    border-right: none;
}

.region-card h3 {
    font-size: 1.2rem;
    font-weight: 500;
    margin: 0 0 1.5rem 0;
    transition: color 0.3s ease;
}

.region-card img {
    max-width: 100%;
    opacity: 0.7;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.region-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(255, 255, 255, 0.95), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

/* --- Active & Hover States for Tabs --- */
.region-card:hover img,
.region-card.active img {
    opacity: 1;
    transform: scale(1.05);
}

.region-card:hover h3 {
    color: #f36f21;
}

.region-card.active h3 {
    color: #f36f21;
}

.region-card.active::before {
    opacity: 1;
}

/* Specific background gradients for active state */
.region-card[data-region="mea"].active::before {
    background: linear-gradient(to top, #f5f5f5, transparent);
}

.region-card[data-region="ksa"].active::before {
    background: linear-gradient(to top, #fff9eb, transparent);
}

.region-card[data-region="apac"].active::before {
    background: linear-gradient(to top, #fef4f4, transparent);
}

.region-card[data-region="pk"].active::before {
    background: linear-gradient(to top, #ffffff, transparent);
}


/* --- Office Locations --- */
.office-locations-wrapper {
    background-color: #f8f9fa;
    padding: 5rem 0;
}

.locations-content {
    display: none;
    /* Hide all location groups by default */
}

.locations-content.active {
    display: block;
    /* Show only the active one */
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2.5rem 2rem;
}

.location-item h4 {
    font-size: 1.1rem;
    font-weight: 500;
    color: #202945;
    margin: 0 0 0.75rem 0;
}

.location-item p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #555;
    margin: 0;
}

.location-item h5 {
    font-size: 0.9rem;
    font-weight: 500;
    color: #202945;
    margin: 1.5rem 0 0.5rem 0;
}

/* Special placement for Lahore BPO if needed */

/* --- Responsive Design --- */
@media (max-width: 768px) {
    .regions-tabs {
        grid-template-columns: repeat(2, 1fr);
    }

    .region-card:nth-child(2) {
        border-right: none;
    }

    .region-card:nth-child(3) {
        border-top: 1px solid #e0e0e0;
    }
}



.About-accomplishments-section {
    width: 100%;
    padding: 5rem 0;
}

/* --- Header & Navigation --- */
.About-section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
}

.About-section-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    /* Responsive font size */
    font-weight: 300;
    /* Light font weight */
    color: var(--text-dark);
    line-height: 1.2;
    margin: 0;
}

.About-slider-navigation {
    display: flex;
    gap: 0.5rem;
    background-color: var(--bg-light);
    border-radius: 9999px;
    padding: 0.5rem;
}

.About-slider-button {
    width: 40px;
    height: 40px;
    border: none;
    background-color: transparent;
    color: var(--text-light-gray);
    cursor: pointer;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s, color 0.3s;
}

.About-slider-button svg {
    width: 24px;
    height: 24px;
    stroke: currentColor;
    stroke-width: 2;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.About-slider-button:hover:not(:disabled) {
    background-color: #e2e8f0;
    color: var(--text-dark);
}

.About-slider-button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}


/* --- Slider & Card Styling --- */
.About-slider-viewport {
    overflow: hidden;
    /* This creates the "window" for the slider */
}

.About-slider-track {
    display: flex;
    align-items: center;
    /* Vertically align cards */
    gap: 2rem;
    /* The transition is applied by JS to avoid initial load animation */
}

.About-accomplishment-card {
    flex: 0 0 220px;
    /* Base width for non-active cards */
    text-align: center;
    opacity: 0.5;
    transform: scale(0.9);
    transition: transform 0.5s ease, opacity 0.5s ease;
}

.About-card-image-wrapper {
    background-color: var(--bg-light);
    border-radius: 0.75rem;
    padding: 2rem;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: background-color 0.5s ease, box-shadow 0.5s ease, border 0.5s ease;
}

.About-card-image-wrapper img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.About-accomplishment-card p {
    color: var(--text-light-gray);
    font-size: 0.9rem;
    line-height: 1.5;
    padding: 0 1rem;
}

/* --- Active Card State --- */
.About-accomplishment-card.active {
    opacity: 1;
    transform: scale(1);
    flex-basis: 260px;
    /* Larger base width for the active card */
}

.About-accomplishment-card.active .card-image-wrapper {
    background-color: #ffffff;
    border: 1px solid var(--border-color);
    box-shadow: 0 10px 20px -5px rgba(0, 0, 0, 0.07);
    height: 180px;
}

.About-accomplishment-card.active p {
    color: var(--text-dark);
    font-weight: 500;
}


/* --- Responsive Design --- */
@media (max-width: 768px) {
    .About-section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }

    .About-slider-navigation {
        align-self: flex-end;
    }

    .About-accomplishment-card {
        flex-basis: 180px;
        /* Smaller cards on mobile */
    }

    .About-accomplishment-card.active {
        flex-basis: 220px;
    }
}

---------------------index page -------------------------

/* --- Hero Section Wrapper --- */
.indexhero-section {
    height: 100vh;
    width: 100%;
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    text-align: left;
    overflow: hidden;
}

/* --- Background Video & Dark Overlay --- */
.indexbackground-video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: -2;
}

.indexhero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.5) 50%, rgba(0, 0, 0, 0.3) 100%);
    z-index: -1;
}

/* --- Content Container & Styling --- */
.indexcontainer {
    max-width: 1200px;
    width: 100%;
    margin: 0;
    padding: 0 2rem 0 5rem;
    z-index: 1;
}

.indexhero-content {
    padding-bottom: 12vh;
    max-width: 600px;
}

/* --- Animated Title --- */
.indexhero-title {
    font-size: clamp(3rem, 10vw, 6.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin: 0 0 1.5rem 0;
    color: var(--color-bg);
}

/* Base style for each animated word */
.indexhero-title span {
    display: block;
    opacity: 0;
    transform: translateY(40px);
    animation: fadeInUp 0.8s ease forwards;
}

/* Individual word classes for custom styling */
.word-we {
    animation-delay: 0s;
    font-weight: 900;
    letter-spacing: -2px;
}

.word-reimagine {
    animation-delay: 0.25s;
    font-weight: 700;
    color: #a0d2eb;
    text-shadow: 0 0 10px rgba(160, 210, 235, 0.5);
}

.word-tomorrow {
    animation-delay: 0.5s;
    font-weight: 800;
    font-style: italic;
    color: #e5eaf5;
}

/* --- Description & Button --- */
.indexhero-description {
    font-size: clamp(1rem, 2vw, 1.2rem);
    font-weight: 400;
    color: var(--color-bg);
    max-width: 550px;
    line-height: 1.6;
    margin: 0 0 2.5rem 0;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s 1s ease forwards;
}

.indexhero-button {
    background-color: var(--color-bg);
    color: var(--text-dark);
    border: none;
    padding: 1rem 2.5rem;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 1.5px;
    border-radius: 4px;
    cursor: pointer;
    transition: transform 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s 1.2s ease forwards;
}

.indexhero-button:hover {
    background-color: var(--text-dark);
    color: var(--color-bg);
}

/* --- Keyframe Animations --- */
@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.5);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(255, 255, 255, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }
}

/* --- Responsive Adjustments --- */
@media (max-width: 768px) {
    .indexhero-content {
        text-align: left;
        padding-bottom: 15vh;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }

    .indexcontainers {
        padding: 0 2rem;
    }

    /* Adjust word styling for mobile */
    .word-we {
        font-size: clamp(2.5rem, 8vw, 4rem);
    }

    .word-reimagine {
        font-size: clamp(2.8rem, 9vw, 4.5rem);
    }

    .word-tomorrow {
        font-size: clamp(3rem, 10vw, 5rem);
    }
}




.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: inherit;
}

.btn-primary {
    display: inline-block;
    padding: 0.8rem 1.8rem;
    /* background-color: var(--text-dark); */
    color: white;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background-color: var(--color-bg);
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.btn-primary-outline {
    display: inline-block;
    padding: 0.8rem 1.8rem;
    background-color: transparent;
    color: var(--color-accent);
    border: 2px solid var(--color-accent);
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary-outline:hover {
    background-color: var(--color-accent);
    color: white;
}

.link-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-text);
    font-weight: 500;
    transition: color 0.3s ease;
}

.link-secondary:hover {
    color: var(--color-accent);
}

.eyebrow {
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-accent);
    margin-bottom: 0.5rem;
}

.highlight {
    color: var(--color-accent);
}

/* About Section */
.indexabout-section {
    padding: 5rem 0;
}

.indexabout-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 992px) {
    .indexabout-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.indexabout-title {
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.indexabout-title .word {
    display: inline-block;
}

.indexabout-text {
    color: var(--color-text-secondary);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.indexabout-image-wrapper {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.indexabout-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.indexabout-image-wrapper:hover .about-image {
    transform: scale(1.03);
}

/* Advantage Section */
.indexadvantage-section {
    padding: 5rem 0;
    background-color: var(--color-bg);
}

.indexsection-title {
    font-size: clamp(2rem, 5vw, 2.75rem);
    font-weight: 700;
    margin-bottom: 3rem;
    text-align: center;
}

.indexadvantage-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
}

@media (min-width: 768px) {
    .indexadvantage-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .indexadvantage-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.indexadvantage-item {
    background-color: var(--color-bg);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.indexadvantage-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
}

.indexadvantage-item .icon {
    font-size: 2.5rem;
    color: var(--text-accent);
    margin-bottom: 1.5rem;
}

.indexadvantage-item h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.indexadvantage-item p {
    color: var(--color-text-secondary);
    font-size: 1rem;
    line-height: 1.6;
}

.indexadvantage-item .text-link {
    color: var(--color-accent);
    text-decoration: underline;
    text-underline-offset: 4px;
    font-weight: 500;
    transition: opacity var(--transition-speed);
}

.indexadvantage-item .text-link:hover {
    opacity: 0.8;
}

/* Carousel Section */
.indexcarousel-section {
    padding: 4rem 0;
    background-color: var(--color-bg-alt);
}

.indexcarousel-container {
    position: relative;
    width: 100%;
    max-width: 1100px;
    margin: auto;
    background-color: var(--color-bg);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
}

.indexcarousel-viewport {
    overflow: hidden;
}

.indexcarousel-track {
    display: flex;
    transition: transform var(--transition-speed-slow) cubic-bezier(0.65, 0, 0.35, 1);
}

.indexcarousel-slide {
    flex: 0 0 100%;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    align-items: center;
    gap: 2rem;
    padding: 3rem;
}

@media (min-width: 768px) {
    .indexcarousel-slide {
        grid-template-columns: 40% 60%;
    }
}

.indexslide-content {
    opacity: 0;
    transform: translateY(20px);
    transition: all var(--transition-speed-slow) ease;
}

.indexslide-title {
    font-size: 2rem;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.indexslide-text {
    font-size: 1rem;
    color: var(--color-text-secondary);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.indexcarousel-slide.is-selected .indexslide-content {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.3s;
}

.indexslide-image-wrapper {
    position: relative;
    height: 300px;
    transform: scale(0.95);
    opacity: 0;
    transition: all var(--transition-speed-slow) ease;
    transition-delay: 0.2s;
}

.indexcarousel-slide.is-selected .indexslide-image-wrapper {
    transform: scale(1);
    opacity: 1;
}

.indexslide-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.indexcarousel-controls {
    padding: 1.5rem 3rem;
    border-top: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.indexprogress-bar-container {
    flex-grow: 1;
    height: 4px;
    background-color: #e0e0e0;
    border-radius: 2px;
    overflow: hidden;
}

.indexprogress-bar {
    width: 0%;
    height: 100%;
    background-color: var(--color-progress-bar);
    border-radius: 2px;
    transition: width 0.4s linear;
}

.indexnav-controls {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--color-text-secondary);
}

.indexslide-counter {
    font-size: 0.9rem;
    font-weight: 500;
}

.indexcarousel-btn {
    background: none;
    border: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: var(--color-text-secondary);
    transition: color 0.3s ease;
    line-height: 1;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.indexcarousel-btn:hover {
    color: var(--color-accent);
}

.indexcarousel-btn:disabled {
    color: var(--border-color);
    cursor: not-allowed;
}

/* Services Section */
.indexservices-section {
    padding: 5rem 0;
    font-family: var(--font-family-alt);
}

.indexservices-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.indexservice-card {
    background-color: var(--color-bg);
    padding: 2rem;
    border-radius: 24px;
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}

.indexservice-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
}

.indexcard-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-green-gradient);
    border-radius: 16px;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 8px rgba(163, 247, 0, 0.2);
}

.indexcard-icon i {
    font-size: 2rem;
    color: var(--text-accent);
}

.indexcard-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.indexcard-description {
    color: var(--color-text-secondary);
    line-height: 1.6;
    flex-grow: 1;
    margin-bottom: 2rem;
}

.indexcard-btn {
    align-self: flex-end;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border: 2px solid var(--border-color);
    border-radius: 50px;
    color: var(--color-text);
    font-weight: 700;
    transition: all 0.3s ease;
}

.indexcard-btn:hover {
    background-color: var(--text-dark);
    color: white;
    border-color: var(--color-bgindex);
}

/* Process Section */
.indexprocess-section {
    background-color: var(--color-bg);
    color: #2b2d42;
    padding: 5rem 0;
}

.indexprocess-section .indexsection-title,
.indexprocess-section .indexsection-subtitle {
    color: #2b2d42;
    text-align: center;
}

.indexprocess-grid {
    display: grid;
    gap: 3rem;
    counter-reset: step-counter;
}

@media (min-width: 768px) {
    .indexprocess-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.indexprocess-step {
    position: relative;
    padding: 1.5rem;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.indexprocess-step::before {
    content: '0' counter(step-counter);
    counter-increment: step-counter;
    position: absolute;
    top: -1rem;
    left: -1rem;
    font-size: 5rem;
    font-weight: 800;
    color: #bec0c9;
    z-index: 0;
}

.indexprocess-step h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    position: relative;
}

.indexprocess-step p {
    position: relative;
    opacity: 0.9;
}

/* FAQ Section */
.indexama {
    background-color: var(--white);
    padding: 5rem 0;
}

.indexfaq-container {
    max-width: 800px;
    margin: 0 auto;
}

.indexfaq-item {
    margin-bottom: 20px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px var(--shadow);
    border: 1px solid var(--border-color);
}

.indexfaq-question {
    background-color: var(--light);
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.indexfaq-question:hover {
    background-color: #e9ecef;
}

.indexfaq-question i {
    transition: transform 0.3s ease;
}

.indexfaq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    background-color: white;
}

.indexfaq-item.active .indexfaq-answer {
    padding: 20px;
    max-height: 500px;
}

.indexfaq-item.active .indexfaq-question i {
    transform: rotate(180deg);
}

/* Final CTA Section */
.indexfinal-cta-section {
    background: #2A7B9B;
    background: linear-gradient(90deg, var(--text-dark) 0%, var(--color-bg) 50%, var(--text-dark) 100%);
    padding: 5rem 0;
    text-align: center;
}

.indexfinal-cta-section .indexsection-title {
    margin-bottom: 1.5rem;
}

.indexfinal-cta-section .indexsection-subtitle {
    max-width: 700px;
    margin: 0 auto 2.5rem;
    color: var(--color-text-secondary);
}

.indexfinal-cta-section .btn-primary {
    background: #2B2D42;
    border: 2px solid var(--text-dark);
    color: var(--color-bg);
}

.indexfinal-cta-section .btn-primary:hover {
    background: #1c1d2a;
    transform: translateY(-3px);
}

-------------blogs---------- .hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.mck-blog-back-link {
    padding-top: 30px;
    display: inline-block;
    margin-bottom: 30px;
    color: var(--text-gray);
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    transition: color 0.3s;
}

.mck-blog-back-link:hover {
    color: #0d47a1;
    text-decoration: underline;
}

.mck-blog-back-link i {
    margin-right: 8px;
}

.mck-blog-hero-header {
    margin-bottom: 40px;
}

.mck-blog-hero-title {
    font-size: 48px;
    font-weight: 700;
    color: #000;
    margin-bottom: 15px;
    line-height: 1.2;
}

.mck-blog-hero-subtitle {
    font-size: 20px;
    color: #555;
    max-width: 700px;
    line-height: 1.5;
}

.mck-blog-hero-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 30px;
    margin-bottom: 50px;
}

.mck-blog-social-icons {
    display: flex;
    gap: 15px;
}

.mck-blog-social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #2b2d42;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: background-color 0.3s, color 0.3s;
}

.mck-blog-social-icon:hover {
    background-color: #e8eaed;
}

.mck-blog-social-icon.mck-blog-linkedin:hover {
    background-color: #0077b5;
    color: white;
}

.mck-blog-social-icon.mck-blog-twitter:hover {
    background-color: #1da1f2;
    color: white;
}

.mck-blog-social-icon.mck-blog-facebook:hover {
    background-color: #4267b2;
    color: white;
}

.mck-blog-browse-btn {
    background-color: #1a73e8;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s;
}

.mck-blog-browse-btn:hover {
    background-color: #0d47a1;
}

.mck-blog-browse-options {
    display: flex;
    gap: 20px;
    font-size: 16px;
    color: #555;
}

.mck-blog-browse-options a {
    color: #1a73e8;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.mck-blog-browse-options a:hover {
    color: #0d47a1;
    text-decoration: underline;
}

.mck-blog-hero-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.mck-blog-content-card {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.mck-blog-content-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.mck-blog-content-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.mck-blog-content-card-dark {
    background-color: #7c98b3;
    color: white;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.mck-blog-content-card-dark h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

.mck-blog-content-card-dark p {
    font-size: 16px;
    margin-bottom: 20px;
    opacity: 0.9;
    color: #2b2d42;
}

.mck-blog-email-form {
    display: flex;
    width: 100%;
    max-width: 300px;
}

.mck-blog-email-input {
    flex-grow: 1;
    padding: 10px 15px;
    border: none;
    border-radius: 4px 0 0 4px;
    font-size: 14px;
}

.mck-blog-email-submit {
    background-color: #162556;
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
    transition: background-color 0.3s;
}

.mck-blog-email-submit:hover {
    background-color: #0d47a1;
}

@media (max-width: 768px) {
    .mck-blog-hero-title {
        font-size: 36px;
    }

    .mck-blog-hero-subtitle {
        font-size: 18px;
    }

    .mck-blog-hero-actions {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .mck-blog-browse-options {
        flex-direction: column;
        gap: 10px;
    }
}

.mck-blogs-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.mck-blogs-header {
    text-align: center;
    margin-bottom: 50px;
}

.mck-blogs-title {
    font-size: 42px;
    font-weight: 700;
    color: #000;
    margin-bottom: 15px;
}

.mck-blogs-subtitle {
    font-size: 18px;
    color: #555;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.5;
}

.mck-blogs-cards-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.mck-blogs-card {
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.mck-blogs-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.12);
}

.mck-blogs-card-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.mck-blogs-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.mck-blogs-card:hover .mck-blogs-card-image img {
    transform: scale(1.05);
}

.mck-blogs-card-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.mck-blogs-card-category {
    display: inline-block;
    padding: 5px 12px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.mck-blogs-category-sustainability {
    background-color: #e8f5e9;
    color: #2e7d32;
}

.mck-blogs-category-healthcare {
    background-color: #e3f2fd;
    color: #1565c0;
}

.mck-blogs-category-tech {
    background-color: #e0f7fa;
    color: #00838f;
}

.mck-blogs-card-title {
    font-size: 20px;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 15px;
    color: #000;
    flex-grow: 1;
}

.mck-blogs-card-link {
    display: inline-flex;
    align-items: center;
    color: #1a73e8;
    font-weight: 500;
    text-decoration: none;
    margin-top: auto;
    transition: color 0.3s;
}

.mck-blogs-card-link:hover {
    color: #0d47a1;
}

.mck-blogs-card-link i {
    margin-left: 8px;
    font-size: 14px;
}

@media (max-width: 992px) {
    .mck-blogs-cards-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .mck-blogs-cards-container {
        grid-template-columns: 1fr;
    }

    .mck-blogs-title {
        font-size: 32px;
    }

    .mck-blogs-subtitle {
        font-size: 16px;
    }
}

-----------case--------- .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1.5rem;

}

/* --- Section Header --- */
.casesection-header {
    text-align: center;
    max-width: 800px;
    margin: 2rem auto 4rem auto;

}

.casesection-header h1 {
    font-family: 'Merriweather', serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: #111111;
    margin-bottom: 1.5rem;
}

.casesection-header p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #444444;
}

/* --- Card Grid --- */
.casecard-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem 2rem;
}

.casecard {
    display: flex;
    flex-direction: column;
}

.casecard img {
    width: 100%;
    height: auto;
    object-fit: cover;
    margin-bottom: 1rem;
}

.casecard-title {
    font-family: 'Merriweather', serif;
    font-size: 1.15rem;
    font-weight: 700;
    line-height: 1.4;
    margin: 0 0 0.75rem 0;
}

.casecard-title a {
    text-decoration: none;
    color: #111111;
    transition: color 0.2s ease-in-out;
}

.casecard-title a:hover {
    color: #0073e6;
    /* A shade of blue for hover */
}

/* The blue arrow icon */
.casecard-title a::after {
    content: ' ›';
    /* Using the greater-than sign for the arrow */
    color: #0073e6;
    font-weight: 700;
}

.casecard-meta {
    font-size: 0.85rem;
    line-height: 1.6;
    color: #555555;
    margin: 0;
}

/* --- Blog Section --- */
.caseblog-section {
    margin-top: 5rem;
    padding-top: 2rem;
    border-top: 1px solid #cccccc;
}

.casesection-eyebrow {
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 0.5px;
    margin: 0 0 2rem 0;
    text-transform: uppercase;
}

.casesection-eyebrow a {
    color: #111;
    text-decoration: none;
}

/* Adjust grid for the 3-column blog section */
.caseblog-grid {
    grid-template-columns: repeat(3, 1fr);
}

.casesee-all-container {
    text-align: center;
    margin-top: 3rem;
}

.casesee-all-link {
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    color: #111;
    text-decoration: none;
    transition: color 0.2s ease-in-out;
}

.casesee-all-link:hover {
    color: #0073e6;
}

/* The blue arrow for the "See all" link */
.casesee-all-link::after {
    content: ' ›';
    color: #0073e6;
}

/* --- Responsive Design --- */
@media (max-width: 1024px) {
    .casecard-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .caseblog-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .caseblog-grid .card:last-child {
        grid-column: 1 / -1;
        /* Make the last card span full width if it's alone */
        max-width: 50%;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .casesection-header h1 {
        font-size: 2rem;
    }

    .casesection-header p {
        font-size: 1rem;
    }

    .casecard-grid,
    .caseblog-grid {
        grid-template-columns: 1fr;
    }

    .caseblog-grid .casecard:last-child {
        max-width: 100%;
    }
}

/* --- Blog Section --- */
.caseblog-section {
    margin-top: 5rem;
    padding-top: 2rem;
    border-top: 1px solid #cccccc;
}

.casesection-eyebrow {
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 0.5px;
    margin: 0 0 2rem 0;
    text-transform: uppercase;
}

.casesection-eyebrow a {
    color: #111;
    text-decoration: none;
}

/* Adjust grid for the 3-column blog section */
.caseblog-grid {
    grid-template-columns: repeat(3, 1fr);
}

.casesee-all-container {
    text-align: center;
    margin-top: 3rem;
}

.casesee-all-link {
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    color: #111;
    text-decoration: none;
    transition: color 0.2s ease-in-out;
}

.casesee-all-link:hover {
    color: #0073e6;
}

/* The blue arrow for the "See all" link */
.casesee-all-link::after {
    content: ' ›';
    color: #0073e6;
}

/* --- Responsive Design --- */
@media (max-width: 1024px) {
    .casecard-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .caseblog-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .caseblog-grid .card:last-child {
        grid-column: 1 / -1;
        /* Make the last card span full width if it's alone */
        max-width: 50%;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .casesection-header h1 {
        font-size: 2rem;
    }

    .casesection-header p {
        font-size: 1rem;
    }

    .casecard-grid,
    .caseblog-grid {
        grid-template-columns: 1fr;
    }

    .caseblog-grid .casecard:last-child {
        max-width: 100%;
    }
}

--------------industry-------------

/* Header Styles */
.industry-trend-header {
    background: linear-gradient(135deg, #2b2d42, #2b2d42);

}





/* Hero Section */
.industry-trend-hero {
    margin-top: 5px;
    padding: 6rem 2rem;
    background: linear-gradient(135deg, #1C398E, #162556);
    color: var(--border-color);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.industry-trend-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: industry-trend-pulse 4s ease-in-out infinite;
}

@keyframes industry-trend-pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.5;
    }

    50% {
        transform: scale(1.1);
        opacity: 0.3;
    }
}

.industry-trend-hero-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    animation: industry-trend-fadeInUp 1s ease-out;
}

@keyframes industry-trend-fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.industry-trend-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 800;
}

.industry-trend-hero p {
    font-size: 1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    color: white;
}

.industry-trend-cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--color-bg);
    color: var(--text-dark);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
}

.industry-trend-cta-button:hover {
    background-color: var(--text-dark);
    color: var(--border-color);
}

/* Industry Navigation */
.industry-trend-industry-nav {
    background: #2B2D42;
    padding: 2rem 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 80px;
    z-index: 100;
    color: var(--border-color);
}

.industry-trend-industry-nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.industry-trend-industry-nav-list {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.industry-trend-industry-nav-item {
    padding: 0.75rem 1.5rem;
    background: var(--bg-light);
    border-radius: 25px;
    cursor: pointer;
    transition: var(--transition);
    font-weight: 500;
    color: var(--border-color);
    border: 2px solid transparent;
}

.industry-trend-industry-nav-item:hover {
    background: var(--text-accent);
    color: var(--white);
    transform: translateY(-2px);
}

.industry-trend-industry-nav-item.active {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--secondary-color);
}

/* Main Content */
.industry-trend-main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

/* Industry Section */
.industry-trend-industry-section {
    margin-bottom: 6rem;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.industry-trend-industry-section.visible {
    opacity: 1;
    transform: translateY(0);
}

.industry-trend-section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.industry-trend-section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    position: relative;
    display: inline-block;
}

.industry-trend-section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--accent-color);
    border-radius: 2px;
}

.industry-trend-section-header p {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* Industry Card */
.industry-trend-industry-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    min-height: 400px;
}

.industry-trend-industry-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.industry-trend-card-content {
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.industry-trend-card-image {
    position: relative;
    overflow: hidden;
    background: var(--bg-light);
}

.industry-trend-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.industry-trend-industry-card:hover .industry-trend-card-image img {
    transform: scale(1.05);
}

.industry-trend-card-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.industry-trend-card-content h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.industry-trend-card-content p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.industry-trend-more-info-btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--color-bg);
    color: var(--text-dark);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(124, 152, 179, 0.3);

    align-self: flex-start;
    padding: 0.75rem 1.5rem;
    background: var(--border-color);
    color: var(--text-dark);
    border: 2px solid var(--primary-color);
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.industry-trend-more-info-btn:hover {
    background: var(--text-dark);
    color: var(--border-color);
    transform: translateX(5px);
}

/* Modal */
.industry-trend-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 2000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.industry-trend-modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
}

.industry-trend-modal-content {
    background: var(--white);
    border-radius: 20px;
    max-width: 800px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.industry-trend-modal.show .industry-trend-modal-content {
    transform: scale(1);
}

.industry-trend-modal-header {
    padding: 2rem;
    border-bottom: 1px solid var(--bg-light);
    position: relative;
}

.industry-trend-modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
    background: var(--bg-light);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.industry-trend-modal-close:hover {
    background: var(--primary-color);
    color: var(--white);
}

.industry-trend-modal-body {
    padding: 2rem;
}


/* Responsive Design */
@media (max-width: 768px) {
    .industry-trend-hero h1 {
        font-size: 2rem;
    }

    .industry-trend-industry-nav-list {
        gap: 1rem;
    }

    .industry-trend-industry-nav-item {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }

    .industry-trend-industry-card {
        grid-template-columns: 1fr;
    }

    .industry-trend-card-image {
        height: 250px;
    }

    .industry-trend-card-content {
        padding: 2rem;
    }

    .industry-trend-nav ul {
        display: none;
    }
}

/* Loading Animation */
.industry-trend-loading-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--accent-color);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
    z-index: 1001;
}

.industry-trend-loading-bar.active {
    transform: scaleX(1);
}

--------------------startup-page------------- .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.background {
    background-image: url('https://upload.wikimedia.org/wikipedia/commons/thumb/e/ec/World_map_blank_without_borders.svg/1920px-World_map_blank_without_borders.svg.png');
    /* Replace with your own map if needed */
    background-size: cover;
    background-position: center;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    padding: 150px;
}

.content {
    background-color: rgba(0, 0, 0, 0.5);
    /* semi-transparent background for readability */
    padding: 30px;
    border-radius: 10px;
    max-width: 600px;
}

.content h1 {
    font-size: 2.5em;
    margin-bottom: 0.5em;
}

.content p {
    font-size: 1.2em;
    line-height: 1.5em;
    color: #2b2d42;
}

/* Section Styling */
.alvoria-section {
    padding: 5rem 0;
}

.alvoria-section-title {
    font-size: clamp(2rem, 5vw, 2.75rem);
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--text-dark);

}

.alvoria-section-subtitle {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 3rem;
    color: var(--text-dark);
    line-height: 1.6;
}

.alvoria-highlight {
    color: var(--text-dark);
}

/* New Hero Section */
.alvoria-hero {
    background: linear-gradient(185deg, #f5f7fa 0%, var(--text-gray) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.alvoria-hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(135deg #1C398E 0%, #162556 100%);
    clip-path: polygon(30% 0, 100% 0, 100% 100%, 0% 100%);
    z-index: 1;
}

.alvoria-hero-content {
    display: flex;
    align-items: center;
    position: relative;
    z-index: 2;
}

.alvoria-hero-left {
    flex: 1;
    padding-right: 50px;
}

.alvoria-hero-right {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.alvoria-hero-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.alvoria-hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.alvoria-cta-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.alvoria-btn {
    padding: 0.8rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.alvoria-btn-primary {
    background: var(--color-bg);
    color: var(--text-dark);
    box-shadow: 0 5px 15px rgba(123, 104, 238, 0.3);
}

.alvoria-btn-primary:hover {
    background: var(--text-dark);
    color: var(--color-bg);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(123, 104, 238, 0.4);
}

.alvoria-btn-secondary {
    background: transparent;
    color: var(--text-dark);
    border: 2px solid var(--alvoria-color-purple);
}

.alvoria-btn-secondary:hover {
    background: var(--text-dark);
    color: white;
}

.alvoria-hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
}

.alvoria-hero-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    color: var(--text-dark);
}

.alvoria-hero-feature i {
    color: var(--text-accent);
}

.alvoria-hero-image {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.alvoria-hero-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 450px;
}

.alvoria-card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.alvoria-card-icon {
    width: 50px;
    height: 50px;
    background: var(--text-accent);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.alvoria-card-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-dark);
}

.alvoria-card-list {
    list-style: none;
}

.alvoria-card-list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.8rem;
    color: var(--text-dark);
}

.alvoria-card-list li i {
    color: var(--text-accent);
}



/* What We Do Section */
.alvoria-what-we-do-section {
    background-color: #ffffff;
    color: var(--text-dark);
    position: relative;
    z-index: 5;
}

.alvoria-what-we-do-card {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
    background-color: var(--alvoria-color-bg-light);
    padding: 3rem;
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--alvoria-color-border);
}

@media (min-width: 992px) {
    .alvoria-what-we-do-card {
        grid-template-columns: 1fr 1fr;
    }
}

.alvoria-what-we-do-card h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.alvoria-what-we-do-card p {
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.alvoria-checklist {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 2rem;
}

.alvoria-checklist li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.alvoria-checklist li i {
    color: var(--text-accent);
}

.alvoria-illustration img {
    width: 100%;
    max-width: 400px;
    display: block;
    margin: 0 auto;
}

/* Complex Services Section */
.alvoria-complex-services-section {
    background-color: #ffffff;
    color: var(--text-dark);
}

.alvoria-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.alvoria-service-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background-color: var(--alvoria-color-bg-grey);
    padding: 1rem 1.5rem;
    border-radius: 12px;
    border: 1px solid var(--alvoria-color-border);
    font-weight: 600;
    transition: all 0.3s ease;
}

.alvoria-service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.alvoria-service-item .alvoria-icon {
    font-size: 1.5rem;
    color: var(--text-accent);
}

/* Global Reach Section */
.alvoria-reach-section {
    background-color: var(--alvoria-color-bg-grey);
    color: var(--text-dark);
}

.alvoria-map-container img {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    display: block;
    border-radius: 12px;
}

/* Attorneys Section */
.alvoria-attorneys-section {
    background-color: #ffffff;
    color: var(--text-dark);
}

.alvoria-institutions-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 3rem;
}

.alvoria-institutions-grid img {
    height: 40px;
    filter: grayscale(1);
    opacity: 0.6;
    transition: all var(--alvoria-transition-speed);
}

.alvoria-institutions-grid img:hover {
    filter: none;
    opacity: 1;
}

/* Testimonials Section */
.alvoria-testimonials-section {
    background-color: var(--alvoria-color-bg-grey);
    color: var(--text-dark);
}

.alvoria-testimonial-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 992px) {
    .alvoria-testimonial-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.alvoria-testimonial-card {
    border: 1px solid var(--alvoria-color-border);
    padding: 2rem;
    border-radius: 16px;
    background-color: #ffffff;
    transition: all 0.3s ease;
}

.alvoria-testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.alvoria-testimonial-card h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.alvoria-testimonial-card .alvoria-stars {
    color: var(--text-accent);
    margin-bottom: 1rem;
}

/* Responsive Design */
@media (max-width: 992px) {
    .alvoria-hero-content {
        flex-direction: column;
    }

    .alvoria-hero-left {
        padding-right: 0;
        margin-bottom: 3rem;
        text-align: center;
    }

    .alvoria-hero::before {
        width: 100%;
        height: 40%;
        clip-path: polygon(0 0, 100% 0, 100% 70%, 0% 100%);
    }
}

@media (max-width: 768px) {
    .alvoria-cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .alvoria-btn {
        width: 100%;
        max-width: 300px;
    }

    .alvoria-features {
        grid-template-columns: 1fr;
    }

    .alvoria-checklist {
        grid-template-columns: 1fr;
    }
}

----------business-page------------ .business-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}



/* SME business content container for consistent layout */
.alvoria-sme-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* SME business typography hierarchy */
h1,
h2 {
    font-family: var(--font-serif);
    color: var(--color-bg);
    font-weight: 700;
}

/* SME business headline sizing - responsive for all devices */
h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-top: 0;
    margin-bottom: 1.5rem;
}



/* --- HERO SECTION STYLES --- */
/* SME business hero: Professional first impression */
.alvoria-sme-hero-section {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    color: var(--color-white);
    padding: 0;
    overflow: hidden;
}

/* SME business video background: Dynamic yet professional */
.alvoria-sme-hero-video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    overflow: hidden;
}

.alvoria-sme-hero-video-background video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* SME business overlay: Ensuring text readability over video */
.alvoria-sme-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.2) 100%);
    z-index: -1;
}

/* SME business hero content: Professional messaging area */
.alvoria-sme-hero-content {
    max-width: 650px;
    padding: 2rem;
}

.alvoria-sme-hero-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: var(--color-bg);
}

.alvoria-sme-hero-content h1 {
    color: var(--color-bg);
}

/* SME business call-to-action: Professional scroll indicator */
.alvoria-sme-scroll-down-arrow {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    color: var(--color-white);
    text-decoration: none;
    font-size: 2rem;
}



/* --- RESPONSIVE DESIGN --- */
@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }

    .alvoria-sme-hero-content p {
        font-size: 1.1rem;
    }
}

/* --- 4. Main Content Sections --- */
.business-content-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: center;
}

@media (min-width: 992px) {
    .business-content-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.business-content-text h2 {
    font-size: clamp(2rem, 5vw, 2.75rem);
    margin-bottom: 1.5rem;
    color: var(--text-gray);
}

.business-content-text p {
    margin-bottom: 1.5rem;
}

.business-content-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.business-text-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    font-weight: 700;
    color: var(--business-color-accent-primary);
}

.business-text-link i {
    transition: transform var(--business-transition-speed);
}

.business-text-link:hover i {
    transform: translateX(5px);
}

/* Business content container for consistent layout */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Business section spacing for professional presentation */
section {
    padding: 6rem 0;
}

/* Business typography hierarchy */
h1,
h2 {
    font-family: var(--font-serif);
    color: var(--color-dark);
    font-weight: 700;
}

/* Business headline sizing - responsive for all devices */
h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    /* Business presentation: Strong first impression */
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    /* Business section headers: Clear hierarchy */
}

/* --- 2. ANIMATION BASE STYLES --- */
/* Business presentation: Smooth, professional animations */
.animate-on-scroll {
    opacity: 0;
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

/* Business entrance animations - subtle and professional */
.fade-in-up {
    transform: translateY(40px);
    /* Business content reveal: Upward motion */
}

.fade-in {
    transform: scale(0.95);
    /* Business element reveal: Scaling effect */
}

.slide-in-left {
    transform: translateX(-50px);
    /* Business content entry: From left */
}

.slide-in-right {
    transform: translateX(50px);
    /* Business content entry: From right */
}

/* Business animation completion state */
.is-visible {
    opacity: 1;
    transform: none;
}


/* Business call-to-action: Professional scroll indicator */
.scroll-down-arrow {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    color: var(--color-white);
    text-decoration: none;
    font-size: 2rem;
    animation: bounce 2s infinite;
    /* Business UX: Clear navigation cue */
}

/* --- 4. INTRO CTA SECTION --- */
/* Business introduction: Clear value proposition */
.intro-section {
    background-color: var(--color-light-gray);
    text-align: center;
    /* Business presentation: Neutral background for focus */
}

.intro-section h2 {
    font-family: var(--font-sans);
    font-size: 2.5rem;
    font-weight: 500;
    /* Business headline: Professional sans-serif for clarity */
}

.intro-section p {
    max-width: 700px;
    margin: 1.5rem auto 2.5rem auto;
    /* Business content: Centered and constrained for readability */
}



/* --- 5. VALUE PROP & MOMENT SECTIONS --- */
/* Business layout: Professional grid system */
.grid-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    /* Business content: Balanced, professional layout */
}

/* Business features: Clear value proposition items */
.features-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    /* Business organization: Vertical feature flow */
}

.feature-item {
    padding: 1.5rem 0;
    border-bottom: 1px solid #e5e7eb;
    position: relative;
    padding-left: 2.5rem;
    /* Business design: Clear feature separation */
}

.feature-item:last-child {
    border-bottom: none;
    /* Business design: Clean list ending */
}

/* Business feature indicators: Visual bullet points */
.feature-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 1.8rem;
    width: 20px;
    height: 20px;
    background-color: var(--color-primary);
    /* Business visual: Consistent feature markers */
}

.feature-item h3 {
    font-family: var(--font-sans);
    font-size: 1.2rem;
    color: var(--color-dark);
    margin: 0 0 0.5rem 0;
    /* Business typography: Clear feature titles */
}

/* Business imagery: Professional presentation */
.image-content img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    /* Business visuals: Professional image treatment */
}

/* --- 6. KEYFRAME ANIMATIONS --- */
/* Business animation: Subtle bounce effect */
@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0) translateX(-50%);
    }

    40% {
        transform: translateY(-20px) translateX(-50%);
    }

    60% {
        transform: translateY(-10px) translateX(-50%);
    }

    /* Business motion: Professional, subtle animation */
}

/* --- 7. RESPONSIVE DESIGN --- */
/* Business mobile: Professional presentation on all devices */
@media (max-width: 992px) {
    .grid-layout {
        grid-template-columns: 1fr;
        /* Business layout: Single column on medium screens */
    }

    .moment-section .image-content {
        grid-row: 1;
        /* Business layout: Image first on mobile */
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
        /* Business mobile: Smaller headline */
    }

    h2 {
        font-size: 1.8rem;
        /* Business mobile: Smaller subheadings */
    }

    section {
        padding: 4rem 0;
        /* Business mobile: Reduced spacing */
    }
}


----------healthcare-page------------

/* Hero Section */
.healthcare-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

/* Medical Icons Background */
.healthcare-medical-icons {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.healthcare-icon {
    position: absolute;
    font-size: 3rem;
    opacity: 0.05;
    animation: drift 25s infinite linear;
}

.healthcare-icon-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.healthcare-icon-2 {
    top: 60%;
    right: 15%;
    animation-delay: 8s;
}

.healthcare-icon-3 {
    bottom: 20%;
    left: 20%;
    animation-delay: 16s;
}

@keyframes drift {
    0% {
        transform: translateX(0) translateY(0) rotate(0deg);
    }

    25% {
        transform: translateX(30px) translateY(-30px) rotate(90deg);
    }

    50% {
        transform: translateX(-20px) translateY(20px) rotate(180deg);
    }

    75% {
        transform: translateX(-30px) translateY(-20px) rotate(270deg);
    }

    100% {
        transform: translateX(0) translateY(0) rotate(360deg);
    }
}

/* Content Container */
.healthcare-hero-content {
    position: relative;
    z-index: 10;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    background: linear-gradient(to bottom, var(--color-accent-teal), var(--color-bg-grey));
    color: rgb(29, 26, 26);
}

/* Text Content */
.healthcare-text-content {
    animation: fadeInLeft 1s ease-out;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.healthcare-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--text-accent) 0%, var(--text-accent) 100%);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    animation: slideDown 0.8s ease-out 0.3s both;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.healthcare-hero-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 1.5rem;
    line-height: 1.2;
    animation: fadeInUp 1s ease-out 0.5s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.healthcare-hero-title span {
    color: var(--color-text);
    background-clip: text;
}

.healthcare-hero-subtitle {
    font-size: 1.2rem;
    color: #546e7a;
    margin-bottom: 2rem;
    line-height: 1.6;
    animation: fadeInUp 1s ease-out 0.7s both;
}

.healthcare-key-points {
    margin-bottom: 2.5rem;
    animation: fadeInUp 1s ease-out 0.9s both;
}

.healthcare-key-point {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    color: #37474f;
}

.healthcare-key-point-icon {
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, var(--text-accent) 0%, #2196f3 100%);
    border-radius: 50%;
    margin-right: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.8rem;
    flex-shrink: 0;
}

/* CTA Button */
.healthcare-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #4caf50 0%, #2196f3 100%);
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    box-shadow: 0 10px 30px rgba(76, 175, 80, 0.3);
    transition: all 0.3s ease;
    animation: fadeInUp 1s ease-out 1.1s both;
    position: relative;
    overflow: hidden;
}

.healthcare-cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(76, 175, 80, 0.4);
}

.healthcare-cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.healthcare-cta-button:hover::before {
    left: 100%;
}

/* Visual Content */
.healthcare-visual-content {
    position: relative;
    animation: fadeInRight 1s ease-out;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.healthcare-feature-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
    animation: slideInUp 0.8s ease-out 0.5s both;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.healthcare-feature-card h3 {
    color: #1a237e;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.healthcare-feature-card p {
    color: #546e7a;
    line-height: 1.6;
}

.healthcare-stats-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    animation: fadeIn 1s ease-out 1.3s both;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.healthcare-stat-box {
    background: white;
    padding: 1.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.healthcare-stat-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.healthcare-stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-accent);
    display: block;
}

.healthcare-stat-label {
    font-size: 0.9rem;
    color: #546e7a;
    margin-top: 0.5rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .healthcare-hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .healthcare-text-content {
        animation: fadeInTop 1s ease-out;
    }

    @keyframes fadeInTop {
        from {
            opacity: 0;
            transform: translateY(-50px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .healthcare-visual-content {
        animation: fadeInBottom 1s ease-out;
    }

    @keyframes fadeInBottom {
        from {
            opacity: 0;
            transform: translateY(50px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .healthcare-stats-container {
        grid-template-columns: 1fr;
    }

    .healthcare-key-point {
        justify-content: center;
        text-align: left;
    }
}

/* --- 4. Main Content Sections --- */
.healthcare-strategies-section {

    background-color: var(--color-bg);
    /* Subtle texture background from HeroPatterns.com */
    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%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23e2e8f0' fill-opacity='0.4'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.healthcare-grid-layout {
    margin: 20px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: flex-start;
}

@media (min-width: 992px) {
    .healthcare-grid-layout {
        grid-template-columns: 1fr 1fr;
    }
}

.healthcare-grid-layout h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.healthcare-key-stats {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--color-border);
}

.healthcare-key-stats h4 {
    font-weight: 600;
    color: var(--color-accent-blue);
    margin-bottom: 1rem;
}

.healthcare-key-stats ul {
    list-style-type: '✓  ';
    padding-left: 1.5rem;
}

.healthcare-key-stats li {
    margin-bottom: 0.75rem;
    color: var(--color-text-secondary);
}

.healthcare-strategies-list ol {
    list-style: none;
    counter-reset: strategies-counter;
}

.healthcare-strategies-list li {
    counter-increment: strategies-counter;
    margin-bottom: 1.5rem;
    padding-left: 2.5rem;
    position: relative;
}

.healthcare-strategies-list li::before {
    content: counter(strategies-counter);
    position: absolute;
    left: 0;
    top: 0;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--color-accent-blue);
    background-color: #eaf2ff;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.healthcare-strategies-list strong {
    display: block;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

/* --- 5. Testimonial Snippet Section --- */
.healthcare-testimonial-snippet {
    padding: 5rem 0;
}

.healthcare-testimonial-card {
    display: grid;
    grid-template-columns: 1fr;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
    background-color: var(--color-bg);
    color: var(--text-dark);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

@media (min-width: 992px) {
    .healthcare-testimonial-card {
        grid-template-columns: 350px 1fr;
    }
}

.healthcare-testimonial-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

@media (min-width: 992px) {
    .healthcare-testimonial-image {
        height: 100%;
    }
}

.healthcare-testimonial-content {
    padding: 3rem;
}

.healthcare-testimonial-logo {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.healthcare-testimonial-text {
    color: var(--text-dark);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.healthcare-testimonial-results {
    display: flex;
    gap: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #374151;
}

.healthcare-result-item h4 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-dark);
}

.healthcare-result-item p {
    color: #9ca3af;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* --- 6. Buyer's Journey Section --- */
.healthcare-three-col-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

@media (min-width: 992px) {
    .healthcare-three-col-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.healthcare-three-col-grid h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.healthcare-intro-section {
    padding-bottom: 3rem;
}


---------------- e -commmerce------------ .container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.ecommerce-container1 {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 20px;
}

.ecommerce-section-title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.ecommerce-btn {
    display: inline-block;
    background-color: var(--color-accent-pink);
    color: white;
    padding: 12px 30px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    transition: all var(--transition-speed);
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.ecommerce-btn:hover {
    background-color: #e62e5a;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 51, 102, 0.3);
}

/* --- 3. Hero Section --- */
.ecommerce-hero-section {
    text-align: center;
    background-color: transparent;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}



.ecommerce-hero-section .ecommerce-container {
    position: relative;
    z-index: 2;
    animation: ecommerceFadeInUp 1s ease-out;
}

@keyframes ecommerceFadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.ecommerce-hero-title {
    font-size: clamp(2.8rem, 6vw, 4rem);
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #2b2d42;
    animation: ecommerceFadeIn 1.5s ease-out;
}

@keyframes ecommerceFadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.ecommerce-hero-subtitle {
    font-size: 1.1rem;
    color: #2b2d42;
    max-width: 700px;
    margin: 0 auto 2.5rem;
    line-height: 1.7;
    animation: ecommerceFadeIn 2s ease-out;
}

.ecommerce-hero-section .ecommerce-btn {
    animation: ecommerceFadeInUp 1.5s ease-out;
}

/* --- 4. Client Logos Section --- */
.ecommerce-client-logos-section {
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
    padding: 40px 0;
}

.ecommerce-client-logos-wrapper {
    text-align: center;
}

.ecommerce-client-logos-wrapper .eyebrow {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--color-text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 2rem;
    display: block;
}

.ecommerce-logos-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 3rem;
}

.ecommerce-logos-grid img {
    height: 30px;
    filter: grayscale(1);
    opacity: 0.6;
    transition: all var(--transition-speed);
}

.ecommerce-logos-grid img:hover {
    filter: grayscale(0);
    opacity: 1;
    transform: scale(1.1);
}


.e-commerce-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.e-commerce-header {
    text-align: center;
    margin-bottom: 40px;
    animation: e-commerce-fadeIn 1s ease-out;
}

.e-commerce-header h1 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 10px;
}

.e-commerce-header p {
    font-size: 1.1rem;
    color: #7f8c8d;
}

.e-commerce-content {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

/* Left column - News articles */
.e-commerce-news-section {
    flex: 2;
    min-width: 300px;
}

.e-commerce-news-card {
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    padding: 20px;
    margin-bottom: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: e-commerce-slideInLeft 0.8s ease-out;
    animation-fill-mode: both;
}

.e-commerce-news-card:nth-child(1) {
    animation-delay: 0.1s;
}

.e-commerce-news-card:nth-child(2) {
    animation-delay: 0.2s;
}

.e-commerce-news-card:nth-child(3) {
    animation-delay: 0.3s;
}

.e-commerce-news-card:nth-child(4) {
    animation-delay: 0.4s;
}

.e-commerce-news-card:nth-child(5) {
    animation-delay: 0.5s;
}

.e-commerce-news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.e-commerce-news-title {
    font-size: 1.2rem;
    color: #2c3e50;
    margin-bottom: 10px;
    font-weight: 600;
}

.e-commerce-news-summary {
    color: #7f8c8d;
    margin-bottom: 15px;
    line-height: 1.5;
}

.e-commerce-read-more {
    display: inline-block;
    color: #3498db;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.e-commerce-read-more:hover {
    color: #2980b9;
}

.e-commerce-read-more i {
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.e-commerce-read-more:hover i {
    transform: translateX(3px);
}

/* Right column - Quick links and related content */
.e-commerce-sidebar {
    flex: 1;
    min-width: 280px;
}

.e-commerce-quick-links {
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    padding: 20px;
    margin-bottom: 20px;
    animation: e-commerce-slideInRight 0.8s ease-out;
    animation-delay: 0.6s;
    animation-fill-mode: both;
}

.e-commerce-section-title {
    font-size: 1.3rem;
    color: #2c3e50;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #ecf0f1;
}

.e-commerce-link-item {
    display: block;
    padding: 10px 0;
    color: #34495e;
    text-decoration: none;
    transition: color 0.3s ease;
    border-bottom: 1px solid #ecf0f1;
}

.e-commerce-link-item:last-child {
    border-bottom: none;
}

.e-commerce-link-item:hover {
    color: #3498db;
    padding-left: 5px;
}

.e-commerce-link-item i {
    margin-right: 8px;
    color: #3498db;
}

.e-commerce-video-section {
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    padding: 20px;
    animation: e-commerce-slideInRight 0.8s ease-out;
    animation-delay: 0.7s;
    animation-fill-mode: both;
}

.e-commerce-video-container {
    position: relative;
    padding-bottom: 56.25%;
    /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    border-radius: 6px;
    margin-bottom: 15px;
}

.e-commerce-video-container img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.e-commerce-play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background-color: rgba(52, 152, 219, 0.8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.e-commerce-play-button:hover {
    background-color: rgba(41, 128, 185, 0.9);
    transform: translate(-50%, -50%) scale(1.1);
}

.e-commerce-play-button i {
    color: white;
    font-size: 24px;
    margin-left: 5px;
}

.e-commerce-video-caption {
    font-size: 0.95rem;
    color: #7f8c8d;
    text-align: center;
}

-----------lifestle----------

/* Experiences Section */
.lifestyle-experiences-section {
    padding: 5rem 5%;
    background-color: var(--lifestyle-white-color);
}

.lifestyle-experiences-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.lifestyle-experience-card {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--lifestyle-transition);
    position: relative;
}

.lifestyle-experience-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.lifestyle-experience-image {
    height: 250px;
    overflow: hidden;
    position: relative;
}

.lifestyle-experience-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--lifestyle-transition);
}

.lifestyle-experience-card:hover .lifestyle-experience-image img {
    transform: scale(1.1);
}

.lifestyle-experience-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: var(--lifestyle-primary-color);
    color: var(--lifestyle-white-color);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
}

.lifestyle-experience-content {
    padding: 1.5rem;
}

.lifestyle-experience-title {
    font-size: 1.3rem;
    color: var(--lifestyle-primary-color);
    margin-bottom: 0.5rem;
}

.lifestyle-experience-description {
    color: var(--lifestyle-text-color);
    margin-bottom: 1rem;
}

.lifestyle-experience-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
    color: #777;
}

.lifestyle-experience-rating {
    color: #ffc107;
}

/* Blog Section */
.lifestyle-blog-section {
    padding: 5rem 5%;
    background-color: var(--lifestyle-light-color);
}

.lifestyle-blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.lifestyle-blog-card {
    background-color: var(--lifestyle-white-color);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--lifestyle-transition);
}

.lifestyle-blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.lifestyle-blog-image {
    height: 200px;
    overflow: hidden;
}

.lifestyle-blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--lifestyle-transition);
}

.lifestyle-blog-card:hover .lifestyle-blog-image img {
    transform: scale(1.1);
}

.lifestyle-blog-content {
    padding: 1.5rem;
}

.lifestyle-blog-date {
    font-size: 0.8rem;
    color: #777;
    margin-bottom: 0.5rem;
}

.lifestyle-blog-title {
    font-size: 1.2rem;
    color: var(--lifestyle-primary-color);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.lifestyle-blog-excerpt {
    color: var(--lifestyle-text-color);
    margin-bottom: 1rem;
}

.lifestyle-blog-link {
    color: var(--lifestyle-primary-color);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    transition: var(--lifestyle-transition);
}

.lifestyle-blog-link i {
    margin-left: 5px;
    transition: var(--lifestyle-transition);
}

.lifestyle-blog-link:hover i {
    transform: translateX(5px);
}

/* Newsletter Section */
.lifestyle-newsletter-section {
    padding: 5rem 5%;
    background: linear-gradient(135deg, var(--lifestyle-primary-color), var(--lifestyle-secondary-color));
    color: var(--lifestyle-white-color);
    text-align: center;
}

.lifestyle-newsletter-container {
    max-width: 700px;
    margin: 0 auto;
}

.lifestyle-newsletter-title {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.lifestyle-newsletter-description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.lifestyle-newsletter-form {
    display: flex;
    gap: 1rem;
    max-width: 500px;
    margin: 0 auto;
}

.lifestyle-newsletter-input {
    flex: 1;
    padding: 1rem;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
}

.lifestyle-newsletter-btn {
    background-color: var(--lifestyle-white-color);
    color: var(--lifestyle-primary-color);
    border: none;
    padding: 1rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--lifestyle-transition);
}

.lifestyle-newsletter-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Animations */
@keyframes lifestyleFadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes lifestyleSlideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes lifestyleSlideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Mobile Responsive */
@media (max-width: 992px) {
    .lifestyle-hero-section {
        flex-direction: column;
        text-align: center;
    }

    .lifestyle-hero-content {
        padding-right: 0;
        margin-bottom: 2rem;
    }

    .lifestyle-hero-title {
        font-size: 2.8rem;
    }

    .lifestyle-hero-buttons {
        justify-content: center;
    }

    .lifestyle-hero-image {
        width: 100%;
        height: 400px;
    }
}

@media (max-width: 768px) {
    .lifestyle-hero-title {
        font-size: 2.2rem;
    }

    .lifestyle-newsletter-form {
        flex-direction: column;

    }
}

/* saas  */
:root {
    --primary: #4F46E5;
    --primary-dark: #4338CA;
    --secondary: #10B981;
    --accent: #18c0c1;
    --dark: #1F2937;
    --light: #F9FAFB;
    --gray: #6B7280;
    --border: #E5E7EB;
    --shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
    --header-height: 80px;
    --color-bg: #ffffff;
    --border-color: #e5e7eb;
    --text-dark: #1f2937;
    --text-gray: #6b7280;
    --text-accent: #18c0c1;
    --menu-bg-featured: #f9fafb;
}

/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--dark);
    line-height: 1.6;
    overflow-x: hidden;
    background-color: #fff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1,
h2,
h3,
h4 {
    font-weight: 700;
    line-height: 1.2;
}

h1 {
    font-size: 3.5rem;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 1.4rem;
}

h4 {
    font-size: 1.1rem;
}

p {
    margin-bottom: 1rem;
}

.btn-primary {
    align-self: flex-end;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border: 2px solid var(--border-color);
    border-radius: 50px;
    color: var(--color-text);
    font-weight: 700;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--text-dark);
    color: white;
    border-color: var(--color-bgindex);
}


/* Cards */
.card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    transition: var(--transition);
}

.card-hover:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

/* Hero Section */
.hero {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    top: -50px;
    right: -50px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(79, 70, 229, 0.1);
    z-index: 0;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-text {
    text-align: center;
}

.hero-text h1 {
    margin-bottom: 1.5rem;
    color: var(--dark);
}

.hero-text .subheading {
    font-size: 1.25rem;
    color: var(--gray);
    margin-bottom: 2rem;
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
}

.hero-text .check-info {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray);
    font-size: 0.95rem;
}

.hero-text .check-info i {
    color: var(--accent);
    margin-right: 0.5rem;
}

.hero-image {
    background: white;
    border-radius: 16px;
    box-shadow: var(--shadow);
    overflow: hidden;
    position: relative;
    transform: perspective(1000px) rotateY(-5deg);
    transition: transform 0.8s;
}

.hero-image:hover {
    transform: perspective(1000px) rotateY(0);
}

.hero-image img {
    width: 100%;
    height: auto;
    display: block;
}

.hero-image::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60%;
    background: linear-gradient(to top, rgba(255, 255, 255, 0.8), transparent);
    z-index: 1;
}

/* Social Proof Section */
.social-proof {
    padding: 5rem 0;
    background: white;
}

.section-title {
    text-align: center;
    margin-bottom: 1rem;
    color: var(--dark);
}

.section-subtitle {
    text-align: center;
    color: var(--gray);
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 5rem;
}

.stat-card {
    text-align: center;
    padding: 2rem;
    border-radius: 12px;
    background: var(--light);
    border: 1px solid transparent;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
    border-color: var(--primary);
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-accent);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--gray);
    font-weight: 500;
}

.testimonials {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.testimonial {
    border: 1px solid var(--border);
}

.testimonial-header {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-right: 1rem;
    object-fit: cover;
    border: 3px solid var(--light);
}

.testimonial-info h4 {
    font-weight: 700;
}

.testimonial-info p {
    color: var(--gray);
    font-size: 0.9rem;
    margin-bottom: 0;
}

.testimonial-text {
    color: var(--dark);
    font-style: italic;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.rating {
    color: var(--text-accent);
}

/* Trust Logos Section */
.trust-logos {
    padding: 4rem 0;
    background: var(--light);
}

.logos-container {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 3rem;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.logos-container:hover {
    opacity: 1;
}

.logo-item {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray);
    transition: var(--transition);
}

.logo-item:hover {
    color: var(--primary);
    transform: scale(1.05);
}

/* Benefits Section */
.benefits {
    padding: 5rem 0;
    background: white;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.benefit-card {
    text-align: center;
    background: var(--light);
    border: 1px solid transparent;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.benefit-card:hover {
    border-color: var(--accent);
}

.benefit-icon {
    font-size: 3rem;
    color: var(--accent);
    margin-bottom: 1.5rem;
}

.benefit-card h3 {
    margin-bottom: 1rem;
    color: var(--dark);
}

.benefit-card p {
    color: var(--gray);
    margin-bottom: 0.8rem;
    flex-grow: 1;
}

.benefit-value {
    font-weight: 700;
    color: var(--secondary);
    margin-top: auto;
    padding-top: 1rem;
    font-size: 1.1rem;
}

/* Case Studies Section */
.case-studies {
    padding: 5rem 0;
    background: var(--light);
}

.case-study {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow);
    margin-bottom: 3rem;
}

.case-study:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.case-study-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    padding: 3rem;
}

.case-study-text h3 {
    margin-bottom: 1.5rem;
    color: var(--dark);
}

.case-study-text p {
    color: var(--gray);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.results {
    display: flex;
    gap: 2rem;
    margin-top: 2.5rem;
}

.result-item {
    text-align: center;
    background: var(--light);
    padding: 1.5rem;
    border-radius: 12px;
    flex: 1;
}

.result-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.result-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-accent);
}

.result-label {
    color: var(--gray);
    font-size: 0.95rem;
    font-weight: 500;
}

.case-study-image {
    background: linear-gradient(90deg, var(--text-dark) 0%, var(--color-bg) 50%, var(--text-dark) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 3rem;
    border-radius: 12px;
    overflow: hidden;
}

.case-study-image i {
    color: var(--text-accent);
    font-size: 4rem;
}

/* Demo Section */
.demo {
    padding: 5rem 0;
    background: linear-gradient(90deg, var(--text-dark) 0%, var(--color-bg) 50%, var(--text-dark) 100%);
    color: var(--gray);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.demo::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
    background-size: 100px 100px;
    z-index: 0;
}

.demo>.container {
    position: relative;
    z-index: 1;
}

.demo h2 {
    margin-bottom: 1.5rem;
}

.demo p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}



/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.8s ease forwards;
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

.delay-3 {
    animation-delay: 0.6s;
}

/* Responsive */
@media (max-width: 992px) {
    .hero-content {
        grid-template-columns: 1fr;
    }

    .hero-text {
        margin-bottom: 2rem;
    }

    .hero-image {
        max-width: 80%;
        margin: 0 auto;
    }

    .stats-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonials {
        grid-template-columns: repeat(2, 1fr);
    }

    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .case-study-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }

    .stats-container {
        grid-template-columns: 1fr;
    }

    .testimonials {
        grid-template-columns: 1fr;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .btn-group {
        flex-direction: column;
        align-items: center;
    }
}
/*--Footer--*/
.footer-container {
      width: 100%;
      background-color: #ffffff;
      color: #374151;
      padding: 60px 20px 30px;
      box-shadow: 0 -4px 20px rgba(0,0,0,0.05);
      border-top: 1px solid #e5e7eb;
    }

    .footer-content {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 40px;
      margin-bottom: 40px;
      max-width: 1400px;
      margin-left: auto;
      margin-right: auto;
    }

    .footer-section h3 {
      font-size: 18px;
      margin-bottom: 15px;
      color: #111827;
      position: relative;
      padding-bottom: 8px;
      font-weight: 600;
    }

    .footer-section h3::after {
      content: '';
      position: absolute;
      left: 0;
      bottom: 0;
      width: 40px;
      height: 2px;
      background-color: #18c0c1;
    }

    .footer-section ul {
      list-style: none;
    }

    .footer-section ul li {
      margin-bottom: 10px;
    }

    .footer-section ul li a {
      color: #6b7280;
      text-decoration: none;
      font-size: 15px;
      transition: color 0.3s ease;
    }

    .footer-section ul li a:hover {
      color: #18c0c1;
    }

    .subscribe-form {
      display: flex;
      margin-top: 15px;
      max-width: 300px;
    }

    .subscribe-form input {
      flex: 1;
      padding: 12px;
      border: 1px solid #d1d5db;
      border-radius: 4px 0 0 4px;
      outline: none;
      background-color: #f9fafb;
      color: #111827;
      font-size: 14px;
    }

    .subscribe-form button {
      background-color: #18c0c1;
      color: white;
      border: none;
      padding: 12px 20px;
      border-radius: 0 4px 4px 0;
      cursor: pointer;
      transition: background-color 0.3s ease;
    }

    .subscribe-form button:hover {
      background-color: #14a2a3;
    }

    .footer-section.about p {
      font-size: 14px;
      line-height: 1.7;
      margin-bottom: 10px;
      color: #2b2d42;
      text-align: justify;
    }

    .footer-bottom {
      border-top: 1px solid #e5e7eb;
      padding-top: 20px;
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 25px;
      flex-wrap: wrap;
    }

    .social-icons {
      display: flex;
      gap: 20px;
    }

    .social-icons a {
      color: #6b7280;
      font-size: 20px;
      transition: all 0.3s ease;
    }

    .social-icons a:hover {
      color: #18c0c1;
      transform: scale(1.2) rotate(5deg);
    }

    .copyright {
      width: 100%;
      text-align: center;
      margin-top: 20px;
      color: #9ca3af;
      font-size: 14px;
    }

    /* ---------- RESPONSIVE ---------- */
    @media (max-width: 992px) {
      .footer-content {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        gap: 25px;
      }
    }

    @media (max-width: 768px) {
      .footer-content {
        grid-template-columns: 1fr 1fr;
        text-align: center;
      }
      .footer-section h3::after {
        left: 50%;
        transform: translateX(-50%);
      }
      .subscribe-form {
        margin: 0 auto;
      }
    }

    @media (max-width: 500px) {
      .footer-content {
        grid-template-columns: 1fr;
      }
      .subscribe-form {
        flex-direction: column;
        max-width: 100%;
      }
      .subscribe-form input, 
      .subscribe-form button {
        border-radius: 4px;
        width: 100%;
      }
      .subscribe-form button {
        margin-top: 10px;
      }
    }