/* Default CSS */
:root {
    --primary: #27b0e5;
    --primary-light: #f8fafc;
    --primary-dark: #0fabe4;
    --secondary: #fa923d;
    --secondary-light: #fcf2e5;
    --secondary-dark: #f69035;
    --dark: #000000;
    --light: #f8fafc;
    --white: #ffffff;
    --gray: #64748b;
    --light-gray: #e2e8f0;
    --success: #10b981;
    --border-color: #b8b8b8;
    scroll-padding-top: 120px;
}

::selection {
    background-color: var(--primary);
    color: var(--white);
}

::-moz-selection {
    background-color: var(--primary);
    color: var(--white);
}


/* Main CSS */
html {
    scroll-behavior: smooth !important;
    overflow-anchor: none !important;
    scroll-padding-top: 120px;
}

body {
    background-color: var(--white);
    color: var(--dark);
    font-family: "Poppins", sans-serif;
    overflow-x: hidden;
    overflow-anchor: none !important;
    scroll-padding-top: 120px;
}

body::-webkit-scrollbar {
    width: 11px;
}

body::-webkit-scrollbar-track {
    background: var(--white);
}

body::-webkit-scrollbar-thumb {
    background-color: var(--primary);
    border-radius: 6px;
    border: 3px solid var(--primary-light);
}

body::-webkit-scrollbar-thumb:hover {
    background-color: var(--primary-dark);
}

.section-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--secondary);
    display: inline-flex;
    align-items: center;
    background-color: var(--secondary-light);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.section-title .dot {
    width: 8px;
    height: 8px;
    background-color: var(--secondary-dark);
    border-radius: 50%;
    margin-right: 8px;
}

.section-subtitle {
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 1rem;
}

.desktop-button {
    background-color: var(--secondary) !important;
    margin-top: 1rem;
    color: var(--white) !important;
    border-radius: 20px;
    padding: 0.5rem 1.25rem;
    white-space: nowrap;
}

.desktop-button:hover {
    background-color: var(--primary) !important;
    color: var(--white) !important;
    transition: all 0.5s ease;
}

.success {
    background-color: #c6f6d5;
    color: #2d784d;
    padding: 10px;
    border-radius: 9px;
    border: 1px solid green;
}

.error {
    background-color: #fed7d7;
    color: #c53030;
    padding: 10px;
    border-radius: 9px;
    border: 1px solid red;
}


/* Breadcrumb Section */
.breadcrumb-wrapper {
    padding: 20px 20px;
    border-radius: 10px;
}


.breadcrumb {
    margin-bottom: 0;
    background-color: transparent;
    padding: 0;
}

.breadcrumb-item {
    font-size: 1rem;
    color: var(--gray);
    position: relative;
    transition: all 0.3s ease;
}

.breadcrumb-item+.breadcrumb-item::before {
    content: ">";
    font-weight: bold;
    color: var(--dark);
    padding: 0 10px;
}

.breadcrumb-item.active {
    color: var(--primary);
}

.breadcrumb-item a {
    color: var(--dark);
    text-decoration: none;
    transition: color 0.3s;
}

.breadcrumb-item a:hover {
    color: var(--primary);
    text-decoration: none;
}




/* 404 Not Found Page */
.section {
    background: linear-gradient(#f9fdff);
    text-align: center;
    padding: 4rem 2rem;
}

.section .error {
    font-size: 150px;
    color: var(--secondary);
    text-shadow:
        1px 1px 1px var(--primary-dark),
        2px 2px 1px var(--primary-dark),
        3px 3px 1px var(--primary-dark),
        4px 4px 1px var(--primary-dark),
        5px 5px 1px var(--primary-dark),
        6px 6px 1px var(--primary-dark),
        7px 7px 1px var(--primary-dark),
        8px 8px 1px var(--primary-dark),
        25px 25px 8px rgba(0, 0, 0, 0.2);
}

.page {
    margin: 2rem 0;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--dark);
}


/* Header Section */
.codechain-header {
    background-color: var(--primary);
}

.codechain-header .hover-primary {
    color: var(--white);
    font-size: 1rem;
}

.contact-link {
    color: var(--white);
    font-size: 1rem;
}

.divider {
    color: var(--white);
}


/* Navbar Section*/
.navbar {
    padding: 1rem 0;
    background-color: var(--white) !important;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
}

.codechain-logo {
    width: 70%;
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.75rem;
    color: var(--primary) !important;
    display: flex;
    align-items: center;
}

.navbar-brand span {
    color: var(--dark);
}

.navbar-nav .nav-link {
    font-weight: 600;
    color: var(--dark);
    padding: 0.5rem 1rem;
    margin: 0 0.25rem;
    position: relative;
    border-radius: 6px;
    white-space: nowrap;
}

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

.navbar-nav .nav-link.hire-us-btn {
    background-color: var(--secondary);
    color: var(--white) !important;
    border-radius: 20px;
    padding: 0.5rem 1.25rem;
    margin-left: 0.5rem;
    transition: all 0.3s ease;
}

.navbar-nav .nav-link.hire-us-btn:hover {
    background-color: var(--primary-dark);
    box-shadow: 0 4px 12px var(--primary-light);
}

/* Hire US Section*/
.object-fit-cover {
    object-fit: cover;
}

#hireUsModal .modal-dialog {
    max-width: 1000px;
}

.modal-content {
    border-radius: 16px;
    overflow: hidden;
}

.modal-header {
    display: flex;
    align-items: center;
    justify-content: space-around;
}

.hire-us-btn {
    background-color: var(--secondary) !important;
    color: var(--white) !important;
    border-radius: 20px;
    padding: 0.5rem 1.25rem;
    margin-left: 0.5rem;
    transition: all 0.3s ease;
}

.hire-us-btn:hover {
    background-color: var(--primary-dark) !important;
    box-shadow: 0 4px 12px var(--primary-light);
}

.choices__list--dropdown {
    z-index: 1056;
}


/* Mega Menu */
.dropdown.mega-dropdown {
    position: static;
}

.dropdown-menu.mega-menu {
    width: 100%;
    left: 0;
    right: 0;
    margin-top: 0;
    padding: 2rem;
    border: none;
    border-radius: 0 0 12px 12px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    background-color: var(--white);
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
    pointer-events: none;
    display: block;
}

.dropdown.mega-dropdown:hover .dropdown-menu.mega-menu,
.dropdown.mega-dropdown.show .dropdown-menu.mega-menu {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.mega-menu .mega-menu-column h5 {
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--light-gray);
    position: relative;
}

.mega-menu .mega-menu-column h5::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 40px;
    height: 2px;
    background-color: var(--primary);
}

.mega-menu .mega-menu-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mega-menu .mega-menu-column ul li .ai, .mega-menu .mega-menu-column ul li .ai i{
    color: var(--secondary-dark);
}

.mega-menu .mega-menu-column ul li .ai:hover {
    color: var(--secondary-dark);
}

.mega-menu .mega-menu-column ul li a {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 0;
    color: var(--gray);
    transition: all 0.2s ease;
    text-decoration: none;
}

.mega-menu .mega-menu-column ul li a:hover {
    color: var(--primary);
    padding-left: 8px;
    text-decoration: none;
}

.mega-menu .mega-menu-column ul li a i {
    margin-right: 10px;
    color: var(--primary-dark);
    width: 20px;
    text-align: center;
}

.mega-menu .mega-menu-image {
    height: 100%;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.mega-menu .mega-menu-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

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

.award-img {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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


/* Hero Section */
.hero-section {
    background: linear-gradient(0deg, #f8fafc, #e0f2fe);
    min-height: 85vh;
    display: flex;
    align-items: center;
}

.hero-section h1 {
    color: var(--dark);
    line-height: 1.3;
    font-size: 3rem;
    word-break: break-word;
}

.hero-list {
    width: 90%;
}

.rotating-text {
    color: var(--primary);
    position: absolute;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    white-space: normal;
    visibility: hidden;
}

.rotating-text.active {
    position: static;
    opacity: 1;
    visibility: visible;
}

.hero-button {
    background-color: var(--secondary);
    color: var(--white);
    padding: 0.75rem 2rem;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.hero-button:hover {
    background-color: var(--secondary-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.2);
}

.hero-img {
    max-width: 90%;
}

#lottie-animation {
    width: 700px;
}

/* About Section */
.about-us-title {
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 1.5rem;
}

.about-us-description {
    font-size: 1.1rem;
    color: var(--gray);
    margin-bottom: 1.5rem;
    max-width: 600px;
}

.stats-section {
    background-color: var(--white);
    padding: 4rem 0;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.stat-item {
    padding: 1.5rem;
}

.feature-icon-list {
    font-size: 1rem;
    font-weight: 500;
}

.feature-icon-list div {
    padding: 5px;
}

.feature-icon-list i {
    color: var(--primary-dark);
}

.feature-icon-list::after {
    padding: 10px;
    border: 1px solid var(--gray);
}

.about-stat-list {
    margin-bottom: 1rem;
}

.about-stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark);
}

.about-stat-label {
    font-size: 1rem;
    color: var(--gray);
}

.link-about-us {
    text-decoration: underline;
}

.link-about-us i {
    text-decoration: underline;
}

.link-about-us:hover {
    color: var(--primary-dark);
}

.about-img-two {
    position: relative;
    height: 70vh;
}

.about-img-two .main-about-image img {
    width: 85%;
    height: 70vh;
    object-fit: cover;
}

.about-img-two img:nth-child(2) {
    border-radius: 15px;
    bottom: 70px;
    box-shadow: 0 4px 50px rgba(0, 0, 0, .2);
    inset-inline-start: 20px;
    position: absolute;
    bottom: 33px;
    animation: alltuchtopdown 1.5s ease-in-out 0s infinite alternate;
    animation-duration: 3s;
}

.about-img-two .sub-about-image {
    aspect-ratio: 267 / 287;
    object-fit: cover;
    width: 260px;
}

@keyframes alltuchtopdown {
    0% {
        transform: rotateX(0deg) translateY(0);
    }

    50% {
        transform: rotateX(0deg) translateY(20px);
    }

    100% {
        transform: rotateX(0deg) translateY(0);
    }
}

/* Stat Cards Section */
.stat-cards {
    background: linear-gradient(43deg, #ffffff, #edf8ff);
}

.count-card-description {
    font-weight: 500;
    color: var(--gray);
    font-size: 1.05rem;
    line-height: 1.9rem;
}

.trust-badges {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-top: 3rem;
    position: relative;
    z-index: 1;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: white;
    padding: 0.75rem 1.25rem;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.trust-badge:hover {
    transform: translateY(-3px);
}

.trust-badge i {
    color: var(--primary);
    font-size: 1.25rem;
}

.trust-badge-text {
    font-size: 0.9rem;
    font-weight: 600;
}

.round-card {
    border-radius: 50%;
    overflow: hidden;
    padding: 0;
}

.image-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.slider-image {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: none;
    display: none;
    opacity: 0;
    aspect-ratio: 1/1;
}

.slider-image.active {
    display: block;
    opacity: 1;
}

.diamond-grid {
    position: relative;
    width: 470px;
    height: 470px;
    margin-right: 0 auto;
}

.diamond-card {
    position: absolute;
    width: 160px;
    height: 160px;
    border-radius: 16px;
    transform: rotate(45deg);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: default;
}

.diamond-card .card-content {
    transform: rotate(-45deg);
    text-align: center;
    width: 100%;
    padding: 10px;
    box-sizing: border-box;
}

.diamond-card .card-content img {
    width: 50px;
    height: 50px;
    margin-bottom: 8px;
}

.diamond-card .stat-number {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--dark);
    line-height: 1.2;
    white-space: nowrap;
}

.diamond-card .stat-label {
    font-size: 0.95rem;
    color: var(--dark);
    line-height: 1.2;
    word-wrap: break-word;
    overflow-wrap: break-word;
    max-width: 100%;
    display: block;
}


/* Positioning cards */
.diamond-card.top {
    background: linear-gradient(140deg, #ffe5f3, #ffd8ef);
}

.diamond-card.left {
    background: linear-gradient(140deg, #fff0da, #ffe6d2);
}

.diamond-card.right {
    background: linear-gradient(140deg, #d0f4f0, #e8faf7);
}

.diamond-card.bottom {
    background: linear-gradient(140deg, #e4e4ff, #f1f1ff);
}

.diamond-card.top {
    top: 0;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    background-image: linear-gradient(140deg, #fedaf4, #fceff7);
}

.diamond-card.left {
    top: 50%;
    left: 0;
    transform: translateY(-50%) rotate(45deg);
    background-image: linear-gradient(140deg, #fff2e1, #ffe7d8);
}

.diamond-card.center {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 160px;
    height: 160px;
    border-radius: 50%;
    z-index: 3;
    background-color: var(--white);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    animation: pulse 4s infinite;
}

.diamond-card.center::before {
    content: '';
    position: absolute;
    top: -12px;
    left: -12px;
    right: -12px;
    bottom: -12px;
    border-radius: 50%;
    z-index: -1;
    animation: spin 8s linear infinite;
    filter: blur(6px);
    opacity: 0.8;
}

.diamond-card.right {
    top: 50%;
    right: 0;
    transform: translateY(-50%) rotate(45deg);
    background-image: linear-gradient(140deg, #d2f6f1, #e6fafa);
}

.diamond-card.bottom {
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    background-image: linear-gradient(140deg, #e7e6ff, #f4f2ff);
}


.stat-number[data-target="1"]::after {
    content: "st";
    margin-left: 2px;
}

.stat-number[data-target="10"]::after {
    content: "+ yrs";
    margin-left: 2px;
}

.stat-number[data-target="80"]::after {
    content: "+";
    margin-left: 2px;
}

.stat-number[data-target="90"]::after {
    content: "%";
    margin-left: 2px;
}

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

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

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

    50% {
        transform: translate(-50%, -50%) scale(1.03);
    }

    100% {
        transform: translate(-50%, -50%) scale(1);
    }
}



/* Our Feature Section */
.feature-cards .col-md-6 {
    position: relative;
    padding: 0;
    margin: 0;
    z-index: 1;
}

/* 1️⃣ First card (index 1): bottom border - gradient right to left */
.feature-cards .col-md-6:nth-of-type(1)::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    height: 3px;
    width: 100%;
    background: linear-gradient(to left, var(--primary-dark), var(--white));
}

/* 2️⃣ Second card (index 2): bottom border - gradient left to right */
.feature-cards .col-md-6:nth-of-type(2)::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    height: 3px;
    width: 100%;
    background: linear-gradient(to right, var(--primary-dark), var(--white));
}

/* 3️⃣ Third card (index 3): already has bottom border but wrong direction – fix it to right-to-left */
.feature-cards .col-md-6:nth-of-type(3)::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    height: 3px;
    width: 100%;
    background: linear-gradient(to left, var(--primary-dark), var(--white));
}

/* 4️⃣ Fourth card (index 4): do not change anything (already correct) */
.feature-cards .col-md-6:nth-of-type(4)::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    height: 3px;
    width: 100%;
    background: linear-gradient(to right, var(--primary-dark), var(--white));
}


/* Simulate right border with gradient on odd children only */
.feature-cards .col-md-6:nth-child(1)::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 3px;
    height: 100%;
    background: linear-gradient(to top, var(--primary-dark), var(--white));
}

/* Simulate right border with gradient on odd children only */
.feature-cards .col-md-6:nth-child(3)::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 3px;
    height: 100%;
    background: linear-gradient(var(--primary-dark));
}

/* Simulate right border with gradient on odd children only */
.feature-cards .col-md-6:nth-child(5)::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 3px;
    height: 100%;
    background: linear-gradient(to bottom, var(--primary-dark), var(--white));
}

.feature-cards {
    margin-top: 20px;
}

.feature-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 30px;
}

.feature-card.reverse {
    flex-direction: row-reverse;
}

.feature-icon {
    width: 65px;
    height: 65px;
    object-fit: contain;
    flex-shrink: 0;
}

.feature-text {
    flex: 1;
}

.feature-title {
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--dark);
    margin-bottom: 0.7rem;
    line-height: 1.3;
}

.feature-description {
    color: var(--gray);
    font-size: 0.95rem;
}



/* Services Section */
.services-section {
    min-height: 600px;
    position: relative;
}

.service-card {
    background: var(--white);
    border-radius: 16px;
    border: none;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
    padding: 10px;
    transition: transform 0.3s ease;
    width: 100%;
    height: 400px;
    position: relative;
    z-index: 1;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border: 1px solid #bebebe;
    border-radius: 12px;
    padding: 20px;
    height: 100%;
    position: relative;
    transition: border-color 0.3s ease;
}

.service-card:hover .service-content {
    border-color: var(--primary-dark);
}

.service-technology {
    margin-bottom: 16px;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.service-technology a {
    display: inline-block;
    padding: 4px 12px;
    background-color: #f0f0f0;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--dark);
    border: 1px solid #d0d0d0;
    transition: background-color 0.5s ease;
    cursor: pointer;
    text-decoration: none;
}

.service-technology a.hover-blue {
    background-color: var(--primary);
    color: var(--white);
    text-decoration: none;
}

.service-technology a.hover-orange {
    background-color: var(--secondary);
    color: var(--white);
    text-decoration: none;
}

.service-card h6 {
    font-weight: 600;
    margin-top: 15px;
}

.service-card p {
    color: var(--gray);
    font-size: 0.9rem;
}

.service-icon img {
    width: 55px;
    height: 55px;
}


.plus-icon {
    font-size: 24px;
    color: var(--dark);
    border: 1px solid var(--dark);
    border-radius: 50%;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 1px;
    background-color: var(--white);
    overflow: hidden;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.service-card:hover .plus-icon {
    width: 40%;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    color: var(--dark);
}

.service-card .plus-icon::before {
    content: "+";
    transition: opacity 0.2s ease;
}

.service-card:hover .plus-icon::before {
    content: "→ Know More";
}

.services-background-img img {
    max-width: 100%;
    height: auto;
    object-fit: cover;
}


/* Agile Process Section */
.agile-process-section {
    background: linear-gradient(270deg, #ffffff, #edf8ff);
    position: relative;
}

.step-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px auto;
    position: relative;
    transition: transform 0.5s ease;
}

.step-icon img {
    width: 100%;
    height: 100%;
    display: block;
}


.arc-step {
    position: absolute;
    width: 60px;
    height: 60px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    font-size: 1.1rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.arc-step:hover,
.arc-step.active {
    transform: scale(1.1);
    background: var(--secondary);
    color: var(--white);
}


.agile-process-container {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    height: 550px;
}

.arc-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 525px;
    z-index: 0;
}

.arc-step p {
    margin: 0;
}

.step1 {
    top: 415px;
    left: 44px;
}

.step2 {
    top: 315px;
    left: 140px;
}

.step3 {
    top: 235px;
    left: 270px;
}

.step4 {
    top: 195px;
    left: 420px;
}

.step5 {
    top: 235px;
    left: 570px;
}

.step6 {
    top: 315px;
    left: 695px;
}

.step7 {
    top: 415px;
    left: 787px;
}

.center-arc-card {
    position: absolute;
    top: 50%;
    left: 49.5%;
    transform: translateX(-50%);
    width: 387px;
    height: 200px;
    padding: 10px;
    text-align: center;
    z-index: 2;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease-in-out;
}

.center-arc-card.visible {
    opacity: 1;
    /* display: block; */
    pointer-events: auto;
}

.center-arc-card .step-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 15px;
}

.center-arc-card h6 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.center-arc-card p {
    color: var(--gray);
    font-size: 1rem;
}



/* Technology Section */
.tech-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.tech-item {
    background-color: var(--white);
    border: 1px solid #e0e0e0;
    border-radius: 15px;
    padding: 15px;
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 120px;
    width: 133px;
    box-shadow: rgba(0, 0, 0, 0.15) 0px 9.90003px 24.8334px 0px;
}

.tech-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.tech-icon img {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.tech-name {
    font-weight: 600;
    font-size: 0.95rem;
}


/* Case Study Section */
.case-studies-section {
    background: linear-gradient(90deg, #ffffff, #edf8ff);
}

.slider-wrapper {
    position: relative;
    overflow: hidden;
    padding: 20px 0;
}

.slider-track {
    display: flex;
    transition: transform 0.5s ease-out;
    will-change: transform;
    touch-action: pan-y;
}

.case-card {
    flex: 0 0 calc(50% - 15px);
    margin: 0 12px;
    min-width: 0;
    box-sizing: border-box;
}

.case-inner {
    display: flex;
    height: 300px;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    text-decoration: none;
}

.case-inner {
    height: 100%;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Disable text selection during drag */
.slider-track,
.case-card {
    user-select: none;
    -webkit-user-select: none;
}

.case-img img {
    width: 275px;
    height: 300px;
    object-fit: cover;
    display: block;
    cursor: pointer;
}

.case-content {
    padding: 20px;
    flex: 1;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.blog-content::-webkit-scrollbar {
    display: none;
}

.case-study-stat-list {
    margin-top: auto;
}

.case-content .case-title {
    font-size: 19px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--dark);
}

.case-content p {
    color: var(--gray);
    margin-bottom: 15px;
}

.case-study-stat-list .col-6 {
    padding: 0;
}

.case-study-stat-list .col-6:nth-of-type(1) {
    border-right: 1px solid var(--gray);
}

.case-content .case-study-stat-list .stat-item .case-study-stat-number {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--dark);
}

.case-content .case-study-stat-list .stat-item .case-study-stat-label {
    font-size: 0.9rem;
}



/* Industry Section */
.industries-card {
    background-color: var(--white);
    border-radius: 12px;
    padding: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    align-items: center;
    flex-direction: column;
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.05);
    justify-content: center;
}

.industries-card:hover {
    border-color: var(--hover-color);
    box-shadow: 0 1px 5px 0.5px var(--hover-color);
}

.industries-icon {
    font-size: 1.8rem;
    margin-right: 20px;
    color: var(--primary-color);
    transition: all 0.3s ease;
    flex-shrink: 0;
    width: 50px;
    text-align: center;
}

.industries-card:hover .industries-icon {
    transform: scale(1.1);
}

.industries-title {
    font-weight: 600;
    color: var(--text-color);
    margin: 0;
    font-size: 1rem;
    transition: all 0.3s ease;
    word-break: break-word;
    max-width: 100%;
    margin-bottom: 10px;
}

.industries-card img {
    width: 50px;
    height: 50px;
    margin: 15px;
}

.industries-description {
    color: var(--gray);
}


/* Testimonial Section */
.testimonials-section {
    position: relative;
    overflow: hidden;
    background: linear-gradient(270deg, #ffffff, #edf8ff);
}

.section-left {
    margin-top: 30px;
    padding-right: 30px;
}

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

.section-left p {
    font-size: 1.1rem;
}

.testimonial-slider-wrapper {
    position: relative;
    overflow: hidden;
}

.testimonial-slider {
    position: relative;
    height: auto;
    transition: height 0.5s ease;
}

.testimonial-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transform: translateX(100%);
    transition: transform 1.5s ease-out;
    will-change: transform;
    z-index: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none !important;
    user-select: none !important;
}

.testimonial-slide .row {
    padding: 10px;
}

.testimonial-slide.active {
    position: relative;
    opacity: 1;
    transform: translateX(0%);
    z-index: 2;
    display: block !important;
}

.testimonial-slide.exit-left {
    left: -100%;
    opacity: 0;
    z-index: 1;
}

.testimonial-card {
    background: var(--white);
    border-radius: 15px;
    padding: 25px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    height: fit-content;
    display: flex;
    flex-direction: column;
}

.testimonial-text {
    color: var(--dark);
}

.client-info {
    display: flex;
    align-items: center;
}

.client-details {
    margin-left: 10px;
    margin-top: 10px;
}

.client-name {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.client-position {
    font-size: 14px;
    color: var(--gray);
}



/* Blog Section*/
/* .blog-section {
margin-bottom: 3rem;
} */

.blog-cards-wrapper {
    overflow: hidden;
    position: relative;
}

.blog-slider-track {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    transition: transform 0.5s ease;
    transform: translateX(0px);
    padding: 0;
}

.blog-slider-track.no-transition {
    transition: none !important;
}

.blog-slide {
    flex: 0 0 calc(33.333% - 30px);
    max-width: calc(33.333% - 30px);
    box-sizing: border-box;
}

.blog-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card {
    background: #fff;
    border-bottom: 5px solid var(--primary);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
    transition: all 0.3s ease;
    height: 550px;
    display: flex;
    flex-direction: column;
}

.blog-image-wrapper {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.blog-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.blog-date-overlay {
    position: absolute;
    bottom: 5px;
    font-weight: 600;
    right: 10px;
    background: var(--primary);
    color: var(--white);
    font-size: 14px;
    padding: 4px 10px;
    border-radius: 20px;
    /* box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2); */
}



.blog-image {
    object-fit: fill;
    border-bottom: 1px solid #eee;
}

.blog-content {
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex: 1;
    padding: 20px;
    text-align: left;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.blog-content::-webkit-scrollbar {
    display: none;
}


.blog-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 15px;
}

.blog-keywords {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 0;
}


.tag {
    background: var(--secondary-light);
    color: var(--secondary);
    font-size: 0.8rem;
    font-weight: bold;
    padding: 4px 10px;
    border-radius: 9px;
    display: inline-block;
}

.blog-content p {
    font-size: 15px;
    color: var(--gray);
    margin: 7px 0 14px;
    transition: color 0.3s ease;
}

.read-more {
    font-size: 1rem;
    font-weight: 500;
    color: var(--dark);
    display: inline-block;
    transition: all 0.3s ease;
}

.read-more:hover {
    color: var(--primary);
}

/* .slider-dots {
display: none;
} */



/* FAQ Section */
.faq-section {
    background: linear-gradient(90deg, #ffffff, #edf8ff);
}

.accordion-button {
    border: none;
    border-radius: 8px !important;
}

.faq-section .accordion .accordion-item {
    margin-bottom: 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
}

.faq-section .accordion-button {
    color: var(--dark) !important;
    font-size: 17px;
    font-weight: 500;
    text-decoration: none;
    padding: 0 30px 0 70px;
    height: 70px;
    display: block;
    width: 100%;
    text-align: left;
    background: #fff !important;
    position: relative;
    transition: all 0.3s ease-in-out;
    border-radius: 0 !important;
    border: none;
    border-bottom: 1px solid #ddd;
}

.faq-section .accordion-button::before {
    content: '\f067';
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    left: 30px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    color: var(--secondary);
    border: 1px solid var(--secondary);
    border-radius: 50%;
    font-size: 10px;
    text-align: center;
    line-height: 18px;
    transition: 0.3s;
}

.faq-section .accordion-button.active::before {
    content: '\f068';
    color: var(--primary);
    border: 1px solid var(--primary);
    font-weight: 900;
}

.accordion-button:focus {
    border: none;
    box-shadow: none;
}

.faq-section .accordion-body {
    display: none;
    padding: 20px 30px;
    color: rgba(30, 48, 86, 0.8);
    background: #fff;
    border-top: 1px solid #ddd;
}

.faq-section .accordion .accordion-item:first-child .accordion-button {
    border-top-left-radius: 8px !important;
    border-top-right-radius: 8px !important;
}

.faq-section .accordion-item.open:last-child .accordion-button {
    border-bottom-left-radius: 8px !important;
    border-bottom-right-radius: 8px !important;
}

.accordion-item.open .accordion-body {
    display: block;
}


/* Contact Us */
.contact-section {
    background: linear-gradient(#f9fdff);
}

.newsletter-header {
    text-align: center;
    margin-bottom: 30px;
}

.newsletter-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--secondary-light) 0%, var(--secondary-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 10px 20px rgba(75, 108, 183, 0.3);
    animation: newsletter-pulse 2s infinite;
}

.newsletter-icon i {
    font-size: 40px;
    color: white;
}

.newsletter-header h2 {
    font-size: 28px;
    color: #2d3748;
    margin-bottom: 10px;
    font-weight: 700;
}

.newsletter-header p {
    color: #718096;
    font-size: 16px;
    line-height: 1.6;
}

.newsletter-header p span {
    color: var(--primary-dark);
    font-weight: 600;
}

.newsletter-form {
    margin-top: 20px;
}

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

.input-group input {
    width: 100%;
    padding: 10px 20px 10px 45px;
}

.input-group i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #a0aec0;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(75, 108, 183, 0.4);
}

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

.submit-btn:active {
    transform: translateY(0);
}

#newsletterMessage {
    margin-top: 15px;
    padding: 5px;
    border-radius: 8px;
    text-align: center;
    font-size: 14px;
    transition: all 0.3s ease;
}

.privacy-note {
    margin-top: 20px;
    font-size: 15px;
    color: var(--gray);
    text-align: center;
}

.privacy-note a {
    color: var(--primary-dark);
    font-weight: 600;
    text-decoration: none;
}

@keyframes newsletter-pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 10px 20px rgba(75, 108, 183, 0.3);
    }

    50% {
        transform: scale(1.05);
        box-shadow: 0 15px 30px rgba(75, 108, 183, 0.4);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 10px 20px rgba(75, 108, 183, 0.3);
    }
}

.contact-item i {
    color: var(--primary);
    margin-right: 0.5rem;
}

.benefits-left {
    border-right: 1px solid var(--border-color);
}

.benefits-list i {
    color: var(--primary-dark);
    margin-right: 0.5rem;
}

.benefits-list li {
    margin-bottom: 0.5rem;
}

.left-panel {
    border-right: 1px solid var(--border-color);
}

.left-panel ul {
    line-height: 2rem;
}

.benefits-right {
    line-height: 2;
}



/* Footer Section */
.footer-section {
    background: linear-gradient(180deg, #f9fdff, #edf8ff);
}

.footer-logo {
    width: 75%;
    height: auto;
}

.logo-about-list {
    line-height: 27px;
    padding: 15px;
}

.logo-about-list p {
    color: var(--gray);
}

.menu-list {
    padding-top: 15px;
    line-height: 35px;
}

.menu-list ul li {
    color: var(--gray);
}

.menu-list ul li a {
    color: var(--gray);
    text-decoration: none;
    transition: all 0.2s ease;
}

.menu-list ul li a:hover {
    color: var(--primary);
    padding-left: 8px;
}

.service-list {
    padding-top: 15px;
    line-height: 35px;
}

.service-list ul li {
    color: var(--gray);
}

.service-list ul li a {
    color: var(--gray);
    text-decoration: none;
    transition: all 0.2s ease;
}

.service-list ul li a:hover {
    color: var(--primary);
    padding-left: 8px;
}

.contact-list {
    padding-top: 15px;
    line-height: 35px;
}

.contact-list ul li {
    color: var(--gray);
}

.contact-list ul li a {
    display: inline-block;
    /* change this to block if you want full width hover */
    color: var(--gray);
    text-decoration: none;
    transition: all 0.2s ease;
}

.contact-list ul li a:hover {
    color: var(--primary);
    padding-left: 8px;
}


.social-icon {
    background-color: var(--secondary);
    color: var(--white);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
}

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

.copyright-terms-list {
    border-top: 1px solid var(--border-color);
}

.copyright-terms-list>p:nth-of-type(1) {
    color: var(--gray);
}

.copyright-terms-list>p:nth-of-type(1) span {
    color: var(--primary-dark);
    font-weight: 600;
}

.copyright-terms-list>p:nth-of-type(2)>a {
    color: var(--gray);
}

.copyright-terms-list>p:nth-of-type(2)>a:hover {
    color: var(--primary);
}


/* List Blog Page */
.blog-list {
    background: linear-gradient(0deg, #f8fafc, #e0f2fe);
}

.blog-category-card {
    border: none;
    border-radius: 15px;
    background-color: #fff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
}

.blog-category-card h5 a {
    color: var(--dark);
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
}

.blog-category-card h5 a:hover {
    color: var(--primary);
    cursor: pointer;
}

.blog-category-card p {
    color: var(--gray);
}

.icon-box {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    margin-bottom: 10px;
    font-size: 20px;
}

.icon-tech {
    background-color: #ffb000;
}

.icon-service {
    background-color: #007bff;
}

.icon-industries {
    background-color: #00a99d;
}

.icon-solutions {
    background-color: #9c6ade;
}

.discover-link {
    font-weight: 500;
    color: var(--dark);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline;
    padding: 0;
    margin: 0;
    line-height: 1;
}

.discover-link:hover {
    color: var(--primary);
    text-decoration: none;
    padding-left: 0;
}

.search-wrapper {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}

.search-text {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--gray);
}

.search-row {
    display: flex;
}

.search-input {
    padding: 12px 16px;
    border: 1px solid var(--secondary);
    border-radius: 27px 0 0 27px;
    outline: none;
    font-size: 16px;
    color: #555;
    min-width: 300px;
    border-right: none;
}

.search-input:focus {
    border-color: var(--primary);
    border-right: none;
}

.search-button {
    background-color: var(--secondary);
    color: white;
    border: 1px solid var(--secondary);
    border-radius: 0 27px 27px 0;
    font-weight: 600;
    padding: 12px 20px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.search-button:hover {
    background-color: var(--primary);
    border-color: var(--primary);
}

/* Load More Button */
.view-more-button {
    display: flex;
    justify-content: center;
}

.view-more-button button {
    border: none;
}



/* Category List Blog Page */
.category-list-blogs {
    background: linear-gradient(0deg, #f8fafc, #e0f2fe);
}

.category-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 150px;
    box-sizing: border-box;
}

.search-group {
    display: flex;
    align-items: center;
    gap: 0;
}

.search-input {
    padding: 12px 16px;
    border: 1px solid var(--secondary);
    border-radius: 27px 0 0 27px;
    outline: none;
    font-size: 16px;
    color: #555;
    min-width: 300px;
    border-right: none;
}

.search-input:focus {
    border-color: var(--primary);
    border-right: none;
}

.tags-wrapper {
    margin: 1.5rem 0;
    /* equivalent to mt-12 */
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    /* equivalent to gap-2 */
}

.tag {
    padding: 0.25rem 0.75rem;
    /* px-3 py-1 */
    border-radius: 9999px;
    /* rounded-full */
    font-size: 0.875rem;
    /* text-sm */
}

.search-button {
    background-color: var(--secondary);
    color: white;
    border: 1px solid var(--secondary);
    border-radius: 0 27px 27px 0;
    font-weight: 600;
    padding: 12px 20px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.search-button:hover {
    background-color: var(--primary);
    border-color: var(--primary);
}



/* Bloge Detail Page */
.blog-detail-desktop {
    background: linear-gradient(0deg, #f8fafc, #e0f2fe);
}

.blog-contact {
    display: flex;
    padding: 0 20px;
    gap: 10px;
    max-width: 1400px;
    margin: 0 auto;
}

.sidebar {
    flex: 0 0 280px;
}

.sticky-left-sidebar {
    position: sticky;
    top: 120px;
    background-color: white;
    padding: 10px;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.sticky-right-sidebar {
    position: sticky;
    top: 120px;
    padding: 10px;
    border-radius: 10px;
}

.sidebar-title {
    font-size: 1.25rem;
    color: var(--dark);
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--border-color);
}

.toc-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.toc-item {
    padding: 0.5rem 0;
    border-left: 3px solid transparent;
    transition: all 0.3s ease;
}

.toc-item a {
    color: #4b5563;
    text-decoration: none;
    display: block;
    transition: color 0.2s;
}

.toc-item a:hover {
    color: var(--primary);
}

.progress-indicator {
    height: 4px;
    background: #e5e7eb;
    margin-top: 1rem;
    border-radius: 2px;
}

.progress-bar {
    height: 100%;
    width: 0;
    background: #3b82f6;
    border-radius: 2px;
    transition: width 0.3s ease;
}

.content {
    flex: 1;
    min-width: 0;
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.author-container {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.meta-info {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    color: var(--dark);
    font-size: 0.9rem;
}


.featured-image {
    margin-bottom: 2.5rem;
    border-radius: 8px;
    overflow: hidden;
}

.featured-image img {
    width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}

.frameworks-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.framework-card {
    background: #f9fafb;
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.framework-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

/* Right Sidebar Enhancements */
.sidebar-card {
    background: var(--white);
    padding: 1rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    margin-bottom: 1.5rem;
}

.sidebar-card h4 {
    color: var(--dark);
    font-size: 1.25rem;
    padding-bottom: 0.5rem;
    margin-bottom: 1rem;
    border-bottom: 2px solid var(--border-color);
}

.sidebar-card p {
    color: var(--gray);
    margin-bottom: 0;
}

.sidebar-card a {
    display: inline-block;
    color: var(--dark);
    text-decoration: none;
    transition: color 0.2s;
}

.sidebar-card a:hover {
    color: var(--primary);
}

.related-list {
    list-style: none;
    padding: 0;
}

.related-list li {
    margin: 1rem 0;
}

.related-posts {
    margin-bottom: 2rem;
}

.related-posts h4 {
    margin-bottom: 1rem;
    font-size: 1.25rem
}

.related-posts ul {
    list-style: none;
    padding: 0;
}

.related-posts li {
    margin-bottom: 0.75rem;
}

.related-posts a {
    color: var(--dark);
    text-decoration: none;
    transition: color 0.2s;
}

.related-posts a:hover {
    color: var(--primary);
    text-decoration: none;
}


/* Career Section */
.career-hero-section {
    background: linear-gradient(0deg, #f8fafc, #e0f2fe);
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.career-hero-list {
    color: var(--dark);
    line-height: 1.3;
    font-size: 3rem;
    word-break: break-word;
}

.career-hero-list span {
    color: var(--primary);
}

.career-hero-list {
    width: 80%;
}

.career-image-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-template-rows: repeat(9, 60px);
    gap: 10px;
    max-width: 500px;
    margin: auto;
}

/* Image styles */
.career-image-grid img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
}

/* Positioning images in random style */
.img1 {
    grid-column: 1 / 3;
    grid-row: 5 / 7;
}

.img2 {
    grid-column: 7 / 5;
    grid-row: 2 / 5;
}

.img3 {
    grid-column: 3 / 5;
    grid-row: 3 / 7;
}

.img4 {
    grid-column: 2 / 5;
    grid-row: 9 / 7;
}

.img5 {
    grid-column: 5 / 7;
    grid-row: 5 / 9;
}

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


.perks-title {
    font-size: 1.5rem;
    color: var(--dark);
    margin-bottom: 1rem;
    font-weight: bold;
}

.perks-subtitle {
    width: 90%;
    margin: 1rem auto;
    font-size: 1.1rem;
    color: var(--gray);
}

.perks-card {
    background: linear-gradient(0deg, #f8fafc);
    border-radius: 12px;
    padding: 15px;
    transition: all 0.3s ease;
    display: flex;
    align-items: start;
    flex-direction: column;
    text-align: start;
    border: 1px solid #ddd;
    justify-content: center;
}

.column-1 {
    margin-top: 25px;
}

.column-3 {
    margin-top: 25px;
}


.perks-card img {
    width: 60px;
    height: 60px;
}

.perks-card-title {
    font-size: 1rem;
    font-weight: 600;
    margin-top: 5px;
}

.perks-description {
    color: var(--gray);
    font-size: 0.95rem;
}

.perks-image {
    text-align: center;
    /* padding: 20px; */
}

.perks-image img {
    max-width: 100%;
    height: auto;
    border-radius: 30px;
}

.job-section {
    /* background: linear-gradient(0deg, #f8fafc, #e0f2fe); */
    /* background: var(--white) */
}

.job-card {
    background-color: #fff;
    border-radius: 8px;
    padding: 30px;
    margin: 15px auto;
    border: 1px solid #ddd;
}

.job-header h4 {
    margin-bottom: 1rem;
    color: var(--primary);
    font-weight: bold;
}

.job-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.info-box {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 5px 20px 5px 0;
    font-size: 16px;
    color: #333;
    min-width: 150px;
}

.info-box i {
    font-size: 21px;
    color: var(--secondary-dark);
}

.info-text {
    display: flex;
    flex-direction: column;
    line-height: 1.3;
}

.label {
    font-size: 14px;
    color: gray;
}

.details-button {
    background-color: none;
    border: 1px solid var(--secondary);
    color: var(--secondary);
}

.details-button:hover {
    border: 1px solid var(--primary);
    color: var(--primary);
}

.job-divider {
    border: none;
    height: 1px;
    background: var(--dark);
    margin: 15px 0;
}

.job-details-wrapper {
    display: none;
    margin-top: 20px;
}

.job-description p {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 15px;
    line-height: 1.7rem;
}

.job-description h5 {
    color: var(--primary-dark);
    font-weight: bold;
    margin-bottom: 15px;
}

.job-description ul {
    margin-bottom: 15px;
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.job-description li {
    display: flex;
    align-items: center;
    font-size: 15px;
    margin-bottom: 10px;
    line-height: 1.5rem;

}

.job-description i::before {
    content: url('../images/tick-bullet.svg');
    display: inline-block;
    width: 16px;
    height: 16px;
    margin-right: 10px;
    margin-top: 6px;
}

.apply-btn {
    text-align: right;
}


.apply-section {
    /* background: linear-gradient(0deg, #f8fafc, #e0f2fe); */
    text-align: center;
}

.career-left-panel {
    display: flex;
    align-items: center;
    justify-content: center;
    border-right: 1px solid var(--border-color);
}

.custom-input {
    border: none !important;
    border-bottom: 2px solid #ccc !important;
    border-radius: 0 !important;
    background-color: transparent !important;
    box-shadow: none !important;
}

.custom-input:focus {
    border-bottom-color: var(--secondary) !important;
    outline: none !important;
    box-shadow: none !important;
}

.custom-input-icon {
    border-top: none !important;
    border-right: none !important;
    border-bottom: 2px solid #ccc !important;
    background: transparent !important;
    border-radius: 0 !important;
    padding-left: 8px;
    padding-right: 8px;
    display: flex;
    align-items: center;
}

.select2-container--default .select2-selection--single {
    border: none !important;
    border-bottom: 1px solid #aaa !important;
    border-radius: 0 !important;
    padding: 0;
    height: auto;
    background: transparent;
    margin-top: 10px;
}

.select2-container--default.select2-container--focus .select2-selection--single {
    border: none !important;
    border-bottom: 1px solid var(--gray) !important;
    outline: none;
    box-shadow: none;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 100%;
}

.select2-container--default .select2-results__option {
    border: none !important;
}

.select2-container--open .select2-dropdown {
    border: 1px solid #ddd !important;
    border-top: none !important;
}

.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
    background-color: var(--primary) !important;
    color: white;
}

.iti {
    width: 100%;
}

/* Tablet CSS */
@media (max-width: 1025px) {

    /* Comman CSS */
    body {
        text-align: center;
    }

    .section-title {
        font-size: 0.9rem;
    }

    .section-subtitle {
        font-size: 2rem;
    }


    /* Breadcrumb Section */
    .breadcrumb-wrapper {
        padding: 15px 20px;
    }

    .breadcrumb {
        justify-content: center;
    }


    /* Header Section */
    .codechain-header {
        display: none !important;
    }


    /* Navbar Section */
    .mobile-navbar {
        position: sticky;
        top: 0;
        z-index: 1060;
        background: white;
    }


    /* Mobile Drawer */
    .mobile-menu {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 320px;
        background-color: #fff;
        box-shadow: -4px 0 10px rgba(0, 0, 0, 0.1);
        transition: right 0.3s ease;
        z-index: 1050;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }

    .mobile-menu.open {
        right: 0;
    }

    .mobile-menu-header {
        position: sticky;
        top: 0;
        z-index: 1061;
        border-bottom: 1px solid #eee;
        background: var(--white);
    }

    .social-icons {
        display: flex;
        justify-content: space-evenly;
        margin-top: 16px;
        color: var(--primary);
        font-size: 1.2rem;
        margin-bottom: 20px;
    }

    .contact-info p {
        font-size: 1rem;
        text-align: start;
    }

    .contact-info p a {
        text-decoration: none;
        color: var(--dark);
    }

    .contact-info p i {
        padding-right: 5px;
        color: var(--primary);
    }

    .home {
        position: relative;
        border-bottom: 2px solid var(--light-gray);
    }

    .mobile-menu-toggle {
        background: transparent;
        border: none;
        padding: 0;
        margin: 0;
        color: var(--gray);
        font-size: 1.5rem;
        outline: none;
        box-shadow: none;
    }

    .mobile-menu-links li {
        margin: 12px 0;
    }

    .mobile-menu-links a {
        color: #333;
        text-decoration: none;
        font-weight: 500;
        display: block;
        padding: 8px 0;
        text-align: left;
    }

    .mobile-menu-links li a i {
        color: var(--primary);
    }

    .mobile-menu-overlay {
        position: fixed;
        top: 0;
        left: 0;
        height: 100vh;
        width: 80vw;
        background: rgba(0, 0, 0, 0.4);
        opacity: 0;
        visibility: hidden;
        z-index: 1050;
        transition: opacity 0.3s ease;
    }

    .mobile-menu-overlay.active {
        opacity: 1;
        visibility: visible;
    }

    .accordion-toggle {
        background: none;
        border: none;
        padding: 8px 0;
        color: #333;
        width: 100%;
        text-align: left;
        position: relative;
        border-bottom: 2px solid var(--light-gray);
    }

    .accordion-toggle::after,
    .home::after {
        content: "";
        position: absolute;
        left: 0px;
        bottom: -2px;
        width: 40px;
        height: 2px;
        background-color: var(--primary);
    }

    .accordion-toggle i {
        color: var(--primary);
    }

    .accordion-toggle .dropdown-icon {
        transition: transform 0.3s ease;
    }

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

    .submenu {
        list-style: none;
        padding-left: 15px;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease;
    }

    .submenu.open {
        max-height: 1500px;
    }

    .submenu li a {
        font-size: 0.95rem;
        color: #444;
        display: block;
        padding: 0;
    }

    .hire-btn {
        width: 100%;
        border: none;
        background-color: var(--secondary);
        color: white;
        font-size: 1.1rem;
        padding: 5px;
        margin-bottom: 10px;
        border-radius: 20px;
    }

    .menu-footer {
        margin-bottom: 100px;
    }

    #hireUsModal .modal-dialog {
        max-width: 600px;
        margin: 0 auto;
    }

    .modal {
        z-index: 1070;
    }

    .modal-backdrop {
        z-index: 1069;
    }

    .modal .form-label {
        text-align: left;
        display: block;
        width: 100%;
    }


    /* Hero Section */
    .hero-section h1 {
        font-size: 2.5rem;
        margin: 0 auto
    }

    .hero-img {
        max-width: 80%;
    }

    #lottie-animation {
        width: 500px;
        margin: 0 auto;
    }

    /* About Us Section */
    .about-us-description {
        font-size: 1rem;
        margin-bottom: 1.5rem;
        max-width: 692px;
    }

    .about-us-buttons {
        justify-content: center;
        margin: 1rem;
    }

    .stat-item {
        margin-bottom: 0;
    }


    /* Stat Cards Section */
    .count-card-description {
        line-height: normal;
    }

    .trust-badges {
        justify-content: center;
        gap: 0.5rem;
        margin-top: 2rem;
        padding: 0.75rem 1rem;
    }

    .stat-cards {
        scroll-margin-top: 100px;
    }

    .stat-text .stat-number {
        font-size: 1.75rem;
    }

    .diamond-grid {
        position: relative;
        width: 500px;
        height: 500px;
        overflow: hidden;
        margin: 0 auto;
    }

    .diamond-card {
        width: 140px;
        height: 140px;
    }


    .diamond-card.top {
        top: 50px;
        left: 50%;
    }

    .diamond-card.left {
        top: 50%;
        left: 5%;
    }

    .diamond-card.right {
        top: 50%;
        right: 5%;
    }

    .diamond-card.bottom {
        bottom: 10%;
        left: 50%;
    }

    .diamond-card.center {
        width: 140px;
        height: 140px;
    }

    .diamond-card .card-content img {
        width: 45px;
        height: 45px;
    }


    /* Our Feature Section */
    .feature-card {
        padding: 20px 15px;
    }


    /* Service Section */
    .service-card {
        height: 350px;
    }

    .service-content {
        align-items: center;
    }

    .service-technology {
        justify-content: center;
    }

    .plus-icon {
        width: auto;
        padding: 6px 12px;
        border-radius: 20px;
        font-size: 14px;
        font-weight: 500;
        color: var(--dark);
    }

    .service-card .plus-icon::before {
        content: "→ Know More";
    }

    .service-card:hover .plus-icon {
        width: auto;
        padding: 6px 12px;
        font-size: 14px;
        font-weight: 500;
        color: var(--dark);
    }

    .service-card:hover .plus-icon::before {
        content: "→ Know More";
    }

    .service-content {
        align-items: center;
    }


    /* Agile Process Section */
    .process-step {
        padding: 30px 15px;
    }


    /* Case Study Section */
    .case-card {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .case-img img {
        width: 300px;
    }

    .step1 {
        top: 415px;
        left: 20px;
    }

    .step2 {
        top: 315px;
        left: 110px;
    }

    .step3 {
        top: 235px;
        left: 220px;
    }

    .step4 {
        top: 200px;
        left: 355px;
    }

    .step5 {
        top: 235px;
        left: 480px;
    }

    .step6 {
        top: 315px;
        left: 600px;
    }

    .step7 {
        top: 415px;
        left: 690px;
    }


    /* Indsutry Section */
    .industries-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 5px;
    }

    .industries-card img {
        margin-bottom: 12px;
    }


    /* Testimonial Section */
    .testimonial-text {
        text-align: start;
    }


    /* Blog Section */
    .blog-image-wrapper {
        height: 200px;
    }

    .blog-card {
        height: 500px;
    }

    .blog-slide {
        flex: 0 0 calc(50% - 8px);
        max-width: calc(50% - 8px);
    }

    .blog-card {
        box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
    }

    .blog-slider-track {
        display: flex;
        flex-wrap: nowrap;
        gap: 7px;
        transition: transform 0.4s ease-in-out;
        will-change: transform;
    }

    /* .slider-dots .dot {
    width: 10px;
    height: 10px;
    background: #bbb;
    border-radius: 50%;
    cursor: pointer;
}

.slider-dots .dot.active {
    background: var(--primary);
} */


    /* FAQ Section */
    .faq-section .accordion .accordion-item {
        margin-bottom: 10px;
    }


    /* Contact US Section */
    .left-panel {
        border: none;
    }

    .logo-about-list .d-flex {
        justify-content: center;
    }

    .newsletter-list {
        padding: 0;
    }


    /* List Blog Page */
    .blog-category-card {
        justify-content: space-around;
        align-items: center;
    }

    .search-wrapper {
        align-items: center;
        text-align: center;
    }

    .search-text {
        padding-right: 0;
    }

    .search-row {
        justify-content: center;
    }

    .search-input {
        min-width: 250px;
    }


    /* Category List Blog Page */
    .category-header {
        min-height: 100px;
    }


    /* Blog Details Page */
    .blog-section {
        /* padding: 1rem; */
        margin-bottom: 0rem;
        max-width: 100%;
        overflow-x: hidden;
    }

    .benefits-list {
        list-style: none;
        padding-left: 1.5rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
        white-space: normal;
        max-width: 100%;
    }

    .benefits-list li {
        margin-bottom: 0.5rem;
        line-height: 1.5;
        white-space: nowrap;
    }

    .blog-detail-tablet {
        background: linear-gradient(0deg, #f8fafc, #e0f2fe);
        text-align: start;
    }

    .blog-detail-tablet .toc-item a {
        white-space: normal;
        overflow-wrap: break-word;
        word-break: break-word;
    }

    .sticky-sidebar {
        margin-top: 10px;
    }

    .author-container {
        justify-content: center;
        margin: 1rem;

    }
}

/* Mobile CSS */
@media (max-width: 576px) {
    body {
        text-align: center;
    }


    /* Breadcrumb Section */
    .breadcrumb-wrapper {
        padding: 20px 20px;
    }

    /* Navbar Model Section */
    #hireUsModal .modal-dialog {
        max-width: 400px;
        margin: 0 auto;
    }

    /* Hero Section */
    .hero-section h1 {
        font-size: 1.9rem;
    }

    .hero-list {
        margin: 0 auto;
    }

    .section-title {
        font-size: 0.8rem;
    }

    .section-subtitle {
        font-size: 1.7rem;
    }


    .hero-button {
        padding: 0.50rem 2rem;
    }

    #lottie-animation {
        width: 100%;
    }


    /* About Section */
    /* .about-us-section {
    padding: 1rem 0;
} */

    .about-us-subtitle {
        text-align: center;
    }

    .about-us-description {
        text-align: center;
    }

    .about-us-buttons {
        justify-content: center;
        margin: 1rem;
    }

    .about-stat-list {
        margin-bottom: 0px;
    }

    .about-img-two {
        height: 50vh;
    }

    .about-img-two .main-about-image img {
        height: 50vh;
    }

    .about-img-two .sub-about-image {
        width: 150px;
    }

    .diamond-grid {
        position: relative;
        width: 100%;
        max-width: 380px;
        height: 450px;
        margin: 0 auto;
    }

    .diamond-card {
        width: 120px;
        height: 120px;
    }

    .diamond-card .stat-number {
        font-size: 1.4rem;
    }

    .diamond-card .stat-label {
        font-size: 0.85rem;
    }

    .diamond-card.right {
        right: 6%;
    }

    .diamond-card.left {
        left: 6%;
    }

    .count-card-description {
        font-size: 1rem;
        margin-bottom: 1rem;
        line-height: normal;
    }

    .trust-badges {
        gap: 0.5rem;
        padding: 0.75rem 1.25rem;
        margin-top: 0;
        justify-content: center;
        align-items: center;
    }


    /* Our Feature Section */
    .feature-cards .col-md-6 {
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 15px !important;
        margin-bottom: 1.5rem;
        border: none !important;
        display: block;
    }

    .feature-cards .col-md-6:nth-child(odd) .feature-card {
        flex-direction: row;
    }

    .feature-cards .col-md-6:nth-child(even) .feature-card {
        flex-direction: row-reverse;
    }

    .feature-card {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        gap: 1rem;
        padding: 15px;
        background-color: #fff;
        border-radius: 12px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    }

    .feature-icon {
        width: 60px;
        height: 60px;
        object-fit: contain;
        flex-shrink: 0;
    }

    .feature-text {
        flex: 1;
    }

    .feature-title {
        font-weight: 600;
        font-size: 1rem;
        color: var(--dark, #222);
        margin-bottom: 0.5rem;
        line-height: 1.3;
    }

    .feature-description {
        font-size: 0.9rem;
        color: var(--gray, #666);
    }



    /* Services Section */
    .service-card {
        height: 400px;
    }



    /* Agile Process Section */
    .agile-process-section {
        background: linear-gradient(360deg, #ffffff, #edf8ff);
    }

    .process-step {
        background-color: var(--white);
        border-radius: 15px;
        padding: 20px;
        height: 100%;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        transition: all 0.3s ease;
        border: 1px solid #e9ecef;
        text-align: center;
        perspective: 800px;
    }

    .process-step:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    }

    .process-step h6 {
        font-weight: 600;
        font-size: 1.1rem;
        color: var(--dark);
        margin-bottom: 0.7rem;
        line-height: 1.3;
    }

    .process-step p {
        font-size: 0.9rem;
        color: var(--gray);
        line-height: 1.6;
        margin-bottom: 0;
        text-align: center;
    }

    .process-step:hover .step-icon {
        transform: scale(1.1);
    }


    /* Technology Section */
    .tech-icon img {
        width: 65px;
        height: 65px;
    }


    /* Case Study */
    .case-studies-section {
        background: linear-gradient(360deg, #ffffff, #edf8ff);
    }

    .slider-wrapper {
        overflow: hidden;
        position: relative;
    }


    .slider-track {
        display: flex;
        transition: transform 0.4s ease-in-out;
        will-change: transform;
    }

    .case-card {
        flex: 0 0 100%;
        max-width: 100%;
        padding: 15px 15px;
        margin: 0;
    }

    .case-inner {
        min-height: 420px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }


    .case-img img {
        width: 100%;
        height: auto;
        object-fit: cover;
    }

    .case-content {
        padding: 15px;
    }



    /* Industry Section */
    .industries-row .col-6 {
        padding: 5px 10px 5px 10px;
    }

    .industries-card {
        padding: 0px 5px 0px 5px;
    }

    .industries-description {
        font-size: 0.9rem;
    }


    /* Testimonial Section */
    .testimonials-section {
        background: linear-gradient(360deg, #ffffff, #edf8ff);
    }

    .mobile-testimonial-slider {
        position: relative;
        overflow: hidden;
        height: 400px;
        border-radius: 10px;
    }

    .testimonial-text {
        color: var(--gray);
        font-size: 0.9rem;
    }

    .mobile-testimonial-slider .testimonial-card {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        opacity: 0;
        transform: translateX(100%);
        transition: all 0.6s ease-in-out;
    }

    .mobile-testimonial-slider .testimonial-card.active {
        opacity: 1;
        transform: translateX(0);
        position: relative;
    }

    .mobile-testimonial-slider .testimonial-card.exiting {
        transform: translateX(-100%);
        opacity: 0;
    }



    /* Blog Section */
    .blog-image-wrapper {
        height: 200px;
    }

    .blog-card {
        height: 500px;
    }

    .blog-slide {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .blog-slider-track .blog-slide:nth-of-type(1) {
        padding: 0 10px 0 10px;
    }

    .blog-slider-track .blog-slide:nth-of-type(2) {
        padding: 0 15px 0 5px;
    }

    .blog-slider-track .blog-slide:nth-of-type(3) {
        padding-right: 25px;
    }

    /* FAQ Section */
    .faq-section {
        background: linear-gradient(360deg, #ffffff, #edf8ff);
    }

    .faq-section .accordion-button {
        height: 80px;
        font-size: 16px;
    }

    .faq-section .accordion-body {
        font-size: 15px;
    }

    /* Contact US Section */
    .contact-section {
        padding-left: 1rem !important;
        padding-right: 1rem !important;
    }

    .left-panel {
        border: none;
    }

    .left-panel ul {
        text-align: start;
    }

    .contact-item {
        font-size: 0.9rem;
    }

    .benefits-list li {
        padding: 0;
        white-space: break-spaces;
    }

    .benefits-left {
        border: none;
    }

    .menu-list ul {
        line-height: 33px;
    }

    .menu-list ul li {
        font-size: 0.9rem;
    }

    .contact-list ul li {
        font-size: 0.9rem;
    }



    /* Footer Section */

    .logo-about-list div:nth-of-type(2) {
        justify-content: center;
    }

    .copyright-terms-list p span {
        color: var(--primary);
    }

    .copyright-terms-list p {
        font-size: 0.9rem;
    }


    /* Category List Blog Page */
    .category-header {
        flex-direction: column;
    }

    .search-wrapper {
        flex-direction: column;
    }

    .search-input {
        padding: 7px 16px;
    }

    .search-button {
        padding: 7px 16px;
    }


    /* Blog Detail Page */
    .sticky-sidebar {
        position: static !important;
        top: 120px !important;
        z-index: 2;
    }

    .sticky-right-sidebar {
        padding: 0;

    }

    /* Career Section */
    .left-content {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .career-hero-list {
        font-size: 2rem;
    }

    .career-image-grid {
        grid-template-rows: repeat(7, 60px);
    }

    .img1 {
        grid-row: 3 / 5;
    }

    .img2 {
        grid-row: 1 / 4;
    }

    .img3 {
        grid-row: 2 / 5;
    }

    .img4 {
        grid-row: 7 / 5;
    }

    .img5 {
        grid-row: 3 / 7;
    }

    .perks-subtitle {
        font-size: 1rem;
    }

    .perks-card {
        align-items: center;
    }

    .career-left-panel {
        border: none;
    }

    .info-box {
        min-width: 0;
        margin: 0;
    }

    .column-1 {
        margin-top: 0;
    }

    .column-3 {
        margin-top: 0;
    }

    .job-description li {
        text-align: start;
        line-height: 2rem;
    }

    .job-description p {
        text-align: start;
    }
}