/* CSS Reset and Variables */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --color-primary: #D42027;
    --color-primary-light: #FCB922;
    --color-dark: #120036;
    --color-dark-alt: #000B33;
    --color-text: #545465;
    --color-text-alt: #545477;
    --color-bg: #FFF;
    --color-bg-light: #FCF2F2;
    --font-family: 'Plus Jakarta Sans', -apple-system, Roboto, Helvetica, sans-serif;
    --max-width: 1440px;
    --section-padding: 80px 20px;
}

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

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

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

/* Header */
.header {
    width: 100%;
    background: var(--color-bg);
    position: fixed;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.header-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 60px;
    height: 90px;
    min-height: 75px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    max-width: clamp(180px, 14.063vw, 270px);
    width: 100%;
    max-height: 51px;
    height: 100%;
    aspect-ratio: 5.29/1;
}

.logo-icon {
    width: 54px;
    height: auto;
    flex-shrink: 0;
}

.logo-text-group {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.logo-wordmark {
    font-size: 26px;
    font-weight: 700;
    line-height: 1.15;
}

.logo-insta {
    color: var(--color-dark);
}

.logo-resolv {
    color: var(--color-primary);
}

.logo-tagline {
    font-size: 12px;
    color: var(--color-text);
    font-weight: 400;
    letter-spacing: 0.01em;
}

.header-nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-toggle {
    display: none;
    width: 30px;
    height: 24px;
    position: relative;
    z-index: 1001;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.hamburger,
.hamburger::before,
.hamburger::after {
    display: block;
    width: 30px;
    height: 2px;
    background: var(--color-dark);
    position: absolute;
    transition: all 0.3s ease;
}

.hamburger {
    top: 50%;
    transform: translateY(-50%);
}

.hamburger::before {
    content: '';
    top: -8px;
}

.hamburger::after {
    content: '';
    bottom: -8px;
}

/* Toggle Active State */
.nav-toggle.active .hamburger {
    background: transparent;
}

.nav-toggle.active .hamburger::before {
    top: 0;
    transform: rotate(45deg);
}

.nav-toggle.active .hamburger::after {
    top: 0;
    transform: rotate(-45deg);
}

.nav-contact {
    font-size: 16px;
    font-weight: 500;
    color: var(--color-dark);
    text-decoration: none;
    transition: color 0.2s ease;
}

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

.nav-enquiry {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    background: var(--color-primary);
    color: #fff;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s ease, transform 0.2s ease;
}

.nav-enquiry:hover {
    background: #b81b21;
    transform: translateY(-1px);
}

/* Hero Section */
.hero {
    min-height: 770px;
    background: linear-gradient(90deg, #f46b2c 0%, #D42027 100%);
    position: relative;
    display: flex;
    align-items: stretch;
    justify-content: center;
    padding-top: 90px;
    padding-bottom: 152px;
    overflow: hidden;
}

.hero-content {
    width: 100%;
    max-width: var(--max-width);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    padding: 0 40px;
    position: relative;
    margin: 115px 0 130px;
}

/* Left phone – tilted left, anchored to bottom */
.hero-phone-left {
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    overflow: visible;
    padding-bottom: 0;
    position: absolute;
    left: 88px;
    bottom: -24px;
}

.hero-phone-left::after {
    position: absolute;
    content: '';
    background: url('../images/banner-right.svg') no-repeat 0 0;
    background-size: contain;
    width: 174px;
    height: 121px;
    top: 100px;
    left: calc(100% - 80px);
}


.hero-phone-img-left {
    width: 100%;
    max-width: 360px;
    min-width: 120px;
    height: auto;
    object-fit: contain;
    object-position: left bottom;
    transform-origin: bottom center;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.35));
}

/* Centre text */
.hero-text {
    color: var(--color-bg);
    text-align: center;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 1;
    width: 100%;
}

.hero-title {
    font-size: clamp(30px, 3.5vw, 56px);
    line-height: 1.15;
    margin-bottom: 12px;
    display: block;
    position: relative;
}

.hero-title .line {
    position: absolute;
    background: url(../images/hero-line.svg) no-repeat 0 0;
    background-size: contain;
    bottom: -28px;
    left: 40%;
    transform: translateX(-50%);
    width: 146px;
    height: 17px;
}

.hero-title-light {
    font-size: 64px;
    line-height: 1.2;
    display: block;
    font-weight: 300;
}

.hero-title-bold {
    display: block;
    font-weight: 800;
    line-height: 1.2;
    font-size: clamp(40px, 3.646vw, 70px);
}

.hero-underline {
    width: 140px;
    height: auto;
    margin: 0 auto 24px;
    flex-shrink: 0;
}

.hero-wave {
    width: 140px;
    height: auto;
    margin: 0 auto 24px;
    flex-shrink: 0;
    opacity: 0.35;
}

.hero-description {
    font-size: clamp(16px, 1.042vw, 20px);
    line-height: 1.55;
    max-width: 585px;
    padding: 60px 0 0;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 36px;
    background: var(--color-bg);
    color: var(--color-primary);
    border-radius: 50px;
    border: 2px solid var(--color-bg);
    font-size: 20px;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-top: 30px;
}

.cta-button:hover {
    background: transparent;
    color: var(--color-bg);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.hero-arrow {
    width: 60px;
    height: auto;
    opacity: 0.4;
    flex-shrink: 0;
}

.hero::after {
    position: absolute;
    content: '';
    background: url(../images/banner-curve.png) no-repeat bottom left;
    background-size: contain;
    left: 0;
    bottom: -1px;
    width: 100%;
    height: 152px;
}

/* Right phone – tilted right, anchored to bottom */
.hero-phone-right {
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    overflow: visible;
    position: absolute;
    right: 0;
    bottom: -240px;
}

.hero-phone-right::after {
    position: absolute;
    content: '';
    background: url('../images/banner-left.svg') no-repeat 0 0;
    background-size: contain;
    width: 87px;
    height: 122px;
    top: -75px;
    left: 70px;
}

.hero-phone-img-right {
    width: 100%;
    max-width: 460px;
    min-width: 120px;
    height: auto;
    object-fit: contain;
    object-position: right bottom;
    object-position: right bottom;
    transform-origin: bottom center;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.35));
}


/* Features Section */
.features-section {
    padding: 30px 20px 0;
    background: var(--color-bg);
    position: relative;
}


.features-container {
    max-width: var(--max-width);
    margin: 0 auto;
    position: relative;
}

.features-container .section-title {
    margin-top: -100px;
}

.section-title {
    font-size: 50px;
    font-weight: 700;
    color: var(--color-dark);
    text-align: center;
    margin-bottom: 20px;
    line-height: 1.2;
}

.future-section-title {
    font-size: 50px;
    font-weight: 700;
    color: var(--color-dark);
    text-align: left;
    padding-bottom: 60px;
    line-height: 1.2;
}

.section-description {
    font-size: clamp(18px, 1.5vw, 22px);
    color: var(--color-text);
    text-align: center;
    max-width: 940px;
    margin: 0 auto 60px;
    line-height: 1.5;
}

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

.feature-card {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.feature-icon {
    width: 140px;
    height: 140px;
    min-width: 75px;
    min-height: 75px;
    background: rgba(212, 32, 39, 0.06);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon svg {
    width: 100%;
    height: 100%;
}

.feature-icon img {
    max-width: 54px;
    min-width: 30px;
    width: 100%;
    height: auto;
}

.feature-title {
    font-size: 20px;
    font-weight: 500;
    color: var(--color-dark-alt);
    line-height: 1.35;
}

/* Solutions Section */
.solutions-section {
    padding: var(--section-padding);
    border-radius: 50px;
    /* margin: 40px 20px; */
}

.solutions-container {
    max-width: var(--max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.solutions-images {
    position: relative;
}

.solutions-main-image {
    width: 100%;
    border-radius: 20px;
}

.solutions-title {
    font-size: clamp(28px, 2.604vw, 50px);
    font-weight: 700;
    color: var(--color-dark);
    line-height: 1;
    margin-bottom: 30px;
}

.solutions-description {
    font-size: 18px;
    color: var(--color-text);
    line-height: 1.6;
    margin-bottom: 20px;
}

.benefits-heading {
    font-size: 22px;
    font-weight: 600;
    color: var(--color-dark);
    margin-bottom: 20px;
}

.dotted-list {
    list-style: none;
    margin-bottom: 30px;
}

.dotted-list li {
    position: relative;
    padding-left: 25px;
    font-size: clamp(16px, 0.938vw, 18px);
    color: var(--color-text);
    line-height: 1.8;
    margin-bottom: 12px;
}

.dotted-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 8px;
    height: 8px;
    background-color: var(--color-primary);
    border-radius: 50%;
}

.benefits-list {
    list-style: none;
}

.benefits-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 20px;
}

.benefits-list svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    margin-top: 4px;
}

.benefit-item-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.benefit-item-content span {
    font-size: clamp(16px, 1.042vw, 20px);
    font-weight: 600;
    color: var(--color-dark);
    line-height: 1.2;
}

.benefit-item-content p {
    font-size: clamp(16px, 0.938vw, 18px);
    color: var(--color-text);
    line-height: 1.5;
}

/* empower Section */

.empower-section {
    padding: 40px 20px;
}

.empower-inner {
    padding: 80px 60px 0;
    background: var(--color-bg-light);
    border-radius: 50px;
    margin: 40px 20px 0;
    max-width: var(--max-width);
    margin: 0 auto;
}

/* Industries Section */
.industries-section {
    padding: 40px 20px;
    background: var(--color-bg);
}

.industries-container {
    max-width: var(--max-width);
    margin: 0 auto;
}

.industries-header {
    text-align: center;
    margin: 0 auto clamp(50px, 5.208vw, 100px);
}

.industries-title {
    font-size: clamp(28px, 2.604vw, 50px);
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 20px;
}

.industries-description {
    font-size: clamp(16px, 1.146vw, 22px);
    color: var(--color-text);
    line-height: 1.6;
}

.industries-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(30px, 2.083vw, 40px) clamp(30px, 3.125vw, 60px);
}

.industry-item {
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

.industry-icon {
    width: clamp(40px, 3.646vw, 70px);
    height: auto;
    max-height: 70px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.industry-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.industry-content h3 {
    font-size: clamp(16px, 1.1458vw, 22px);
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 12px;
}

.industry-content p {
    font-size: clamp(16px, 0.938vw, 18px);
    color: var(--color-text);
    line-height: 1.5;
    margin-bottom: 14px;
}

.read-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--color-primary);
    font-size: clamp(16px, 0.938vw, 18px);
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
    transition: transform 0.2s ease;
}

.read-more-btn:hover {
    color: #b81b21;
}

.read-more-btn svg {
    transition: transform 0.3s ease;
}

/* .read-more-btn.active svg {
    transform: rotate(180deg);
} */

.expandable-content {
    max-height: 0;
    opacity: 0;
    margin-top: 0;
    padding-left: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, opacity 0.4s ease, margin-top 0.4s ease;
}

.expandable-content.active {
    max-height: 500px;
    opacity: 1;
    margin-top: 15px;
    transition: 0.5s ease-in-out;
}

.key-apps-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 12px;
}

.key-apps-list {
    list-style: none;
    margin-bottom: 20px;
}

.key-apps-list li {
    position: relative;
    padding-left: 15px;
    font-size: 16px;
    color: var(--color-text);
    margin-bottom: 8px;
}

.key-apps-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--color-dark);
    font-weight: bold;
}

.empower-container {
    max-width: 1041px;
    width: 100%;
    margin: 0 auto;
}

.video-wrapper {
    position: relative;
    margin: auto;
    overflow: hidden;
    max-width: 1041px;
    min-width: 260px;
    max-height: 564px;
}

.video-play-button {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 144px;
    height: 144px;
    background: rgba(212, 32, 39, 0.5);
    border-radius: 50%;
    cursor: pointer;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.video-play-button:hover {
    transform: translate(-50%, -50%) scale(1.08);
    background: rgba(212, 32, 39, 0.85);
}

.video-play-button::after {
    position: absolute;
    content: '';
    background: url(../images/play.png) no-repeat 0 0;
    background-size: 100%;
    width: 39px;
    height: 44px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.video-frame {
    width: 100%;
    display: block;
}

.video-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-dashboard {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 144px;
    height: 144px;
    transition: transform 0.3s ease;
}

.play-button:hover {
    transform: translate(-50%, -50%) scale(1.1);
}

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

.video-navigation {
    display: flex;
    justify-content: space-between;
    max-width: 600px;
    margin: 0 auto;
}

.challenges-grid .challenges-column:first-child {
    border-right: 1px solid #D42027
}

.nav-arrow {
    width: 70px;
    height: 70px;
    transition: transform 0.3s ease;
}

.nav-arrow:hover {
    transform: scale(1.1);
}

.nav-arrow svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 4px 35.6px rgba(0, 0, 0, 0.25));
}

/* Enhancements Section */
.enhancements-section {
    padding: var(--section-padding);
    background: var(--color-bg);
}

.enhancements-container {
    max-width: var(--max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.enhancement-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.enhancement-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    overflow-y: hidden;
}

.enhancement-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--color-primary);
    color: var(--color-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 20px;
    flex-shrink: 0;
    position: relative;
}

.enhancement-number::after {
    position: absolute;
    content: '';
    width: 1px;
    height: 100vh;
    background: var(--color-primary);
    left: 50%;
    top: calc(100% + 10px);
    transform: translateX(-50%);
}

.enhancement-item:last-child .enhancement-number::after {
    display: none;
}

.enhancement-text {
    padding-bottom: 20px;
}

.enhancement-text h3 {
    font-size: 22px;
    font-weight: 600;
    color: var(--color-dark);
    margin-bottom: 8px;
}

.enhancement-text p {
    font-size: 18px;
    color: var(--color-text);
    line-height: 1.6;
}

.enhancements-image {
    position: relative;
    border-radius: 50px;
    overflow: hidden;
}

.enhancement-bg {
    width: 100%;
    border-radius: 50px;
}

.enhancement-phone {
    position: absolute;
    top: -50px;
    left: -80px;
    width: 130%;
    max-width: none;
}

/* Challenges Section */

.challenges-container {
    padding: 80px 20px 0;
    background: var(--color-bg);
    border-radius: 50px 50px 0 0;
}

.challenges-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    border-radius: 50px;
    border: 1px solid var(--color-primary);
    border-bottom: none;
}

.challenges-title {
    text-align: center;
    margin-bottom: 60px;
}

.challenges-subtitle {
    display: block;
    font-size: clamp(35px, 3.5vw, 50px);
    font-weight: 700;
    color: var(--color-dark);
}

.challenges-highlight {
    display: block;
    font-size: clamp(30px, 3.646vw, 70px);
    font-weight: 700;
    color: var(--color-primary);
    line-height: normal;
}

.challenges-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    padding: 0 60px 90px;
    padding-bottom: 200px;
}

.column-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 30px;
}

.challenges-list {
    list-style: none;
}

.challenges-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    font-size: 22px;
    color: var(--color-dark);
    line-height: 2.3;
    margin-bottom: 5px;
}

.challenges-list svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    margin-top: 12px;
}

.design-section {
    margin-bottom: 100px;
}

.challenges-section {
    padding: 80px 20px 120px;
}

.design-container {
    padding: 94px 40px 0;
    background: linear-gradient(51deg, #D42027 19.77%, #FCB922 160.21%);
    border-radius: 50px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.design-phone {
    height: 100%;
    margin-left: 60px;
    position: relative;
}

.design-phone img {
    position: absolute;
    bottom: 0;
    left: 0;
    height: calc(100% + 200px);
    max-width: 530px;
    width: 100%;
    aspect-ratio: 0.7/1;
}

.design-phone svg {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 60px rgba(0, 0, 0, 0.3));
}

.design-content {
    color: var(--color-bg);
    max-width: 510px;
    width: 100%;
    padding-bottom: 94px;
}

.design-title {
    font-size: clamp(28px, 3.125vw, 60px);
    font-weight: 700;
    line-height: 1;
    margin-bottom: 30px;
}

.design-description {
    font-size: 22px;
    line-height: 1.3;
    margin-bottom: 40px;
}

.steps-title {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 20px;
}

.steps-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.step-item {
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 20px;
    font-weight: 600;
}

.step-number {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* FAQ Section */
.faq-section {
    padding: var(--section-padding);
    background: var(--color-bg-light);
}

.faq-container {
    max-width: 1000px;
    margin: 0 auto;
}

.faq-title {
    font-size: clamp(28px, 2.6042vw, 50px);
    font-weight: 700;
    color: var(--color-dark);
    text-align: center;
    margin-bottom: 60px;
    line-height: 1.7;
}

.faq-list {
    display: flex;
    flex-direction: column;
}

.faq-item {
    background: var(--color-bg-light);
    border-bottom: 1px solid #C8C8C8;
    padding-bottom: 25px;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 5px 0;
    cursor: pointer;
    gap: 20px;
}

.faq-question span {
    font-size: 22px;
    font-weight: 600;
    color: var(--color-dark);
    flex: 1;
}

.faq-toggle {
    width: 14px;
    height: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--color-dark);
    transition: transform 0.3s ease;
}

.faq-toggle svg {
    width: 14px;
    height: auto;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer p {
    padding: 10px 44px 0px;
    font-size: 18px;
    color: var(--color-text);
    line-height: 1.6;
}

.faq-item-open .faq-answer {
    max-height: 500px;
}

.faq-item-open .faq-toggle {
    transform: rotate(45deg);
}

/* Footer */
.footer {
    padding: 60px 20px 40px;
    background: #fff;
    border-top: 1px solid #eee;
}

.footer-container-new {
    max-width: var(--max-width);
    margin: 0 auto;
}

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

.footer-brand {
    flex: 1;
}

.footer-logo {
    width: 200px;
    height: auto;
    margin-bottom: 20px;
}

.footer-tagline {
    font-size: 16px;
    color: #000B33;
    line-height: 1.5;
}

.footer-contact {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-row {
    display: flex;
    gap: 40px;
}

.contact-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.contact-item.full-width {
    width: 100%;
}

.contact-label {
    font-size: 16px;
    font-weight: 700;
    color: #000B33;
    margin-bottom: 4px;
}

.contact-value {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    color: #000B33;
}

.contact-icon {
    width: 20px;
    height: 20px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    flex-shrink: 0;
}

.location-icon {
    background: url(../images/location.svg) no-repeat 0 0;
    background-size: 100%;
}

.phone-icon {
    background: url(../images/phone.svg) no-repeat 0 0;
    background-size: 100%;

}

.email-icon {
    background: url(../images/mail.svg) no-repeat 0 0;
    background-size: 100%;
}

.footer-apps {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: clamp(100px, 8.333vw, 160px);
}

.apps-label {
    font-size: 14px;
    font-weight: 700;
    color: var(--color-dark);
}

.apps-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.app-link {
    height: 53px;
    width: 100%;
    border-radius: 6px;
    overflow: hidden;
}

.app-link img {
    height: 100%;
    width: 100%;
    object-fit: contain;
}

.footer-divider {
    border: 0;
    border-top: 1px solid #eee;
    margin: 40px 0 25px;
}

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

.copyright {
    font-size: 17px;
    color: #2D3552;
}

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

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

.socialmedia-links-wrap a img {
    width: 26px;
    height: 26px;
    object-fit: contain;
}

.footer-links a {
    font-size: 14px;
    color: var(--color-text-alt);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus Styles */
button:focus-visible,
a:focus-visible {
    outline: 2px solid var(--color-primary);
    outline-offset: 4px;
}


/* Popup Styles */
.popup-overlay {
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(12px);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.popup-overlay.show {
    display: block;
    opacity: 1;
}

.contact-popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 450px;
    width: 90%;
    background: #fff;
    border-radius: 24px;
    padding: 40px;
    z-index: 1001;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.contact-popup.show {
    display: block;
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.contact-form-wrapper-in h3 {
    font-size: 28px;
    font-weight: 700;
    color: var(--color-dark);
    text-align: center;
    margin-bottom: 25px;
}

.contact-form-group-wrapper {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
    margin-bottom: 20px;
}

.contact-form-group {
    width: 100%;
}

.contact-form-group input,
.contact-form-group select,
.contact-form-group textarea {
    width: 100%;
    font-family: var(--font-family);
    background: #fff;
    border: 1px solid #E2E8F0;
    outline: none;
    border-radius: 12px;
    padding: 12px 15px;
    font-size: 16px;
    transition: border-color 0.2s ease;
}

.contact-form-group input:focus,
.contact-form-group select:focus,
.contact-form-group textarea:focus {
    border-color: var(--color-primary);
}

.contact-form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%2364748b'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'%3E%3C/path%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 18px;
    padding-right: 45px;
}

.btn-submit {
    background: var(--color-primary);
    color: #fff;
    font-family: var(--font-family);
    font-weight: 700;
    font-size: 16px;
    height: 54px;
    margin-top: 10px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    width: 100%;
    letter-spacing: 0.5px;
}

.btn-submit:hover {
    background: #b81b21;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(212, 32, 39, 0.2);
}

.btn-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.contact-popup-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 32px;
    height: 32px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease;
}

.contact-popup-close::before,
.contact-popup-close::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 2px;
    background: #64748B;
    border-radius: 2px;
}

.contact-popup-close::before {
    transform: rotate(45deg);
}

.contact-popup-close::after {
    transform: rotate(-45deg);
}

.contact-popup-close:hover {
    transform: rotate(90deg);
}

.contact-popup-close:hover::before,
.contact-popup-close:hover::after {
    background: var(--color-dark);
}

/* WhatsApp Button */
.whatsapp-button {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    z-index: 1000;
    transition: transform 0.3s ease;
}

.whatsapp-button:hover {
    transform: scale(1.1);
}

.whatsapp-button svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.18));
}


/* --- Blog Style Start --- */

.blog-page {
    padding: 120px 0 80px;
    background-color: #fff;
}

.blog-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 60px;
}

.breadcrumb {
    font-size: clamp(24px, 1.667vw, 32px);
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 30px;
}

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

.breadcrumb span {
    color: var(--color-text);
}

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

/* Custom Dropdown Styles */
.custom-dropdown {
    position: relative;
    width: 220px;
    cursor: pointer;
}

.dropdown-selected {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 20px;
    border: 1px solid #E2E8F0;
    border-radius: 8px;
    background: #fff;
    font-size: 16px;
    color: var(--color-text);
    transition: all 0.3s ease;
}

.dropdown-icon {
    width: 14px;
    height: 14px;
    transition: transform 0.3s ease;
}

.custom-dropdown.open .dropdown-icon {
    transform: rotate(180deg);
}

.custom-dropdown.open .dropdown-selected {
    border-color: var(--color-primary);
}

.dropdown-options {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    width: 100%;
    background: #fff;
    border: 1px solid #E2E8F0;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    display: none;
    z-index: 100;
    overflow: hidden;
}

.custom-dropdown.open .dropdown-options {
    display: block;
}

.dropdown-option {
    padding: 12px 20px;
    font-size: 16px;
    color: var(--color-text);
    transition: background 0.2s ease, color 0.2s ease;
}

.dropdown-option:hover {
    background: #F8FAFC;
    color: var(--color-primary);
}

/* Blog Grid Styles */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px 30px;
    margin-bottom: 60px;
}

.blog-card {
    display: flex;
    flex-direction: column;
    text-decoration: none;
}

.blog-image {
    width: 100%;
    aspect-ratio: 16 / 10;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 24px;
}

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

.blog-card:hover .blog-image img {
    transform: scale(1.05);
}

.blog-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 18px;
    color: #94A3B8;
    margin-bottom: 16px;
}

.blog-dot {
    width: 6px;
    height: 6px;
    background: #94A3B8;
    border-radius: 50%;
}

.blog-title {
    font-size: 24px;
    font-weight: 700;
    line-height: 1.4;
    color: var(--color-dark);
    margin: 0;
    transition: color 0.3s ease;
}

.blog-card:hover .blog-title {
    color: var(--color-primary);
}

/* Pagination Styles */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-top: 40px;
}

.page-link {
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 44px;
    height: 44px;
    padding: 0 16px;
    border: 1px solid #E2E8F0;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 600;
    color: var(--color-dark);
    text-decoration: none;
    transition: all 0.3s ease;
}

.page-link.active {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: #fff;
}

.page-link:hover:not(.active) {
    border-color: var(--color-primary);
    color: var(--color-primary);
}

.page-link.prev,
.page-link.next {
    gap: 8px;
    min-width: 110px;
    font-size: 16px;
}

.page-link img {
    width: 12px;
    height: 12px;
}

.page-dots {
    font-size: 18px;
    color: var(--color-dark);
    padding: 0 8px;
}

/* --- Book a Demo Slide-out --- */

.demo-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(8px);
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

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

.demo-slideout {
    position: fixed;
    top: 0;
    right: 0;
    width: 480px;
    height: 100%;
    background: #fff;
    z-index: 2001;
    padding: 60px 40px;
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.15);
    transform: translateX(100%);
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

.demo-slideout.active {
    transform: translateX(0);
}

.demo-close {
    position: absolute;
    top: 25px;
    right: 25px;
    width: 32px;
    height: 32px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.demo-close:hover {
    transform: rotate(90deg);
}

.demo-close::before,
.demo-close::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 2px;
    background: #64748B;
}

.demo-close::before {
    transform: rotate(45deg);
}

.demo-close::after {
    transform: rotate(-45deg);
}

.demo-content h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 40px;
    text-align: left;
}

.demo-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

.demo-form-group label {
    font-size: 14px;
    font-weight: 600;
    color: #64748B;
}

.demo-form-group input {
    width: 100%;
    height: 48px;
    padding: 12px 16px;
    border: 1px solid #E2E8F0;
    border-radius: 8px;
    font-size: 16px;
    color: var(--color-dark);
    transition: all 0.3s ease;
}

.demo-form-group input::placeholder {
    color: #94A3B8;
}

.demo-form-group input:focus {
    border-color: var(--color-primary);
    outline: none;
    box-shadow: 0 0 0 4px rgba(212, 32, 39, 0.1);
}

.demo-submit {
    margin-top: 20px;
    height: 56px;
    background: var(--color-primary);
    color: #fff;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 32, 39, 0.2);
}

.demo-submit:hover {
    background: #b81b21;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 32, 39, 0.3);
}

/* RESPONSIVE DESIGN STARTS */

@media screen and (max-width: 1920px) {
    :root {
        --max-width: clamp(900px, 75vw, 1440px);
        --section-padding: clamp(40px, 4.1667vw, 80px) 20px;
    }

    .header-container {
        padding: 0 3.125vw;
        height: 4.6875vw;
    }

    .header-nav {
        gap: 1.5625vw;
    }

    .nav-contact {
        font-size: clamp(14px, 0.8333vw, 16px);
    }

    .nav-enquiry {
        padding: 0.625vw 1.4583vw;
        font-size: clamp(14px, 0.8333vw, 16px);
    }

    .hero {
        min-height: 40.1042vw;
        padding-top: 4.6875vw;
        padding-bottom: 7.917vw;
    }

    .hero-content {
        padding: 0 2.0833vw;
        margin: 5.99vw 0 6.771vw;
    }

    .hero-title {
        font-size: clamp(36px, 2.9167vw, 56px);
    }

    .hero-description {
        font-size: clamp(16px, 0.9375vw, 18px);
        max-width: clamp(400px, 30.4688vw, 585px);
        padding: 3.125vw 0 0;
    }

    .hero-title-light {
        font-size: clamp(40px, 3.333vw, 64px);
    }

    .hero-phone-left {
        left: 4.583vw;
        bottom: -1.25vw;
    }

    .hero-phone-img-left {
        max-width: 18.75vw;
    }

    .hero-phone-left::after {
        width: 9.0625vw;
        height: 6.3021vw;
        top: 5.2083vw;
        left: calc(100% - 4.1667vw);
    }

    .hero-phone-right::after {
        width: 4.5313vw;
        height: 6.3542vw;
        top: -3.9063vw;
        left: 3.6458vw;
    }

    .hero-phone-right {
        bottom: -12.5vw;
    }

    .hero-phone-img-right {
        max-width: 23.958vw;
    }

    .hero-title .line {
        bottom: -1.458vw;
        width: 7.6042vw;
        height: 0.8854vw;
    }

    .section-title {
        font-size: clamp(28px, 2.604vw, 50px);
    }

    .section-description {
        font-size: clamp(16px, 1.1458vw, 22px);
        max-width: 48.9583vw;
    }

    .cta-button {
        padding: clamp(10px, 0.8333vw, 15px) clamp(20px, 1.875vw, 36px);
        font-size: clamp(16px, 1.042vw, 20px);
    }

    .section-description {
        font-size: clamp(16px, 1.1458vw, 22px);
        max-width: 48.9583vw;
    }

    .feature-icon {
        width: 7.2917vw;
        height: 7.2917vw;
    }

    .feature-icon img {
        max-width: 2.813vw;
    }

    .feature-title {
        font-size: clamp(16px, 1.0417vw, 20px);
    }

    .features-container .section-title {
        margin-top: -5.208vw;
    }

    .solutions-container {
        gap: 3.125vw;
    }


    .solutions-description {
        font-size: clamp(16px, 0.9375vw, 18px);
    }

    .benefits-heading {
        font-size: clamp(18px, 1.1458vw, 22px);
    }

    .benefits-list li {
        font-size: clamp(16px, 1.0417vw, 20px);
    }

    .future-section-title {
        font-size: clamp(28px, 2.6042vw, 50px);
        padding-bottom: 3.125vw;
    }

    .enhancement-text h3 {
        font-size: clamp(16px, 1.1458vw, 22px);
    }

    .enhancement-text p {
        font-size: clamp(16px, 0.9375vw, 18px);
    }

    .challenges-subtitle {
        font-size: clamp(28px, 2.6042vw, 50px);
    }

    .challenges-grid {
        padding: 0 3.125vw 4.6875vw;
        padding-bottom: 10.417vw;
        gap: 3.125vw;
    }

    .design-description {
        font-size: clamp(16px, 1.1458vw, 22px);
        margin-bottom: 2.0833vw;
    }



    .steps-title {
        font-size: clamp(22px, 1.5625vw, 30px);
    }

    .step-item {
        font-size: clamp(18px, 1.0417vw, 20px);
    }

    .faq-question span {
        font-size: clamp(16px, 1.1458vw, 22px);
    }

    .faq-answer p {
        font-size: clamp(16px, 0.9375vw, 18px);
        padding: 10px 2.292vw 0;
    }

    .features-grid {
        grid-template-columns: repeat(5, 1fr);
        gap: 2.083vw;
        margin-top: 4.167vw;
    }

    .enhancement-number::after {
        top: calc(100% + 0.521vw);
    }

    .enhancement-list {
        gap: 0.521vw;
    }

    .enhancement-text {
        padding-bottom: clamp(15px, 1.042vw, 20px);
    }

    .faq-item {
        padding-bottom: clamp(15px, 1.302vw, 25px);
    }

    .faq-question {
        padding: clamp(15px, 1.302vw, 25px) 5px 0;
    }

    .challenges-list li {
        font-size: clamp(16px, 1.1458vw, 22px);
    }

    .column-title {
        font-size: clamp(18px, 1.4583vw, 28px);
        margin-bottom: clamp(15px, 1.563vw, 30px);
    }

    .app-link {
        height: clamp(40px, 2.76vw, 53px);
    }

    .video-wrapper {
        max-width: 54.219vw;
    }

    .design-phone {
        margin-left: 3.125vw;
    }

    .design-container {
        padding: 4.896vw 2.083vw 0;
    }

    .design-content {
        padding-bottom: 4.896vw;
    }

    .hero::after {
        height: 7.917vw;
    }

    .challenges-section {
        padding: clamp(40px, 4.1667vw, 80px) 20px clamp(40px, 6.25vw, 120px);
    }

    .design-phone img {
        height: calc(100% + 10.417vw);
    }

    .video-play-button {
        width: 7.5vw;
        height: 7.5vw;
    }

    .video-play-button::after {
        width: 2.0313vw;
        height: 2.2917vw;
    }

    .empower-inner {
        padding: clamp(50px, 4.1667vw, 80px) clamp(30px, 3.125vw, 60px) 0;
    }

    .challenges-container {
        padding: clamp(50px, 4.1667vw, 80px) 20px 0;
    }


}

@media (max-width: 1300px) {
    .challenges-grid {
        gap: 35px;
        padding: 0 30px 90px;
    }
}

@media (max-width: 1023px) {
    :root {
        --max-width: 100%;
    }

    .footer-top {
        flex-wrap: wrap;
    }

    .footer-brand {
        flex: 1 1 100%;
        max-width: none;
        margin-bottom: 20px;
    }

    .footer-contact {
        flex: 1 1 auto;
    }

    .footer-apps {
        flex: 0 0 auto;
        align-items: flex-start;
    }

    .challenges-grid .challenges-column:first-child {
        border-right: none;
    }

    .design-content {
        max-width: 100%;
    }

    .design-phone {
        order: 2;
    }

    .video-section {
        padding: 40px 20px 0;
    }

    .apps-links {
        gap: 5px;
    }

    .header-container {
        padding: 0 30px;
        height: 75px;
    }

    .features-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 30px;
        margin: 40px 0;
    }

    .solutions-section {
        margin: 0px;
    }

    .solutions-main-image {
        width: 75%;
        margin: auto;
    }

    .hero-content {
        flex-direction: column;
        text-align: center;
        padding-top: 40px;
    }

    .hero-text {
        max-width: 100%;
        /* margin-bottom: 40px; */
    }

    .hero-description {
        margin: 0 auto;
    }

    .solutions-container,
    .enhancements-container,
    .challenges-grid,
    .design-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .challenges-grid {
        padding: 0;
        padding-bottom: 40px;
    }

    .solutions-images,
    .enhancements-image,
    .design-phone {
        margin: 0 auto;
    }

    .socialmedia-links-wrap a img {
        width: 22px;
        height: 22px;
    }

    .enhancements-image {
        max-width: 500px;
        border-radius: 25px;

    }

    .benefits-list svg {
        width: 20px;
        height: 20px;
        margin-top: 6px;
    }

    .challenges-container {
        border-radius: 25px 25px 0 0;
    }

    .challenges-inner {
        border-radius: 25px;
    }

    .challenges-list svg {
        margin-top: 6px;
    }

    .empower-inner {
        border-radius: 25px;
    }

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

    .design-steps {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .challenges-grid .challenges-column:first-child {
        border-right: none;
        border-bottom: 1px solid var(--color-primary);
        padding-bottom: 30px;
    }

    /* Fixed sizes for small details */
    .feature-icon {
        width: 75px;
        height: 75px;
    }


    .solutions-title,
    .design-title {
        font-size: 28px;
        text-align: center;
    }

    .section-description,
    .solutions-description,
    .design-description {
        font-size: 16px;
    }

    .benefits-list li,
    .challenges-list li,
    .step-item {
        font-size: 16px;
    }

    .design-container {
        padding: 50px 20px 0;
        border-radius: 25px;
    }

    .hero-content {
        grid-template-columns: 1fr 1.2fr 1fr;
        gap: 0;
        padding: 0 20px;
    }

    /* .hero-phone-img-left,
    .hero-phone-img-right {
        max-width: 213px;
    } */

    .solutions-container,
    .enhancements-container,
    .design-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

    .design-content {
        padding-bottom: 0;
    }

    .step-number {
        width: 40px;
        height: 40px;
    }

    .copyright,
    .footer-tagline,
    .contact-value,
    .contact-label {
        font-size: 14px;
    }

    .footer-top {
        gap: 20px;
        margin-bottom: 20px;
    }

    .footer-contact {
        gap: 20px;
    }

    .contact-row {
        gap: 20px;
    }

    .footer-divider {
        margin: 20px 0;
    }

    .contact-value {
        gap: 8px;
    }

    /* Mobile Nav */
    .nav-toggle {
        display: block;
    }

    .footer {
        padding: 40px 20px 20px;
    }

    .header-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: #fff;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 40px;
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1000;
        padding: 40px;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.05);
    }

    .header-nav.active {
        right: 0;
    }

    .nav-contact {
        font-size: 24px;
        width: 100%;
        text-align: center;
    }

    .nav-enquiry {
        width: 100%;
        max-width: 300px;
        padding: 12px 20px;
    }

    .no-scroll {
        overflow: hidden;
    }

    .design-phone img {
        position: relative;
        height: 400px;
    }

    .design-phone {
        width: 280px;
    }

    .video-play-button {
        width: 75px;
        height: 75px;
    }

    .video-play-button::after {
        width: 20px;
        height: 24px;
    }

    .enhancement-number {
        width: 30px;
        height: 30px;
        font-size: 16px;
    }

    .enhancement-text h3 {
        margin-bottom: 3px;
    }

    .blog-page {
        padding: 100px 0 60px;
    }

    .blog-container {
        padding: 0 40px;
    }

    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px 30px;
    }

    .breadcrumb {
        font-size: 28px;
    }

}

@media (max-width: 991px) {

    /* .hero-phone-left,
    .hero-phone-right {
        display: none;
    } */

    .hero {
        min-height: 600px;
    }

    .benefits-list li {
        font-size: 16px;
    }

    .future-section-title {
        padding-bottom: 35px;
    }

    .enhancements-image {
        margin: auto;
    }

    .section-description {
        margin: 0 auto 30px;
    }

    .section-description {
        font-size: 16px;
        max-width: 100%;
    }

}

@media (max-width: 768px) {
    :root {
        --section-padding: 40px 20px;
    }


    .hero {
        padding-top: 80px;
        min-height: auto;
    }

    .hero-content {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto auto;
        align-items: center;
        padding: 0;
        gap: 0;
    }

    .hero-phone-left {
        order: 2;
        justify-content: center;
        /* padding: 0 20px; */
    }

    /* .hero-phone-img-left {
        max-width: 220px;
    } */

    .hero-text {
        order: 1;
        padding: 20px;
    }

    .hero-phone-right {
        order: 3;
        justify-content: center;
        /* padding: 0 20px 40px; */
    }

    .header-container {
        padding: 0 24px;
        height: 70px;
    }

    .logo-wordmark {
        font-size: 20px;
    }

    .logo-tagline {
        font-size: 10px;
    }

    .logo-icon {
        width: 42px;
    }

    .feature-card {
        max-width: 400px;
        margin: 0 auto;
    }

    .video-navigation {
        gap: 20px;
    }

    .nav-arrow {
        width: 50px;
        height: 50px;
    }

    .play-button {
        width: 100px;
        height: 100px;
    }

    .enhancement-phone {
        position: static;
        width: 100%;
    }

    .whatsapp-button {
        bottom: 20px;
        right: 20px;
        width: 40px;
        height: 40px;
    }

    .contact-row {
        flex-direction: column;
        gap: 20px;
    }

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

    .footer-links {
        justify-content: center;
    }

    .hero::after {
        height: 65px;
    }

    .features-container .section-title {
        margin-top: unset;
    }

    .challenges-subtitle {
        /* font-size: 35px; */
        line-height: 1.2;
    }

    .hero-content {
        padding: 0 2.0833vw;
        margin: 35px 0;
    }

    .design-title {
        font-size: 28px;
        margin-bottom: 15px;
    }

    .design-description {
        margin-bottom: 20px;
    }

    .steps-title {
        font-size: 22px;
    }

    .faq-title {
        font-size: 22px;
        margin-bottom: 20px;
    }

    .solutions-section {
        padding: 30px 20px;
    }

    .challenges-container {
        padding: 40px 20px 0;
        margin: 0;
    }

    .challenges-title {
        margin-bottom: 30px;
    }

    .video-play-button {
        width: 100px;
        height: 100px;
    }

    .video-play-button::after {
        width: 26px;
        height: 30px;
    }

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

    .feature-card {
        gap: 15px;
    }

    .blog-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

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

    .pagination {
        flex-wrap: wrap;
        gap: 8px;
    }

    .page-link.prev,
    .page-link.next {
        flex: 1 0 100%;
        order: 2;
    }

    .page-link.prev {
        order: 10;
    }

    .page-link.next {
        order: 11;
    }

    .hero-phone-left {
        left: 0;
    }

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

    .industries-section {
        padding: 0 20px;
    }

}

@media (max-width: 640px) {
    .video-play-button {
        width: 65px;
        height: 65px;
    }

    .video-play-button::after {
        width: 17px;
        height: 20px;
    }

    .feature-title {
        font-size: clamp(14px, 1.0417vw, 20px);
    }

    .challenges-list li {
        line-height: 1.8;
        margin-bottom: 8px;
    }

    .challenges-list svg {
        margin-top: 3px;
    }
}

@media (max-width: 480px) {
    .header-container {
        padding: 0 16px;
        height: 64px;
    }

    .logo-wordmark {
        font-size: 18px;
    }

    .logo-tagline {
        display: none;
    }

    .logo-icon {
        width: 36px;
    }

    .nav-enquiry {
        padding: 10px 20px;
        font-size: 14px;
    }


    .hero-title-light {
        font-size: 32px;
    }

    .hero-title-bold {
        font-size: 30px;
    }

    .section-description {
        font-size: 16px;
    }

    .cta-button {
        padding: 10px 20px;
        font-size: 16px;
    }

    .hero-phone-left {
        left: -10px;
        bottom: -24px;
    }

    .industry-item {
        gap: 15px;
    }

    .faq-answer p {
        padding: 10px 20px 20px;
        font-size: 16px;
    }

    .contact-popup {
        padding: 30px 20px;
        border-radius: 20px;
    }

    .contact-form-wrapper-in h3 {
        font-size: 22px;
    }

    .blog-container {
        padding: 0 20px;
    }


    .breadcrumb {
        font-size: 24px;
    }

    .blog-title {
        font-size: 20px;
    }

    .blog-meta {
        font-size: 16px;
    }

    .demo-slideout {
        width: 100%;
        padding: 60px 25px;
    }

    .demo-content h2 {
        font-size: 28px;
        margin-bottom: 30px;
    }

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

@media screen and (max-width: 360px) {
    .hero-title {
        font-size: 28px;
    }

    /* .features-grid {
        grid-template-columns: 1fr;
    } */


    .header-container {
        padding: 0 15px;
    }
}

/* Custom Language Switcher */
.language-switch {
    position: relative;
    display: flex;
    align-items: center;
}

.lang-dropdown-trigger {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    color: var(--color-dark);
    cursor: pointer;
    transition: all 0.3s ease;
    user-select: none;
}

.lang-dropdown-trigger:hover {
    background: #fff;
    border-color: var(--color-primary);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.lang-dropdown-trigger .arrow {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.lang-dropdown-trigger.active .arrow {
    transform: rotate(180deg);
}

.lang-dropdown-menu {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    min-width: 140px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    padding: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    list-style: none;
}

.lang-dropdown-menu.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-dropdown-item {
    padding: 10px 16px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    color: var(--color-text);
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.lang-dropdown-item:hover {
    background: var(--color-bg-light);
    color: var(--color-primary);
}

.lang-dropdown-item.selected {
    background: var(--color-bg-light);
    color: var(--color-primary);
    font-weight: 700;
}

.lang-dropdown-item.selected::after {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--color-primary);
    border-radius: 50%;
}