:root {
    --color-primary: #ef4343;
    --color-secondary: #9333ea;
    --text-dark: #000000;
    --text-light: #595959;
    --color-text-dark: #0f1729;
    --color-text-light: #fafafa;
    --color-text-primary: #0F1729;
    --color-text-muted: #71717a;
    --color-border: #e4e4e7;
    --color-white: #ffffff;
    --color-bg-light: #fafafa;
    --gradient-primary: linear-gradient(90deg, #ef4343 0%, #9333ea 100%);
    --gradient-secondary: linear-gradient(179deg, rgba(239, 67, 67, 0.05) 0%, rgba(168, 85, 247, 0.05) 98.52%, #fafafa 197.05%);
    --color-text-light: #71717a;
    --color-background: #fafafa;
    --color-border: #e4e4e7;
    --color-background-light: #fafafa;
    --color-background-tag: #F4F4F5;
    --color-accent-tag-bg: rgba(239, 67, 67, 0.10);
    --color-text-accent: #EF4343;
    --color-primary-dark: linear-gradient(90deg, #ef4343 0%, #9333ea 100%);
}

body {
    margin: 0;
    font-family: 'Segoe UI', 'Roboto', 'Inter', sans-serif;
    background-color: var(--color-bg-light);
    color: var(--text-dark);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

* {
    box-sizing: border-box;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
    margin: 0;
    padding: 0;
}


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

.container {
    width: 100%;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 32px;
    padding-right: 32px;
}

.logo img, .custom-logo-link img {
    height: 30px;
    width: auto;
}

/* Header Footer Css Start */
/* CSS for section section:Header */
.header-section {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background-color: rgba(250, 250, 250, 0.8);
    border-bottom: 1px solid var(--color-border);
    backdrop-filter: blur(1px);
    -webkit-backdrop-filter: blur(1px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.header-section.sticky {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    background: #fff;
    /* or rgba(255,255,255,0.95) for slight transparency */
    transform: translateY(0);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 64px;
}

.logo img {
    height: 30px;
    width: auto;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 32px;
}

.main-nav ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 32px;
}

.nav-links a {
    font-family: "Inter", sans-serif;
    font-weight: 500;
    font-size: 14px;
    color: #0f1729;
    transition: color 0.3s;
    border: none !important;
    padding: 0 !important;
}

.nav-links a:hover, .current-menu-item>a {
    color: #d10a33;
}

.main-navigation {
    display: flex !important;
    align-items: center;
    gap: 32px;
    height: auto;
    justify-content: end;
}

.mobile-nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 30px;
    height: 25px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1000;
}

.mobile-nav-toggle span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: #000;
    border-radius: 2px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-link {
    font-size: 14px;
    line-height: 20px;
    transition: color 0.3s;
}

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

.btn-quote {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 8px 16px;
    background: var(--gradient-primary);
    color: #ffffff;
    border-radius: 10px;
    font-size: 14px;
    line-height: 20px;
    font-weight: 400;
}

.btn-quote:hover, .btn-quote:focus {
    color: #ffffff;
}

.mobile-nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
}


/* CSS for section section:Footer */
.main-footer-section {
    background-color: rgba(211, 7, 60, 0.04);
    padding: 54px 0 0;
}

.main-footer-section .container {
    /* border: 1px solid #212529; */
    padding-top: 24px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    padding-bottom: 24px;
}

.footer-column {
    font-size: 16px;
}

.footer-contact {
    width: 20%;
}

.footer-contact .custom-logo {
    margin-bottom: 12px;
}

.footer-column.links {
    width: 20%;
    display: flex;
    flex-direction: column;
    margin-left: 6px;
    justify-content: center;
}

.footer-column.footer-address {
    width: 45%;
}

.footer-contact .social-icon {
    width: 30px;
}

.address-sec {
    display: flex;
    gap: 20px;
    justify-content: space-between;
}

.footer-contact h4, .footer-address h4, .links h4 {
    font-family: "Segoe UI", sans-serif;
    font-weight: 600;
    font-size: 18px;
    color: #D3073C;
    margin: 0 0 13px 0;
}

.footer-contact h5 {
    font-family: "Segoe UI", sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 21px;
    color: var(--text-dark);
    margin: 0 0 12px 0;
}

.footer-contact ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.footer-contact li img {
    margin-top: 2px;
}

.footer-contact li span,
.footer-contact li a {
    font-size: 14px;
    line-height: 1.5;
    color: #0d0d0d;
}

.footer-contact li .address {
    max-width: 260px;
}

.footer-divider {
    width: 1px;
    background: linear-gradient(180deg,
            #ffffff 0%,
            #D3073C 50%,
            #ffffff 100%);
    align-self: stretch;
    min-height: 128px;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links ul li {
    line-height: 20px;
}

.footer-links a {
    font-size: 18px;
    color: var(--text-dark) !important;
}

.footer-social {
    display: flex;
    gap: 20px;
    margin-top: 72px;
}

.footer-social a {
    display: block;
    width: 36px;
    height: 36px;
}

.footer-copyright {
    border-top: 1px solid #212529;
    padding: 11px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 18px;
}

.footer-copyright p, .footer-legal-links ul li a {
    margin-bottom: 0;
    font-size: 16px;
    color: #000;
    font-weight: 500;
}

.footer-legal-links {
    display: flex;
    gap: 24px;
}

.footer-legal-links ul {
    display: flex;
    gap: 20px;
    list-style: none;
    margin: 0;
}


@media (max-width: 992px) {}

/* Header Footer Css End */

/* Home Page CSS Start */
.hero-section {
    position: relative;
    padding-top: 128px;
    padding-bottom: 80px;
    text-align: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(174deg, rgba(239, 67, 67, 0.05) 0%, rgba(168, 85, 247, 0.05) 90.75%, #fafafa 181.5%);
    z-index: -1;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    position: relative;
    z-index: 1;
}

.hero-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background-color: rgba(239, 67, 67, 0.1);
    border-radius: 9999px;
}

.hero-pill span {
    font-size: 14px;
    line-height: 20px;
    font-weight: 400;
    color: #CE0037;
}

.hero-title {
    font-size: 55px;
    line-height: 65px;
    font-weight: 700;
    color: #0f1729;
    margin: 0;
    max-width: 1200px;
}

.hero-title span {
    background: linear-gradient(90deg, #ef4343 0%, #9333ea 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

#dynamic-word-wrapper {
    position: relative;
    display: inline-block;
}

#dynamic-word {
    display: inline-block;
    font-weight: 700;
    background: linear-gradient(90deg, #ff4154, #a544ff);
    -webkit-background-clip: text;
    color: transparent;
    transition: opacity .5s ease, transform .5s ease;
}

/* === Smooth Animated Underline === */
#dynamic-word-wrapper .underline {
    position: absolute;
    bottom: -6px;
    left: 0;
    height: 3px;
    width: 0%;
    background: linear-gradient(90deg, #ff4154, #a544ff);
    transition: width .5s ease;
    border-radius: 2px;
}

/* Text animations */
.word-enter {
    opacity: 0;
    transform: translateY(10px);
}

.word-enter-active {
    opacity: 1;
    transform: translateY(0);
}

.word-exit {
    opacity: 1;
    transform: translateY(0);
}

.word-exit-active {
    opacity: 0;
    transform: translateY(-10px);
}

.hero-subtitle {
    font-size: 20px;
    line-height: 28px;
    color: #71717a;
    max-width: 896px;
    margin: 0;
}

.hero-actions {
    display: flex;
    gap: 16px;
    margin-top: 30px;
    height: 45px;
}

.btn-start {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 32px;
    background: var(--gradient-primary);
    color: #fff;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 400;
}

.btn-work {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 32px;
    background-color: var(--color-bg-light);
    border: 1px solid var(--color-border);
    color: var(--color-text-dark);
    border-radius: 10px;
    font-size: 14px;
    font-weight: 400;
}

.btn-start:hover, .btn-start:focus {
    color: #fff;
}

.btn-work:hover, .btn-work:focus {
    color: #0f1729;
}

.hero-service-section {
    display: flex;
    align-items: center;
    gap: 14px;
}

.hero-service-section .inner-service-box {
    display: flex;
    padding: 10px;
    background: rgba(255, 255, 255, 0.4);
    gap: 10px;
    border: 1px dashed #CE0037;
    border-radius: 10px;
}

.hero-service-section .inner-service-box h2 {
    font-size: 16px;
    line-height: 28px;
    font-weight: 600;
    color: #000000;
    margin-bottom: 0;
}

.icon-relative {
    position: relative;
    margin-top: 64px;
}

.hero-icon-left {
    position: absolute;
    left: 25%;
    bottom: -58px;
    opacity: 0.2;
}

.hero-icon-right {
    position: absolute;
    right: 25%;
    bottom: -58px;
    opacity: 0.2;
}

.deco-svg-1 {
    width: 120px;
    height: 120px;
    animation: float 6s ease-in-out infinite;
}

.deco-svg-2 {
    width: 120px;
    height: 120px;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {

    0%,
    to {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

.stats-section {
    background-color: var(--color-white);
    padding: 49px 0;
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
}

.stats-grid {
    display: flex;
    justify-content: center;
    gap: 32px;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    flex: 1;
    max-width: 424px;
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    line-height: 1;
    margin: 0;
}

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

.stat-label {
    font-size: 16px;
    line-height: 24px;
    color: var(--color-text-muted);
    margin: 0;
}

.partners-section {
    padding: 80px 0;
    background-color: #fafafa;
}

.partners-content {
    display: flex;
    align-items: center;
    gap: 30px;
}

.partners-text {
    flex: 0 0 35%;
}

.partners-text h2 {
    font-family: 'Segoe UI', sans-serif;
    font-weight: bold;
    font-size: 36px;
    line-height: 40px;
    text-align: left;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.partners-text p {
    font-family: 'Segoe UI', sans-serif;
    font-size: 18px;
    line-height: 24px;
    text-align: left;
    color: var(--text-light);
    max-width: 450px;
    margin-bottom: 0;
}

/* .partners-logos-wrapper {
    flex: 1;
    position: relative;
    overflow: hidden;
}

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

.partner-logo-box {
    background-color: rgba(224, 224, 224, 0.1);
    border: 1.14px solid rgba(206, 0, 55, 0.6);
    border-radius: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 24px;
    height: 97px;
}

.partner-logo-box img {
    max-height: 50px;
    width: auto;
    object-fit: contain;
}

.partners-logos-wrapper::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100px;
    z-index: 2;
    left: 0;
    background: linear-gradient(to right, #fafafa, transparent);
}

.partners-logos-wrapper::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100px;
    z-index: 2;
    right: 0;
    background: linear-gradient(to left, #fafafa, transparent);
} */

.partners-logos-wrapper {
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 40px;
    position: relative;
}

.partners-logos-row {
    display: flex;
    width: max-content;
    white-space: nowrap;
}

.partners-logos {
    display: flex;
}

.partner-logo-box {
    background-color: rgba(224, 224, 224, 0.1);
    border: 1.14px solid rgba(206, 0, 55, 0.6);
    border-radius: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 24px;
    height: 97px;
    width: 200px;
    margin: 0 10px;
}

.partner-logo-box img {
    max-height: 50px;
    object-fit: contain;
}

/* Scroll animations */
.left-to-right {
    animation: scroll-left-right 30s linear infinite;
}

.right-to-left {
    animation: scroll-right-left 30s linear infinite;
}

.partners-logos-wrapper.mobile {
    display: none;
}

@keyframes scroll-left-right {
    0% {
        transform: translateX(-50%);
    }

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

@keyframes scroll-right-left {
    0% {
        transform: translateX(0%);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Gradient fade edges */
.partners-logos-wrapper::before,
.partners-logos-wrapper::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100px;
    z-index: 2;
}

.partners-logos-wrapper::before {
    left: 0;
    background: linear-gradient(to right, #fafafa, transparent);
}

.partners-logos-wrapper::after {
    right: 0;
    background: linear-gradient(to left, #fafafa, transparent);
}


.how-we-work {
    padding: 80px 0;
}

.how-we-work p, .portfolio-section p {
    font-family: 'Segoe UI', sans-serif;
    font-size: 18px;
    line-height: 24px;
    text-align: center;
    color: var(--text-light);
    margin-bottom: 35px;
}

.how-we-work h2, .portfolio-section h2 {
    font-family: 'Segoe UI', sans-serif;
    font-weight: bold;
    font-size: 36px;
    line-height: 40px;
    text-align: center;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.we-work-main img {
    max-width: 1000px;
    margin: 0 auto;
}

/* .work-main-sec .bg-work-img {
    position: absolute;
} */

/* .work-flow-section {
    width: 358px;
    height: 358px;
    background-color: rgb(255, 255, 255);
    box-shadow: rgba(0, 0, 0, 0.25) 0px 0px 8px 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    border-radius: 50%;
    left: 50%;
    transform: translateX(-50%);
    bottom: -20px;
} */

.work-flow-section:nth-child(2) {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 60px;
}

.work-flow-section:nth-child(3) {
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    left: 47%;
}

.work-flow-section:nth-child(4) {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 155px;
}

.work-flow-section .work-inner-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: 282px;
    position: relative;
    z-index: 2;
    gap: 20px;
}

.work-flow-section .work-inner-content h3 {
    font-size: 26px;
    line-height: 26px;
    font-weight: 600;
    color: #0F1729;
}

.work-flow-section .work-inner-content p {
    font-size: 20px;
    line-height: 24px;
    font-weight: 400;
    color: #353535;
    margin-bottom: 0;
}

.cta-section {
    padding: 80px 0;
    background: var(--gradient-primary);
}

.cta-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 24px;
}

.cta-content h2 {
    font-size: 36px;
    font-weight: 400;
    line-height: 40px;
    color: var(--color-white);
    margin: 0;
}

.cta-content p {
    font-size: 18px;
    line-height: 28px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 504px;
    margin: 0;
}

.btn-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 32px;
    background-color: #f4f4f5;
    color: var(--color-text-dark);
    border-radius: 10px;
    font-size: 14px;
    font-weight: 500;
}

.btn-cta:hover, .btn-cta:focus {
    color: var(--color-text-dark);
}

.portfolio-section {
    background-color: #fafafa;
    padding: 80px 0;
}

.portfolio-grid {
    margin-top: 40px;
    display: grid;
    grid-template-columns: 2fr 1fr;
    grid-template-rows: auto auto;
    gap: 24px;
    grid-template-areas:
        "countmee summaryai"
        "ielts summaryai";
}

.portfolio-card {
    background-color: #e7ebf2;
    padding: 28px;
    display: flex;
}

.portfolio-card-text {
    flex: 1;
}

.portfolio-card-text h3 {
    font-family: "Segoe UI", sans-serif;
    font-weight: 600;
    font-size: 28px;
    line-height: 1.3;
    color: var(--text-black);
    margin: 0 0 16px 0;
}

.portfolio-card-text p {
    font-family: "Segoe UI", sans-serif;
    font-size: 16px;
    line-height: 26px;
    color: #565656;
    margin: 0;
    text-align: left;
}

.portfolio-stats {
    display: flex;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.portfolio-stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 19px;
    flex: 1;
}

.stat-circle {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    background-color: var(--background-white);
    box-shadow: 0px 0px 4px 0px rgba(206, 0, 55, 0.25);
    display: flex;
    justify-content: center;
    align-items: center;
}

.stat-circle span {
    font-family: "Segoe UI", sans-serif;
    font-weight: 600;
    font-size: 18px;
    color: #ce0037;
}

.portfolio-stat-item p {
    font-family: "Segoe UI", sans-serif;
    font-size: 16px;
    color: var(--text-black);
    max-width: 120px;
    text-align: center;
}

.portfolio-card-image {
    background-color: var(--background-white);
    box-shadow: inset 0px 0px 4px 0px rgba(78, 144, 255, 0.4);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.portfolio-card-image {
    width: 370px;
    height: 370px;
}

.card-countmee {
    grid-area: countmee;
    flex-direction: row;
    align-items: center;
    gap: 20px;
}

.card-ielts {
    grid-area: ielts;
    flex-direction: row-reverse;
    align-items: center;
    gap: 20px;
}

.card-summary-ai {
    grid-area: summaryai;
    flex-direction: column;
    gap: 20px;
}

/* Home Page CSS Start */

/* Portfolio Page Css Start */

.project-section {
    padding: 80px 0 30px;
}

.stats-section.mb-3 {
    margin-bottom: 30px;
}

.portfolio-intro-section {
    padding: 150px 0 80px;
    text-align: center;
    overflow: hidden;
    position: relative;
}

.intro-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    text-align: center;
}

.portfolio-intro-section h1 {
    font-size: 55px;
    line-height: 65px;
    font-weight: 700;
    color: #0f1729;
    max-width: 700px;
    margin: 0 auto;
    margin-bottom: 0;
}

.portfolio-intro-section h1 span {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

.portfolio-intro-section p {
    font-size: 20px;
    line-height: 28px;
    color: var(--color-text-muted);
    margin: 0;
    max-width: 415px;
}

.portfolio-grid-section {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.portfolio-card-section {
    background-color: var(--color-background);
    border: 1px solid var(--color-border);
    border-radius: 12px;
    box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.card-content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex-grow: 1;
    background-color: #fff;
    position: relative;
}

.category-tag {
    align-self: flex-start;
    background-color: var(--color-background-tag);
    padding: 3px 11px;
    border-radius: 9999px;
    font-size: 12px;
    line-height: 16px;
    color: var(--color-text-primary);
}

.card-content h3 {
    font-size: 20px;
    line-height: 28px;
    font-weight: 700;
}

.card-content p {
    font-size: 14px;
    line-height: 20px;
    color: var(--color-text-secondary);
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.tech-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding-top: 4px;
    padding-bottom: 12px;
    max-height: 72px;
}

.tech-tag {
    background-color: var(--color-accent-tag-bg);
    color: var(--color-text-accent);
    padding: 4px 8px;
    border-radius: 10px;
    font-size: 12px;
    line-height: 16px;
    height: fit-content;
}

/* .card-bottom {
    position: absolute;
    bottom: 24px;
    width: calc(100% - 48px);
} */

.case-study-button {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    padding: 12px 17px;
    background-color: var(--color-background-soft);
    border: 1px solid var(--color-border);
    border-radius: 10px;
    font-size: 14px;
    line-height: 20px;
    color: var(--color-text-primary);
    transition: background-color 0.3s ease;
}

.case-study-button:hover, .case-study-button:focus {
    color: var(--color-text-primary);
}

/* Portfolio Page Css End */

/* Service Page Css Start */

.portfolio-intro-section.service h1 {
    max-width: 770px;
}

.portfolio-intro-section.service p {
    max-width: 490px;
}

.services-grid-section {
    padding: 80px 0;
    background-color: var(--color-background-light);
}

.services-grid-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.service-card {
    background-color: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: 12px;
    box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.05);
    padding: 32px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 24px;
}

.service-card-content {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.service-card-content h3 {
    font-size: 24px;
    line-height: 1.33;
    font-weight: 600;
    color: var(--color-text-primary);
}

.service-card-content p {
    font-size: 16px;
    line-height: 1.5;
    color: var(--color-text-secondary);
    min-height: 48px;
    margin-bottom: 0;
}

.card-icon {
    width: 48px;
    height: 48px;
}

.card-features {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin: 0;
    margin-top: 8px;
}

.card-features li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    line-height: 1.4;
    color: var(--color-text-primary);
}

.bullet {
    width: 6px;
    height: 6px;
    background-color: #ef4343;
    border-radius: 9999px;
    flex-shrink: 0;
}

.card-footer {
    display: flex;
    justify-content: end;
    align-items: center;
    margin-top: auto;
}

.learn-more {
    background-color: var(--color-background-light);
    border: 1px solid var(--color-border);
    border-radius: 10px;
    padding: 10px 17px;
    font-size: 14px;
    font-weight: 400;
    color: var(--color-text-primary);
    display: flex;
    align-items: center;
    gap: 8px;
    transition: background-color 0.2s;
}

.how-we-work-section {
    background-color: var(--color-white);
    padding: 80px 0;
}

.how-we-work-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 48px;
}

.how-we-work-header {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.how-we-work-header h2 {
    font-family: "Segoe UI", sans-serif;
    font-weight: 600;
    font-size: 36px;
    line-height: 40px;
    text-align: center;
    color: var(--text-dark);
    margin-bottom: 0;
}

.how-we-work-header p {
    font-family: "Segoe UI", sans-serif;
    font-size: 18px;
    line-height: 24px;
    text-align: center;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

.main-work-process {
    display: flex;
    gap: 75px;
    margin-top: 30px;
}

.inner-work-process {
    position: relative;
}

.inner-work-process .work-flow {
    position: relative;
    background: var(--card-bg) no-repeat center/cover;
    width: 233px;
    height: 203px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.inner-work-process::before {
    content: "";
    background-color: var(--card-color);
    border-radius: 29px;
    padding: 0 15px;
    width: 260px;
    height: 174px;
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.process-badge {
    position: absolute;
    top: -24px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 60px;
    background: var(--card-color);
    border-radius: 50%;
    color: white;
    font-size: 34px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15);
    z-index: 3;
}

.icon {
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
}

.content {
    text-align: center;
    max-width: 168px;
}

.content h3 {
    font-size: 24px;
    line-height: 28px;
    font-weight: 600;
    color: #0F1729;
    margin-bottom: 20px;
}

.content p {
    font-size: 17px;
    line-height: 22px;
    font-weight: 400;
    color: #71717A;
    margin-bottom: 0;
}

.build-together {
    padding: 80px 0;
    background-color: var(--color-background-light);
}

.build-together.about {
    background-color: var(--color-white);
}

.cta-banner {
    background: var(--gradient-primary);
    border-radius: 16px;
    padding: 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 24px;
    text-align: center;
}

.cta-banner h2 {
    font-family: "Segoe UI", sans-serif;
    font-weight: 600;
    font-size: 36px;
    line-height: 42px;
    color: var(--color-white);
}


/* Service Page Css End */

/* About Us Page Css Start */

.story-content p {
    margin-bottom: 0;
}

.section-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 32px;
}

.about-title {
    font-size: 55px;
    line-height: 65px;
    font-weight: 700;
    color: #0f1729;
    max-width: 700px;
    margin: 0 auto;
    margin-bottom: 0;
}

.morp-gradient-text {
    background: linear-gradient(90deg, #ef4343 0%, #9333ea 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

.about-subtitle {
    font-size: 20px;
    line-height: 28px;
    color: var(--color-text-muted);
    margin: 0;
}

.video-container-outer {
    padding: 26px;
    border: 3.8px solid rgba(207, 2, 56, 0.2);
    border-radius: 22.7px;
    background-color: rgba(224, 224, 224, 0.1);
    height: 545px;
}

.video-container-inner {
    position: relative;
    height: 0;
    cursor: pointer;
}

.video-thumbnail-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 487px;
    z-index: 2;
}

.video-thumbnail {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 7.6px;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    transition: background-color 0.3s;
    border-radius: 7.6px;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    width: 101px;
    height: 101px;
    transition: transform 0.3s;
    z-index: 3;
}

.play-button img {
    width: 100%;
    height: 100%;
}

.video-container-inner iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 487px;
    border: none;
    z-index: 1;
    border-radius: 7.6px;
}

.story-section {
    padding: 60px 0;
    background-color: #fafafa;
}

.story-container {
    max-width: 832px;
    margin: 0 auto;
    padding: 0 16px;
}

.story-title {
    font-family: "Segoe UI Symbol", sans-serif;
    font-size: 30px;
    font-weight: 600;
    line-height: 36px;
    color: var(--color-text-dark);
    margin-bottom: 24px;
}

.story-content {
    display: flex;
    flex-direction: column;
    gap: 16px;
    color: var(--color-text-light);
    font-family: "Segoe UI Symbol", sans-serif;
    font-size: 16px;
    line-height: 24px;
}

.leadership-section {
    padding: 80px 0;
    background-color: var(--color-white);
}

.leadership-header {
    text-align: center;
    margin-bottom: 48px;
}

.leadership-header h2 {
    font-family: "Segoe UI Symbol", sans-serif;
    font-size: 36px;
    font-weight: 600;
    line-height: 40px;
    margin-bottom: 16px;
}

.leadership-header p {
    font-family: "Segoe UI Symbol", sans-serif;
    font-size: 16px;
    line-height: 24px;
    color: var(--color-text-light);
}

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

.leadership-card {
    background-color: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: 12px;
    box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.05);
    padding: 25px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.leadership-avatar {
    width: 128px;
    height: 128px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 25px;
    box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.25);
}

.leadership-name {
    font-family: "Segoe UI", sans-serif;
    font-size: 20px;
    font-weight: 500;
    line-height: 28px;
    margin-bottom: 4px;
}

.leadership-role {
    font-family: "Segoe UI", sans-serif;
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
    color: var(--color-primary);
    margin-bottom: 16px;
}

.leadership-bio {
    font-family: "Segoe UI", sans-serif;
    font-size: 14px;
    line-height: 20px;
    color: var(--color-text-light);
    margin-bottom: 24px;
    flex-grow: 1;
}

.leadership-socials {
    display: flex;
    gap: 16px;
}

.social-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background-color: var(--color-background);
    border: 1px solid var(--color-border);
    border-radius: 10px;
    transition: background-color 0.3s;
}

.video-section {
    padding: 80px 0;
}

.our-value-section {
    padding: 10px 0;
}

.values-section {
    padding: 80px 0;
    background-color: #fafafa;
}

.values-header {
    text-align: center;
    margin-bottom: 48px;
}

.values-header h2 {
    font-family: "Segoe UI Symbol", sans-serif;
    font-size: 36px;
    font-weight: 600;
    line-height: 40px;
    margin-bottom: 16px;
}

.values-header p {
    font-family: "Segoe UI Symbol", sans-serif;
    font-size: 18px;
    line-height: 24px;
    color: var(--color-text-light);
}


.our-value-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
}

.value-item {
    position: relative;
    width: 23%;
    height: 100%;
}

.value-bg {
    position: absolute;
    top: -10px;
    left: -10px;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.value-box {
    position: relative;
    background: #fff;
    padding: 15px 25px;
    border-radius: 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    z-index: 2;
    text-align: center;
}

.value-box h3 {
    font-size: 16px;
    font-weight: 700;
    color: #0d1b2a;
    margin-bottom: 8px;
}

.value-box p {
    font-size: 14px;
    line-height: 17px;
    color: #444;
    margin: 0;
}

/* About Us Page Css End */

/* Contact Page Css Start */
.contact-section1 {
    padding: 150px 0 80px;
    text-align: center;
    overflow: hidden;
    position: relative;
}

.contact-title {
    font-size: 55px;
    line-height: 65px;
    font-weight: 700;
    color: #0f1729;
    max-width: 700px;
    margin: 0 auto;
    margin-bottom: 20px;
}

.contact-subtitle {
    font-size: 20px;
    line-height: 28px;
    color: var(--color-text-muted);
    margin: 0;
}

.contact-section {
    padding: 80px 0 80px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

.form-card {
    background-color: var(--color-background-white);
    border: 1px solid var(--color-border);
    border-radius: 12px;
    padding: 33px;
    box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.05);
}

.info-sidebar {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.info-card {
    background-color: var(--color-background-white);
    border: 1px solid var(--color-border);
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.05);
}

.info-title {
    font-size: 24px;
    font-weight: 400;
    line-height: 32px;
    margin-bottom: 24px;
}

.info-description {
    font-size: 16px;
    line-height: 24px;
    color: var(--color-text-light);
    margin-bottom: 32px;
}

.contact-items-wrapper {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.contact-text h3 {
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    color: var(--color-text-dark);
    margin-bottom: 4px;
}

.contact-text p {
    font-size: 14px;
    line-height: 20px;
    color: var(--color-text-light);
    margin-bottom: 0;
}

.office-hours-card {
    border-color: rgba(239, 67, 67, 0.2);
}

.info-subtitle {
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    color: var(--color-text-dark);
    margin-bottom: 16px;
}

.office-hours-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 14px;
    margin: 0;
}

.office-hours-list li {
    display: flex;
    justify-content: space-between;
}

.info-card.guarantee-card {
    background: var(--gradient-primary);
    border: 1px solid var(--color-border);
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.05);
}

.guarantee-title {
    color: #ffffff;
}

.guarantee-text {
    font-size: 14px;
    line-height: 20px;
    color: #fff;
}

.form-title {
    font-size: 24px;
    font-weight: 400;
    line-height: 32px;
    margin-bottom: 24px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.form-group label {
    font-size: 14px;
    font-weight: 400;
    color: var(--color-text-dark);
}

.form-group input, .form-group textarea {
    width: 100%;
    padding: 10px 13px;
    font-size: 14px;
    font-family: var(--font-primary);
    background-color: var(--color-background-light);
    border: 1px solid var(--color-border);
    border-radius: 10px;
    color: var(--color-text-dark);
}


input.wpcf7-form-control.wpcf7-submit.has-spinner.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    background: var(--gradient-primary);
    color: #fff;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 500;
    border: none;
}

/* Contact Page Css End */

/* Case Study Detail Page Design */
.ast-separate-container {
    background-color: #f5f5f5 !important;
}

.casestudy-hero-section {
    padding: 110px 0 0;
}

.casestudy-hero-section .banner-img {
    width: 100%;
    height: 430px;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 172px;
    border-radius: 20px;
}

.casestudy-hero-section .banner-img span {
    background-color: #CE0037;
    border-radius: 10px;
    width: fit-content;
    padding: 5px 11px;
    font-size: 16px;
    line-height: 24px;
    font-weight: 500;
    color: #fff;
}

.casestudy-hero-section .banner-img h1 {
    font-size: 36px;
    line-height: 42px;
    color: #fff;
    margin: 10px 0 15px;
}

.casestudy-hero-section .banner-img p {
    font-size: 20px;
    line-height: 32px;
    color: #fff;
    margin-bottom: 0;
}

.project-summary-sec, .key-feature-sec, .challange-section {
    padding: 64px 0;
}

.inner-project-summary, .problem-statement-content, .key-feature-content, .challange-content {
    max-width: 1152px;
    margin: 0 auto;
}

.project-summary-sec .inner-project-summary h2, .problem-statement-content h2, .key-feature-content h2, .challange-content h2 {
    font-size: 30px;
    line-height: 36px;
    color: #1D2025;
    margin-bottom: 30px;
}

.inner-project-summary .summary-content {
    display: flex;
    align-items: center;
    gap: 32px;
}

.inner-project-summary .summary-content .left-sec {
    max-width: 380px;
    background-color: #fff;
    padding: 32px;
}

.inner-project-summary .summary-content .left-sec p {
    font-weight: 400;
    font-size: 18px;
    line-height: 30px;
    color: #1D2025;
    margin-bottom: 10px;
    text-align: justify;
}

.problem-statement-sec {
    background-color: #fff;
    padding: 64px 0;
}

.problem-statement-content .problem-content {
    background-color: rgba(211, 7, 60, 0.1);
    padding: 33px;
    border-radius: 8px;
    border-left: 3px solid #D3073C;
}

.problem-statement-content .problem-content p {
    margin-bottom: 0;
}

.feature-list-box {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.feature-list-box .feature-box {
    background-color: #fff;
    padding: 24px;
    width: 25%;
    max-width: 270px;
    border-radius: 8px;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.2);
}

.feature-list-box .feature-box img {
    border: 2px solid #D3073C;
    padding: 4px;
    border-radius: 8px;
    margin-bottom: 16px;
    width: 40px;
    height: 40px;
}

.feature-list-box .feature-box p {
    font-size: 18px;
    line-height: 28px;
    color: #1D2025;
    margin-bottom: 0;
}

.challange-list, .problem-content ul {
    padding: 0 32px;
    list-style: disc;
}

.challange-list li::marker, .problem-content ul li::marker {
    color: #D3073C;
}

.challange-list li {
    font-size: 18px;
    line-height: 30px;
    color: #1D2025;
    margin-bottom: 15px;
}

.casestudy-tech-section {
    padding: 40px 0;
    background-color: #fff;
}

.casestudy-tech-section .tech-bg {
    background: linear-gradient(90deg, rgba(211, 7, 60, 0.1) 0%, rgba(168, 85, 247, 0.1) 100%);
    display: flex;
    justify-content: center;
    border-radius: 20px;
    padding: 27px;
    gap: 80px;
}

.casestudy-tech-section .tech-bg img {
    height: 50px;
}

/* Privacy Policy CSS */

.privacy-policy .entry-title, .page-id-864 .entry-title {
    display: none;
}

.privacy-section, .terms-of-use-section {
    padding: 50px 0 0;
}

.privacy-section h1, .terms-of-use-section h1 {
    font-weight: bold;
}

.privacy-section h2, .terms-of-use-section h2 {
    font-size: 24px;
    line-height: 30px;
    font-weight: 600;
    margin-bottom: 12px;
}

.privacy-section h3, .terms-of-use-section h3 {
    font-size: 20px;
    line-height: 30px;
    margin-bottom: 10px;
    font-weight: 500;
}

.privacy-section ul, .terms-of-use-section ul {
    list-style: disc;
    padding-left: 40px;
}

.privacy-section p, .terms-of-use-section p {
    font-size: 16px;
    line-height: 25px;
    margin-bottom: 14px;
}

.privacy-section a, .terms-of-use-section a {
    color: #D3073C;
}