:root {
    --bg-color: #ffffff;
    --text-color: #111111;
    --text-muted: #555555;
    --primary-blue: #2070d0;
    --secondary-blue: #046eab;
    --card-bg: rgba(255, 255, 255, 0.9);
    --border-color: rgba(0, 0, 0, 0.1);
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    background-color: var(--bg-color);
    color: var(--text-color);
    overflow-x: hidden;
    width: 100%;
}

/* Removed snap-section */
/* Typography & Links */
a {
    color: var(--text-color);
    text-decoration: none;
}

h1,
h2,
h3,
h4 {
    font-weight: 800;
    line-height: 1.2;
}



/* Navigation */
.navbar {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 95%;
    max-width: 1400px;
    padding: 15px 40px;

    display: flex;
    justify-content: space-between;
    align-items: center;

    /* Glass Effect */
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);

    border: 1px solid rgba(255, 255, 255, 0.2);

    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.25);

    border-radius: 16px;

    z-index: 1000;

    transition: all .3s ease;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.5rem;
    font-weight: 800;
    flex: 1;
}

.logo-img {
    height: 40px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 20px;
    margin: 0 auto;
    padding: 0;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 1;
    justify-content: flex-end;
}

.nav-links a {
    font-size: 1rem;
    font-weight: 500;
    color: #111;
    position: relative;
    padding-bottom: 8px;
    text-decoration: none;
    transition: color 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
    color: #2070d0;
}

.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: #2070d0;
    border-radius: 2px;
}

.hamburger {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
    z-index: 1001;
}

.hamburger svg {
    display: block;
}

.hamburger svg path {
    transition: 0.3s;
}

/* Mobile Nav Overlay */
.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #2070d0;
    /* Brand blue background */
    transform: translateX(100%);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 24px 20px;
    z-index: 1001;
    overflow-y: auto;
}

.hamburger.active svg path {
    stroke: #ffffff !important;
}

.mobile-nav-overlay.active {
    transform: translateX(0);
}

.mobile-nav-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-bottom: 16px;
}

.mobile-logo-area {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.mobile-logo-img {
    height: 30px;
    filter: brightness(0) invert(1);
}

.mobile-logo-tagline {
    font-size: 8px;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 0.5px;
    font-weight: 500;
}

.close-menu-btn {
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    cursor: pointer;
    transition: background 0.2s ease;
}

.close-menu-btn:hover {
    background: rgba(255, 255, 255, 0.15);
}

.mobile-nav-list {
    list-style: none;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin: 10px 0;
}

.nav-item-row {
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.nav-item-row:last-child {
    border-bottom: none;
}

.nav-item-row a {
    display: flex;
    align-items: center;
    padding: 12px 14px;
    width: 100%;
    color: #ffffff;
    transition: all 0.2s ease;
    border-radius: 12px;
}

.nav-row-num {
    font-size: 12px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.8);
    width: 24px;
}

.nav-row-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    margin-right: 16px;
}

.nav-row-icon svg {
    width: 16px;
    height: 16px;
    display: block;
}

.nav-row-text {
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
    flex-grow: 1;
    text-align: left;
}

.nav-row-arrow {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.4);
    transition: transform 0.2s ease;
}

.nav-item-row.active-item {
    border-bottom: none;
}

.nav-item-row.active-item a {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.25);
}

.nav-item-row.active-item .nav-row-icon {
    background: #ffffff;
    color: #2070d0;
}

.nav-item-row.active-item .nav-row-arrow {
    color: #ffffff;
    transform: translateX(2px);
}

.mobile-nav-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
}

.mobile-footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
}

.mobile-footer-logo-badge {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
}

.mobile-footer-text {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.m-footer-title {
    font-size: 12px;
    font-weight: 600;
    color: #ffffff;
}

.m-footer-subtitle {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.5);
}

.mobile-footer-socials {
    display: flex;
    gap: 10px;
    width: 100%;
    justify-content: center;
    margin-top: 4px;
}

.social-icon-link {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.2s ease;
}

.social-icon-link:hover {
    color: #ffffff;
    border-color: #ffffff;
    background: rgba(255, 255, 255, 0.05);
}

/* Buttons */
.btn {
    padding: 10px 24px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    transition: 0.3s;
}

.login-btn {
    background: #2070d0;
    color: #fff;
    border-radius: 6px;
    padding: 10px 28px;
    font-weight: 500;
}

.login-btn:hover {
    background: #2070d0;
    color: #fff;
}

.btn-blue {
    background: #2070d0;
    color: #fff;
}

.btn-blue:hover {
    background: #015687;
    color: #fff;
}

.btn-white {
    background: #ffffff;
    color: #2070d0;
}

.btn-white:hover {
    background: rgba(255, 255, 255, 0.9);
    color: #015687;
}

.btn-outline {
    background: transparent;
    color: #111;
    border: 1px solid #111;
}

.btn-outline:hover {
    background: rgba(0, 0, 0, 0.05);
}

/* Hero Section */
.new-hero {
    min-height: 100vh;
    padding: 140px 50px 60px;
    background: url('../assets/252661fa-4cee-4dcf-a6ef-1f6a76f0b990 (1).webp') center/cover no-repeat;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-content-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

.hero-text {
    flex: 1.2;
    padding-right: 50px;
}

.hero-eyebrow {
    font-size: 0.85rem;
    font-weight: 700;
    color: #2070d0;
    letter-spacing: 1px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    color: #0f172a;
}

.text-blue {
    color: #2070d0;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #475569;
    margin-bottom: 40px;
    max-width: 500px;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.hero-cards {
    display: flex;
    gap: 20px;
    max-width: 1400px;
    margin: 60px auto 0;
    width: 100%;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 20px;
}

.hero-cards::-webkit-scrollbar {
    height: 8px;
}

.hero-cards::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.05);
    border-radius: 10px;
}

.hero-cards::-webkit-scrollbar-thumb {
    background: rgba(0, 119, 190, 0.25);
    border-radius: 10px;
}

.hero-cards::-webkit-scrollbar-thumb:hover {
    background: rgba(0, 119, 190, 0.5);
}

.hero-card {
    background: rgba(255, 255, 255, 0.95);
    padding: 24px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    flex: 0 0 350px;
    scroll-snap-align: start;
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.icon-placeholder.blue-square {
    width: 48px;
    height: 48px;
    background: #93c5fd;
    border-radius: 8px;
    flex-shrink: 0;
}

.hero-card-text h4 {
    font-size: 0.9rem;
    margin-bottom: 8px;
    font-weight: 800;
    text-transform: uppercase;
}

.hero-card-text p {
    font-size: 0.85rem;
    color: #64748b;
    line-height: 1.5;
}

/* Responsive adjustments for Navigation and Hero */
@media (max-width: 1200px) {
    .navbar {
        padding: 15px 20px;
    }

    .nav-links {
        gap: 12px;
    }

    .nav-links a {
        font-size: 0.85rem;
    }

    .hero-title {
        font-size: 3.5rem;
    }

    .hero-content-wrapper {
        flex-direction: column;
        text-align: center;
    }

    .hero-text {
        padding-right: 0;
        margin-bottom: 40px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

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

    .hero-cards {
        flex-wrap: wrap;
    }

    .hero-card {
        min-width: 45%;
    }
}

@media (max-width: 1024px) {

    .nav-links,
    .nav-right {
        display: none !important;
    }

    .hamburger {
        display: flex;
    }

    .hero-title {
        font-size: 2.8rem;
    }



    .hero-cards {
        flex-wrap: nowrap;
        overflow-x: auto;
        padding-bottom: 15px;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
    }

    .hero-cards::-webkit-scrollbar {
        display: none;
    }

    .hero-card {
        width: 300px;
        flex: 0 0 300px;
        scroll-snap-align: start;
    }

    .hero-image {
        display: none;
    }

    /* Hide large image on mobile for space */
}

@media (max-width: 768px) {
    .hero-cards {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory;
        padding-bottom: 20px;
        width: 100%;
        max-width: 100vw;
    }

    .hero-card {
        padding: 20px;
        width: 280px;
        flex: 0 0 280px;
        scroll-snap-align: start;
    }

    .hero-card img {
        width: 36px !important;
        height: 36px !important;
    }

    .hero-card-text h4 {
        font-size: 0.8rem;
    }

    .hero-card-text p {
        font-size: 0.75rem;
    }
}



/* Sections */
.section {
    padding: 100px 0;
    background: #fff;
    position: relative;
}

.section:nth-child(even) {
    background: #f9fbfd;
}

.container,
.stories-container,
.mission-container,
.services-container,
.case-studies-container,
.gen-ai-container,
.clients-container,
.footer-container,
.contact-container,
.story-container,
.b-container,
.values-container,
.boosting-container,
.accordion-container,
.application-form-container,
.big-dreams-container,
.timeline-container,
.diversity-image-container {
    width: 95%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0;
    box-sizing: border-box;
}

.section-title {
    font-size: 3rem;
    margin-bottom: 60px;
    text-align: center;
}

.grid {
    display: grid;
    gap: 30px;
}

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

.products-grid {
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
}

/* Services with Background Image */
.services {
    background: url('assets/it_professional_bg_1783012387560.webp') center/cover no-repeat !important;
    /* Removed background-attachment: fixed; as it causes severe scroll lag */
}

.services-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    /* Dark overlay for text readability */
    z-index: 1;
}

/* Cards */
.card {
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    opacity: 1;
    position: relative;
    z-index: 2;
}

.services .card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
}

.services .card p {
    color: #e0e0e0;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 102, 255, 0.1);
    border-color: #2070d0;
}

.card-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

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

.card p {
    color: var(--text-muted);
    line-height: 1.6;
}

/* Products */
.product-card {
    padding: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.product-image {
    height: 250px;
    background: #f0f0f0;
    position: relative;
    overflow: hidden;
}

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

.product-info {
    padding: 30px;
}

.link-btn {
    display: inline-block;
    margin-top: 20px;
    color: var(--primary-blue);
    font-weight: 600;
}

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

/* 3D App Icon Section Layout */
.product-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 120px;
}

.product-showcase.reverse {
    direction: rtl;
}

.product-showcase.reverse>* {
    direction: ltr;
}

.app-icon-3d {
    width: 100%;
    max-width: 350px;
    margin: 0 auto;
    display: block;
    border-radius: 40px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
    transform: translateZ(0);
}



/* Enhancing Services grid for visual appeal */
.service-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card-modern {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.service-card-modern:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px #2070d0;
    border-color: #2070d0;
}

/* Contact */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.company-info-grid {
    grid-template-columns: 1fr 1fr;
}

.contact-details {
    margin-top: 30px;
}

.contact-details p {
    margin-bottom: 15px;
    font-size: 1.1rem;
    color: var(--text-muted);
}

.contact-form {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

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

input,
textarea {
    width: 100%;
    padding: 15px;
    background: #f9fbfd;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    color: var(--text-color);
    font-family: inherit;
}

input:focus,
textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
    background: #fff;
}

.submit-btn {
    width: 100%;
}

/* Tech Contact Section */
.dark-contact {
    background: #020617 !important;
    color: #f8fafc;
}

.tech-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.tech-node {
    position: absolute;
    width: 6px;
    height: 6px;
    background: #00d4ff;
    border-radius: 50%;
    box-shadow: 0 0 10px 2px rgba(0, 212, 255, 0.4);
}



.binary-stream {
    position: absolute;
    bottom: -150px;
    color: rgba(0, 212, 255, 0.15);
    font-family: monospace;
    line-height: 1.5;
    pointer-events: none;
    user-select: none;
}



.glass-form {
    background: rgba(255, 255, 255, 0.03) !important;
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4) !important;
}

.glass-form input,
.glass-form textarea {
    background: rgba(255, 255, 255, 0.05) !important;
    border-color: rgba(255, 255, 255, 0.1) !important;
    color: #fff !important;
}

.glass-form input::placeholder,
.glass-form textarea::placeholder {
    color: #64748b;
}

.glass-form input:focus,
.glass-form textarea:focus {
    border-color: #00d4ff !important;
    background: rgba(255, 255, 255, 0.1) !important;
    box-shadow: 0 0 15px rgba(0, 212, 255, 0.1);
}

.tech-btn {
    position: relative;
    overflow: hidden;
    background: transparent !important;
    border: 1px solid #00d4ff !important;
    color: #00d4ff !important;
}

.tech-btn:hover {
    background: rgba(0, 212, 255, 0.1) !important;
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.3) !important;
}

/* Footer Redesign */
.complex-footer {
    background: #ffffff;
    color: #555555;
    padding: 80px 50px 40px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto 60px;
}

.footer-brand h2 {
    color: #111111;
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.footer-links h4 {
    color: #111111;
    margin-bottom: 20px;
}

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

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

.footer-links a {
    color: #555555;
}

.footer-links a:hover {
    color: #2070d0;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

@media (max-width: 768px) {

    .footer-links-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 30px 20px;
    }

    .footer-links-grid>div:nth-child(1) {
        grid-column: 1;
        grid-row: 1;
    }

    .footer-links-grid>div:nth-child(2) {
        grid-column: 2;
        grid-row: 1;
    }

    .footer-links-grid>div:nth-child(3) {
        grid-column: 1;
        grid-row: 2;
    }

    .footer-links-grid>div:nth-child(4) {
        grid-column: 2;
        grid-row: 2;
    }
}

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

/* Detailed Content Layouts */
.detailed-section {
    padding: 100px 0;
    max-width: 1000px;
    margin: 0 auto;
}

.detailed-block {
    margin-bottom: 40px;
    opacity: 1;
}

.detailed-block h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--primary-blue);
}

.detailed-block p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-muted);
    margin-bottom: 15px;
}

/* About Layout */
.about-hero {
    background: #f8fafc;
    padding: 150px 0 80px;
    text-align: center;
}

.about-text {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.15rem;
    line-height: 1.9;
    color: var(--text-muted);
    text-align: left;
}

.vision-mission {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 60px;
}

.vm-card {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border-top: 4px solid var(--primary-blue);
}

/* Clients Marquee */
.clients-marquee {
    background: #ffffff;
    padding: 60px 0;
    overflow: hidden;
    position: relative;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.clients-track {
    display: flex;
    gap: 60px;
    width: max-content;
}

.client-logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: #888888;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Mission Section */
.mission-section {
    padding: 100px 0;
    background: #ffffff;
}

.mission-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
}

.mission-left {
    flex: 1;
}

.mission-eyebrow {
    font-size: 0.85rem;
    font-weight: 700;
    color: #2070d0;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.mission-title {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 40px;
    color: #0f172a;
}

.mission-image-wrapper {
    border-radius: 20px;
    overflow: hidden;
    max-width: 100%;
}

.mission-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
    filter: grayscale(100%);
}

.mission-right {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.mission-link-top {
    text-align: right;
    margin-bottom: 40px;
}

.link-blue-underline {
    color: #2070d0;
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 4px;
}

.mission-points {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 50px;
}

.mission-point {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    border-bottom: 1px dashed #e2e8f0;
    padding-bottom: 30px;
}

.mission-point:last-child {
    border-bottom: none;
}

.point-bullet {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #2070d0;
    margin-top: 6px;
    flex-shrink: 0;
}

.point-content h4 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: #0f172a;
}

.point-content p {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.6;
}

/* Our Story Section */
.story-section {
    background: url("../assets/122700ee-d5d9-42d3-92a3-ee4b8ffe7e5b.webp") center/cover no-repeat;
    padding: 120px 80px;
    color: #fff;
}

.story-container {
    max-width: 1400px;
    margin: 0 auto;

    display: flex;
    align-items: start;
    justify-content: space-between;

    gap: 40px;
}

.story-text {
    flex: 0 0 45%;
    max-width: 560px;

    display: flex;
    flex-direction: column;
    align-items: flex-start;
    /* keeps button and text left */
    text-align: left;
}

.story-title {
    font-size: 72px;
    font-weight: 700;
    margin-bottom: 30px;
}

.story-description {
    font-size: 22px;
    line-height: 1.8;
    color: #cbd5e1;
    margin-bottom: 45px;
}

.story-image {
    flex: 0 0 55%;

    display: flex;
    justify-content: flex-end;
}

.story-image img {
    width: 650px;
    max-width: 100%;
}



.btn-outline-light {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 38px;
    border: 1px solid rgba(255, 255, 255, .3);
    border-radius: 10px;
    color: #fff;
    text-decoration: none;
    transition: .3s;
}

.btn-outline-light:hover {
    background: rgba(255, 255, 255, .08);
}

@media (max-width:992px) {

    .story-container {
        flex-direction: column;
        text-align: center;
    }

    .story-text {
        max-width: 100%;
    }

    .story-image {
        justify-content: center;
        margin-top: 50px;
    }

    .story-image img {
        width: 350px;
    }

    .story-title {
        font-size: 52px;
    }

    .story-description {
        font-size: 18px;
    }

}

.globe-placeholder {
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle at center, transparent 30%, rgba(56, 189, 248, 0.2) 60%, rgba(29, 78, 216, 0.5) 100%);
    box-shadow: 0 0 80px rgba(56, 189, 248, 0.4), inset 0 0 50px rgba(56, 189, 248, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.globe-inner {
    width: 380px;
    height: 380px;
    border-radius: 50%;
    border: 2px dashed rgba(56, 189, 248, 0.4);
}

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

    to {
        transform: rotate(360deg);
    }
}



/* Typography Helpers */
.section-eyebrow {
    font-size: 0.85rem;
    font-weight: 700;
    color: #2070d0;
    letter-spacing: 1px;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.section-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    color: #0f172a;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #475569;
    line-height: 1.6;
}

/* Services Grid Section */
.services-section {
    padding: 120px 50px;
    background: #f8fafc;
}

.services-container {
    max-width: 1400px;
    margin: 0 auto;
}

.services-grid-12 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 60px;
}

@media (max-width: 992px) {
    .services-grid-12 {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

.service-box {
    background: #fff;
    padding: 30px 20px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    text-align: center;
    transition: transform 0.3s;
}

.service-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.s-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-size: 1.2rem;
}

.blue-icon {
    background: #eff6ff;
    color: #2070d0;
}

.outline-icon {
    border: 1px solid #e2e8f0;
    color: #64748b;
}

.service-box h4 {
    font-size: 0.95rem;
    margin-bottom: 10px;
    color: #0f172a;
}

.service-box p {
    font-size: 0.8rem;
    color: #64748b;
    line-height: 1.5;
}

/* Case Studies */
.case-studies-section {
    padding: 100px 0;
    background: #fff;
}

.case-studies-container {
    max-width: 1400px;
    margin: 0 auto;
}

.cs-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.cs-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease, border-color 0.4s ease;
}

.cs-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border-color: #2070d0;
}

.cs-card img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.cs-card:hover img {
    transform: scale(1.08);
}

.cs-info {
    padding: 20px;
}

.cs-info h4 {
    font-size: 1rem;
    margin-bottom: 5px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cs-icon {
    color: #94a3b8;
    font-size: 1.2rem;
    transition: transform 0.3s ease, color 0.3s ease;
}

.cs-card:hover .cs-icon {
    transform: translate(3px, -3px);
    color: #2070d0;
}

.cs-metric {
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.cs-desc {
    font-size: 0.8rem;
    color: #64748b;
    line-height: 1.5;
}

/* Gen AI Redesign */
.gen-ai-redesign {
    background: url('../assets/0e692cce-b131-4576-9918-d78b868858c7%20(1).webp') center/cover no-repeat;
    background-color: #020617;
    color: #f8fafc;
    padding: 120px 50px;
    position: relative;
}

.gen-ai-container {
    max-width: 1400px;
    margin: 0 auto;
}

.gen-ai-top {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 120px;
}

.gen-ai-text {
    flex: 1;
}

.gen-ai-text h2 {
    font-size: 4.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 20px;
}

span.gradient-text {
    background: linear-gradient(90deg, #c084fc, #38bdf8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.gen-ai-text p {
    font-size: 1.1rem;
    color: #94a3b8;
    line-height: 1.6;
}

.btn-outline-gradient {
    background: transparent;
    color: #f8fafc;
    border: 1px solid transparent;
    background-image: linear-gradient(#020617, #020617), linear-gradient(90deg, #c084fc, #38bdf8);
    background-origin: border-box;
    background-clip: padding-box, border-box;
    border-radius: 8px;
    padding: 12px 30px;
    display: inline-flex;
    align-items: center;
    font-weight: 500;
    text-decoration: none;
    transition: 0.3s;
}

.btn-outline-gradient:hover {
    box-shadow: 0 0 15px rgba(192, 132, 252, 0.4);
}

.gen-ai-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    position: relative;
}

.ai-sphere {
    width: 400px;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.ai-node {
    position: absolute;
    background: transparent;
    color: #94a3b8;
    border: 1px solid transparent;
    background-image: linear-gradient(#020617, #020617), linear-gradient(90deg, #c084fc, #38bdf8);
    background-origin: border-box;
    background-clip: padding-box, border-box;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 500;
    white-space: nowrap;
}

.n1 {
    top: -20px;
    left: 20px;
}

.n2 {
    top: 20px;
    right: -40px;
}

.n3 {
    bottom: 40px;
    left: -20px;
}

.n4 {
    bottom: -10px;
    right: 20px;
}

.gen-ai-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 60px;
}

.ai-feat {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.ai-feat-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.2rem;
    background: transparent;
    border: 1px solid transparent;
    background-image: linear-gradient(#020617, #020617), linear-gradient(135deg, #c084fc, #38bdf8);
    background-origin: border-box;
    background-clip: padding-box, border-box;
}

.purple-gradient-border {
    color: #c084fc;
}

.blue-gradient-border {
    color: #38bdf8;
}

.ai-feat h5 {
    font-size: 0.95rem;
    margin-bottom: 5px;
    color: #f8fafc;
}

.ai-feat p {
    font-size: 0.8rem;
    color: #94a3b8;
    line-height: 1.4;
}

/* Testimonials Section */
.testimonials-section {
    padding: 100px 0;
    background: #ffffff;
}

.testi-header {
    width: 95%;
    max-width: 1400px;
    margin: 0 auto 60px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.testi-header h2 {
    font-size: 3.5rem;
    margin-bottom: 5px;
    font-weight: 700;
    color: #0f172a;
}

.testi-header p {
    font-size: 1.1rem;
    color: #475569;
}

.testi-carousel {
    width: 95%;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
    overflow-x: auto;
    padding-bottom: 40px;
    cursor: grab;
    -ms-overflow-style: none;
    scrollbar-width: none;
    scroll-snap-type: x mandatory;
}

.testi-carousel::-webkit-scrollbar {
    display: none;
}

.testi-card {
    min-width: 850px;
    max-width: 900px;
    height: 380px;
    background: #f8fafc;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    padding: 40px;
    display: flex;
    gap: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
    align-items: center;
    scroll-snap-align: center;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease, border-color 0.4s ease;
}

.testi-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border-color: #2070d0;
}

.testi-text-area {
    flex: 1;
}

.testi-text-area h3 {
    font-size: 2.8rem;
    margin-bottom: 25px;
    font-weight: 500;
    line-height: 1.2;
    color: #0f172a;
}

.testi-text-area p {
    color: #475569;
    line-height: 1.8;
    font-size: 0.95rem;
    max-width: 100%;
}

.testi-img-area {
    width: 220px;
    height: 280px;
    border-radius: 12px;
    position: relative;
    flex-shrink: 0;
}

.testi-img-area img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.testi-card:hover .testi-img-area img {
    transform: scale(1.08);
}

.testi-badge {
    position: absolute;
    bottom: -40px;
    right: -40px;
    width: 120px;
    height: 120px;
    animation: rotate 15s linear infinite;
    pointer-events: none;
}

.testi-badge svg {
    overflow: visible;
}

.testi-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 20px;
}

.testi-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 1.5px solid #2070d0;
    background: transparent;
    cursor: pointer;
    transition: 0.3s;
}

.testi-dots .dot.active {
    background: #2070d0;
}

/* Clients Section */
.new-clients-section {
    background: #ffffff;
    padding: 100px 0;
    color: #0f172a;
}

.clients-container {
    max-width: 1400px;
    margin: 0 auto;
}

.clients-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 60px;
}

.clients-header h2 {
    font-size: 3.5rem;
    font-weight: 700;
    color: #0f172a;
}

.clients-header p {
    color: #64748b;
    font-size: 1.1rem;
}

.clients-logo-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    row-gap: 40px;
    column-gap: 0;
}

.c-logo {
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.2rem;
    color: #475569;
    text-align: center;
    padding: 10px;
    border-right: 1px solid rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    animation: fadeInUp 0.8s ease-out;
}

.c-logo:nth-child(5n) {
    border-right: none;
}

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

.c-logo img {
    max-width: 90%;
    max-height: 95px;
    object-fit: contain;
    filter: grayscale(100%) brightness(0);
    opacity: 0.6;
    transition: all 0.3s ease;
}

.c-logo:hover img {
    filter: grayscale(0%) brightness(1);
    opacity: 1;
}

.index-c-logo {
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.index-c-logo img {
    max-width: 90%;
    max-height: 95px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 0.8;
    transition: all 0.3s ease;
}

.index-c-logo:hover img {
    filter: grayscale(0%) brightness(1) invert(0);
    opacity: 1;
}

/* Disable color on hover for specific logos */
.c-logo.no-color-hover:hover img {
    filter: grayscale(100%) brightness(0) !important;
    opacity: 0.6 !important;
}

.index-c-logo.no-color-hover:hover img {
    filter: brightness(0) invert(1) !important;
    opacity: 0.8 !important;
}

/* Keyframe Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }

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

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

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

/* Featured Stories Section */
.stories-section {
    padding: 100px 0;
    background: #f8fafc;
}

.stories-container {
    max-width: 1400px;
    margin: 0 auto;
}

.stories-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 60px;
}

.stories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.story-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #e2e8f0;
}

.story-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.story-card-content {
    padding: 25px;
}

.story-tag {
    font-size: 0.75rem;
    color: #38bdf8;
    font-weight: 700;
    margin-bottom: 10px;
}

.story-card h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.story-desc {
    font-size: 1rem;
    color: #64748b;
    margin-bottom: 24px;
    line-height: 1.8;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.story-desc.expanded {
    -webkit-line-clamp: unset;
}

.show-more-btn {
    background: none;
    border: none;
    color: #1d4ed8;
    padding: 0;
    margin-bottom: 20px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.85rem;
    text-decoration: underline;
    text-underline-offset: 4px;
}

.story-meta {
    font-size: 0.8rem;
    color: #94a3b8;
}

/* Footer Redesign */
.new-footer {
    background: #000;
    color: #f8fafc;
    padding: 80px 50px 40px;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
}

.footer-cta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 60px;
}

.footer-cta-text h2 {
    font-size: 3rem;
    margin-bottom: 10px;
}

.footer-cta-text p {
    color: #94a3b8;
}

.footer-links-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-links-grid h4 {
    font-size: 1.1rem;
    margin-bottom: 25px;
}

.footer-links-grid ul {
    list-style: none;
    padding: 0;
}

.footer-links-grid li {
    margin-bottom: 15px;
}

.footer-links-grid a {
    color: #94a3b8;
    transition: 0.3s;
}

.footer-links-grid a:hover {
    color: #2070d0;
}


.contact-list li {
    display: flex;
    justify-content: space-between;
    color: #ffffff;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.contact-list li a {
    color: #ffffff;
}

.footer-bottom-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    color: #64748b;
    font-size: 0.85rem;
}

.footer-legal a {
    color: #64748b;
    margin: 0 5px;
}

.footer-socials {
    display: flex;
    gap: 20px;
}

.footer-socials a {
    color: #f8fafc;
    font-weight: 700;
}

/* Media Queries for new sections */
@media (max-width: 1200px) {
    .cs-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gen-ai-top {
        flex-direction: column;
        text-align: center;
    }

    .gen-ai-features {
        grid-template-columns: repeat(2, 1fr);
    }

    .testi-card {
        min-width: 100%;
    }

    .clients-logo-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .stories-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-links-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

    .cs-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .cs-card img {
        width: 100%;
        height: auto;
        aspect-ratio: 1 / 1;
        object-fit: cover;
    }

    .gen-ai-features {
        grid-template-columns: 1fr;
    }

    .testi-card {
        flex-direction: column;
        height: auto;
        min-width: 100%;
        padding: 30px;
        gap: 20px;
    }

    .testi-img-area {
        width: 100%;
        height: 280px;
    }

    .clients-logo-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stories-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 20px;
        padding: 10px 5px 25px;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
    }

    .stories-grid::-webkit-scrollbar {
        height: 6px;
    }

    .stories-grid::-webkit-scrollbar-track {
        background: #f1f5f9;
        border-radius: 10px;
    }

    .stories-grid::-webkit-scrollbar-thumb {
        background: #cbd5e1;
        border-radius: 10px;
    }

    .stories-grid::-webkit-scrollbar-thumb:hover {
        background: #94a3b8;
    }

    .story-card {
        min-width: 290px;
        max-width: 320px;
        flex: 0 0 auto;
        scroll-snap-align: start;
    }

    .footer-links-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .footer-cta {
        flex-direction: column;
        text-align: center;
        gap: 20px;
        padding-bottom: 40px;
        margin-bottom: 40px;
    }

    .footer-cta-text h2 {
        font-size: 1.8rem;
    }

    .footer-cta-text p {
        font-size: 0.85rem;
    }

    .footer-links-grid h4 {
        font-size: 0.95rem;
        margin-bottom: 15px;
    }

    .footer-links-grid li {
        margin-bottom: 8px;
        font-size: 0.8rem;
    }

    .footer-links-grid a {
        font-size: 0.8rem;
    }

    .contact-list li {
        display: flex !important;
        flex-direction: column !important;
        gap: 2px !important;
        align-items: flex-start !important;
        margin-bottom: 10px !important;
    }

    .contact-list li span,
    .contact-list li a {
        font-size: 0.7rem !important;
    }

    .footer-bottom-row {
        flex-direction: column;
        gap: 20px;
        text-align: center;
        font-size: 0.75rem;
        padding-top: 20px;
    }

    .footer-legal a {
        font-size: 0.75rem;
    }

    .new-footer {
        padding: 50px 20px 30px;
    }
}

.story-container {
    flex-direction: column;
    text-align: left;
}

.story-image {
    margin-top: 40px;
}




/* Glowing Gen AI Ring (from reference) */
.gen-ai-section {
    background: #f8fafc;
    padding: 150px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.glowing-ring {
    position: relative;
    width: 400px;
    height: 400px;
    margin: 0 auto;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: 1px solid rgba(0, 102, 255, 0.1);
    box-shadow: inset 0 0 50px rgba(0, 102, 255, 0.05), 0 0 100px rgba(0, 102, 255, 0.05);
}

.glowing-ring::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: 50%;
    background: conic-gradient(transparent, transparent, #2070d0, #00d4ff, transparent);
    z-index: -1;
    mask: radial-gradient(transparent 68%, black 70%);
    -webkit-mask: radial-gradient(transparent 68%, black 70%);
}

.gen-ai-content {
    position: relative;
    z-index: 2;
}

.gen-ai-content h2 {
    color: #111111;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.gen-ai-content p {
    color: #555555;
    max-width: 500px;
    margin: 0 auto 30px;
}



/* Responsive */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 1024px) {
    .navbar {
        padding: 15px 20px;
    }

    .nav-links,
    .navbar .cta-btn,
    .navbar .btn.primary {
        display: none;
    }

    .hamburger {
        display: flex;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.8rem;
    }

    .contact-container,
    .company-info-grid {
        grid-template-columns: 1fr;
    }

    .dark-contact .section-title {
        font-size: 2.2rem !important;
    }

    .glass-form h3 {
        font-size: 1.3rem !important;
    }

    .glass-form h4 {
        font-size: 1.1rem !important;
    }

    .dark-contact p {
        font-size: 0.95rem !important;
    }

    .section {
        padding: 60px 0;
    }

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

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .product-showcase {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .product-showcase.reverse {
        direction: ltr;
    }

    .app-icon-3d {
        max-width: 250px;
    }

    .vision-mission {
        grid-template-columns: 1fr;
    }

    /* Responsive Mission Section */
    .mission-container {
        flex-direction: column;
        gap: 30px;
    }

    .mission-right {
        text-align: center;
        align-items: center;
    }

    .mission-intro {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }

    .mission-link-top {
        text-align: center;
    }

    .mission-points {
        gap: 20px;
        align-items: center;
    }

    .mission-point {
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }

    .mission-point .point-bullet {
        display: none;
    }

    .mission-point h4 {
        margin-bottom: 5px;
    }

    /* Responsive Our Story Section */
    .story-section {
        padding: 60px 0;
    }

    .story-description br {
        display: none;
    }

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

    .glowing-ring {
        width: 300px;
        height: 300px;
    }
}

/* Responsive Utility Classes */
.responsive-split-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}



/* Light Theme Overrides for Contact, Services, Projects */
.light-theme-override {
    background: #f8fafc !important;
    color: #111 !important;
}

.light-theme-override .section-title,
.light-theme-override h2,
.light-theme-override h3,
.light-theme-override h4,
.light-theme-override h5 {
    color: #111 !important;
}

.light-theme-override p,
.light-theme-override .premium-desc {
    color: #475569 !important;
}

.light-theme-override .glass-form,
.light-theme-override .premium-card {
    background: #ffffff !important;
    border: 1px solid #e2e8f0 !important;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05) !important;
}

.light-theme-override .premium-title {
    color: #111 !important;
}

.light-theme-override input,
.light-theme-override textarea {
    background: #fff !important;
    border: 1px solid #cbd5e1 !important;
    color: #111 !important;
}

.light-theme-override input::placeholder,
.light-theme-override textarea::placeholder {
    color: #94a3b8 !important;
}

.light-theme-override .tech-bg {
    display: none !important;
}

/* Ensure the text with gradients still works */
.light-theme-override span[style*="transparent"] {
    /* Gradients already handle their own colors */
}


/* Additional Mobile Responsiveness and Font Adjustments */
@media (max-width: 768px) {

    /* Grids */
    .premium-grid {
        grid-template-columns: 1fr !important;
    }

    .clients-logo-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .c-logo:nth-child(5n) {
        border-right: 1px solid rgba(255, 255, 255, 0.1);
    }

    .c-logo:nth-child(2n) {
        border-right: none;
    }

    /* Gen AI Section */
    .gen-ai-container {
        display: flex;
        flex-direction: column;
        gap: 40px;
    }

    .gen-ai-top {
        display: contents;
    }

    .gen-ai-text {
        order: 1;
        text-align: center;
    }

    .gen-ai-features {
        order: 2;
        grid-template-columns: 1fr;
    }

    .gen-ai-visual {
        order: 3;
        margin-top: 20px;
    }

    .ai-sphere {
        width: 250px;
        height: 250px;
        margin: 0 auto;
    }

    .gen-ai-text h2 {
        font-size: 2.2rem !important;
    }

    /* Clients Header */
    .clients-header {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    /* Font size adjustments */
    h1 {
        font-size: 1.8rem !important;
    }

    h2,
    .section-title {
        font-size: 1.5rem !important;
    }

    h3 {
        font-size: 1.2rem !important;
    }

    h4 {
        font-size: 1.0rem !important;
    }

    .premium-title {
        font-size: 1.1rem !important;
    }

    p,
    .premium-desc {
        font-size: 0.85rem !important;
    }

    .hero-title {
        font-size: 1.8rem !important;
    }

    .hero-subtitle {
        font-size: 0.85rem !important;
    }

    .hero-eyebrow {
        font-size: 0.75rem !important;
    }

    .btn {
        padding: 8px 16px !important;
        font-size: 0.85rem !important;
    }

    .snap-section {
        padding-top: 100px !important;
    }
}

/* Connect section text */
.contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-list li,
.contact-list span,
.contact-list a {
    color: #ffffff !important;
    text-decoration: none !important;
    font-size: 0.85rem !important;
}

.contact-list li span:first-child {
    font-weight: 500;
}

.contact-list li span:last-child {
    word-break: break-word;
}

.contact-list li {
    display: grid;
    grid-template-columns: 170px 1fr;
    gap: 8px;
    margin-bottom: 10px;
    align-items: start;
}

/* Mobile Nav Overrides */
.nav-num {
    font-size: 0.6rem;
    color: rgba(255, 255, 255, 0.7);
    margin-right: 15px;
    font-weight: 500;
}

.close-menu-btn {
    cursor: pointer;
    background: rgba(255, 255, 255, 0.15);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    color: #ffffff;
    transition: 0.3s;
}

.close-menu-btn:hover {
    background: rgba(255, 255, 255, 0.3);
}

.mobile-nav-buttons-container {
    display: flex;
    flex-direction: row;
    gap: 15px;
    margin-top: 0px;
    width: 100%;
}

.mobile-nav-buttons-container .btn {
    flex: 1;
    justify-content: center;
}

/* Scroll Animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Enhanced Scroll Animations */
.animate-slide-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.animate-slide-right {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.animate-slide-left {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.animate-zoom-in {
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-fade-in {
    opacity: 0;
    transition: opacity 1s ease-out;
}

.is-visible {
    opacity: 1 !important;
    transform: translate(0, 0) scale(1) !important;
}

/* --- NEW ABOUT PAGE STYLES --- */
.about-hero-new {
    padding: 160px 50px 80px;
    display: flex;
    align-items: center;
    background-color: #fff;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
}

.about-hero-new::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #ffffff 40%, rgba(255, 255, 255, 0.8) 60%, rgba(255, 255, 255, 0) 100%);
    z-index: 1;
}

.about-hero-new .text-content {
    flex: 1;
    max-width: 700px;
    z-index: 2;
    position: relative;
    padding-right: 50px;
}

.hero-eyebrow-text {
    font-size: 0.9rem;
    color: #2070d0;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px !important;
}

.about-hero-new h1 {
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 25px;
    color: #000;
}

.about-hero-new h1 .text-blue {
    color: #2070d0;
}

.hero-subtext {
    font-size: 1.3rem !important;
    color: #111 !important;
    margin-bottom: 40px !important;
    line-height: 1.4;
}

.hero-btn-container {
    margin-top: 30px;
}

.btn-outline-hero {
    display: inline-flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 20px;
    width: 250px;
    height: 60px;
    border: 2px solid #2070d0;
    border-radius: 8px;
    color: #2070d0;
    font-size: 1.5rem;
    text-decoration: none;
    transition: 0.3s;
    background: transparent;
}

.btn-outline-hero:hover {
    background: #2070d0;
    color: #fff;
}

.blue-banner-section {
    background-color: #2070d0;
    color: #fff;
    padding: 80px 50px;
    text-align: center;
}

.blue-banner-section p {
    font-size: 1.8rem;
    max-width: 900px;
    margin: 0 auto;
    font-weight: 300;
    line-height: 1.4;
}

.our-story-section {
    padding: 100px 0;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
}

.our-story-section h2 {
    flex: 1;
    font-size: 2.5rem;
    color: #111;
}

.our-story-section .story-text {
    flex: 2;
    font-size: 1.1rem;
    color: #555;
    line-height: 1.6;
}

.founding-vision {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../assets/8189f0a1-91cf-4dfc-81c4-cca81f786b75.webp') center/cover no-repeat;
    padding: 120px 50px;
    color: #fff;
}

.founding-vision-content {
    max-width: 600px;
    margin-left: 10%;
}

.founding-vision-content h2 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.founding-vision-content p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    line-height: 1.6;
}

.guiding-principles {
    padding: 100px 0;
    background: #f9fbfd;
}

.guiding-principles .container {
    max-width: 1200px;
    margin: 0 auto;
}

.guiding-principles h2 {
    margin-bottom: 50px;
    font-size: 2.5rem;
}

.principles-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.principle-card {
    background: #fff;
    padding: 40px 20px;
    text-align: center;
    border: 1px solid #eee;
    border-radius: 8px;
}

.principle-card .icon {
    font-size: 2rem;
    margin-bottom: 15px;
    color: #2070d0;
}

.principle-card h4 {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.principle-card p {
    font-size: 0.9rem;
    color: #666;
}

.create-value-section {
    background: #000;
    color: #fff;
    padding: 100px 0;
}

.value-heading-container {
    text-align: left;
}

.create-value-section h2 {
    margin-bottom: 50px;
    font-size: 2.5rem;
    max-width: 1200px;
    margin: 0 auto 50px;
}

.create-value-section .value-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.create-value-section .value-card {
    background: #fff;
    color: #111;
    padding: 60px 40px;
    text-align: center;
    border-radius: 0;
    display: block;
    /* Override the flex display from later in the file */
}

.create-value-section .value-card .blue-circle {
    width: 80px;
    height: 80px;
    background: #2070d0;
    border-radius: 50%;
    margin: 0 auto 30px;
}

.create-value-section .value-card h4 {
    font-size: 1.25rem;
    color: #2070d0;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
}

.create-value-section .value-card p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

.diversity-section {
    padding: 100px 0;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 60px;
}

.diversity-text {
    flex: 1;
}

.diversity-text h2 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.diversity-text p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 30px;
}

.diversity-image {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.diversity-image img {
    max-width: 400px;
    border-radius: 50%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

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

    to {
        transform: rotate(360deg);
    }
}

.diversity-slideshow {
    position: relative;
    width: 100%;
    max-width: 400px;
    aspect-ratio: 4 / 5;
    overflow: hidden;
}

.diversity-slideshow img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    animation: slideFade 24s infinite;
}

.diversity-slideshow img:nth-child(1) {
    animation-delay: 0s;
}

.diversity-slideshow img:nth-child(2) {
    animation-delay: 4s;
}

.diversity-slideshow img:nth-child(3) {
    animation-delay: 8s;
}

.diversity-slideshow img:nth-child(4) {
    animation-delay: 12s;
}

.diversity-slideshow img:nth-child(5) {
    animation-delay: 16s;
}

.diversity-slideshow img:nth-child(6) {
    animation-delay: 20s;
}

@keyframes slideFade {
    0% {
        opacity: 1;
    }

    12.5% {
        opacity: 1;
    }

    16.66% {
        opacity: 0;
    }

    95.83% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.life-at-bs-section {
    padding: 100px 0 0 0;
}

.life-at-bs-section h2 {
    margin-left: 50px;
    margin-bottom: 20px;
    font-size: 2.5rem;
}

.life-at-bs-section p {
    margin-left: 50px;
    margin-bottom: 40px;
    color: #555;
}

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

.collage-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.collage-img:hover {
    transform: scale(1.03);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    z-index: 10;
    position: relative;
}

.big-dreams {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../assets/it_professional_bg_1783012387560.webp') center/cover no-repeat;
    padding: 150px 0;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.big-dreams-container {
    max-width: 1200px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.big-dreams-container h2 {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 20px;
}

.big-dreams-container p {
    font-size: 1.2rem;
}

.big-numbers {
    text-align: right;
}

.big-numbers h3 {
    font-size: 6rem;
    font-weight: 300;
    margin-bottom: 10px;
}

.big-numbers p {
    font-size: 1.5rem;
}

.timeline-section {
    padding: 100px 0;
    max-width: 1200px;
    margin: 0 auto;
}

.timeline-section h2 {
    font-size: 3rem;
    margin-bottom: 60px;
}

.timeline-container {
    display: flex;
    flex-direction: column;
    position: relative;
    gap: 20px;
    margin-top: 40px;
}

.timeline-container::before {
    display: none;
}

.timeline-item {
    position: relative;
    width: 100%;
    padding-top: 0;
    margin-bottom: 20px;
}

.timeline-item .dot {
    display: none;
    /* Hide the dot if we're just doing boxes like mobile, or we can make it inline */
}

.timeline-item.black-box .dot {
    display: none;
}

.timeline-item h4 {
    position: static;
    font-size: 1.2rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.timeline-item .content-box {
    border: 1px solid #2070d0;
    padding: 20px;
    background: #fff;
    border-radius: 8px;
}

.timeline-item.black-box .content-box {
    border-color: #000;
}

.timeline-item .content-box h5 {
    color: #2070d0;
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.timeline-item.black-box .content-box h5 {
    color: #000;
}

.timeline-item .content-box p {
    font-size: 0.9rem;
    color: #555;
}

/* Ensure mobile responsiveness */
@media (max-width: 768px) {
    .about-hero-new {
        padding: 120px 20px 50px;
        flex-direction: column;
    }

    .about-hero-new .text-content {
        background: none;
    }

    .about-hero-new .image-content {
        position: relative;
        width: 100%;
        height: 300px;
        margin-top: 30px;
    }

    .our-story-section,
    .diversity-section,
    .big-dreams-container {
        flex-direction: column;
    }

    .diversity-image-container {
        width: 100% !important;
        justify-content: center !important;
        margin-top: 40px;
    }

    .value-heading-container {
        text-align: center;
    }

    .create-value-section .value-card h4,
    .create-value-section .value-card p {
        text-align: center !important;
    }

    .principles-grid,
    .create-value-section .value-grid {
        grid-template-columns: 1fr;
    }

    .collage-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    .life-img-1,
    .life-img-2,
    .life-img-3,
    .life-img-4,
    .life-img-5 {
        grid-column: auto;
        grid-row: auto;
        height: 250px;
    }

    .timeline-container {
        flex-direction: column;
        gap: 20px;
    }

    .timeline-container::before {
        display: none;
    }

    .timeline-item {
        width: 100%;
        margin-bottom: 30px;
        padding-top: 0;
    }

    .timeline-item h4 {
        position: static;
        margin-top: 10px;
        margin-bottom: 10px;
        font-weight: 800;
    }

    .timeline-item .dot {
        position: static;
    }

    .contact-list li {
        display: flex !important;
        flex-direction: column !important;
        gap: 2px !important;
        align-items: flex-start !important;
    }
}

/* Shared Animated Button */
.animated-arrow-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all .35s ease;
}

/* Arrow */
.animated-arrow-btn .arrow {
    display: inline-block;
    color: #2070d0;
    /* Arrow color */
    font-size: 2.6rem;
    /* Arrow size */
    font-weight: 700;
    line-height: 1;
    animation: arrowFloat 1.8s ease-in-out infinite;
    transition: transform .3s ease;
}

/* Hover */
.animated-arrow-btn:hover .arrow {
    transform: translateX(8px);
}

.animated-arrow-btn:hover {
    transform: translateY(-2px);
}

/* Floating Arrow Animation */
@keyframes arrowFloat {

    0%,
    100% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(5px);
    }
}

.clients-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 30px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: #cbd5e1;
    text-decoration: none;
    transition: all .35s ease;
}

.clients-btn:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, .25);
    color: #fff;
}

/* Make header and mobile overlay buttons smaller */
.navbar .btn,
.mobile-nav-buttons-container .btn {
    padding: 8px 16px;
    font-size: 0.85rem;
}

/* Header Text Shine Animation */
@keyframes textShine {
    to {
        background-position: 200% center;
    }
}

.text-shine {
    background: linear-gradient(90deg, #00d4ff, #2070d0, #0721e3, #00d4ff);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: textShine 5s linear infinite;
    display: inline-block;
}

/* Our Story Page Styles */
.ourstory-section {
    padding: 140px 5%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.ourstory-section.black-bg {
    background-color: #000000;
    color: #ffffff;
    min-height: 100vh;
    padding: 140px 5%;
}

.ourstory-section.text-white {
    color: #ffffff;
}

.ourstory-content {
    max-width: 800px;
    margin: 0;
}

.ourstory-content h2 {
    font-size: 4rem;
    font-weight: 300;
    margin-bottom: 20px;
    line-height: 1.1;
    color: #111;
}

.ourstory-content h2 .text-blue {
    color: #028bdb;
    font-weight: 700;
}

.ourstory-content h3 {
    font-size: 2rem;
    font-weight: 300;
    margin-bottom: 30px;
    line-height: 1.3;
}

.ourstory-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.md-profile {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    width: 100%;
}

.md-content {
    flex: 1;
    max-width: 800px;
}

.md-content h2 {
    color: #ffffff;
    font-weight: 700;
    font-size: 3.5rem;
    margin-bottom: 30px;
    line-height: 1.2;
}

.md-content h2 span {
    font-size: 2rem !important;
    font-weight: 400 !important;
}

.md-content p {
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 25px;
}

.md-signature {
    margin-top: 50px;
}

.md-signature p {
    margin: 0;
    font-size: 1.15rem;
}

@media (max-width: 768px) {
    .md-profile {
        flex-direction: column;
    }

    .ourstory-content h2 {
        font-size: 2.5rem;
    }

    .ourstory-content h3 {
        font-size: 1.5rem;
    }
}

/* Values Section */
.values-section {
    padding: 100px 0;
    background-color: #ffffff;
}

.values-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 60px;
}

.values-content {
    flex: 1;
}

.values-content h2 {
    font-size: 3rem;
    font-weight: 400;
    margin-bottom: 20px;
    color: #111;
}

.values-content>p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 40px;
    max-width: 600px;
    line-height: 1.6;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.value-card {
    background: #f8fbff;
    padding: 30px;
    border-radius: 12px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.value-icon {
    color: #111;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 2px;
}

.value-text h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: #111;
}

.value-text p {
    font-size: 0.95rem;
    color: #555;
    margin: 0;
    line-height: 1.5;
}

.values-image {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.values-image img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

@media (max-width: 992px) {
    .values-container {
        flex-direction: column;
    }

    .values-image {
        width: 100%;
        justify-content: center;
        margin-top: 40px;
    }
}

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

/* Boosting Growth Section */
.boosting-growth-section {
    padding: 120px 0;
    background-color: #ffffff;
    display: flex;
    justify-content: center;
}

.boosting-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1200px;
}

.boosting-content {
    flex: 1;
}

.boosting-content h2 {
    font-size: 5rem;
    font-weight: 300;
    color: #111;
    line-height: 1.1;
    margin-bottom: 40px;
}

.boosting-content p {
    font-size: 1.1rem;
    color: #444;
    line-height: 1.6;
    margin-bottom: 20px;
}

.btn-talk {
    display: inline-flex;
    align-items: center;
    padding: 12px 28px;
    border: 1px solid #7c9cfc;
    color: #7c9cfc;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    background: transparent;
    transition: all 0.3s ease;
}

.btn-talk span {
    margin-left: 10px;
}

.btn-talk:hover {
    background: #7c9cfc;
    color: #fff;
}

.boosting-stats {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.stat-number {
    font-size: 15rem;
    font-weight: 600;
    background: linear-gradient(90deg, #3b82f6, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
}

@media (max-width: 992px) {
    .boosting-container {
        flex-direction: column;
        text-align: center;
    }

    .boosting-stats {
        margin-top: 50px;
        justify-content: center;
    }

    .stat-number {
        font-size: 10rem;
    }
}

/* Branding Services Section */
.branding-services-section {
    padding: 80px 5%;
    background-color: #ffffff;
}

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

.b-heading {
    font-size: 3.5rem;
    font-weight: 300;
    color: #111;
    line-height: 1.2;
    margin-bottom: 20px;
}

.b-subtext {
    font-size: 1.15rem;
    color: #444;
    line-height: 1.6;
    max-width: 900px;
    margin-bottom: 40px;
}

.b-label {
    font-size: 1.2rem;
    color: #111;
    margin-bottom: 40px;
}

.b-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.b-card {
    border: 1px solid #7c9cfc;
    border-radius: 12px;
    padding: 30px;
    background: #ffffff;
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.3s;
}

.b-card:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.b-card-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 25px;
    align-items: flex-start;
}

.b-icon-wrapper {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.b-link-icon {
    color: #111;
    cursor: pointer;
}

.b-card h3 {
    font-size: 1.35rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #111;
}

.b-card h3 span {
    color: #2070d0;
}

.b-card p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.5;
    margin: 0;
}

.b-card-solid {
    background: #028bdb;
    border: none;
    justify-content: center;
    align-items: flex-start;
}

.b-card-solid h3 {
    color: #ffffff;
    font-size: 2.5rem;
    font-weight: 300;
    line-height: 1.3;
}

@media (max-width: 992px) {
    .b-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

    .b-heading {
        font-size: 2.5rem;
    }
}

/* Team Hero Section */
.team-hero-section {
    position: relative;
    height: 90vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    background: url('assets/it_professional_bg_1783012387560.webp') center right/cover no-repeat;
    margin-top: 80px;
    /* Account for navbar */
}

.team-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0.95) 40%, rgba(255, 255, 255, 0) 80%);
}

.team-hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 50px;
}

.team-hero-subtitle {
    color: #2070d0;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
    margin-bottom: 15px;
}

.team-hero-title {
    font-size: 4.5rem;
    font-weight: 700;
    color: #111;
    line-height: 1.1;
    margin-bottom: 25px;
    max-width: 800px;
}

.team-hero-title .text-blue {
    color: #2070d0;
}

.team-hero-desc {
    font-size: 1.3rem;
    color: #111;
    margin-bottom: 40px;
    font-weight: 400;
}

.team-hero-btn {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    width: 220px;
    height: 52px;
    border: 1.5px solid #2070d0;
    border-radius: 8px;
    text-decoration: none;
    color: #2070d0;
    font-weight: 500;
    font-size: 1.1rem;
    transition: 0.3s;
    background: transparent;
}

.team-hero-btn:hover {
    background: rgba(0, 68, 255, 0.05);
}

@media (max-width: 768px) {
    .team-hero-title {
        font-size: 3rem;
    }

    .team-hero-overlay {
        background: linear-gradient(90deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0.95) 60%, rgba(255, 255, 255, 0.5) 100%);
    }
}

/* Team Grid Section */
.team-grid-section {
    max-width: 1200px;
    margin: 100px auto;
    padding: 0 50px;
}

.team-grid-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 80px;
    gap: 100px;
}

.team-grid-title {
    flex: 1;
    font-size: 4.5rem;
    font-weight: 300;
    color: #111;
    line-height: 1.1;
}

.team-grid-desc {
    flex: 1;
    font-size: 1.1rem;
    color: #555;
    line-height: 1.6;
    margin-top: 15px;
}

.team-members-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.team-member-card {
    display: flex;
    flex-direction: column;
}

.team-member-image {
    width: 100%;
    aspect-ratio: 3 / 4;
    background: #000;
    margin-bottom: 20px;
    overflow: hidden;
}

.team-member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.team-member-image img:hover {
    filter: grayscale(0%);
}

.team-member-info h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #111;
    margin-bottom: 5px;
}

.team-member-info p {
    font-size: 0.95rem;
    font-weight: 600;
    color: #555;
}

@media (max-width: 1024px) {
    .team-grid-header {
        flex-direction: column;
        gap: 30px;
    }

    .team-members-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .team-grid-title {
        font-size: 3.5rem;
    }

    .team-members-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .team-members-grid {
        grid-template-columns: 1fr;
    }
}

/* Openings Section */
.openings-section {
    max-width: 1000px;
    margin: 100px auto;
    padding: 0 50px;
}

.openings-header {
    margin-bottom: 60px;
}

.openings-title {
    font-size: 3rem;
    font-weight: 400;
    color: #111;
    margin-bottom: 10px;
}

.openings-subtitle {
    font-size: 1.1rem;
    color: #555;
    font-weight: 500;
}

.accordion-container {
    border-top: 1px solid #ddd;
}

.accordion-item {
    border-bottom: 1px solid #ddd;
}

.accordion-header {
    width: 100%;
    text-align: left;
    padding: 30px 0;
    background: transparent;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.1rem;
    font-weight: 600;
    color: #111;
    cursor: pointer;
}

.accordion-icon {
    display: inline-flex;
    align-items: center;
    transition: transform 0.3s ease;
}

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

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.accordion-item.active .accordion-content {
    max-height: 1000px;
    padding-bottom: 20px;
}

.job-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    border-bottom: 1px solid #f0f0f0;
}

.job-row:last-child {
    border-bottom: none;
}

.job-title {
    flex: 2;
    font-size: 1.05rem;
    color: #333;
}

.job-exp {
    flex: 1;
    font-size: 0.95rem;
    color: #555;
}

.job-apply {
    text-align: right;
    font-size: 0.95rem;
    color: #555;
    text-decoration: none;
    transition: color 0.2s;
}

.job-apply:hover {
    color: #2070d0;
}

.all-openings-btn-container {
    text-align: center;
    margin-top: 60px;
}

.all-openings-btn {
    display: inline-block;
    padding: 12px 25px;
    border: 1px solid #aaa;
    color: #333;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: background 0.2s, color 0.2s;
}

.all-openings-btn:hover {
    background: #f5f5f5;
}

/* Perks Section */
.perks-section {
    background: #f8f9fa;
    padding: 100px 0;
}

.perks-header {
    max-width: 1200px;
    margin: 0 auto 80px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 80px;
}

.perks-title {
    flex: 1;
    font-size: 3.5rem;
    font-weight: 400;
    color: #111;
}

.perks-subtitle {
    flex: 1;
    font-size: 1.2rem;
    color: #555;
    line-height: 1.6;
    margin-top: 15px;
}

.perks-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px 40px;
}

.perk-card {
    display: flex;
    flex-direction: column;
    padding-bottom: 30px;
    border-bottom: 1.5px solid #111;
}

.perk-icon {
    margin-bottom: 25px;
    color: #111;
}

.perk-card h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #111;
    margin-bottom: 15px;
    line-height: 1.4;
}

.perk-card p {
    font-size: 1rem;
    color: #444;
    line-height: 1.6;
}

@media (max-width: 1024px) {
    .perks-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .perks-section {
        padding: 60px 20px;
    }

    .perks-header {
        flex-direction: column;
        gap: 30px;
    }

    .perks-title {
        font-size: 2.5rem;
    }

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

/* Values Section */
.values-section {
    background: #000;
    color: #fff;
    padding: 120px 50px;
}

.values-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 100px;
}

.values-left {
    flex: 1;
    max-width: 450px;
}

.values-left h2 {
    font-size: 3.5rem;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 25px;
}

.values-left p {
    font-size: 1.1rem;
    color: #aaa;
    line-height: 1.6;
    margin-bottom: 60px;
}

.values-asterisk {
    color: #fff;
    margin-top: 50px;
}

.values-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.value-item {
    position: relative;
    padding-left: 40px;
    border-left: 1px solid #333;
}

.value-num {
    display: block;
    font-size: 1rem;
    color: #666;
    margin-bottom: 10px;
}

.value-item h3 {
    font-size: 3.5rem;
    font-weight: 400;
    margin-bottom: 15px;
}

.value-item p {
    font-size: 1.05rem;
    color: #ccc;
    line-height: 1.6;
    max-width: 500px;
}

@media (max-width: 1024px) {
    .values-container {
        flex-direction: column;
        gap: 80px;
    }

    .values-left {
        max-width: 100%;
    }
}

@media (max-width: 768px) {

    .values-left h2,
    .value-item h3 {
        font-size: 2.8rem;
    }
}

/* Video Carousel Section */
.video-carousel-section {
    background: #fff;
    padding: 100px 0;
}

.video-carousel-header {
    max-width: 1200px;
    margin: 0 auto 60px;
    padding: 0 50px;
}

.video-carousel-header h2 {
    font-size: 3.5rem;
    font-weight: 400;
    color: #111;
    margin-bottom: 20px;
}

.video-carousel-header p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.6;
    max-width: 900px;
}

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

.video-track {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    align-items: stretch;
    gap: 40px;
    height: 55vh;
    min-height: 400px;
    max-height: 600px;
    padding: 0 17.5%;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.video-track::-webkit-scrollbar {
    display: none;
}

.video-slide {
    flex: 0 0 65%;
    scroll-snap-align: center;
    position: relative;
    overflow: hidden;
    opacity: 0.5;
    transform: scale(0.9);
    transition: all 0.4s ease;
    border-radius: 12px;
}

.video-slide.active {
    opacity: 1;
    transform: scale(1);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.video-slide video,
.video-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
}

.video-slide.active video {
    pointer-events: auto;
}

.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    transition: background 0.3s;
    z-index: 2;
    cursor: pointer;
}

.play-btn:hover {
    background: rgba(0, 68, 255, 0.9);
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 40px;
}

.carousel-dots .dot {
    width: 25px;
    height: 4px;
    background: #ddd;
    border-radius: 2px;
    cursor: pointer;
    transition: background 0.3s, width 0.3s;
}

.carousel-dots .dot.active {
    background: #2070d0;
    width: 35px;
}

@media (max-width: 768px) {
    .video-carousel-header h2 {
        font-size: 2.8rem;
    }

    .video-track {
        gap: 15px;
        height: 300px;
    }

    .video-slide.center {
        width: 80%;
    }
}

.footer-legal a:hover {
    color: #2070d0;
}

/* Global Text Alignment for Mobile View */
@media (max-width: 1200px) {

    body,
    p,
    h1,
    h2,
    h3,
    h4,
    h5,
    h6,
    ul,
    li,
    .section-title,
    .section-subtitle,
    .footer-col,
    .card,
    .content,
    .text-center,
    .hero-content,
    .about-content,
    .service-card,
    .footer-widget,
    .footer-section,
    div {
        text-align: left !important;
    }

    .hero-content-wrapper,
    .hero-text,
    .clients-header,
    .about-content,
    .hero-content,
    .text-center {
        align-items: flex-start !important;
        text-align: left !important;
    }
}

/* Advanced Split Layout Application Form */
.application-form-container {
    max-width: 1000px;
    margin: 80px auto;
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(32, 112, 208, 0.1), 0 5px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(32, 112, 208, 0.1);
    display: flex;
    overflow: hidden;
    position: relative;
}

.application-form-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, #3b82f6, #8b5cf6, #3b82f6);
    background-size: 200% auto;
    animation: gradientMove 3s linear infinite;
    z-index: 10;
}

@keyframes gradientMove {
    0% {
        background-position: 0% center;
    }

    100% {
        background-position: 200% center;
    }
}

.app-form-left {
    flex: 1;
    background: linear-gradient(135deg, #0f172a, #1e293b);
    color: #ffffff;
    padding: 60px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.app-form-left::after {
    content: '';
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.app-left-content h3 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.app-left-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #94a3b8;
    margin-bottom: 40px;
}

.app-contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.05rem;
    color: #cbd5e1;
}

.contact-icon {
    font-size: 1.2rem;
    background: rgba(255, 255, 255, 0.1);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.app-form-right {
    flex: 1.3;
    padding: 60px 50px;
    background: #ffffff;
}

.application-form-header {
    margin-bottom: 35px;
}

.application-form-header h3 {
    font-size: 2.2rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 8px;
}

.application-form-header p {
    color: #64748b;
    font-size: 1.1rem;
}

.job-application-form .form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.job-application-form .form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.job-application-form label {
    font-size: 0.85rem;
    font-weight: 700;
    color: #475569;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.job-application-form input[type="text"],
.job-application-form input[type="email"],
.job-application-form select,
.job-application-form .file-input {
    width: 100%;
    padding: 15px 18px;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    font-size: 1rem;
    color: #1e293b;
    background: #f8fafc;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.job-application-form input:focus,
.job-application-form select:focus {
    border-color: #3b82f6;
    background: #ffffff;
    outline: none;
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1);
}

.file-upload-wrapper {
    position: relative;
}

.job-application-form .file-input {
    padding: 12px 18px;
    background: #f1f5f9;
    border: 2px dashed #cbd5e1;
    cursor: pointer;
}

.job-application-form .file-input:hover {
    border-color: #3b82f6;
    background: #eff6ff;
}

.job-application-form .submit-btn {
    margin-top: 15px;
    width: 100%;
    padding: 16px;
    font-size: 1.15rem;
    font-weight: 700;
    color: #fff;
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    border: none;
    border-radius: 10px;
    cursor: pointer;
    box-shadow: 0 8px 15px rgba(37, 99, 235, 0.2);
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

.job-application-form .submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 20px rgba(37, 99, 235, 0.3);
}

.alert {
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    animation: fadeIn 0.4s ease;
}

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

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

.alert.success {
    background: #ecfdf5;
    color: #059669;
    border: 1px solid #a7f3d0;
}

.alert.error {
    background: #fef2f2;
    color: #dc2626;
    border: 1px solid #fecaca;
}

@media (max-width: 992px) {
    .application-form-container {
        flex-direction: column;
        margin: 40px 20px;
    }

    .app-form-left,
    .app-form-right {
        padding: 40px 30px;
    }
}

@media (max-width: 768px) {
    .job-application-form .form-row {
        flex-direction: column;
        gap: 15px;
    }

    .app-left-content h3 {
        font-size: 2rem;
    }
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 80px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: #2070d0;
    color: #ffffff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 999;
}

.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-to-top:hover {
    background-color: #1a5bb0;
    transform: translateY(-5px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.scroll-to-top svg {
    width: 24px;
    height: 24px;
}

/* Preloader */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.preloader.fade-out {
    opacity: 0;
    visibility: hidden;
}

.preloader-logo {
    width: 80px;
    height: auto;
    animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
    0% {
        transform: scale(0.85);
        opacity: 0.7;
    }

    50% {
        transform: scale(1.15);
        opacity: 1;
    }

    100% {
        transform: scale(0.85);
        opacity: 0.7;
    }
}

/* Advanced CSS Spinner Preloader */
.spinner-container {
    position: relative;
    width: 80px;
    height: 80px;
}

.advanced-spinner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 4px solid rgba(32, 112, 208, 0.2);
    border-top-color: #2070d0;
    border-radius: 50%;
    animation: advanced-spin 1s cubic-bezier(0.68, -0.55, 0.265, 1.55) infinite;
}

.advanced-spinner-inner {
    position: absolute;
    top: 15px;
    left: 15px;
    width: calc(100% - 30px);
    height: calc(100% - 30px);
    border: 4px solid rgba(12, 84, 169, 0.2);
    border-bottom-color: #0c54a9;
    border-radius: 50%;
    animation: advanced-spin-reverse 0.75s ease-in-out infinite;
}

@keyframes advanced-spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes advanced-spin-reverse {
    0% {
        transform: rotate(360deg);
    }

    100% {
        transform: rotate(-360deg);
    }
}

/* Client Stories Page Styles */
.client-stories-section {
    padding: 120px 0 80px;
    background-color: #ffffff;
}

.client-stories-container {
    max-width: 1400px;
    margin: 0 auto;
    width: 95%;
}

.cs-page-title {
    font-size: 3.5rem;
    font-weight: 300;
    color: #111;
    margin-bottom: 15px;
}

.cs-page-subtitle {
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 30px;
}

.cs-divider {
    border: none;
    border-top: 1px solid #e2e8f0;
    margin-bottom: 50px;
}

.client-stories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.cs-grid-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    display: flex;
    flex-direction: column;
}

.cs-card-img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

.cs-card-content {
    padding: 30px 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.cs-card-company {
    color: #2070d0;
    font-weight: 700;
    font-size: 0.95rem;
    margin-bottom: 15px;
}

.cs-card-name {
    color: #111;
    font-weight: 700;
    font-size: 1.3rem;
    margin-bottom: 5px;
}

.cs-card-title {
    color: #64748b;
    font-size: 0.95rem;
    margin-bottom: 25px;
}

.cs-card-link {
    margin-top: auto;
    color: #333;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    border-bottom: 1px solid #64748b;
    align-self: flex-start;
    padding-bottom: 2px;
}

.cs-card-link:hover {
    color: #2070d0;
    border-bottom-color: #2070d0;
}

@media (max-width: 1024px) {
    .client-stories-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

    .cs-page-title {
        font-size: 2.5rem;
    }
}

/* Featured Testimonial Section */
.cs-featured-testimonial-section {
    padding: 60px 0 120px;
    background-color: #ffffff;
}

.cs-featured-container {
    max-width: 1100px;
    margin: 0 auto;
    width: 95%;
    display: flex;
    align-items: center;
    position: relative;
}

.cs-featured-content-box {
    background-color: #2b2e35;
    color: #ffffff;
    width: 75%;
    padding: 80px 120px 80px 80px;
    position: relative;
    z-index: 1;
}

.cs-quote-icon {
    font-size: 5rem;
    line-height: 1;
    font-family: Georgia, serif;
    color: #e2e8f0;
    margin-bottom: 20px;
    margin-top: -20px;
}

.cs-featured-quote {
    font-size: 1.25rem;
    line-height: 1.8;
    color: #e2e8f0;
    margin-bottom: 50px;
    font-weight: 300;
}

.cs-featured-author h4 {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.cs-featured-author p {
    color: #94a3b8;
    font-size: 0.9rem;
    margin: 0;
}

.cs-featured-image-box {
    width: 35%;
    position: relative;
    z-index: 2;
    margin-left: -15%;
    margin-top: -40px;
    margin-bottom: -40px;
}

.cs-featured-img {
    width: 100%;
    height: auto;
    display: block;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    object-fit: cover;
}

.cs-play-button {
    position: absolute;
    bottom: 20px;
    left: 20px;
    width: 50px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.4);
}

.cs-play-button:hover {
    background-color: rgba(255, 255, 255, 0.4);
    transform: scale(1.05);
}

@media (max-width: 1024px) {
    .cs-featured-container {
        flex-direction: column-reverse;
    }

    .cs-featured-content-box {
        width: 100%;
        padding: 50px 30px;
        margin-top: -60px;
    }

    .cs-featured-image-box {
        width: 80%;
        margin-left: 0;
        margin-top: 0;
        margin-bottom: 0;
    }

    .cs-featured-quote {
        font-size: 1.1rem;
    }
}

/* Third Section: Additional Stories */
.cs-more-stories-section {
    padding: 0 0 120px 0;
    background-color: #ffffff;
}

.cs-grid-landscape .cs-card-img {
    aspect-ratio: 1 / 1;
}

.cs-grid-card.cs-card-grey {
    background-color: #f8fafc;
    padding: 20px;
    border: none;
}

.cs-card-grey .cs-card-inner {
    background-color: #ffffff;
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid #e2e8f0;
}

/* Insights Page Styles */
.insights-section {
    padding: 120px 0 50px;
    background-color: #f1f5f9;
}

.insights-container {
    max-width: 1400px;
    margin: 0 auto;
    width: 95%;
}

.insights-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
}

.insights-title {
    font-size: 3.5rem;
    font-weight: 300;
    color: #111;
    margin: 0;
}

.insights-filters {
    display: flex;
    gap: 15px;
}

.filter-btn {
    padding: 8px 25px;
    border-radius: 50px;
    border: 1px solid #cbd5e1;
    color: #334155;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.filter-btn.active,
.filter-btn:hover {
    border-color: #94a3b8;
    color: #0f172a;
    background-color: #f8fafc;
}

/* 3-Column Grid: 1fr 2fr 1fr */
.insights-grid {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 40px;
    align-items: stretch;
}

/* Common Meta Info Styling */
.in-card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    margin-top: 15px;
    font-size: 0.8rem;
    color: #64748b;
}

.in-tag {
    font-weight: 500;
}

.in-date {
    font-weight: 400;
}

/* Left Column: Small Cards */
.insights-col-left {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.in-small-card {
    display: flex;
    flex-direction: column;
}

.in-card-img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

.in-small-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #111;
    margin: 0;
    line-height: 1.4;
}

/* Center Column: Large Featured Card */
.in-large-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.in-large-img {
    width: 100%;
    /* To align roughly with the height of the two stacked small cards */
    height: auto;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.in-large-card .in-card-meta {
    font-size: 0.9rem;
    margin-top: 25px;
}

.in-large-title {
    font-size: 1.8rem;
    font-weight: 600;
    color: #111;
    margin: 0 0 15px 0;
    line-height: 1.3;
}

.in-author {
    font-size: 0.9rem;
    color: #64748b;
    margin: 0;
}

/* Right Column: Most Popular List */
.insights-col-right {
    display: flex;
    flex-direction: column;
}

.in-popular-heading {
    font-size: 1.1rem;
    font-weight: 600;
    color: #111;
    margin: 0 0 25px 0;
}

.in-popular-list {
    display: flex;
    flex-direction: column;
}

.in-list-item {
    padding-bottom: 25px;
    margin-bottom: 5px;
    border-bottom: 1px solid #f1f5f9;
    /* Subtle divider */
}

.in-list-item .in-card-meta {
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 0.75rem;
}

.in-list-title {
    font-size: 0.95rem;
    font-weight: 600;
    color: #111;
    margin: 0;
    line-height: 1.4;
}

/* Responsive Overrides */
@media (max-width: 1200px) {
    .insights-grid {
        grid-template-columns: 1fr 1fr;
    }

    .insights-col-right {
        grid-column: span 2;
        margin-top: 40px;
    }
}

@media (max-width: 768px) {
    .insights-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

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

    .insights-col-right {
        grid-column: span 1;
        margin-top: 0;
    }

    .insights-col-center {
        order: -1;
        /* Put the featured post at the top on mobile */
    }

    .in-list-item {
        border-bottom: 1px solid #f1f5f9;
        margin-bottom: 15px;
        padding-bottom: 15px;
    }
}

/* Insights Second Section (Standard Grid) */
.insights-standard-section {
    padding: 0 0 100px;
    background-color: #ffffff;
}

.in-standard-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px 30px;
}

.in-standard-card {
    display: flex;
    flex-direction: column;
}

.in-standard-img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    margin-bottom: 5px;
}

.in-standard-card .in-card-meta {
    margin-bottom: 15px;
    margin-top: 15px;
    font-size: 0.8rem;
    color: #64748b;
}

.in-standard-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: #111;
    margin: 0 0 15px 0;
    line-height: 1.4;
}

.in-standard-card .in-author {
    font-size: 0.9rem;
    color: #64748b;
    margin: 0;
}

/* Insights Pagination */
.insights-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-top: 70px;
}

.page-num {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    color: #111;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.page-num.active {
    background-color: #111;
    color: #ffffff;
}

.page-num:not(.active):hover {
    background-color: #f1f5f9;
}

.page-dots {
    color: #111;
    font-weight: 600;
    letter-spacing: 2px;
}

.page-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #111;
    margin-left: 10px;
    transition: transform 0.3s ease;
}

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

/* -------------------------------------
   Insight Detail / Read More Page 
-------------------------------------- */
.insight-detail-section {
    padding: 120px 0 50px;
    background-color: #ffffff;
}

.insight-detail-container {
    max-width: 1200px;
    margin: 0 auto;
    width: 95%;
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 60px;
}

/* Sidebar */
.insight-sidebar {
    border-right: 1px solid #dbeafe;
    /* Subtle blue divider */
    padding-right: 40px;
}

.sidebar-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2070d0;
    margin-top: 0;
    margin-bottom: 30px;
}

.sidebar-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-list li {
    display: flex;
    align-items: flex-start;
    padding: 20px 0;
    border-bottom: 1px solid #2070d0;
    /* Actually, the screenshot shows blue lines between items! */
}

/* Let's fix the border to be subtle, actually the screenshot shows thick blue short lines? No, looks like a thin blue line. Let's stick to 1px solid */

.sidebar-num {
    color: #2070d0;
    font-weight: 700;
    font-size: 1.1rem;
    margin-right: 15px;
    line-height: 1.4;
}

.sidebar-link {
    color: #111;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    line-height: 1.5;
    transition: color 0.3s;
}

.sidebar-link:hover {
    color: #2070d0;
}

/* Main Content Area */
.insight-breadcrumbs {
    color: #2070d0;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 1px;
    margin-bottom: 25px;
}

.insight-breadcrumbs a {
    color: #2070d0;
    text-decoration: none;
}

.insight-title {
    font-size: 2.8rem;
    font-weight: 600;
    color: #111;
    line-height: 1.2;
    margin: 0 0 30px 0;
}

.insight-author-block {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 10px;
}

.author-text-area {
    max-width: 80%;
}

.author-bio {
    font-size: 1.05rem;
    color: #334155;
    line-height: 1.6;
    margin: 0 0 15px 0;
}

.author-name,
.reviewer-name {
    color: #2070d0;
    font-weight: 600;
    text-decoration: none;
}

.author-reviewer {
    font-size: 1rem;
    color: #111;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 5px;
}

.verified-icon {
    color: #2070d0;
    display: inline-block;
}

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

.action-btn {
    background: none;
    border: none;
    cursor: pointer;
    color: #64748b;
    padding: 5px;
    transition: color 0.3s;
}

.action-btn:hover {
    color: #2070d0;
}

.insight-meta-info {
    font-size: 0.85rem;
    color: #64748b;
    margin-bottom: 40px;
    line-height: 1.6;
}

.insight-meta-info p {
    margin: 0;
}

.insight-hero-image img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    margin-bottom: 40px;
    object-fit: cover;
}

.insight-body p {
    font-size: 1.15rem;
    color: #334155;
    line-height: 1.8;
    margin-bottom: 30px;
}

.insight-body a {
    color: #2070d0;
    text-decoration: underline;
    font-weight: 500;
}

/* -------------------------------------
   Latest Blogs Section (Bottom of Insight Detail) 
-------------------------------------- */
.latest-blogs-section {
    padding: 60px 0 100px;
    background-color: #ffffff;
}

.latest-blogs-container {
    max-width: 1200px;
    margin: 0 auto;
    width: 95%;
}

.latest-blogs-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.latest-title {
    font-size: 2.2rem;
    font-weight: 600;
    color: #111;
    margin: 0;
}

.latest-nav-arrows {
    display: flex;
    gap: 15px;
}

.nav-arrow {
    background: none;
    border: none;
    cursor: pointer;
    color: #111;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s, transform 0.3s;
}

.nav-arrow:not(.disabled):hover {
    color: #2070d0;
    transform: scale(1.1);
}

.nav-arrow.disabled {
    color: #cbd5e1;
    cursor: not-allowed;
}

.latest-blogs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.latest-card {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s ease;
}

.latest-card:hover {
    transform: translateY(-5px);
}

.latest-img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    margin-bottom: 15px;
}

.latest-meta {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    color: #64748b;
    margin-bottom: 12px;
}

.latest-card-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #111;
    line-height: 1.4;
    margin: 0;
}

.view-all-wrapper {
    display: flex;
    justify-content: center;
}

.view-all-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1px solid #111;
    color: #111;
    padding: 12px 25px;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.view-all-btn:hover {
    background-color: #111;
    color: #ffffff;
}

/* Phone Input Styling */
.phone-input {
    display: flex;
    align-items: center;
    border: 1px solid #ddd;
    background-color: #fff;
    width: 100%;
    transition: border-color 0.3s;
}

.phone-input:focus-within {
    border-color: #111;
}

.country-code {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 15px;
    background-color: #f8fafc;
    border-right: 1px solid #ddd;
    font-size: 0.95rem;
    color: #333;
    white-space: nowrap;
}

.flag-icon {
    width: 24px;
    height: 16px;
    object-fit: contain;
}

.phone-input input[type="tel"] {
    flex: 1;
    border: none !important;
    padding: 12px 15px;
    outline: none;
    background: transparent;
    width: 100%;
}

/* -------------------------------------
   Download Brochure Modal
-------------------------------------- */
.brochure-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.brochure-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.brochure-modal-content {
    background-color: #ffffff;
    width: 90%;
    max-width: 1000px;
    display: flex;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.brochure-modal-overlay.active .brochure-modal-content {
    transform: translateY(0);
}

.modal-close-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    cursor: pointer;
    color: #111;
    z-index: 10;
    padding: 5px;
    transition: color 0.3s;
}

.modal-close-btn:hover {
    color: #2070d0;
}

.modal-left-image {
    width: 45%;
    background-color: #a8b8c2;
    /* Fallback matching image bg */
    display: flex;
    justify-content: center;
    align-items: center;
}

.modal-left-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.modal-right-form {
    width: 55%;
    padding: 50px;
}

.modal-right-form h2 {
    font-size: 2.5rem;
    font-weight: 300;
    color: #111;
    margin-top: 0;
    margin-bottom: 40px;
}

.modal-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 25px;
}

.modal-form-group label {
    display: block;
    font-size: 0.85rem;
    color: #333;
    margin-bottom: 8px;
    font-weight: 500;
}

.modal-form-group input[type="text"],
.modal-form-group input[type="email"],
.modal-form-group input[type="tel"] {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 0;
    font-size: 0.95rem;
    color: #333;
    outline: none;
    transition: border-color 0.3s;
}

.modal-form-group input:focus {
    border-color: #111;
}

.modal-form-group.has-error input {
    border-color: #e53935;
}

.error-msg {
    display: none;
    color: #e53935;
    font-size: 0.75rem;
    margin-top: 5px;
}

.has-error .error-msg,
.has-error-checkbox .error-msg {
    display: block;
}

.modal-checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    position: relative;
}

.modal-checkbox-group input[type="checkbox"] {
    margin-top: 3px;
    width: 16px;
    height: 16px;
}

.modal-checkbox-group label {
    font-size: 0.85rem;
    color: #333;
    line-height: 1.5;
}

.modal-checkbox-group label a {
    color: #2070d0;
    text-decoration: none;
}

.checkbox-error {
    position: absolute;
    bottom: -18px;
    left: 28px;
}

.modal-submit-row {
    display: flex;
    justify-content: flex-end;
    margin-top: 30px;
}

.modal-submit-btn {
    background-color: #111;
    color: #fff;
    border: none;
    padding: 12px 30px;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: background-color 0.3s;
}

.modal-submit-btn:hover {
    background-color: #333;
}

/* -------------------------------------
   Career Detail Page
-------------------------------------- */
.career-detail-section {
    padding: 120px 0 100px;
    background-color: #ffffff;
}

.career-detail-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.career-header-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.career-header-row h1 {
    font-size: 2.2rem;
    color: #111;
    font-weight: 500;
    margin: 0;
}

.btn-apply-now {
    background-color: #2070d0;
    color: #ffffff;
    padding: 12px 24px;
    font-size: 0.95rem;
    font-weight: 500;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s;
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
}

.btn-apply-now:hover {
    background-color: #015687;
    color: #ffffff;
}

.career-meta-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    font-size: 0.9rem;
    color: #333;
    font-weight: 500;
}

.meta-left {
    display: flex;
    align-items: center;
    gap: 8px;
}

.meta-left .divider {
    color: #999;
}

.meta-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.share-label {
    font-weight: 600;
}

.share-icon {
    color: #111;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border: 1px solid #ccc;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.share-icon:hover {
    border-color: #111;
    background-color: #f8f9fa;
}

.career-divider {
    border: 0;
    height: 1px;
    background-color: #eee;
    margin-bottom: 40px;
}

.career-content h2 {
    font-size: 1.5rem;
    color: #111;
    font-weight: 600;
    margin-top: 40px;
    margin-bottom: 20px;
}

.career-content h2:first-child {
    margin-top: 0;
}

.career-content p {
    font-size: 0.95rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 20px;
}

.career-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.career-list li {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #444;
    margin-bottom: 15px;
    position: relative;
    padding-left: 20px;
}

.career-list li::before {
    content: '-';
    position: absolute;
    left: 0;
    top: 0;
    color: #444;
}

.bottom-apply {
    margin-top: 40px;
}

/* -------------------------------------
   Career Apply Modal
-------------------------------------- */
.career-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    overflow-y: auto;
    padding: 40px 20px;
}

.career-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.career-modal-content {
    background-color: #ffffff;
    width: 100%;
    max-width: 800px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transform: translateY(20px);
    transition: transform 0.3s ease;
    margin: auto;
}

.career-modal-overlay.active .career-modal-content {
    transform: translateY(0);
}

.career-modal-inner {
    padding: 50px 60px;
}

.career-modal-inner h2 {
    font-size: 2.8rem;
    font-weight: 300;
    color: #111;
    margin-top: 0;
    margin-bottom: 40px;
    line-height: 1.2;
}

/* Re-using modal-form-grid and modal-form-group from brochure */

.custom-select-wrapper {
    position: relative;
    width: 100%;
}

.custom-select-wrapper select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 0;
    font-size: 0.95rem;
    color: #333;
    appearance: none;
    background-color: transparent;
    outline: none;
    cursor: pointer;
}

.custom-select-wrapper::after {
    content: "▼";
    font-size: 0.7rem;
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    color: #333;
}

.disabled-select select {
    background-color: #f5f5f5;
    color: #888;
    cursor: not-allowed;
    border-color: #ddd;
}

.disabled-select::after {
    color: #888;
}

.textarea-group {
    margin-top: 15px;
}

.textarea-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 0;
    font-size: 0.95rem;
    color: #333;
    outline: none;
    resize: vertical;
    font-family: inherit;
}

.textarea-group textarea:focus {
    border-color: #111;
}

.attachment-grid {
    margin-top: 25px;
}

.file-upload-group {
    display: flex;
    flex-direction: column;
}

.file-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem !important;
    font-weight: 500 !important;
    color: #111 !important;
    cursor: pointer;
    margin-bottom: 5px !important;
}

.file-label input[type="file"] {
    display: none;
}

.file-hint {
    font-size: 0.75rem;
    color: #777;
}

/* Responsive Overrides */
@media (max-width: 1024px) {
    .in-standard-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .insight-detail-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .insight-sidebar {
        border-right: none;
        border-bottom: 1px solid #dbeafe;
        padding-right: 0;
        padding-bottom: 40px;
        order: 2;
        /* Move sidebar below main content on tablet/mobile */
    }

    .insight-main-content {
        order: 1;

        .latest-blogs-grid {
            grid-template-columns: repeat(2, 1fr);
        }
    }

    @media (max-width: 768px) {

        .in-standard-grid,
        .latest-blogs-grid {
            grid-template-columns: 1fr;
        }

        /* Brochure Modal Mobile view */
        .brochure-modal-content {
            flex-direction: column;
            width: 95%;
            max-height: 90vh;
            overflow-y: auto;
        }

        .modal-left-image {
            width: 100%;
            height: 200px;
        }

        .modal-right-form {
            width: 100%;
            padding: 25px;
        }

        .modal-right-form h2 {
            font-size: 1.8rem;
            margin-bottom: 25px;
        }

        .modal-form-grid {
            grid-template-columns: 1fr;
            gap: 15px;
            margin-bottom: 15px;
        }

        .modal-submit-row {
            justify-content: stretch;
            margin-top: 20px;
        }

        .modal-submit-btn {
            width: 100%;
            justify-content: center;
        }

        /* Career Apply Modal Mobile view */
        .career-modal-overlay {
            padding: 20px 10px;
        }

        .career-modal-inner {
            padding: 30px 20px;
        }

        .career-modal-inner h2 {
            font-size: 1.8rem;
            margin-bottom: 25px;
        }
    }
}

/* ==========================================================================
   EXTRACTED FROM domain.php
   ========================================================================== */
.platform-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}

.platform-card {
    border: 1px solid #f2f2f2;
    border-radius: 4px;
    padding: 10px 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    height: 70px;
}

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

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

@media (max-width: 768px) {
    .platform-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }

    .platform-card {
        height: 60px;
        padding: 10px;
    }
}

@media (max-width: 480px) {
    .platform-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 30px 20px;
    border-bottom: 1px solid #14284b;
}

.benefit-item:nth-last-child(-n+4) {
    border-bottom: none;
}

.benefit-icon {
    flex-shrink: 0;
}

.benefit-icon svg {
    width: 34px;
    height: 34px;
    fill: none;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.benefit-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0 0 10px 0;
    color: #ffffff;
}

.benefit-content p {
    font-size: 0.95rem;
    color: #a0aec0;

    margin: 0;
    font-weight: 300;
}

@media (max-width: 1024px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .benefit-item:nth-last-child(-n+4) {
        border-bottom: 1px solid #14284b;
    }

    .benefit-item:nth-last-child(-n+2) {
        border-bottom: none;
    }
}

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

    .benefit-item:nth-last-child(-n+2) {
        border-bottom: 1px solid #14284b;
    }

    .benefit-item:last-child {
        border-bottom: none;
    }
}

.process-scroll {
    display: flex;
    overflow-x: auto;
    padding: 10px 0 40px 0;
    gap: 15px;
    max-width: 1400px;
    margin: 0 auto;
    scroll-snap-type: x mandatory;
}

.process-scroll::-webkit-scrollbar {
    height: 6px;
}

.process-scroll::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

.process-scroll::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 4px;
}

.process-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    width: 200px;
    flex-shrink: 0;
    scroll-snap-align: start;
}

.process-node-container {
    display: flex;
    align-items: center;
    width: 100%;
    position: relative;
    justify-content: center;
    margin-bottom: 30px;
}

.process-node {
    width: 75px;
    height: 75px;
    border-radius: 50%;
    background-color: #bfdbfe;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.process-node-inner {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #0b3b96;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    font-weight: 400;
}

.process-arrow {
    position: absolute;
    right: -15px;
    top: 50%;
    transform: translateY(-50%);
    color: #0b3b96;
    font-size: 2rem;
    font-weight: 300;
    z-index: 1;
}

.process-connector {
    width: 1.5px;
    height: 30px;
    background-color: #0b3b96;
    position: absolute;
    top: 75px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}

.process-card {
    border: 1px solid #93c5fd;
    border-radius: 12px;
    padding: 20px;
    background: #ffffff;
    width: 100%;
    text-align: left;
    height: 260px;
    display: flex;
    flex-direction: column;
}

.process-card h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: #111;
    margin-bottom: 10px;

}

.process-card p {
    font-size: 0.85rem;
    color: #333;

    margin: 0;
}


/* ==========================================================================
   EXTRACTED FROM login.php
   ========================================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;

}

.login-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #001f4d 0%, #0044cc 100%);
    position: relative;
    overflow: hidden;
    color: #fff;
}

/* Abstract Blue Theme Shapes */
.shape {
    position: absolute;
    filter: blur(60px);
    z-index: 0;
    border-radius: 50%;

}

.shape-1 {
    top: -10%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: rgba(0, 212, 255, 0.4);
}

.shape-2 {
    bottom: -10%;
    right: -5%;
    width: 600px;
    height: 600px;
    background: rgba(0, 102, 255, 0.5);

}

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

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

.login-container {
    width: 100%;
    max-width: 420px;
    padding: 50px 40px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 24px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 1;
    text-align: center;
}

.login-logo {
    height: 45px;
    margin-bottom: 25px;
    /* Filter to make the dark logo white so it's visible on blue */
    filter: brightness(0) invert(1);
}

.login-title {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 10px;
    color: #ffffff;
}

.login-subtitle {
    color: #e2e8f0;
    margin-bottom: 30px;
    font-size: 0.95rem;
}

.input-group {
    margin-bottom: 20px;
    text-align: left;
}

.input-group label {
    display: block;
    margin-bottom: 8px;
    color: #f1f5f9;
    font-size: 0.9rem;
    font-weight: 600;
}

.login-input {
    width: 100%;
    padding: 14px 20px;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    color: #fff;
    font-size: 1rem;
}

.login-input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.login-input:focus {
    outline: none;
    border-color: #fff;
    background: rgba(255, 255, 255, 0.25);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.2);
}

.login-btn {
    width: 100%;
    padding: 15px;
    background: #ffffff;
    color: #0044cc;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 800;
    cursor: pointer;
    margin-top: 10px;
}

.login-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.login-options {
    display: flex;
    justify-content: space-between;
    margin-top: 15px;
    font-size: 0.9rem;
}

.login-options a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
}

.login-options a:hover {
    opacity: 0.8;
}

.social-login {
    margin-top: 30px;
}

.social-login p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin-bottom: 15px;
    position: relative;
}

.social-login p::before,
.social-login p::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 30%;
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
}

.social-login p::before {
    left: 0;
}

.social-login p::after {
    right: 0;
}

.social-btn {
    width: 100%;
    padding: 12px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.social-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #fff;
}

.back-home {
    position: absolute;
    top: 30px;
    left: 30px;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 2;
    font-weight: 600;
}

.back-home:hover {
    color: #ffffff;
}


/* ==========================================================================
   EXTRACTED FROM branding.php
   ========================================================================== */
.platform-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}

.platform-card {
    border: 1px solid #f2f2f2;
    border-radius: 4px;
    padding: 10px 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    height: 70px;
}

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

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

@media (max-width: 768px) {
    .platform-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }

    .platform-card {
        height: 60px;
        padding: 10px;
    }
}

@media (max-width: 480px) {
    .platform-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 30px 20px;
    border-bottom: 1px solid #14284b;
}

.benefit-item:nth-last-child(-n+4) {
    border-bottom: none;
}

.benefit-icon {
    flex-shrink: 0;
}

.benefit-icon svg {
    width: 34px;
    height: 34px;
    fill: none;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.benefit-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0 0 10px 0;
    color: #ffffff;
}

.benefit-content p {
    font-size: 0.95rem;
    color: #a0aec0;

    margin: 0;
    font-weight: 300;
}

@media (max-width: 1024px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .benefit-item:nth-last-child(-n+4) {
        border-bottom: 1px solid #14284b;
    }

    .benefit-item:nth-last-child(-n+2) {
        border-bottom: none;
    }
}

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

    .benefit-item:nth-last-child(-n+2) {
        border-bottom: 1px solid #14284b;
    }

    .benefit-item:last-child {
        border-bottom: none;
    }
}

.process-scroll {
    display: flex;
    overflow-x: auto;
    padding: 10px 0 40px 0;
    gap: 15px;
    max-width: 1400px;
    margin: 0 auto;
    scroll-snap-type: x mandatory;
}

.process-scroll::-webkit-scrollbar {
    height: 6px;
}

.process-scroll::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

.process-scroll::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 4px;
}

.process-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    width: 200px;
    flex-shrink: 0;
    scroll-snap-align: start;
}

.process-node-container {
    display: flex;
    align-items: center;
    width: 100%;
    position: relative;
    justify-content: center;
    margin-bottom: 30px;
}

.process-node {
    width: 75px;
    height: 75px;
    border-radius: 50%;
    background-color: #bfdbfe;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.process-node-inner {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #0b3b96;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    font-weight: 400;
}

.process-arrow {
    position: absolute;
    right: -15px;
    top: 50%;
    transform: translateY(-50%);
    color: #0b3b96;
    font-size: 2rem;
    font-weight: 300;
    z-index: 1;
}

.process-connector {
    width: 1.5px;
    height: 30px;
    background-color: #0b3b96;
    position: absolute;
    top: 75px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}

.process-card {
    border: 1px solid #93c5fd;
    border-radius: 12px;
    padding: 20px;
    background: #ffffff;
    width: 100%;
    text-align: left;
    height: 260px;
    display: flex;
    flex-direction: column;
}

.process-card h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: #111;
    margin-bottom: 10px;

}

.process-card p {
    font-size: 0.85rem;
    color: #333;

    margin: 0;
}


/* ==========================================================================
   EXTRACTED FROM casestudy_more.php
   ========================================================================== */
/* Head styles cleaned up */
.casestudy-more-hero {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 800px;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.1)), url('../assets/6a5ff3da-ee27-4a09-97c5-f0c0e1964c6b.png') no-repeat center center;
    background-size: cover;
    display: flex;
    align-items: flex-end;
    padding-bottom: 8%;
    padding-left: 6%;
    margin-top: 0;
}

.casestudy-hero-content {
    color: #ffffff;

    text-align: left;
    z-index: 10;
}

.casestudy-main-title {
    font-size: 4rem;
    font-weight: 800;

    margin-bottom: 20px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.casestudy-sub-title {
    font-size: 2.5rem;
    font-weight: 300;

    text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.5);
    margin: 0;
}

/* The navbar might need to be slightly transparent to show the full banner */
.navbar {
    background: rgba(255, 255, 255, 0.95);
}

@media (max-width: 768px) {
    .casestudy-main-title {
        font-size: 2.5rem;
    }

    .casestudy-sub-title {
        font-size: 1.8rem;
    }

    .casestudy-more-hero {
        padding-bottom: 15%;
    }
}

.cs-details-section {
    padding: 80px 2%;
    background-color: #ffffff;

}

.cs-details-container {
    max-width: 1400px;
    margin: 0 auto;
    border: 1px solid #cbd5e1;
    padding: 50px 30px;
    background: #ffffff;
}

.cs-details-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.cs-details-intro {
    font-size: 1.1rem;
    color: #1e293b;
    font-weight: 400;
}

.cs-live-site-btn {
    display: inline-flex;
    padding: 10px 24px;
    border: 1px solid #1e293b;
    border-radius: 30px;
    text-decoration: none;
    color: #1e293b;
    font-weight: 400;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.cs-live-site-btn:hover {
    background-color: #f8fafc;
}

.cs-details-title-small {
    font-size: 1.75rem;
    font-weight: 400;
    color: #0f172a;
    margin-bottom: 10px;

}

.cs-details-title-large {
    font-size: 4rem;
    font-weight: 800;
    color: #000000;
    margin-bottom: 30px;
    letter-spacing: -1px;
}

.cs-details-text {
    font-size: 1.05rem;
    color: #334155;

    margin-bottom: 40px;
    max-width: 900px;
}

.cs-details-services-title {
    font-size: 1.1rem;
    color: #0f172a;
    margin-bottom: 15px;
    font-weight: 400;
}

.cs-details-divider {
    height: 1px;
    background-color: #94a3b8;
    margin: 0 0 30px 0;
    border: none;
}

.cs-services-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 60px;
}

.cs-tag {
    padding: 12px 30px;
    border: 1px solid #64748b;
    border-radius: 40px;
    font-size: 0.95rem;
    color: #0f172a;
    display: inline-block;
}

.cs-info-table {
    width: 100%;
    border-collapse: collapse;
}

.cs-info-table td {
    padding: 18px 0;
    border-bottom: 1px solid #94a3b8;
    font-size: 1.05rem;
    color: #1e293b;
}

.cs-info-table tr:first-child td {
    border-top: 1px solid #94a3b8;
}

.cs-info-label {
    width: 150px;
    vertical-align: top;
    padding-left: 20px !important;
}

.cs-info-value {
    font-weight: 400;
    color: #334155;
}

@media (max-width: 768px) {
    .cs-details-container {
        padding: 30px 20px;
    }

    .cs-details-title-large {
        font-size: 2.5rem;
    }

    .cs-details-title-small {
        font-size: 1.4rem;
    }

    .cs-info-label {
        width: 100px;
        padding-left: 10px !important;
    }
}

.cs-gallery-section {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 0;
}

.cs-gallery-item {
    flex: 1 1 50%;
    display: block;
}

.cs-gallery-item img {
    width: 100%;
    height: auto;
    aspect-ratio: 4/3;
    object-fit: cover;
    display: block;
}

@media (max-width: 768px) {
    .cs-gallery-item {
        flex: 1 1 100%;
    }
}


/* ==========================================================================
   EXTRACTED FROM projects.php
   ========================================================================== */
.premium-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    padding-bottom: 100px;
}

.premium-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    overflow: hidden;
    backdrop-filter: blur(20px);
    position: relative;
    group: hover;
}

.premium-card:hover {
    transform: translateY(-15px);
    border-color: rgba(0, 212, 255, 0.4);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4), 0 0 40px rgba(0, 102, 255, 0.15);
}

.premium-image-wrapper {
    height: 240px;
    overflow: hidden;
    position: relative;
}

.premium-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.premium-card:hover .premium-image-wrapper img {
    transform: scale(1.1);
    transition: transform 0.5s ease;
}

.premium-image-wrapper img {
    transition: transform 0.5s ease;
}

.premium-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent, rgba(2, 6, 23, 0.9));
}

.premium-content {
    padding: 30px;
    position: relative;
}

.premium-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #0066ff, #00d4ff);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #111;
    position: absolute;
    top: -30px;
    right: 30px;
    box-shadow: 0 10px 20px rgba(0, 102, 255, 0.3);
}

.premium-card:hover .premium-icon {
    transform: rotate(10deg) scale(1.1);
    transition: transform 0.3s ease;
}

.premium-icon {
    transition: transform 0.3s ease;
}

.premium-title {
    font-size: 1.5rem;
    color: #111;
    margin-bottom: 15px;
    margin-top: 10px;
    font-weight: 700;
}

.premium-desc {
    color: #94a3b8;

    font-size: 0.95rem;
}

.premium-learn-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 20px;
    color: #00d4ff;
    font-weight: 600;
    text-decoration: none;
}

.premium-card:hover .premium-learn-more {
    gap: 15px;
    transition: gap 0.3s ease;
}

.premium-learn-more {
    transition: gap 0.3s ease;
}


/* ==========================================================================
   EXTRACTED FROM website.php
   ========================================================================== */
.why-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    border: 1px solid #333;
    border-radius: 12px;
    overflow: hidden;
    background: transparent;
}

.why-item {
    padding: 40px 20px;
    text-align: center;
    border-right: 1px solid #333;
    border-bottom: 1px solid #333;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

.why-item:nth-child(5n) {
    border-right: none;
}

.why-item:nth-child(n+6) {
    border-bottom: none;
}

.why-icon {
    margin-bottom: 20px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.why-icon svg {
    stroke: #ffffff;
    stroke-width: 1.5;
    fill: none;
    width: 42px;
    height: 42px;
}

.why-text {
    font-size: 1rem;
    color: #eeeeee;

    font-weight: 400;
}

@media (max-width: 1024px) {
    .why-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .why-item:nth-child(5n) {
        border-right: 1px solid #333;
    }

    .why-item:nth-child(3n) {
        border-right: none;
    }

    .why-item:nth-child(n+6) {
        border-bottom: 1px solid #333;
    }

    .why-item:nth-child(n+8) {
        border-bottom: none;
    }
}

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

    .why-item:nth-child(3n) {
        border-right: 1px solid #333;
    }

    .why-item:nth-child(2n) {
        border-right: none;
    }

    .why-item:nth-child(n+8) {
        border-bottom: 1px solid #333;
    }

    .why-item:nth-child(n+9) {
        border-bottom: none;
    }
}

@media (max-width: 480px) {
    .why-grid {
        grid-template-columns: 1fr;
    }

    .why-item {
        border-right: none !important;
        border-bottom: 1px solid #333 !important;
    }

    .why-item:last-child {
        border-bottom: none !important;
    }
}

.platform-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}

.platform-card {
    border: 1px solid #f2f2f2;
    border-radius: 4px;
    padding: 10px 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    height: 70px;
}

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

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

@media (max-width: 768px) {
    .platform-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }

    .platform-card {
        height: 60px;
        padding: 10px;
    }
}

@media (max-width: 480px) {
    .platform-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 30px 20px;
    border-bottom: 1px solid #14284b;
}

.benefit-item:nth-last-child(-n+4) {
    border-bottom: none;
}

.benefit-icon {
    flex-shrink: 0;
}

.benefit-icon svg {
    width: 34px;
    height: 34px;
    fill: none;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.benefit-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0 0 10px 0;
    color: #ffffff;
}

.benefit-content p {
    font-size: 0.95rem;
    color: #a0aec0;

    margin: 0;
    font-weight: 300;
}

@media (max-width: 1024px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .benefit-item:nth-last-child(-n+4) {
        border-bottom: 1px solid #14284b;
    }

    .benefit-item:nth-last-child(-n+2) {
        border-bottom: none;
    }
}

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

    .benefit-item:nth-last-child(-n+2) {
        border-bottom: 1px solid #14284b;
    }

    .benefit-item:last-child {
        border-bottom: none;
    }
}

.process-scroll {
    display: flex;
    overflow-x: auto;
    padding: 10px 0 40px 0;
    gap: 15px;
    max-width: 1400px;
    margin: 0 auto;
    scroll-snap-type: x mandatory;
}

.process-scroll::-webkit-scrollbar {
    height: 6px;
}

.process-scroll::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

.process-scroll::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 4px;
}

.process-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    width: 200px;
    flex-shrink: 0;
    scroll-snap-align: start;
}

.process-node-container {
    display: flex;
    align-items: center;
    width: 100%;
    position: relative;
    justify-content: center;
    margin-bottom: 30px;
}

.process-node {
    width: 75px;
    height: 75px;
    border-radius: 50%;
    background-color: #bfdbfe;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.process-node-inner {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #0b3b96;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    font-weight: 400;
}

.process-arrow {
    position: absolute;
    right: -15px;
    top: 50%;
    transform: translateY(-50%);
    color: #0b3b96;
    font-size: 2rem;
    font-weight: 300;
    z-index: 1;
}

.process-connector {
    width: 1.5px;
    height: 30px;
    background-color: #0b3b96;
    position: absolute;
    top: 75px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}

.process-card {
    border: 1px solid #93c5fd;
    border-radius: 12px;
    padding: 20px;
    background: #ffffff;
    width: 100%;
    text-align: left;
    height: 260px;
    display: flex;
    flex-direction: column;
}

.process-card h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: #111;
    margin-bottom: 10px;

}

.process-card p {
    font-size: 0.85rem;
    color: #333;

    margin: 0;
}


/* ==========================================================================
   EXTRACTED FROM services.php
   ========================================================================== */
.service-item-block {
    margin-bottom: 70px;
    padding-bottom: 20px;
}

.service-main-block {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 40px;
}

.service-image-side {
    flex: 1.1;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
    max-width: 650px;
}

.service-image-side img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.service-text-side {
    flex: 0.9;
}

.service-text-side h2 {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: #0f172a;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.service-text-side h2 span {
    color: #2070d0;
}

.service-text-side p {
    font-size: 1.05rem;

    color: #475569;
    margin-bottom: 20px;
}

.service-text-side .btn-details {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 32px;
    border: 1.5px solid #2070d0;
    border-radius: 10px;
    color: #2070d0;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    background: transparent;
    transition: all 0.3s ease;
    margin-top: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.service-text-side .btn-details:hover {
    background-color: rgba(0, 119, 190, 0.08);
    transform: translateY(-2px);
}

/* Service Sub Grid (8 cards) */
.service-sub-grid {
    display: flex;
    overflow-x: auto;
    gap: 16px;
    margin-top: 30px;
    padding-bottom: 12px;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}

.service-sub-grid::-webkit-scrollbar {
    height: 5px;
}

.service-sub-grid::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.02);
    border-radius: 10px;
}

.service-sub-grid::-webkit-scrollbar-thumb {
    background: rgba(0, 119, 190, 0.15);
    border-radius: 10px;
}

.service-sub-grid::-webkit-scrollbar-thumb:hover {
    background: rgba(0, 119, 190, 0.35);
}

.sub-card {
    flex: 0 0 280px;
    /* Fixed width for horizontal scrolling */
    background: #ffffff;
    border: 1px solid #f1f5f9;
    border-radius: 16px;
    padding: 24px 16px;
    text-align: left;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
    transition: all 0.3s ease;
}

.sub-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
    border-color: rgba(0, 119, 190, 0.25);
}

.sub-icon-wrapper {
    width: 44px;
    height: 44px;
    background: rgba(0, 119, 190, 0.08);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.sub-card h5 {
    font-size: 0.95rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 10px;
}

.sub-card p {
    font-size: 0.8rem;

    color: #64748b;
    margin: 0;
}

@media (min-width: 992px) {
    .service-item-block:nth-child(even) .service-main-block {
        flex-direction: row-reverse;
    }
}

/* Mobile responsive */
@media (max-width: 991px) {
    .service-main-block {
        flex-direction: column !important;
        gap: 40px;
    }
}

@media (max-width: 600px) {
    .service-text-side h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) {
    .service-text-side .btn-details {
        padding: 8px 16px !important;
        font-size: 0.75rem !important;
        gap: 6px !important;
    }

    div[style*="display: flex; gap: 15px;"] {
        gap: 8px !important;
        flex-wrap: wrap !important;
    }
}


/* ==========================================================================
   EXTRACTED FROM e-brochure.php
   ========================================================================== */
.brochure-header {
    background: #020617;
    padding: 160px 20px 100px;
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
    min-height: 65vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

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

.brochure-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(2, 6, 23, 0.85) 0%, rgba(0, 102, 255, 0.4) 100%);
    z-index: 1;
}

.brochure-title {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
    text-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
}

.brochure-subtitle {
    font-size: 1.3rem;
    color: #cbd5e1;
    max-width: 650px;
    margin: 0 auto 40px;
    position: relative;
    z-index: 2;
    text-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}

.brochure-content {
    padding: 80px 20px;
    background: #f8fafc;
}

.brochure-section {
    max-width: 900px;
    margin: 0 auto 60px;
    background: #fff;
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.05);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.brochure-section.reverse {
    direction: rtl;
}

.brochure-section.reverse>* {
    direction: ltr;
}

.brochure-text h3 {
    font-size: 2rem;
    color: #111;
    margin-bottom: 20px;
}

.brochure-text p {
    font-size: 1.1rem;
    color: #555;

    margin-bottom: 20px;
}

.brochure-image {
    width: 100%;
    height: 300px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

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

.download-section {
    text-align: center;
    padding: 100px 20px;
    background: #fff;
}

.download-btn {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 20px 40px;
    background: linear-gradient(90deg, #0066ff, #00d4ff);
    color: #fff;
    font-size: 1.2rem;
    font-weight: 800;
    border-radius: 40px;
    text-decoration: none;
    box-shadow: 0 15px 30px rgba(0, 102, 255, 0.3);
}

.download-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 102, 255, 0.4);
}

@media (max-width: 768px) {
    .brochure-section {
        grid-template-columns: 1fr;
        padding: 30px;
    }

    .brochure-section.reverse {
        direction: ltr;
    }

    .brochure-title {
        font-size: 2.5rem;
    }
}


/* ==========================================================================
   EXTRACTED FROM contact.php
   ========================================================================== */
/* Modern Layout Style Overrides for Contact Page */
body {

    background-color: #ffffff;
    color: #1e293b;
    overflow-x: hidden;
    width: 100%;
}

/* Centering container for layout alignment */
.contact-hero-container {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

/* Hero Section */
.contact-hero {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    min-height: 60vh;
    padding: 120px 50px 60px;
    background: linear-gradient(90deg, #ffffff 40%, rgba(255, 255, 255, 0) 65%), url('../assets/contact1.webp') no-repeat right center;
    background-size: cover;
    position: relative;
}

.contact-hero-content {
    max-width: 600px;
    z-index: 2;
}

.contact-hero-content .eyebrow {
    color: #0c54a9;
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.contact-hero-content h1 {
    font-size: 4.2rem;

    font-weight: 700;
    margin-bottom: 20px;
    color: #0f172a;
}

.contact-hero-content h1 span.highlight {
    color: #2070d0;
}

.contact-hero-content p {
    font-size: 1.15rem;
    color: #1e293b;

    margin-bottom: 30px;
    font-weight: 400;
}

.contact-hero-content .hero-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: auto;
    height: auto;
    padding: 12px 28px;
    border: 1.5px solid #2070d0;
    border-radius: 8px;
    color: #2070d0;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    background: transparent;
    gap: 8px;
}

.contact-hero-content .hero-btn:hover {
    background-color: rgba(0, 119, 190, 0.08);
    border-color: #0066a3;
    color: #0066a3;
}

/* Discover Section */
.discover-section {
    padding: 80px 50px;
    background-color: #ffffff;
}

.discover-grid {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    display: grid;
    grid-template-columns: 1.1fr 1.3fr;
    gap: 80px;
}

.discover-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.discover-left h2 {
    font-size: 2.8rem;

    font-weight: 700;
    margin-bottom: 20px;
    color: #0f172a;
}

.discover-left p {
    font-size: 1rem;
    color: #64748b;

    margin-bottom: 40px;
}

.brochure-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 15px 20px;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    max-width: 320px;
    background-color: #f8fafc;
}

.brochure-icon {
    width: 45px;
    height: 45px;
    background-color: #cbd5e1;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.brochure-info h4 {
    font-size: 0.95rem;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 4px;
}

.brochure-info p {
    font-size: 0.8rem;
    color: #64748b;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Form styling */
.form-container {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    padding: 30px;
    border: 1px solid #f1f5f9;
}

.form-tabs {
    display: flex;
    gap: 25px;
    border-bottom: 1px solid #e2e8f0;
    margin-bottom: 30px;
}

.form-tab {
    padding-bottom: 12px;
    font-weight: 500;
    font-size: 0.95rem;
    color: #64748b;
    cursor: pointer;
    position: relative;
}

.form-tab.active {
    color: #0c54a9;
}

.form-tab.active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #0c54a9;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 500;
    color: #334155;
}

.form-group input,
.form-group textarea {
    padding: 12px 16px;
    border: 1px solid #cbd5e1;
    border-radius: 8px;

    font-size: 0.95rem;
    color: #0f172a;
    background-color: #ffffff;
    outline: none;
    transition: border-color 0.2s;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #0c54a9;
}

.phone-input-container {
    display: flex;
    align-items: center;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    background-color: #ffffff;
    padding: 0 10px;
    transition: border-color 0.2s;
}

.phone-input-container:focus-within {
    border-color: #0c54a9;
}

.phone-input-container input {
    border: none;
    flex: 1;
    padding: 12px 5px;
}

.phone-input-container input:focus {
    border: none;
}

.country-select {
    display: flex;
    align-items: center;
    gap: 5px;
    padding-right: 10px;
    border-right: 1px solid #e2e8f0;
    color: #64748b;
    font-size: 0.85rem;
    user-select: none;
}

.phone-prefix {
    padding: 0 10px;
    color: #0f172a;
    font-weight: 500;
    font-size: 0.95rem;
}

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

.char-count {
    font-size: 0.75rem;
    color: #94a3b8;
}

.form-submit-btn {
    background-color: #0f172a;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    padding: 14px 28px;
    font-weight: 500;
    font-size: 0.95rem;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-left: auto;
    transition: background-color 0.2s;
}

.form-submit-btn:hover {
    background-color: #1e293b;
}

/* Locations Section */
.locations-section {
    padding: 80px 50px;
    background-color: #f8fafc;
}

.section-header,
.locations-grid,
.partners-carousel-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

.section-header {
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2.8rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 10px;
}

.section-header p {
    font-size: 1rem;
    color: #64748b;
}

.locations-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 60px;
}

.office-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.office-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.office-card .banner-label {
    background-color: #0c54a9;
    color: #ffffff;
    padding: 10px 20px;
    font-weight: 600;
    font-size: 0.95rem;
}

.office-card .address-details {
    padding: 25px 20px;
    font-size: 1rem;
    color: #334155;

}

.contacts-cards-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    align-self: center;
}

.contact-info-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 35px 25px;
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 18px;
}

.contact-info-card .icon-wrapper {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
}

.contact-info-card .icon-wrapper svg {
    width: 18px;
    height: 18px;
}

.contact-info-card .card-content h5 {
    font-size: 0.82rem;
    margin-bottom: 2px;
}

.contact-info-card .card-content p {
    font-size: 0.95rem;
    font-weight: 600;
    margin: 0;
}

/* Marketing Section (Blue Background) */
.marketing-section {
    background-color: #0c54a9;
    color: #ffffff;
    padding: 80px 50px;
}

.marketing-section .section-header h2 {
    color: #ffffff;
}

.marketing-section .section-header p {
    color: #93c5fd;
}

.marketing-section .office-card {
    border: 1px solid rgba(255, 255, 255, 0.15);
    background-color: rgba(255, 255, 255, 0.05);
}

.marketing-section .office-card .banner-label {
    background-color: #ffffff;
    color: #0c54a9;
}

.marketing-section .office-card .address-details {
    color: #f1f5f9;
}

.marketing-section .contact-info-card {
    background: #ffffff;
    border: none;
    color: #0f172a;

}

/* Partners Section */
.partners-section {
    padding: 80px 50px;
    background-color: #ffffff;
    overflow: hidden;
}

.partners-carousel-wrapper {
    overflow: hidden;
    width: 100%;
    position: relative;
    margin-top: 40px;
}

.partners-carousel-track {
    display: flex;
    gap: 30px;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.partner-logo-card {
    flex: 0 0 calc((100% - 90px) / 4);
    border: 1.5px solid #e2e8f0;
    border-radius: 8px;
    background-color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    box-sizing: border-box;
    overflow: hidden;
    transition: all 0.3s ease;
}

.partner-logo-card img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.partner-logo-card:hover {
    border-color: #0c54a9;
    box-shadow: 0 10px 25px rgba(12, 84, 169, 0.15);
}

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

.carousel-controls {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
}

.carousel-btn {
    background: #ffffff;
    border: 1.5px solid #0c54a9;
    color: #0c54a9;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.2rem;
    transition: all 0.2s ease;
    outline: none;
}

.carousel-btn:hover {
    background: #0c54a9;
    color: #ffffff;
}

@media (max-width: 991px) {
    .partner-logo-card {
        flex: 0 0 calc((100% - 60px) / 3);
    }
}

@media (max-width: 600px) {
    .partner-logo-card {
        flex: 0 0 calc((100% - 30px) / 2);
    }
}

/* Responsive styles */
@media (max-width: 991px) {
    .contact-hero {
        background: none;
        flex-direction: column-reverse;
        padding: 100px 20px 0px;
        min-height: auto;
        text-align: left;
    }

    .contact-hero::before {
        content: '';
        display: block;
        width: 100%;
        height: 300px;
        background: url('assets/contact1.webp') no-repeat center center / contain;
        margin-bottom: 10px;
    }

    .contact-hero-content {
        max-width: 100%;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }

    .discover-section {
        padding: 30px 20px;
    }

    .discover-grid,
    .locations-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

@media (max-width: 600px) {
    .contacts-cards-grid {
        grid-template-columns: 1fr;
    }

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


/* ==========================================================================
   EXTRACTED FROM digital_marketing.php
   ========================================================================== */
.platform-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}

.platform-card {
    border: 1px solid #f2f2f2;
    border-radius: 4px;
    padding: 10px 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    height: 70px;
}

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

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

@media (max-width: 768px) {
    .platform-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }

    .platform-card {
        height: 60px;
        padding: 10px;
    }
}

@media (max-width: 480px) {
    .platform-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 30px 20px;
    border-bottom: 1px solid #14284b;
}

.benefit-item:nth-last-child(-n+4) {
    border-bottom: none;
}

.benefit-icon {
    flex-shrink: 0;
}

.benefit-icon svg {
    width: 34px;
    height: 34px;
    fill: none;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.benefit-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0 0 10px 0;
    color: #ffffff;
}

.benefit-content p {
    font-size: 0.95rem;
    color: #a0aec0;

    margin: 0;
    font-weight: 300;
}

@media (max-width: 1024px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .benefit-item:nth-last-child(-n+4) {
        border-bottom: 1px solid #14284b;
    }

    .benefit-item:nth-last-child(-n+2) {
        border-bottom: none;
    }
}

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

    .benefit-item:nth-last-child(-n+2) {
        border-bottom: 1px solid #14284b;
    }

    .benefit-item:last-child {
        border-bottom: none;
    }
}

.process-scroll {
    display: flex;
    overflow-x: auto;
    padding: 10px 0 40px 0;
    gap: 15px;
    max-width: 1400px;
    margin: 0 auto;
    scroll-snap-type: x mandatory;
}

.process-scroll::-webkit-scrollbar {
    height: 6px;
}

.process-scroll::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

.process-scroll::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 4px;
}

.process-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    width: 200px;
    flex-shrink: 0;
    scroll-snap-align: start;
}

.process-node-container {
    display: flex;
    align-items: center;
    width: 100%;
    position: relative;
    justify-content: center;
    margin-bottom: 30px;
}

.process-node {
    width: 75px;
    height: 75px;
    border-radius: 50%;
    background-color: #bfdbfe;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.process-node-inner {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #0b3b96;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    font-weight: 400;
}

.process-arrow {
    position: absolute;
    right: -15px;
    top: 50%;
    transform: translateY(-50%);
    color: #0b3b96;
    font-size: 2rem;
    font-weight: 300;
    z-index: 1;
}

.process-connector {
    width: 1.5px;
    height: 30px;
    background-color: #0b3b96;
    position: absolute;
    top: 75px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}

.process-card {
    border: 1px solid #93c5fd;
    border-radius: 12px;
    padding: 20px;
    background: #ffffff;
    width: 100%;
    text-align: left;
    height: 260px;
    display: flex;
    flex-direction: column;
}

.process-card h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: #111;
    margin-bottom: 10px;

}

.process-card p {
    font-size: 0.85rem;
    color: #333;

    margin: 0;
}


/* ==========================================================================
   EXTRACTED FROM quote.php
   ========================================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;

}

.quote-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #001f4d 0%, #0044cc 100%);
    position: relative;
    overflow-y: auto;
    color: #fff;
    padding: 80px 20px;
}

/* Abstract Blue Theme Shapes */
.shape {
    position: absolute;
    filter: blur(60px);
    z-index: 0;
    border-radius: 50%;
}

.shape-1 {
    top: -10%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: rgba(0, 212, 255, 0.4);
}

.shape-2 {
    bottom: -10%;
    right: -5%;
    width: 600px;
    height: 600px;
    background: rgba(0, 102, 255, 0.5);
}

.quote-container {
    width: 100%;
    max-width: 500px;
    padding: 40px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 24px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 1;
    text-align: center;
}

.quote-logo {
    height: 45px;
    margin-bottom: 20px;
    filter: brightness(0) invert(1);
}

.quote-title {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 10px;
    color: #ffffff;
}

.quote-subtitle {
    color: #e2e8f0;
    margin-bottom: 30px;
    font-size: 0.95rem;
}

.input-group {
    margin-bottom: 20px;
    text-align: left;
}

.input-group label {
    display: block;
    margin-bottom: 8px;
    color: #f1f5f9;
    font-size: 0.9rem;
    font-weight: 600;
}

.quote-input {
    width: 100%;
    padding: 14px 20px;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    color: #fff;
    font-size: 1rem;
    outline: none;
    transition: all 0.3s ease;
}

select.quote-input option {
    background-color: #002b80;
    color: #fff;
}

.quote-input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.quote-input:focus {
    outline: none;
    border-color: #fff;
    background: rgba(255, 255, 255, 0.25);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.2);
}

textarea.quote-input {
    resize: vertical;
    min-height: 100px;
}

.submit-btn {
    width: 100%;
    padding: 15px;
    background: #ffffff;
    color: #0044cc;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 800;
    cursor: pointer;
    margin-top: 10px;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.back-home {
    position: absolute;
    top: 30px;
    left: 30px;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 2;
    font-weight: 600;
}

.back-home:hover {
    color: #ffffff;
}

@media (max-width: 576px) {
    .quote-page {
        padding: 70px 15px 40px;
    }

    .quote-container {
        padding: 25px 20px;
        border-radius: 16px;
    }

    .quote-logo {
        height: 35px;
        margin-bottom: 15px;
    }

    .quote-title {
        font-size: 1.4rem;
    }

    .quote-subtitle {
        font-size: 0.85rem;
        margin-bottom: 20px;
    }

    .input-group {
        margin-bottom: 15px;
    }

    .input-group label {
        font-size: 0.8rem;
        margin-bottom: 5px;
    }

    .quote-input {
        padding: 10px 14px;
        font-size: 0.9rem;
        border-radius: 8px;
    }

    textarea.quote-input {
        min-height: 80px;
    }

    .submit-btn {
        padding: 12px;
        font-size: 0.95rem;
        border-radius: 8px;
    }

    .back-home {
        top: 15px;
        left: 15px;
        font-size: 0.85rem;
    }
}


/* ==========================================================================
   EXTRACTED FROM privacy-policy.php
   ========================================================================== */
/* Styles for FAQ page similar to webandcrafts T&C */
body {
    background: #ffffff;
}

.faq-hero {
    padding: 120px 50px 60px;
    background: #f8fafc;
    text-align: center;
}

.faq-hero h1 {
    font-size: 3.5rem;
    color: #0f172a;
    margin-bottom: 20px;
    font-weight: 800;
}

.faq-hero p {
    font-size: 1.1rem;
    color: #475569;
    max-width: 600px;
    margin: 0 auto;
}

.faq-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    padding: 60px 50px;
    gap: 60px;
}

.faq-sidebar {
    flex: 0 0 300px;
    position: sticky;
    top: 120px;
    height: max-content;
}

.faq-sidebar ul {
    list-style: none;
    padding: 0;
}

.faq-sidebar ul li {
    margin-bottom: 10px;
}

.faq-sidebar ul li a {
    font-size: 1.1rem;
    color: #64748b;
    font-weight: 500;
    text-decoration: none;
    transition: 0.3s;
    display: block;
    padding: 12px 15px;
    border-radius: 8px;
}

.faq-sidebar ul li a:hover,
.faq-sidebar ul li a.active {
    color: #2070d0;
    font-weight: 600;
    background: #f1f5f9;
    border-left: 3px solid #2070d0;
}

.faq-content {
    flex: 1;
}

.faq-section {
    margin-bottom: 60px;
    scroll-margin-top: 100px;
}

.faq-section h2 {
    font-size: 2.2rem;
    color: #0f172a;
    margin-bottom: 30px;
    border-bottom: 2px solid #f1f5f9;
    padding-bottom: 15px;
}

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

.faq-item h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 10px;
}

.faq-item p {
    font-size: 1rem;
    color: #475569;
}

@media (max-width: 991px) {
    .faq-container {
        flex-direction: column;
        padding: 40px 20px;
        gap: 40px;
    }

    .faq-sidebar {
        position: static;
        flex: none;
        width: 100%;
        border-bottom: 1px solid #e2e8f0;
        padding-bottom: 20px;
    }

    .faq-sidebar ul {
        display: flex;
        gap: 10px;
        overflow-x: auto;
        white-space: nowrap;
        padding-bottom: 10px;
    }

    .faq-sidebar ul li a {
        border-left: none;
    }

    .faq-sidebar ul li a.active {
        border-left: none;
        border-bottom: 3px solid #2070d0;
    }

    .faq-hero {
        padding: 100px 20px 40px;
    }

    .faq-hero h1 {
        font-size: 2.5rem;
    }
}


/* ==========================================================================
   EXTRACTED FROM mobile_development.php
   ========================================================================== */
.platform-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}

.platform-card {
    border: 1px solid #f2f2f2;
    border-radius: 4px;
    padding: 10px 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    height: 70px;
}

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

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

@media (max-width: 768px) {
    .platform-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }

    .platform-card {
        height: 60px;
        padding: 10px;
    }
}

@media (max-width: 480px) {
    .platform-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 30px 20px;
    border-bottom: 1px solid #14284b;
}

.benefit-item:nth-last-child(-n+4) {
    border-bottom: none;
}

.benefit-icon {
    flex-shrink: 0;
}

.benefit-icon svg {
    width: 34px;
    height: 34px;
    fill: none;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.benefit-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0 0 10px 0;
    color: #ffffff;
}

.benefit-content p {
    font-size: 0.95rem;
    color: #a0aec0;

    margin: 0;
    font-weight: 300;
}

@media (max-width: 1024px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .benefit-item:nth-last-child(-n+4) {
        border-bottom: 1px solid #14284b;
    }

    .benefit-item:nth-last-child(-n+2) {
        border-bottom: none;
    }
}

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

    .benefit-item:nth-last-child(-n+2) {
        border-bottom: 1px solid #14284b;
    }

    .benefit-item:last-child {
        border-bottom: none;
    }
}

.process-scroll {
    display: flex;
    overflow-x: auto;
    padding: 10px 0 40px 0;
    gap: 15px;
    max-width: 1400px;
    margin: 0 auto;
    scroll-snap-type: x mandatory;
}

.process-scroll::-webkit-scrollbar {
    height: 6px;
}

.process-scroll::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

.process-scroll::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 4px;
}

.process-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    width: 200px;
    flex-shrink: 0;
    scroll-snap-align: start;
}

.process-node-container {
    display: flex;
    align-items: center;
    width: 100%;
    position: relative;
    justify-content: center;
    margin-bottom: 30px;
}

.process-node {
    width: 75px;
    height: 75px;
    border-radius: 50%;
    background-color: #bfdbfe;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.process-node-inner {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #0b3b96;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    font-weight: 400;
}

.process-arrow {
    position: absolute;
    right: -15px;
    top: 50%;
    transform: translateY(-50%);
    color: #0b3b96;
    font-size: 2rem;
    font-weight: 300;
    z-index: 1;
}

.process-connector {
    width: 1.5px;
    height: 30px;
    background-color: #0b3b96;
    position: absolute;
    top: 75px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}

.process-card {
    border: 1px solid #93c5fd;
    border-radius: 12px;
    padding: 20px;
    background: #ffffff;
    width: 100%;
    text-align: left;
    height: 260px;
    display: flex;
    flex-direction: column;
}

.process-card h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: #111;
    margin-bottom: 10px;

}

.process-card p {
    font-size: 0.85rem;
    color: #333;

    margin: 0;
}


/* ==========================================================================
   EXTRACTED FROM managed_it.php
   ========================================================================== */
.platform-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}

.platform-card {
    border: 1px solid #f2f2f2;
    border-radius: 4px;
    padding: 10px 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    height: 70px;
}

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

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

@media (max-width: 768px) {
    .platform-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }

    .platform-card {
        height: 60px;
        padding: 10px;
    }
}

@media (max-width: 480px) {
    .platform-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 30px 20px;
    border-bottom: 1px solid #14284b;
}

.benefit-item:nth-last-child(-n+4) {
    border-bottom: none;
}

.benefit-icon {
    flex-shrink: 0;
}

.benefit-icon svg {
    width: 34px;
    height: 34px;
    fill: none;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.benefit-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0 0 10px 0;
    color: #ffffff;
}

.benefit-content p {
    font-size: 0.95rem;
    color: #a0aec0;

    margin: 0;
    font-weight: 300;
}

@media (max-width: 1024px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .benefit-item:nth-last-child(-n+4) {
        border-bottom: 1px solid #14284b;
    }

    .benefit-item:nth-last-child(-n+2) {
        border-bottom: none;
    }
}

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

    .benefit-item:nth-last-child(-n+2) {
        border-bottom: 1px solid #14284b;
    }

    .benefit-item:last-child {
        border-bottom: none;
    }
}

.process-scroll {
    display: flex;
    overflow-x: auto;
    padding: 10px 0 40px 0;
    gap: 15px;
    max-width: 1400px;
    margin: 0 auto;
    scroll-snap-type: x mandatory;
}

.process-scroll::-webkit-scrollbar {
    height: 6px;
}

.process-scroll::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

.process-scroll::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 4px;
}

.process-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    width: 200px;
    flex-shrink: 0;
    scroll-snap-align: start;
}

.process-node-container {
    display: flex;
    align-items: center;
    width: 100%;
    position: relative;
    justify-content: center;
    margin-bottom: 30px;
}

.process-node {
    width: 75px;
    height: 75px;
    border-radius: 50%;
    background-color: #bfdbfe;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.process-node-inner {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #0b3b96;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    font-weight: 400;
}

.process-arrow {
    position: absolute;
    right: -15px;
    top: 50%;
    transform: translateY(-50%);
    color: #0b3b96;
    font-size: 2rem;
    font-weight: 300;
    z-index: 1;
}

.process-connector {
    width: 1.5px;
    height: 30px;
    background-color: #0b3b96;
    position: absolute;
    top: 75px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}

.process-card {
    border: 1px solid #93c5fd;
    border-radius: 12px;
    padding: 20px;
    background: #ffffff;
    width: 100%;
    text-align: left;
    height: 260px;
    display: flex;
    flex-direction: column;
}

.process-card h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: #111;
    margin-bottom: 10px;

}

.process-card p {
    font-size: 0.85rem;
    color: #333;

    margin: 0;
}


/* ==========================================================================
   EXTRACTED FROM janabhoomi.php
   ========================================================================== */
/* Head styles cleaned up */
.casestudy-more-hero {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 800px;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.1)), url('../assets/6a5ff3da-ee27-4a09-97c5-f0c0e1964c6b.png') no-repeat center center;
    background-size: cover;
    display: flex;
    align-items: flex-end;
    padding-bottom: 8%;
    padding-left: 6%;
    margin-top: 0;
}

.casestudy-hero-content {
    color: #ffffff;

    text-align: left;
    z-index: 10;
}

.casestudy-main-title {
    font-size: 4rem;
    font-weight: 800;

    margin-bottom: 20px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.casestudy-sub-title {
    font-size: 2.5rem;
    font-weight: 300;

    text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.5);
    margin: 0;
}

/* The navbar might need to be slightly transparent to show the full banner */
.navbar {
    background: rgba(255, 255, 255, 0.95);
}

@media (max-width: 768px) {
    .casestudy-main-title {
        font-size: 2.5rem;
    }

    .casestudy-sub-title {
        font-size: 1.8rem;
    }

    .casestudy-more-hero {
        padding-bottom: 15%;
    }
}

.cs-details-section {
    padding: 80px 2%;
    background-color: #ffffff;

}

.cs-details-container {
    max-width: 1400px;
    margin: 0 auto;
    border: 1px solid #cbd5e1;
    padding: 50px 30px;
    background: #ffffff;
}

.cs-details-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.cs-details-intro {
    font-size: 1.1rem;
    color: #1e293b;
    font-weight: 400;
}

.cs-live-site-btn {
    display: inline-flex;
    padding: 10px 24px;
    border: 1px solid #1e293b;
    border-radius: 30px;
    text-decoration: none;
    color: #1e293b;
    font-weight: 400;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.cs-live-site-btn:hover {
    background-color: #f8fafc;
}

.cs-details-title-small {
    font-size: 1.75rem;
    font-weight: 400;
    color: #0f172a;
    margin-bottom: 10px;

}

.cs-details-title-large {
    font-size: 4rem;
    font-weight: 800;
    color: #000000;
    margin-bottom: 30px;
    letter-spacing: -1px;
}

.cs-details-text {
    font-size: 1.05rem;
    color: #334155;

    margin-bottom: 40px;
    max-width: 900px;
}

.cs-details-services-title {
    font-size: 1.1rem;
    color: #0f172a;
    margin-bottom: 15px;
    font-weight: 400;
}

.cs-details-divider {
    height: 1px;
    background-color: #94a3b8;
    margin: 0 0 30px 0;
    border: none;
}

.cs-services-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 60px;
}

.cs-tag {
    padding: 12px 30px;
    border: 1px solid #64748b;
    border-radius: 40px;
    font-size: 0.95rem;
    color: #0f172a;
    display: inline-block;
}

.cs-info-table {
    width: 100%;
    border-collapse: collapse;
}

.cs-info-table td {
    padding: 18px 0;
    border-bottom: 1px solid #94a3b8;
    font-size: 1.05rem;
    color: #1e293b;
}

.cs-info-table tr:first-child td {
    border-top: 1px solid #94a3b8;
}

.cs-info-label {
    width: 150px;
    vertical-align: top;
    padding-left: 20px !important;
}

.cs-info-value {
    font-weight: 400;
    color: #334155;
}

@media (max-width: 768px) {
    .cs-details-container {
        padding: 30px 20px;
    }

    .cs-details-title-large {
        font-size: 2.5rem;
    }

    .cs-details-title-small {
        font-size: 1.4rem;
    }

    .cs-info-label {
        width: 100px;
        padding-left: 10px !important;
    }
}

.cs-gallery-section {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 0;
}

.cs-gallery-item {
    flex: 1 1 50%;
    display: block;
}

.cs-gallery-item img {
    width: 100%;
    height: auto;
    aspect-ratio: 4/3;
    object-fit: cover;
    display: block;
}

@media (max-width: 768px) {
    .cs-gallery-item {
        flex: 1 1 100%;
    }
}


/* ==========================================================================
   EXTRACTED FROM startup.php
   ========================================================================== */
.platform-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}

.platform-card {
    border: 1px solid #f2f2f2;
    border-radius: 4px;
    padding: 10px 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    height: 70px;
}

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

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

@media (max-width: 768px) {
    .platform-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }

    .platform-card {
        height: 60px;
        padding: 10px;
    }
}

@media (max-width: 480px) {
    .platform-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 30px 20px;
    border-bottom: 1px solid #14284b;
}

.benefit-item:nth-last-child(-n+4) {
    border-bottom: none;
}

.benefit-icon {
    flex-shrink: 0;
}

.benefit-icon svg {
    width: 34px;
    height: 34px;
    fill: none;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.benefit-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0 0 10px 0;
    color: #ffffff;
}

.benefit-content p {
    font-size: 0.95rem;
    color: #a0aec0;

    margin: 0;
    font-weight: 300;
}

@media (max-width: 1024px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .benefit-item:nth-last-child(-n+4) {
        border-bottom: 1px solid #14284b;
    }

    .benefit-item:nth-last-child(-n+2) {
        border-bottom: none;
    }
}

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

    .benefit-item:nth-last-child(-n+2) {
        border-bottom: 1px solid #14284b;
    }

    .benefit-item:last-child {
        border-bottom: none;
    }
}

.process-scroll {
    display: flex;
    overflow-x: auto;
    padding: 10px 0 40px 0;
    gap: 15px;
    max-width: 1400px;
    margin: 0 auto;
    scroll-snap-type: x mandatory;
}

.process-scroll::-webkit-scrollbar {
    height: 6px;
}

.process-scroll::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

.process-scroll::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 4px;
}

.process-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    width: 200px;
    flex-shrink: 0;
    scroll-snap-align: start;
}

.process-node-container {
    display: flex;
    align-items: center;
    width: 100%;
    position: relative;
    justify-content: center;
    margin-bottom: 30px;
}

.process-node {
    width: 75px;
    height: 75px;
    border-radius: 50%;
    background-color: #bfdbfe;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.process-node-inner {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #0b3b96;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    font-weight: 400;
}

.process-arrow {
    position: absolute;
    right: -15px;
    top: 50%;
    transform: translateY(-50%);
    color: #0b3b96;
    font-size: 2rem;
    font-weight: 300;
    z-index: 1;
}

.process-connector {
    width: 1.5px;
    height: 30px;
    background-color: #0b3b96;
    position: absolute;
    top: 75px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}

.process-card {
    border: 1px solid #93c5fd;
    border-radius: 12px;
    padding: 20px;
    background: #ffffff;
    width: 100%;
    text-align: left;
    height: 260px;
    display: flex;
    flex-direction: column;
}

.process-card h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: #111;
    margin-bottom: 10px;

}

.process-card p {
    font-size: 0.85rem;
    color: #333;

    margin: 0;
}


/* ==========================================================================
   EXTRACTED FROM products.php
   ========================================================================== */
.service-item-block {
    margin-bottom: 70px;
    padding-bottom: 20px;
}

.service-main-block {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 40px;
}

.service-image-side {
    flex: 1.1;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
    max-width: 650px;
}

.service-image-side img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.service-text-side {
    flex: 0.9;
}

.service-text-side h2 {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: #0f172a;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.service-text-side h2 span {
    color: #2070d0;
}

.service-text-side p {
    font-size: 1.05rem;

    color: #475569;
    margin-bottom: 20px;
}

.service-text-side .btn-details {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 32px;
    border: 1.5px solid #2070d0;
    border-radius: 10px;
    color: #2070d0;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    background: transparent;
    transition: all 0.3s ease;
    margin-top: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.service-text-side .btn-details:hover {
    background-color: rgba(0, 119, 190, 0.08);
    transform: translateY(-2px);
}

/* Service Sub Grid (8 cards) */
.service-sub-grid {
    display: flex;
    overflow-x: auto;
    gap: 16px;
    margin-top: 30px;
    padding-bottom: 12px;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}

.service-sub-grid::-webkit-scrollbar {
    height: 5px;
}

.service-sub-grid::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.02);
    border-radius: 10px;
}

.service-sub-grid::-webkit-scrollbar-thumb {
    background: rgba(0, 119, 190, 0.15);
    border-radius: 10px;
}

.service-sub-grid::-webkit-scrollbar-thumb:hover {
    background: rgba(0, 119, 190, 0.35);
}

.sub-card {
    flex: 0 0 280px;
    /* Fixed width for horizontal scrolling */
    background: #ffffff;
    border: 1px solid #f1f5f9;
    border-radius: 16px;
    padding: 24px 16px;
    text-align: left;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
    transition: all 0.3s ease;
}

.sub-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
    border-color: rgba(0, 119, 190, 0.25);
}

.sub-icon-wrapper {
    width: 44px;
    height: 44px;
    background: rgba(0, 119, 190, 0.08);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.sub-card h5 {
    font-size: 0.95rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 10px;
}

.sub-card p {
    font-size: 0.8rem;

    color: #64748b;
    margin: 0;
}

@media (min-width: 992px) {
    .service-item-block:nth-child(even) .service-main-block {
        flex-direction: row-reverse;
    }
}

/* Mobile responsive */
@media (max-width: 991px) {
    .service-main-block {
        flex-direction: column !important;
        gap: 40px;
    }
}

@media (max-width: 600px) {
    .service-text-side h2 {
        font-size: 1.8rem;
    }
}


/* ==========================================================================
   EXTRACTED FROM faq.php
   ========================================================================== */
/* Styles for FAQ page similar to webandcrafts T&C */
body {
    background: #ffffff;
}

.faq-hero {
    padding: 120px 50px 60px;
    background: #f8fafc;
    text-align: center;
}

.faq-hero h1 {
    font-size: 3.5rem;
    color: #0f172a;
    margin-bottom: 20px;
    font-weight: 800;
}

.faq-hero p {
    font-size: 1.1rem;
    color: #475569;
    max-width: 600px;
    margin: 0 auto;
}

.faq-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    padding: 60px 50px;
    gap: 60px;
}

.faq-sidebar {
    flex: 0 0 300px;
    position: sticky;
    top: 120px;
    height: max-content;
}

.faq-sidebar ul {
    list-style: none;
    padding: 0;
}

.faq-sidebar ul li {
    margin-bottom: 10px;
}

.faq-sidebar ul li a {
    font-size: 1.1rem;
    color: #64748b;
    font-weight: 500;
    text-decoration: none;
    transition: 0.3s;
    display: block;
    padding: 12px 15px;
    border-radius: 8px;
}

.faq-sidebar ul li a:hover,
.faq-sidebar ul li a.active {
    color: #2070d0;
    font-weight: 600;
    background: #f1f5f9;
    border-left: 3px solid #2070d0;
}

.faq-content {
    flex: 1;
}

.faq-section {
    margin-bottom: 60px;
    scroll-margin-top: 100px;
}

.faq-section h2 {
    font-size: 2.2rem;
    color: #0f172a;
    margin-bottom: 30px;
    border-bottom: 2px solid #f1f5f9;
    padding-bottom: 15px;
}

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

.faq-item h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 10px;
}

.faq-item p {
    font-size: 1rem;
    color: #475569;
}

@media (max-width: 991px) {
    .faq-container {
        flex-direction: column;
        padding: 40px 20px;
        gap: 40px;
    }

    .faq-sidebar {
        position: static;
        flex: none;
        width: 100%;
        border-bottom: 1px solid #e2e8f0;
        padding-bottom: 20px;
    }

    .faq-sidebar ul {
        display: flex;
        gap: 10px;
        overflow-x: auto;
        white-space: nowrap;
        padding-bottom: 10px;
    }

    .faq-sidebar ul li a {
        border-left: none;
    }

    .faq-sidebar ul li a.active {
        border-left: none;
        border-bottom: 3px solid #2070d0;
    }

    .faq-hero {
        padding: 100px 20px 40px;
    }

    .faq-hero h1 {
        font-size: 2.5rem;
    }
}


/* ==========================================================================
   EXTRACTED FROM careers.php
   ========================================================================== */
/* Advanced Split Layout Application Form - Forced Override */
.application-form-container {
    max-width: 1000px !important;
    margin: 80px auto !important;
    background: #ffffff !important;
    border-radius: 20px !important;
    box-shadow: 0 20px 50px rgba(32, 112, 208, 0.1), 0 5px 15px rgba(0, 0, 0, 0.05) !important;
    border: 1px solid rgba(32, 112, 208, 0.1) !important;
    display: flex !important;
    flex-direction: row;
    overflow: hidden !important;
    position: relative !important;

}

.application-form-container::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 6px !important;
    background: linear-gradient(90deg, #3b82f6, #8b5cf6, #3b82f6, #3b82f6) !important;
    background-size: 300% auto !important;
    animation: gradientMove 3s linear infinite !important;
    z-index: 10 !important;
}

@keyframes gradientMove {
    0% {
        background-position: 0% center;
    }

    100% {
        background-position: 200% center;
    }
}

.app-form-left {
    flex: 1 !important;
    background: linear-gradient(135deg, #0f172a, #1e293b) !important;
    color: #ffffff !important;
    padding: 60px 50px !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    position: relative !important;
    overflow: hidden !important;
}

.app-form-left::after {
    content: '' !important;
    position: absolute !important;
    bottom: -50px !important;
    right: -50px !important;
    width: 250px !important;
    height: 250px !important;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.2) 0%, transparent 70%) !important;
    border-radius: 50% !important;
    animation: pulseGlow 4s ease-in-out infinite alternate !important;
}

@keyframes pulseGlow {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }

    100% {
        transform: scale(1.1);
        opacity: 1;
    }
}

.app-left-content h3 {
    font-size: 2.5rem !important;
    font-weight: 800 !important;
    margin-bottom: 20px !important;
    letter-spacing: -0.5px !important;

    color: #fff !important;
    position: relative;
    z-index: 2;
}

.app-left-content p {
    font-size: 1.1rem !important;

    color: #cbd5e1 !important;
    margin-bottom: 40px !important;
    position: relative;
    z-index: 2;
}

.app-contact-info {
    display: flex !important;
    flex-direction: column !important;
    gap: 20px !important;
    position: relative;
    z-index: 2;
}

.contact-item {
    display: flex !important;
    align-items: center !important;
    gap: 20px !important;
    font-size: 1.05rem !important;
    color: #e2e8f0 !important;
    padding: 12px 0 !important;
    word-break: break-word !important;
    overflow-wrap: anywhere !important;
}

.contact-icon {
    font-size: 1.2rem !important;
    background: rgba(255, 255, 255, 0.1) !important;
    width: 45px !important;
    height: 45px !important;
    min-width: 45px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border-radius: 50% !important;
    transition: transform 0.3s ease !important;
    flex-shrink: 0 !important;
}

.contact-item:hover .contact-icon {
    transform: scale(1.1) rotate(5deg) !important;
    background: rgba(59, 130, 246, 0.4) !important;
}

.app-form-right {
    flex: 1.3 !important;
    padding: 60px 50px !important;
    background: #ffffff !important;
}

.application-form-header {
    margin-bottom: 35px !important;
}

.application-form-header h3 {
    font-size: 2.2rem !important;
    font-weight: 800 !important;
    color: #0f172a !important;
    margin-bottom: 8px !important;
}

.application-form-header p {
    color: #64748b !important;
    font-size: 1.1rem !important;
}

.job-application-form .form-row {
    display: flex !important;
    gap: 20px !important;
    margin-bottom: 20px !important;
}

.job-application-form .form-group {
    flex: 1 !important;
    display: flex !important;
    flex-direction: column !important;
}

.job-application-form label {
    font-size: 0.85rem !important;
    font-weight: 700 !important;
    color: #475569 !important;
    margin-bottom: 8px !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
}

.job-application-form input[type="text"],
.job-application-form input[type="email"],
.job-application-form select,
.job-application-form .file-input {
    width: 100% !important;
    padding: 15px 18px !important;
    border: 1px solid #e2e8f0 !important;
    border-radius: 10px !important;
    font-size: 1rem !important;
    color: #1e293b !important;
    background: #f8fafc !important;
    transition: all 0.3s ease !important;

    box-sizing: border-box !important;
}

.job-application-form input:focus,
.job-application-form select:focus {
    border-color: #3b82f6 !important;
    background: #ffffff !important;
    outline: none !important;
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.15) !important;
    transform: translateY(-2px);
}

.file-upload-wrapper {
    position: relative !important;
}

.job-application-form .file-input {
    padding: 12px 18px !important;
    background: #f1f5f9 !important;
    border: 2px dashed #cbd5e1 !important;
    cursor: pointer !important;
}

.job-application-form .file-input:hover {
    border-color: #3b82f6 !important;
    background: #eff6ff !important;
}

.job-application-form .submit-btn {
    margin-top: 15px !important;
    width: 100% !important;
    padding: 16px !important;
    font-size: 1.15rem !important;
    font-weight: 700 !important;
    color: #fff !important;
    background: linear-gradient(135deg, #2563eb, #3b82f6) !important;
    border: none !important;
    border-radius: 10px !important;
    cursor: pointer !important;
    box-shadow: 0 8px 15px rgba(37, 99, 235, 0.2) !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    letter-spacing: 0.5px !important;
    text-transform: uppercase !important;
}

.job-application-form .submit-btn:hover {
    transform: translateY(-4px) scale(1.01) !important;
    box-shadow: 0 15px 25px rgba(37, 99, 235, 0.35) !important;
    background: linear-gradient(135deg, #1d4ed8, #2563eb) !important;
}

.alert {
    padding: 15px !important;
    margin-bottom: 20px !important;
    border-radius: 8px !important;
    font-weight: 600 !important;
    font-size: 0.95rem !important;
    animation: fadeIn 0.4s ease !important;
}

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

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

@media (max-width: 992px) {
    .application-form-container {
        flex-direction: column !important;
        margin: 40px 20px !important;
    }

    .app-form-left,
    .app-form-right {
        padding: 40px 30px !important;
    }
}

@media (max-width: 768px) {
    .job-application-form .form-row {
        flex-direction: column !important;
        gap: 15px !important;
    }

    .app-left-content h3 {
        font-size: 1.8rem !important;
    }

    .app-left-content p {
        font-size: 0.95rem !important;
    }

    .application-form-header h3 {
        font-size: 1.6rem !important;
    }

    .application-form-header p {
        font-size: 0.95rem !important;
    }

    .job-application-form label {
        font-size: 0.75rem !important;
    }

    .job-application-form input[type="text"],
    .job-application-form input[type="email"],
    .job-application-form select,
    .job-application-form .file-input {
        font-size: 0.9rem !important;
        padding: 12px 15px !important;
    }

    .job-application-form .submit-btn {
        font-size: 0.9rem !important;
        padding: 12px !important;
    }
}


/* ==========================================================================
   EXTRACTED FROM case-studies.php
   ========================================================================== */
/* Head styles cleaned up */
.cs-clean-card {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.cs-clean-card:hover {
    transform: translateY(-5px);
}

.cs-clean-image-wrapper {
    width: 100%;
    aspect-ratio: 4 / 3;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.cs-clean-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.cs-clean-card:hover .cs-clean-image-wrapper img {
    transform: scale(1.05);
}

.cs-clean-category {
    font-size: 0.85rem;
    font-weight: 700;
    color: #64748b;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cs-clean-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #0f172a;

    margin: 0;
    transition: color 0.3s ease;
}

.cs-clean-card:hover .cs-clean-title {
    color: #2070d0;
}

@media (max-width: 991px) {
    .cs-clean-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (max-width: 600px) {
    .cs-clean-grid {
        grid-template-columns: 1fr !important;
    }
}

.cs-dropdown-hover:hover .cs-dropdown-menu {
    display: block !important;
}

.cs-dropdown-menu a:hover {
    background-color: #f8f9fa;
    color: #2070d0 !important;
}


/* ==========================================================================
   EXTRACTED FROM it_consulting.php
   ========================================================================== */
.platform-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}

.platform-card {
    border: 1px solid #f2f2f2;
    border-radius: 4px;
    padding: 10px 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    height: 70px;
}

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

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

@media (max-width: 768px) {
    .platform-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }

    .platform-card {
        height: 60px;
        padding: 10px;
    }
}

@media (max-width: 480px) {
    .platform-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 30px 20px;
    border-bottom: 1px solid #14284b;
}

.benefit-item:nth-last-child(-n+4) {
    border-bottom: none;
}

.benefit-icon {
    flex-shrink: 0;
}

.benefit-icon svg {
    width: 34px;
    height: 34px;
    fill: none;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.benefit-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0 0 10px 0;
    color: #ffffff;
}

.benefit-content p {
    font-size: 0.95rem;
    color: #a0aec0;

    margin: 0;
    font-weight: 300;
}

@media (max-width: 1024px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .benefit-item:nth-last-child(-n+4) {
        border-bottom: 1px solid #14284b;
    }

    .benefit-item:nth-last-child(-n+2) {
        border-bottom: none;
    }
}

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

    .benefit-item:nth-last-child(-n+2) {
        border-bottom: 1px solid #14284b;
    }

    .benefit-item:last-child {
        border-bottom: none;
    }
}

.process-scroll {
    display: flex;
    overflow-x: auto;
    padding: 10px 0 40px 0;
    gap: 15px;
    max-width: 1400px;
    margin: 0 auto;
    scroll-snap-type: x mandatory;
}

.process-scroll::-webkit-scrollbar {
    height: 6px;
}

.process-scroll::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

.process-scroll::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 4px;
}

.process-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    width: 200px;
    flex-shrink: 0;
    scroll-snap-align: start;
}

.process-node-container {
    display: flex;
    align-items: center;
    width: 100%;
    position: relative;
    justify-content: center;
    margin-bottom: 30px;
}

.process-node {
    width: 75px;
    height: 75px;
    border-radius: 50%;
    background-color: #bfdbfe;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.process-node-inner {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #0b3b96;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    font-weight: 400;
}

.process-arrow {
    position: absolute;
    right: -15px;
    top: 50%;
    transform: translateY(-50%);
    color: #0b3b96;
    font-size: 2rem;
    font-weight: 300;
    z-index: 1;
}

.process-connector {
    width: 1.5px;
    height: 30px;
    background-color: #0b3b96;
    position: absolute;
    top: 75px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}

.process-card {
    border: 1px solid #93c5fd;
    border-radius: 12px;
    padding: 20px;
    background: #ffffff;
    width: 100%;
    text-align: left;
    height: 260px;
    display: flex;
    flex-direction: column;
}

.process-card h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: #111;
    margin-bottom: 10px;

}

.process-card p {
    font-size: 0.85rem;
    color: #333;

    margin: 0;
}


/* ==========================================================================
   EXTRACTED FROM terms-conditions.php
   ========================================================================== */
/* Styles for FAQ page similar to webandcrafts T&C */
body {
    background: #ffffff;
}

.faq-hero {
    padding: 120px 50px 60px;
    background: #f8fafc;
    text-align: center;
}

.faq-hero h1 {
    font-size: 3.5rem;
    color: #0f172a;
    margin-bottom: 20px;
    font-weight: 800;
}

.faq-hero p {
    font-size: 1.1rem;
    color: #475569;
    max-width: 600px;
    margin: 0 auto;
}

.faq-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    padding: 60px 50px;
    gap: 60px;
}

.faq-sidebar {
    flex: 0 0 300px;
    position: sticky;
    top: 120px;
    height: max-content;
}

.faq-sidebar ul {
    list-style: none;
    padding: 0;
}

.faq-sidebar ul li {
    margin-bottom: 10px;
}

.faq-sidebar ul li a {
    font-size: 1.1rem;
    color: #64748b;
    font-weight: 500;
    text-decoration: none;
    transition: 0.3s;
    display: block;
    padding: 12px 15px;
    border-radius: 8px;
}

.faq-sidebar ul li a:hover,
.faq-sidebar ul li a.active {
    color: #2070d0;
    font-weight: 600;
    background: #f1f5f9;
    border-left: 3px solid #2070d0;
}

.faq-content {
    flex: 1;
}

.faq-section {
    margin-bottom: 60px;
    scroll-margin-top: 100px;
}

.faq-section h2 {
    font-size: 2.2rem;
    color: #0f172a;
    margin-bottom: 30px;
    border-bottom: 2px solid #f1f5f9;
    padding-bottom: 15px;
}

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

.faq-item h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 10px;
}

.faq-item p {
    font-size: 1rem;
    color: #475569;
}

@media (max-width: 991px) {
    .faq-container {
        flex-direction: column;
        padding: 40px 20px;
        gap: 40px;
    }

    .faq-sidebar {
        position: static;
        flex: none;
        width: 100%;
        border-bottom: 1px solid #e2e8f0;
        padding-bottom: 20px;
    }

    .faq-sidebar ul {
        display: flex;
        gap: 10px;
        overflow-x: auto;
        white-space: nowrap;
        padding-bottom: 10px;
    }

    .faq-sidebar ul li a {
        border-left: none;
    }

    .faq-sidebar ul li a.active {
        border-left: none;
        border-bottom: 3px solid #2070d0;
    }

    .faq-hero {
        padding: 100px 20px 40px;
    }

    .faq-hero h1 {
        font-size: 2.5rem;
    }
}


/* ==========================================================================
   EXTRACTED FROM software.php
   ========================================================================== */
.platform-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}

.platform-card {
    border: 1px solid #f2f2f2;
    border-radius: 4px;
    padding: 10px 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    height: 70px;
}

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

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

@media (max-width: 768px) {
    .platform-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }

    .platform-card {
        height: 60px;
        padding: 10px;
    }
}

@media (max-width: 480px) {
    .platform-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 30px 20px;
    border-bottom: 1px solid #14284b;
}

.benefit-item:nth-last-child(-n+4) {
    border-bottom: none;
}

.benefit-icon {
    flex-shrink: 0;
}

.benefit-icon svg {
    width: 34px;
    height: 34px;
    fill: none;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.benefit-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0 0 10px 0;
    color: #ffffff;
}

.benefit-content p {
    font-size: 0.95rem;
    color: #a0aec0;

    margin: 0;
    font-weight: 300;
}

@media (max-width: 1024px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .benefit-item:nth-last-child(-n+4) {
        border-bottom: 1px solid #14284b;
    }

    .benefit-item:nth-last-child(-n+2) {
        border-bottom: none;
    }
}

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

    .benefit-item:nth-last-child(-n+2) {
        border-bottom: 1px solid #14284b;
    }

    .benefit-item:last-child {
        border-bottom: none;
    }
}

.process-scroll {
    display: flex;
    overflow-x: auto;
    padding: 10px 0 40px 0;
    gap: 15px;
    max-width: 1400px;
    margin: 0 auto;
    scroll-snap-type: x mandatory;
}

.process-scroll::-webkit-scrollbar {
    height: 6px;
}

.process-scroll::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

.process-scroll::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 4px;
}

.process-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    width: 200px;
    flex-shrink: 0;
    scroll-snap-align: start;
}

.process-node-container {
    display: flex;
    align-items: center;
    width: 100%;
    position: relative;
    justify-content: center;
    margin-bottom: 30px;
}

.process-node {
    width: 75px;
    height: 75px;
    border-radius: 50%;
    background-color: #bfdbfe;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.process-node-inner {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #0b3b96;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    font-weight: 400;
}

.process-arrow {
    position: absolute;
    right: -15px;
    top: 50%;
    transform: translateY(-50%);
    color: #0b3b96;
    font-size: 2rem;
    font-weight: 300;
    z-index: 1;
}

.process-connector {
    width: 1.5px;
    height: 30px;
    background-color: #0b3b96;
    position: absolute;
    top: 75px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}

.process-card {
    border: 1px solid #93c5fd;
    border-radius: 12px;
    padding: 20px;
    background: #ffffff;
    width: 100%;
    text-align: left;
    height: 260px;
    display: flex;
    flex-direction: column;
}

.process-card h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: #111;
    margin-bottom: 10px;

}

.process-card p {
    font-size: 0.85rem;
    color: #333;

    margin: 0;
}