/* Globals and Variables */
:root {
    --theme-color1: #00ADEF;
    /* Light Blue/Cyan */
    --theme-color2: #0B2545;
    /* Dark Blue */
    --bg-color-main: #051329;
    /* Very dark blue for dark theme background */
    --bg-color-alt: #0A1C36;
    /* Card background */
    --text-color-main: #FFFFFF;
    /* High contrast back to dark theme */
    --text-color-muted: #A0A0A0;
    /* Muted text */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    --accent-yellow: #FFC107;
    --border-radius-sm: 8px;
    --border-radius-md: 16px;
    --border-radius-lg: 30px;
    --transition-fast: 0.2s ease-in-out;
    --transition-normal: 0.3s ease-in-out;
}

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

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

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--text-color-main);
    font-weight: 700;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-fast);
}

ul {
    list-style: none;
}

/* Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Base Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    transition: all var(--transition-normal);
    cursor: pointer;
    border: none;
    font-size: 16px;
    text-transform: capitalize;
}

.btn-primary {
    background-color: var(--theme-color1);
    color: #FFFFFF;
}

.btn-primary:hover {
    background-color: var(--theme-color2);
    color: #FFFFFF;
}

.btn-secondary {
    background-color: transparent;
    color: #FFFFFF;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
    border-color: var(--theme-color1);
    color: var(--theme-color1);
}

/* Section Spacing */
.section-padding {
    padding: 100px 0;
}

/* Utilities */
.text-center {
    text-align: center;
}

.pb-0 {
    padding-bottom: 0 !important;
}

.mb-1 {
    margin-bottom: 10px;
}

.mb-2 {
    margin-bottom: 20px;
}

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

.mb-4 {
    margin-bottom: 40px;
}

.mb-5 {
    margin-bottom: 50px;
}

/* Subtitle / Eyebrow */
.subtitle {
    display: inline-block;
    color: var(--theme-color1);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
    position: relative;
    padding-left: 45px;
}

.subtitle::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 2px;
    background-color: var(--theme-color1);
}

.text-center .subtitle {
    padding-right: 45px;
}

.text-center .subtitle::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 2px;
    background-color: var(--theme-color1);
}

/* Header Base */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: all var(--transition-normal);
}

.header.sticky {
    background: #FFFFFF;
    padding: 15px 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.header.sticky .nav-list>li>a {
    color: var(--theme-color2);
}

.header.sticky .nav-list>li>a:hover,
.header.sticky .nav-list>li>a.active {
    color: var(--theme-color1);
}

.header.sticky .mobile-menu-btn {
    color: var(--theme-color2);
}

.header.sticky .header-contact-btn .call-text {
    color: var(--text-color-muted);
}

.header.sticky .header-contact-btn .phone-number {
    color: var(--theme-color2);
}

/* Header Light Variant for Inner Pages */
.header.header-light {
    background: #FFFFFF;
    padding: 15px 0;
}

.header.header-light .nav-list>li>a {
    color: var(--theme-color2);
}

.header.header-light .nav-list>li>a:hover,
.header.header-light .nav-list>li>a.active {
    color: var(--theme-color1);
}

.header.header-light .mobile-menu-btn {
    color: var(--theme-color2);
}

.header.header-light .header-contact-btn .call-text {
    color: var(--text-color-muted);
}

.header.header-light .header-contact-btn .phone-number {
    color: var(--theme-color2);
}

/* --- Header Styles --- */
.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 28px;
    font-family: var(--font-heading);
    font-weight: 800;
    color: var(--text-color-main);
    letter-spacing: -0.5px;
}

.logo .highlight {
    color: var(--theme-color1);
}

.nav-desktop {
    display: none;
}

@media (min-width: 992px) {
    .nav-desktop {
        display: block;
    }

    .d-none-mobile {
        display: inline-flex !important;
    }
}

.nav-list {
    display: flex;
    gap: 35px;
    align-items: center;
}

.nav-list>li>a {
    font-size: 16px;
    font-weight: 500;
    color: var(--text-color-main);
    padding: 10px 0;
    position: relative;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: color var(--transition-fast);
}

.nav-list>li>a:hover,
.nav-list>li>a.active {
    color: var(--theme-color1);
}

.nav-list>li>a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--theme-color1);
    transition: width var(--transition-normal);
}

.nav-list>li>a:hover::after,
.nav-list>li>a.active::after {
    width: 100%;
}

.nav-list>li.dropdown {
    position: relative;
    padding: 10px 0;
}

.nav-list>li.dropdown>a {
    padding: 0;
}

.nav-list>li.dropdown>a::after {
    bottom: -10px;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--bg-color-alt);
    min-width: 240px;
    border-radius: var(--border-radius-sm);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    padding: 15px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all var(--transition-normal);
    z-index: 100;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-list>li.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu>li>a {
    display: block;
    padding: 10px 25px;
    color: var(--text-color-muted);
    font-weight: 500;
    font-size: 15px;
    transition: all var(--transition-fast);
}

.dropdown-menu>li>a:hover,
.dropdown-menu>li>a.active {
    background-color: rgba(255, 255, 255, 0.03);
    color: var(--theme-color1);
    padding-left: 30px;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

@media (max-width: 991px) {
    .d-none-mobile {
        display: none !important;
    }
}

.d-none-desktop {
    display: inline-flex !important;
}

@media (min-width: 992px) {
    .d-none-desktop {
        display: none !important;
    }
}

.mobile-menu-btn {
    background: transparent;
    border: none;
    color: var(--text-color-main);
    font-size: 28px;
    cursor: pointer;
    display: block;
}

@media (min-width: 992px) {
    .mobile-menu-btn {
        display: none;
    }
}

/* --- Mobile Nav --- */
.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(13, 10, 22, 0.95);
    backdrop-filter: blur(10px);
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-normal);
}

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

.mobile-nav-content {
    position: absolute;
    top: 0;
    right: -350px;
    width: 100%;
    max-width: 350px;
    height: 100%;
    background-color: var(--bg-color-alt);
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    transition: all var(--transition-normal);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
}

.mobile-nav-overlay.active .mobile-nav-content {
    right: 0;
}

.close-menu-btn {
    position: absolute;
    top: 25px;
    right: 30px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-fast);
}

.close-menu-btn:hover {
    background: var(--theme-color1);
}

.mobile-logo {
    font-size: 24px;
    font-family: var(--font-heading);
    font-weight: 800;
    color: var(--text-color-main);
    margin-bottom: 40px;
    display: block;
}

.mobile-nav-list {
    flex-grow: 1;
    overflow-y: auto;
}

.mobile-nav-list>li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.mobile-nav-list>li>a,
.mobile-dropdown-toggle {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    font-size: 18px;
    font-weight: 500;
    color: var(--text-color-main);
    cursor: pointer;
}

.mobile-nav-list>li>a:hover,
.mobile-nav-list>li>a.active,
.mobile-dropdown-toggle:hover,
.mobile-dropdown-toggle.active {
    color: var(--theme-color1);
}

.mobile-dropdown-menu {
    display: none;
    padding-left: 15px;
    padding-bottom: 15px;
}

.mobile-dropdown-menu.active {
    display: block;
}

.mobile-dropdown-menu>li>a {
    display: block;
    padding: 10px 0;
    color: var(--text-color-muted);
    font-size: 15px;
    position: relative;
}

.mobile-dropdown-menu>li>a::before {
    content: '-';
    margin-right: 8px;
    color: var(--theme-color1);
}

.mobile-dropdown-menu>li>a:hover,
.mobile-dropdown-menu>li>a.active {
    color: var(--theme-color1);
}

.mobile-nav-footer {
    margin-top: 30px;
}

.w-100 {
    width: 100%;
}

/* --- Hero Section - Screenshot Redesign --- */
/* --- Hero Section - 5 Topic Background Slider --- */
.hero {
    position: relative;
    overflow: hidden;
    min-height: 100vh;
}

/* Make sure swiper-slide contains the content properly */
.hero .swiper-slide {
    position: relative;
    width: 100%;
    min-height: 100vh;
    z-index: 1;
}

/* Content wrapper inside each slide */
.hero-slide-content {
    position: relative;
    height: 100vh;
    padding-top: 100px; /* Accounts for header */
    z-index: 100;
}

.hero-content {
    flex: 1;
    max-width: 800px;
    position: relative;
    z-index: 101;
}

/* Prepare children for staggered native CSS animations */
.hero-content .hero-pill,
.hero-content .hero-title,
.hero-content .hero-text,
.hero-content .hero-actions {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Cascade the animations in when slide becomes active */
.swiper-slide-active .hero-content .hero-pill {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.3s;
}

.swiper-slide-active .hero-content .hero-title {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.5s;
}

.swiper-slide-active .hero-content .hero-text {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.7s;
}

.swiper-slide-active .hero-content .hero-actions {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.9s;
}

@media (max-width: 991px) {
    .hero-content {
        max-width: 100%;
        text-align: center;
    }
}

.hero-pill {
    display: inline-block;
    padding: 8px 20px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 50px;
    color: var(--text-color-muted);
    font-size: 14px;
    margin-bottom: 25px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-title {
    font-size: 64px;
    letter-spacing: -1px;
    line-height: 1.1;
    margin-bottom: 25px;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 44px;
    }
    .hero-text {
        font-size: 16px;
    }
}

@media (max-width: 575px) {
    .hero-slide-content {
        padding-top: 60px;
    }
    .hero-title {
        font-size: 34px;
        margin-bottom: 15px;
    }
    .hero-pill {
        font-size: 12px;
        padding: 6px 15px;
        margin-bottom: 15px;
    }
    .hero-text {
        font-size: 14px;
        margin-bottom: 25px;
        margin-left: auto;
        margin-right: auto;
        max-width: 90%;
    }
}

.hero-text {
    font-size: 18px;
    color: var(--text-color-muted);
    margin-bottom: 40px;
    max-width: 500px;
}

@media (max-width: 991px) {
    .hero-text {
        margin: 0 auto 40px;
    }
}

.hero-actions {
    display: flex;
    gap: 20px;
    align-items: center;
}

@media (max-width: 991px) {
    .hero-actions {
        justify-content: center;
    }
}

@media (max-width: 575px) {
    .hero-actions {
        flex-direction: column;
    }
}

.btn-yellow {
    background-color: var(--theme-color1);
    color: #fff;
    font-weight: 700;
    padding: 12px 12px 12px 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    transition: all var(--transition-normal);
}

.btn-yellow:hover {
    background-color: #ffffff;
    color: var(--theme-color1);
    transform: translateY(-3px);
}

.btn-yellow-icon {
    background-color: #ffffff;
    color: var(--theme-color1);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: all var(--transition-normal);
}

.btn-yellow:hover .btn-yellow-icon {
    background-color: var(--theme-color1);
    color: #ffffff;
}

.btn-play {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    color: #fff;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    position: relative;
    padding-right: 20px;
}

.btn-play .play-icon {
    width: 60px;
    height: 60px;
    background-color: var(--accent-yellow);
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    transition: all var(--transition-normal);
}

.btn-play:hover .play-icon {
    transform: scale(1.1);
    background-color: #fff;
}

.btn-play-plane {
    display: none;
}

/* --- Hero Background Slider --- */
.hero-bg-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1; /* Sits behind the main .hero container's z-index tree */
}

/* Because we mixed the content INTO the swiper-slide, the image must be sent backward */
.hero-bg-slider .swiper-slide img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 0;
}

/* Dark gradient overlay so white text remains perfectly legible */
.slider-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, rgba(5, 22, 73, 0.98) 0%, rgba(7, 18, 60, 0.75) 50%, rgba(8, 33, 133, 0.3) 100%)
    /* background: linear-gradient(to right, rgba(5, 19, 41, 0.98) 0%, rgba(5, 19, 41, 0.75) 50%, rgba(5, 19, 41, 0.3) 100%);
    z-index: 1;  Sits over the image, under the text == old styles*/
    
}

/* --- Who We Are Section --- */
.relative {
    position: relative;
}

.z-10 {
    z-index: 10;
}

.d-flex {
    display: flex;
}

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

@keyframes float {
    0% {
        transform: translateY(0px) rotate(0deg);
    }

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

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

/* --- Who We Are Section --- */
.who-we-are-section {
    background-color: #ffffff;
    position: relative;
}

.who-container {
    display: flex;
    align-items: center;
    gap: 60px;
}

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

.who-image-col {
    flex: 1;
    position: relative;
}

@media (max-width: 991px) {
    .who-image-col {
        margin-bottom: 50px;
    }
}

.who-image-wrapper {
    position: relative;
    max-width: 100%;
    margin: 0 auto;
}

.who-image-wrapper::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 150px;
    height: 150px;
    background-color: #ffffff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    z-index: -1;
    -webkit-mask-image: url('../assets/images/about/image.png');
    -webkit-mask-size: contain;
    mask-image: url('../assets/images/about/image.png');
    mask-size: contain;
    mask-repeat: no-repeat;
    -webkit-mask-repeat: no-repeat;
    mask-position: center;
    -webkit-mask-position: center;
}

.who-main-img {
    width: 100%;
    object-fit: cover;
    display: block;
}

.who-floating-portal {
    position: absolute;
    left: -30px;
    top: 50%;
    transform: translateY(-50%);
    animation: rotatePortal 10s linear infinite;
    z-index: 10;
}

.who-floating-portal img {
    width: 80px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    border-radius: 50%;
}

@keyframes rotatePortal {
    0% {
        transform: translateY(-50%) rotate(0deg);
    }

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

.who-content-col {
    flex: 1;
}

.who-we-are-section .text-main {
    color: var(--theme-color2);
}

.who-text {
    color: #555;
    font-size: 17px;
    line-height: 1.8;
}

.who-divider-line {
    width: 100%;
    height: 1px;
    background-color: rgba(0, 0, 0, 0.08);
}

.who-bottom-columns {
    display: flex;
    align-items: center;
    gap: 30px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    padding: 30px 0;
}

@media (max-width: 768px) {
    .who-bottom-columns {
        flex-direction: column;
        align-items: flex-start;
    }
}

.who-features-left {
    flex: 1;
    border-right: 1px solid rgba(0, 0, 0, 0.08);
    padding-right: 20px;
}

@media (max-width: 768px) {
    .who-features-left {
        border-right: none;
        padding-right: 0;
        border-bottom: 1px solid rgba(0, 0, 0, 0.08);
        padding-bottom: 20px;
        width: 100%;
    }
}

.who-experience-right {
    flex: 0 0 160px;
    text-align: center;
    padding-left: 10px;
}

.who-feature-layout2 {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.w-feat-icon {
    font-size: 40px;
    color: #000;
    line-height: 1;
    margin-top: -5px;
}

.w-feat-icon svg {
    transition: transform 0.6s ease;
}

.who-feature-layout2:hover .w-feat-icon svg {
    transform: rotateY(180deg);
}

.w-feat-content h4 {
    font-size: 18px;
    margin-bottom: 5px;
    color: var(--theme-color2);
    font-weight: 800;
}

.w-feat-content p {
    color: #555;
    font-size: 14px;
    margin: 0;
    line-height: 1.6;
}

.exp-number-huge {
    font-size: 80px;
    font-weight: 800;
    line-height: 0.9;
    color: var(--theme-color2);
    letter-spacing: -3px;
    display: inline-flex;
    align-items: flex-start;
}

.exp-number-huge span {
    font-size: 50px;
    line-height: 1;
    margin-top: 5px;
    letter-spacing: 0;
}

.exp-text-below {
    font-size: 15px;
    font-weight: 600;
    color: #555;
    margin-top: 15px;
}

/* --- Action Row --- */
.who-action-row {
    display: flex;
    align-items: center;
    gap: 40px;
}

@media (max-width: 575px) {
    .who-action-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 25px;
    }
}

.theme-btn.btn-style5 {
    background-color: var(--theme-color1);
    color: #fff;
    border-radius: 40px;
    padding: 6px 6px 6px 25px;
    display: inline-flex;
    align-items: center;
    gap: 20px;
    font-weight: 800;
    font-size: 14px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    text-decoration: none;
}

.theme-btn.btn-style5 .right-arrow {
    width: 44px;
    height: 44px;
    background-color: #1a1e23;
    color: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    transition: all 0.3s ease;
}

.theme-btn.btn-style5:hover {
    background-color: var(--theme-color2);
    color: #ffffff;
}

.theme-btn.btn-style5:hover .right-arrow {
    background-color: var(--theme-color1);
    color: #ffffff;
}

/* --- Services Section --- */
.services-section {
    background-color: var(--bg-color-alt);
    position: relative;
}

.section-header {
    margin-bottom: 50px;
}

.section-title {
    font-size: 42px;
    margin-top: 15px;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 32px;
    }
}

/* --- Modern Services Block Animations --- */
.service-block-style17 {
    background-color: #fff;
    border-radius: var(--border-radius-md);
    padding: 40px 30px;
    position: relative;
    overflow: hidden;
    transition: all 500ms ease;
    border-bottom: 3px solid transparent;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
}

.service-block-style17:hover {
    border-bottom-color: var(--theme-color1);
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-block-style17 .service-title {
    margin-bottom: 25px;
    font-size: 24px;
    font-weight: 700;
}

.service-block-style17 .service-title a {
    color: var(--text-color-main);
    transition: color 0.3s ease;
    text-decoration: none;
}

.service-block-style17:hover .service-title a {
    color: var(--theme-color1);
}

.service-block-style17 .ks-service-thumb {
    position: relative;
    margin-bottom: 30px;
    border-radius: var(--border-radius-md);
    overflow: hidden;
}

.service-block-style17 .service-featured-img img {
    width: 100%;
    border-radius: var(--border-radius-md);
    transition: transform 500ms ease;
}

.service-block-style17:hover .service-featured-img img {
    transform: scale(1.05);
}

.service-block-style17 .ks-service-icon {
    position: absolute;
    bottom: -1px;
    right: -1px;
    width: 80px;
    height: 80px;
    background-color: var(--theme-color1);
    border-top-left-radius: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 500ms ease;
}

.service-block-style17 .service-icon i {
    font-size: 32px;
    color: #fff;
}

.service-block-style17 .ks-service-list-box {
    margin-bottom: 25px;
}

.service-block-style17 .service-text {
    color: var(--text-color-muted);
    line-height: 1.7;
    margin: 0;
}

.service-block-style17 .ks-service-more {
    font-size: 15px;
    font-weight: 700;
    color: var(--text-color-main);
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
}

.service-block-style17:hover .ks-service-more {
    color: var(--theme-color1);
}

.service-block-style17 .ks-service-link {
    position: absolute;
    right: 30px;
    bottom: 40px;
    width: 45px;
    height: 45px;
    background-color: transparent;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 500ms ease;
}

.service-block-style17 .ks-service-link a {
    color: var(--text-color-main);
    display: flex;
    transition: all 0.3s ease;
}

.service-block-style17:hover .ks-service-link {
    background-color: var(--theme-color1);
    border-color: var(--theme-color1);
    transform: rotate(-45deg);
}

.service-block-style17:hover .ks-service-link a {
    color: #fff;
}

/* --- About/Features Section --- */
.about-section {
    position: relative;
    background-color: var(--bg-color-main);
    overflow: hidden;
    padding: 0;
}

.about-container {
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 100%;
    padding: 0;
}

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

.about-image-col {
    flex: 1;
    position: relative;
    height: 100%;
}

@media (max-width: 991px) {
    .about-image-col {
        width: 100%;
        margin-bottom: 40px;
    }
}

.about-img-main {
    border-radius: 0 0 140px 0;
    width: 100%;
    max-width: 100%;
    height: 700px;
    object-fit: cover;
    object-position: top center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    border: none;
    animation: imageSlowPan 20s ease-in-out infinite alternate;
}

@keyframes imageSlowPan {
    0% {
        object-position: top center;
        transform: scale(1);
    }

    100% {
        object-position: bottom center;
        transform: scale(1.05);
    }
}

.about-stats-card {
    position: absolute;
    bottom: 50px;
    right: 50px;
    background-color: var(--bg-color-main);
    padding: 30px 40px 40px;
    border-radius: var(--border-radius-md) var(--border-radius-md) 0 0;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    width: 280px;
    z-index: 5;
    transition: all 0.4s ease;
}

.about-stats-card:hover {
    transform: translateY(-10px);
}

@media (max-width: 575px) {
    .about-stats-card {
        right: 0;
        bottom: -20px;
        padding: 20px;
        width: 90%;
    }
}

.stats-icon {
    position: absolute;
    top: -40px;
    left: 40px;
    width: 80px;
    height: 80px;
    background-color: var(--theme-color1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 32px;
    color: #fff;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.stats-icon i {
    transition: transform 0.6s ease;
}

.about-stats-card:hover .stats-icon i {
    transform: rotateY(180deg);
}

.stats-info {
    margin-top: 30px;
}

.stats-label {
    font-size: 13px;
    color: var(--text-color-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    display: block;
    margin-bottom: 10px;
}

.stats-info h3 {
    font-size: 24px;
    color: var(--text-color-main);
    margin: 0;
    line-height: 1.3;
}

.about-content-col {
    flex: 1;
    padding-right: 15px;
    padding-left: 20px;
}

@media (min-width: 1200px) {
    .about-content-col {
        padding-right: calc((100vw - 1140px) / 2 + 15px);
    }
}

.gap-15 {
    gap: 15px;
}

.subtitle-line {
    width: 40px;
    height: 2px;
    background-color: var(--theme-color1);
}

.about-title {
    font-size: 42px;
    margin-top: 15px;
    margin-bottom: 25px;
    color: #fff;
    line-height: 1.2;
}

@media (max-width: 768px) {
    .about-title {
        font-size: 32px;
    }
}

.about-text {
    margin-bottom: 40px;
    font-size: 16px;
    color: var(--text-color-muted);
    font-weight: 400;
}

.features-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.feature-box {
    display: flex;
    align-items: flex-start;
    gap: 25px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.feature-box:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.feature-icon {
    width: 60px;
    height: 60px;
    border: 1px dashed var(--theme-color1);
    border-radius: 5px;
    color: var(--theme-color1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    flex-shrink: 0;
    transition: all var(--transition-normal);
}

.feature-box:hover .feature-icon {
    background-color: var(--theme-color1);
    color: #fff;
    border-style: solid;
}

.feature-content h4 {
    font-size: 22px;
    margin-bottom: 10px;
    color: #fff;
}

.feature-content p {
    font-size: 15px;
    margin: 0;
    color: var(--text-color-muted);
    line-height: 1.6;
}

/* --- About Section Light Theme Overrides --- */
.about-section-light {
    background-color: #ffffff;
}

.about-section-light .about-stats-card {
    background-color: #ffffff;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.about-section-light .stats-info h3 {
    color: var(--theme-color2);
}

.about-section-light .stats-label {
    color: #666;
}

.about-section-light .about-title {
    color: var(--theme-color2);
}

.about-section-light .about-text {
    color: #555;
}

.about-section-light .feature-box {
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.about-section-light .feature-content h4 {
    color: var(--theme-color2);
}

.about-section-light .feature-content p {
    color: #555;
}

.about-section-light .feature-icon {
    border-color: var(--theme-color1);
    color: var(--theme-color1);
}

.about-section-light .feature-box:hover .feature-icon {
    background-color: var(--theme-color1);
    color: #fff;
}

/* --- Testimonials Section (Slider) --- */
.testimonials-section {
    background-color: #f4f6f9;
    position: relative;
    padding: 100px 0;
}

.testimonials-section .section-title {
    color: var(--theme-color2);
}

.testimonials-section .subtitle {
    color: var(--theme-color1);
}

.testimonials-slider {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 60px 10px 40px;
    scrollbar-width: none;
    /* Firefox */
    -ms-overflow-style: none;
    /* IE/Edge */
}

.testimonials-slider::-webkit-scrollbar {
    display: none;
    /* Chrome/Safari */
}

.testimonial-card {
    flex: 0 0 calc(33.333% - 20px);
    background-color: #ffffff;
    padding: 60px 40px 40px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.04);
    text-align: center;
    position: relative;
    scroll-snap-align: center;
    transition: transform var(--transition-normal);
}

.testimonial-card:hover {
    transform: translateY(-8px);
}

.testimonial-avatar {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    position: absolute;
    top: -45px;
    left: 50%;
    transform: translateX(-50%);
    border: 6px solid #f4f6f9;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-info {
    margin-bottom: 25px;
}

.testimonial-info h4 {
    font-size: 20px;
    color: var(--theme-color2);
    margin-bottom: 5px;
    font-weight: 700;
}

.testimonial-info span {
    font-size: 12px;
    color: #a0a0a0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.testimonial-text {
    font-size: 15px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 25px;
}

.testimonial-stars {
    display: flex;
    justify-content: center;
    gap: 6px;
}

.testimonial-stars i {
    font-size: 16px;
}

.testimonial-stars.color-red i {
    color: #f93c65;
}

.testimonial-stars.color-purple i {
    color: #4524c1;
}

.testimonial-stars.color-pink i {
    color: #e94d88;
}

@media (max-width: 991px) {
    .testimonial-card {
        flex: 0 0 calc(50% - 15px);
        padding: 50px 30px 30px;
    }
}

@media (max-width: 767px) {
    .testimonial-card {
        flex: 0 0 100%;
    }
}

/* --- Footer --- */
.footer {
    background-color: #051329;
    padding-top: 80px;
}

.footer-container {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    padding-bottom: 60px;
}

@media (max-width: 991px) {
    .footer-container {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 575px) {
    .footer-container {
        grid-template-columns: 1fr;
    }
}

.text-muted {
    color: rgba(255, 255, 255, 0.7);
}

.d-inline-block {
    display: inline-block;
}

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

.social-links a {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: all var(--transition-normal);
}

.social-links a:hover {
    background-color: var(--theme-color1);
    transform: translateY(-3px);
}

.footer-title {
    font-size: 20px;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
    color: #fff;
}

.footer-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background-color: var(--theme-color1);
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: all var(--transition-fast);
}

.footer-links a:hover {
    color: var(--theme-color1);
    padding-left: 5px;
}

.footer-contact-info li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact-info i {
    color: var(--theme-color1);
    font-size: 20px;
    line-height: 1.4;
}

.footer-bottom {
    background-color: rgba(0, 0, 0, 0.2);
    padding: 20px 0;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.02);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
    margin: 0;
}

/* --- Page Title Section --- */
.page-title-section {
    padding: 160px 0 80px;
    background-color: var(--theme-color2);
    text-align: center;
    position: relative;
}

.page-title {
    font-size: 48px;
    margin-bottom: 15px;
    color: #fff;
}

.breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
    font-weight: 500;
}

.breadcrumb a {
    color: var(--theme-color1);
}

.breadcrumb i {
    font-size: 14px;
}

/* --- Branding Options (Custom Logo) --- */
.logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none !important;
}

.logo-icon {
    position: relative;
    width: 32px;
    height: 32px;
}

.logo-box-solid {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 20px;
    height: 20px;
    background-color: var(--theme-color1);
}

.logo-box-outline {
    position: absolute;
    top: 0;
    right: 0;
    width: 20px;
    height: 20px;
    border: 3px solid #E0E0E0;
    background-color: transparent;
}

.logo-text-wrapper {
    display: flex;
    flex-direction: column;
}

.logo-title {
    font-size: 26px;
    font-weight: 800;
    color: var(--theme-color1);
    line-height: 1;
    font-family: var(--font-heading);
    letter-spacing: -0.5px;
}

.logo-tagline {
    font-size: 11px;
    color: #999;
    font-weight: 500;
    font-family: var(--font-body);
    margin-top: 3px;
    line-height: 1;
}

/* --- Modern Floating Actions --- */
.modern-floating-actions {
    position: fixed;
    right: 30px;
    bottom: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 1000;
}

.floating-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 26px;
    color: #fff;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    transition: all var(--transition-normal);
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.floating-btn i {
    z-index: 2;
    transition: transform 0.3s ease;
}

.floating-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    transform: scale(0);
    transition: transform 0.3s ease;
    z-index: 1;
}

.floating-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    color: #fff;
}

.floating-btn:hover::before {
    transform: scale(1);
}

.floating-btn:hover i {
    transform: scale(1.1);
}

.btn-enquiry {
    background-color: var(--theme-color2);
}

.btn-whatsapp {
    background-color: #25D366;
}

.btn-appointment {
    background-color: var(--theme-color1);
}

@media (max-width: 575px) {
    .modern-floating-actions {
        right: 20px;
        bottom: 20px;
    }

    .floating-btn {
        width: 50px;
        height: 50px;
        font-size: 22px;
    }
}

/* --- Crafto Marquee Animation --- */
.crafto-marquee-section {
    padding: 35px 0;
    background-color: #ffffff;
    overflow: hidden;
    position: relative;
    display: flex;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(0, 173, 239, 0.1);
}

.marquee-track {
    display: flex;
    width: max-content;
    animation: marquee-scroll 35s linear infinite;
}

.marquee-track:hover {
    animation-play-state: paused;
}

.marquee-item {
    font-size: 90px;
    font-family: var(--font-heading);
    font-weight: 750;
    color: transparent;
    -webkit-text-stroke: 2px var(--theme-color2);
    text-transform: uppercase;
    white-space: nowrap;
    display: flex;
    align-items: center;
    padding: 0 45px;
    transition: color 0.3s ease;
}

.marquee-item:hover {
    color: var(--theme-color2);
}

.marquee-icon-svg {
    width: 60px;
    height: 60px;
    color: var(--theme-color1);
    margin: 0 30px;
    flex-shrink: 0;
}

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

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

@media (max-width: 991px) {
    .marquee-item {
        font-size: 80px;
        padding: 0 30px;
    }

    .marquee-icon-svg {
        width: 45px;
        height: 45px;
        margin: 0 20px;
    }
}

@media (max-width: 575px) {
    .marquee-item {
        font-size: 50px;
        padding: 0 20px;
    }

    .marquee-icon-svg {
        width: 30px;
        height: 30px;
        margin: 0 15px;
    }

    .crafto-marquee-section {
        padding: 20px 0;
    }
}

/* --- Trusted Partner Section (Zig-Zag) --- */
.trusted-partner-section {
    background-color: var(--bg-color-main);
    position: relative;
    overflow: hidden;
}

.trusted-partner-section::before {
    content: '';
    position: absolute;
    top: -150px;
    right: -150px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(0, 173, 239, 0.1) 0%, rgba(0, 0, 0, 0) 70%);
    border-radius: 50%;
    z-index: 0;
}

.trusted-partner-section .container {
    position: relative;
    z-index: 1;
}

.trusted-zigzag-wrapper {
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.trusted-row {
    display: flex;
    align-items: center;
    gap: 60px;
}

.trusted-row.reverse {
    flex-direction: row-reverse;
}

.trusted-content {
    flex: 1;
    position: relative;
    padding: 30px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius-md);
    transition: transform var(--transition-normal), background var(--transition-normal);
}

.trusted-content:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.04);
}

.trusted-num {
    font-size: 80px;
    font-family: var(--font-heading);
    font-weight: 800;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.1);
    position: absolute;
    top: -40px;
    right: 30px;
    line-height: 1;
    z-index: -1;
    transition: -webkit-text-stroke 0.3s ease;
}

.trusted-row.reverse .trusted-num {
    right: auto;
    left: 30px;
}

.trusted-content:hover .trusted-num {
    -webkit-text-stroke: 1px var(--theme-color1);
}

.trusted-content h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: var(--text-color-main);
}

.trusted-content p {
    color: var(--text-color-muted);
    font-size: 16px;
    margin: 0;
}

.trusted-image {
    flex: 1;
}

.trusted-img-box {
    position: relative;
    border-radius: var(--border-radius-md);
    z-index: 1;
}

.trusted-img-box img {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius-md);
    display: block;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.trusted-pattern {
    position: absolute;
    bottom: -20px;
    left: -20px;
    width: 100%;
    height: 100%;
    background-color: var(--theme-color1);
    border-radius: var(--border-radius-md);
    z-index: -1;
    transition: transform 0.4s ease;
}

.trusted-pattern.outline-pattern {
    background-color: transparent;
    border: 2px dashed var(--theme-color1);
    top: -20px;
    right: -20px;
    left: auto;
    bottom: auto;
}

.trusted-row:hover .trusted-pattern {
    transform: translate(10px, -10px);
}

@media (max-width: 991px) {

    .trusted-row,
    .trusted-row.reverse {
        flex-direction: column;
        gap: 40px;
    }

    .trusted-zigzag-wrapper {
        gap: 60px;
    }
}

/* --- Services Modern Grid Redesign --- */
.services-modern-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 20px;
}

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

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

/* Reset padding on the card itself since we now have image areas */
.modern-glass-card {
    padding: 0;
    display: flex;
    flex-direction: column;
}

.glass-card-image {
    position: relative;
    width: 100%;
    height: 240px;
    overflow: hidden;
    border-radius: calc(var(--border-radius-lg) - 1px) calc(var(--border-radius-lg) - 1px) 0 0;
}

.glass-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.modern-glass-card:hover .glass-card-image img {
    transform: scale(1.15) rotate(2deg);
}

/* Position icon overlapping the image and content */
.glass-card-image .glass-card-icon {
    position: absolute;
    bottom: -35px;
    right: 30px;
    margin-bottom: 0;
    width: 75px;
    height: 75px;
    background: var(--theme-color1);
    color: #fff;
    border: 5px solid rgba(13, 10, 22, 0.8);
    /* Match dark background */
    z-index: 2;
    border-radius: 50%;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.modern-glass-card:hover .glass-card-image .glass-card-icon {
    transform: translateY(-5px) rotate(15deg) scale(1.1);
    background: #fff;
    color: var(--theme-color1);
}

.glass-card-content {
    padding: 50px 30px 40px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    position: relative;
    z-index: 1;
}

/* Enhance glowing effect to match the new image style */
.modern-glass-card::after {
    top: 50%;
    right: 0;
    transform: translate(0, -50%);
}

/* --- Solit Modern Service Cards Redesign --- */
.services-section-solit {
    background-color: var(--bg-color-main);
    position: relative;
    z-index: 1;
}

.services-grid-solit {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

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

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

.item-single {
    position: relative;
    margin-top: 50px;
    margin-bottom: 30px;
    padding: 3em 2em;
    background-color: #ffffff;
    border-radius: var(--border-radius-md);
    text-align: center;
    transition: all 300ms ease-in-out;
    box-shadow: 0 2px 25px 0 rgba(106, 99, 119, 0.1);
}

.item-single .icon {
    position: absolute;
    top: 0;
    left: 50%;
    color: #ffff;
    font-size: 2.3em;
    transform: translate(-50%, -50%);
}

.item-single .icon i {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    transition: transform 0.3s ease;
}

.item-single .icon-bg {
    position: relative;
    display: inline-block;
}

.item-single .icon-bg img {
    max-width: 100%;
    height: auto;
    transition: all 0.3s ease;
}

.item-single .item-content {
    padding-top: 2em;
}

.item-single .item-content h6 {
    margin-bottom: 12px;
    font-size: 22px;
    font-weight: 600;
    text-transform: capitalize;
}

.item-single .item-content h6 a {
    color: var(--theme-color2);
    transition: color 0.3s ease;
}

.item-single:hover .item-content h6 a {
    color: var(--theme-color1);
}

.item-single .item-content p {
    color: #6a6377;
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.item-single:hover {
    transform: translateY(-5px);
}

.item-single .btn-text-only {
    font-weight: 600;
    color: #332f3b;
    text-transform: capitalize;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
}

.item-single:hover .btn-text-only {
    color: var(--theme-color1);
}

.item-single .btn-text-only i {
    transition: transform 0.3s;
    font-size: 14px;
}

.item-single:hover .btn-text-only i {
    transform: translateX(5px);
}

/* --- Contact Form Validation & Status Styles --- */
.input-error {
    border-color: #ff4d4d !important;
    background-color: rgba(255, 77, 77, 0.05) !important;
}

.status-success {
    background-color: rgba(40, 167, 69, 0.1);
    color: #28a745 !important;
    border: 1px solid rgba(40, 167, 69, 0.2);
}

.status-error {
    background-color: rgba(255, 77, 77, 0.1);
    color: #ff4d4d !important;
    border: 1px solid rgba(255, 77, 77, 0.2);
}

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

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

/* --- Header Contact Button --- */
.header-contact-btn {
    display: inline-flex;
    align-items: center;
    background: transparent;
    padding: 0;
    border: none;
    transition: all 0.3s ease;
    gap: 12px;
}

.header-contact-btn .icon-pulse {
    width: 45px;
    height: 45px;
    background-color: var(--theme-color1);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    transition: all 0.3s ease;
}

.header-contact-btn .contact-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.header-contact-btn .call-text {
    font-size: 13px;
    color: var(--text-color-muted);
    line-height: 1.1;
    font-weight: 500;
}

.header-contact-btn .phone-number {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    font-family: var(--font-heading);
    line-height: 1.2;
}

/* Light Mode / Sticky adjustments */
.header.sticky .header-contact-btn .phone-number,
.header.header-light .header-contact-btn .phone-number {
    color: var(--theme-color2);
}

.header.sticky .header-contact-btn .call-text,
.header.header-light .header-contact-btn .call-text {
    color: #666;
}

.header-contact-btn:hover .icon-pulse {
    animation: phoneRingpulse 1.5s infinite;
}

@keyframes phoneRingpulse {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(0, 173, 239, 0.7);
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 10px rgba(0, 173, 239, 0);
    }

    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(0, 173, 239, 0);
    }
}

/* =========================================
   Custom Product Page & Eco Section Styles
   ========================================= */

.product-hero {
    position: relative;
    padding: 160px 0 100px;
    background-image: url('https://images.unsplash.com/photo-1555066931-4365d14bab8c?q=80&w=1600&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    text-align: center;
}

.product-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(8, 10, 26, 0.9) 0%, rgba(13, 23, 56, 0.7) 100%);
    z-index: 1;
}

.product-hero .container {
    position: relative;
    z-index: 2;
}

.product-hero h1 {
    font-size: 54px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
    line-height: 1.2;
}

.product-hero .breadcrumb {
    color: #cbd5e1;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.product-hero .breadcrumb a {
    color: #3b82f6;
    text-decoration: none;
    transition: color 0.3s;
}

/* Products Grid */
.products-showcase {
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

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

.product-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    display: flex;
    flex-direction: column;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #3b82f6, #8b5cf6);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
    z-index: 10;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(59, 130, 246, 0.15);
    border-color: rgba(59, 130, 246, 0.3);
}

.product-card:hover::before {
    transform: scaleX(1);
}

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

.product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.product-card:hover .product-image {
    transform: scale(1.08);
}

.product-card-content {
    padding: 40px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-icon {
    font-size: 34px;
    color: #3b82f6;
    margin-bottom: 25px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 12px;
    transition: all 0.3s ease;
    margin-top: -10px;
}

.product-card:hover .product-icon {
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    color: #fff;
    box-shadow: 0 10px 20px rgba(59, 130, 246, 0.3);
}

@keyframes trendingPulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.15) rotate(5deg);
    }

    100% {
        transform: scale(1) rotate(0deg);
    }
}

.product-card:hover .product-icon i {
    animation: trendingPulse 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) infinite alternate;
}

.product-card h4 {
    color: #0b223f !important;
    font-size: 24px !important;
    margin-bottom: 15px;
    margin-top: 15px;
    font-weight: 700;
    line-height: 1.3;
}

.product-card p {
    color: #475569 !important;
    font-size: 16px !important;
    line-height: 1.7;
    margin-bottom: 20px;
}

.product-highlights {
    list-style: none;
    padding: 0;
    margin: 0;
    flex-grow: 1;
}

.product-highlights li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 15px !important;
    color: #334155 !important;
    font-weight: 500;
    line-height: 1.5;
}

.product-highlights li i {
    color: #3b82f6;
    font-size: 18px;
    margin-top: 2px;
    flex-shrink: 0;
}

/* Specific Dark Theme for Products Section in About Us */
.products-section {
    background: #080a1a;
}

.products-section .product-card {
    background: #0b0f24;
    border-color: rgba(255, 255, 255, 0.05);
}

.products-section .product-card:hover {
    border-color: rgba(59, 130, 246, 0.4);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.products-section .product-card h4 {
    color: #ffffff !important;
}

.products-section .product-card p {
    color: #94a3b8 !important;
}

.eco-section-blue {
    background: linear-gradient(135deg, #0b223f 0%, #061121 100%);
    position: relative;
    color: #cbd5e1;
}

.eco-section-blue::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml,%3Csvg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"%3E%3Cg fill="none" fill-rule="evenodd"%3E%3Cg fill="%23ffffff" fill-opacity="0.03"%3E%3Cpath d="M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z" /%3E%3C/g%3E%3C/g%3E%3C/svg%3E');
    pointer-events: none;
}

.eco-header-blue {
    max-width: 800px;
    margin-bottom: 50px;
}

.eco-header-blue .subtitle {
    color: #3b82f6;
}

.eco-header-blue .section-title {
    color: #ffffff !important;
}

.eco-header-blue p {
    color: #94a3b8 !important;
}

.eco-content-wrapper {
    margin-top: 30px;
}

.eco-flex-grid {
    display: flex;
    align-items: center;
    gap: 50px;
}

.eco-flex-left {
    flex: 0 0 45%;
}

.eco-flex-right {
    flex: 1;
}

.eco-list-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 35px;
    background: rgba(255, 255, 255, 0.03);
    padding: 30px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.eco-list-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(59, 130, 246, 0.3);
    transform: translateX(10px);
}

.eco-list-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #3b82f6;
}

.eco-list-text h4 {
    color: #ffffff;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
    margin-top: 5px;
}

.eco-list-text p {
    color: #cbd5e1;
    font-size: 15px;
    line-height: 1.7;
    margin: 0;
}

/* =========================================
   About Us Custom Styles
   ========================================= */

/* Hero Section */
.about-hero {
    position: relative;
    padding: 140px 0 100px;
    background-image: url('../assets/images/new_about/about_hero_bg.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    text-align: center;
}

.about-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(8, 10, 26, 0.9) 0%, rgba(13, 23, 56, 0.7) 100%);
    z-index: 1;
}

.about-hero .container {
    position: relative;
    z-index: 2;
}

.about-hero h1 {
    font-size: 54px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
    line-height: 1.2;
}

.about-hero p {
    font-size: 18px;
    color: #cbd5e1;
    max-width: 600px;
    margin: 0 auto;
}

/* Overview Section */
.overview-section {
    background: #ffffff;
}

.overview-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.overview-img-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

.overview-img-wrapper img {
    width: 100%;
    border-radius: 20px;
    transition: transform 0.5s ease;
}

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

.overview-content h2 {
    font-size: 36px;
    color: #0b223f;
    margin-bottom: 25px;
    line-height: 1.3;
}

.overview-content p {
    color: #1e3a8a;
    font-size: 16px;
    margin-bottom: 20px;
    line-height: 1.7;
}

.mission-box {
    background: rgba(59, 130, 246, 0.1);
    border-left: 4px solid #3b82f6;
    padding: 20px 25px;
    margin-top: 30px;
    border-radius: 0 12px 12px 0;
}

.mission-box p {
    color: #1e3a8a;
    margin: 0;
    font-style: italic;
    font-weight: 500;
}

/* Products Section */
.products-section {
    background: #080a1a;
}

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

.product-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 35px 30px;
    border-radius: 16px;
    transition: all 0.3s ease;
    text-align: center;
}

.product-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: #3b82f6;
    transform: translateY(-5px);
}

.product-icon {
    width: 60px;
    height: 60px;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: #3b82f6;
    margin: 0 auto 20px;
}

.product-card h4 {
    color: #ffffff;
    font-size: 20px;
    margin-bottom: 15px;
}

.product-card p {
    color: #cbd5e1;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Tech Stack Section (Bento Grid) */
.tech-section {
    background: #080a1a;
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 40px;
}

.bento-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 30px;
    transition: all 0.3s ease;
}

.bento-item:hover {
    background: rgba(255, 255, 255, 0.06);
    transform: translateY(-5px);
    border-color: rgba(59, 130, 246, 0.3);
}

.bento-icon {
    font-size: 40px;
    color: #3b82f6;
    margin-bottom: 20px;
    display: inline-block;
    background: rgba(59, 130, 246, 0.1);
    padding: 15px;
    border-radius: 12px;
}

.bento-item h3 {
    color: #fff;
    font-size: 20px;
    margin-bottom: 15px;
}

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

.tech-list li {
    color: #cbd5e1;
    font-size: 15px;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.tech-list li i {
    color: #10b981;
    font-size: 14px;
}


/* New Tech Card Grid Settings */
.tech-card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
    margin-top: 50px;
}

.tech-img-card {
    background: #111827;
    border: 1px solid #1f2937;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.tech-img-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
    border-color: #3b82f6;
}

.tech-img-card .img-container {
    height: 160px;
    overflow: hidden;
    position: relative;
}

.tech-img-card .img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.tech-card-body {
    padding: 20px;
}

.tech-card-body h3 {
    color: #fff;
    font-size: 18px;
    margin-bottom: 15px;
    border-bottom: 1px dashed #1f2937;
    padding-bottom: 12px;
}

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

.tech-list-new li {
    color: #94a3b8;
    font-size: 14px;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.tech-list-new li i {
    color: #3b82f6;
    font-size: 15px;
}

/* Why Choose Us Grid */
.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.why-card {
    text-align: center;
    padding: 30px;
}

.why-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: #fff;
    margin: 0 auto 20px;
    box-shadow: 0 10px 20px rgba(59, 130, 246, 0.3);
}

.why-card h4 {
    color: #0b223f;
    font-size: 18px;
    margin-bottom: 10px;
}

/* Hover Accordion */
.tech-accordion {
    display: flex;
    width: 100%;
    height: 480px;
    gap: 15px;
    margin-top: 50px;
}

.tech-acc-item {
    position: relative;
    flex: 1;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    cursor: pointer;
    background: #0b0f24;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.tech-acc-item:hover {
    flex: 3;
    box-shadow: 0 10px 40px rgba(59, 130, 246, 0.2);
    border-color: rgba(59, 130, 246, 0.4);
}

.tech-acc-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.5;
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.tech-acc-item:hover .tech-acc-bg {
    opacity: 0.15;
    transform: scale(1.05);
}

.tech-acc-content {
    position: absolute;
    bottom: 30px;
    left: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.tech-acc-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: #fff;
    margin-bottom: 20px;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.tech-acc-item:hover .tech-acc-icon {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(139, 92, 246, 0.4);
}

.tech-acc-title {
    color: #fff;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 0;
    white-space: nowrap;
    transition: margin-bottom 0.5s ease;
}

.tech-acc-item:hover .tech-acc-title {
    margin-bottom: 15px;
}

.tech-acc-list {
    list-style: none;
    padding: 0;
    margin: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.5s ease 0.1s;
    max-height: 0;
}

.tech-acc-item:hover .tech-acc-list {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    max-height: 200px;
}

.tech-acc-list li {
    color: #cbd5e1;
    font-size: 15px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
}

.tech-acc-list li i {
    color: #10b981;
    font-size: 16px;
}

@media (max-width: 991px) {

    .overview-grid,
    .why-grid {
        grid-template-columns: 1fr;
    }

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

    .tech-accordion {
        flex-direction: column;
        height: auto;
    }

    .tech-acc-item {
        height: 100px;
    }

    .tech-acc-item:hover {
        height: 380px;
    }

    .tech-acc-title,
    .tech-acc-list li {
        white-space: normal;
    }
}

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

    .about-hero h1 {
        font-size: 36px;
    }

    .contact-flex-container {
        flex-direction: column !important;
        gap: 30px !important;
    }

    .contact-form-col,
    .contact-info-col {
        flex: none !important;
        width: 100% !important;
    }
}

/* =========================================
   Service & Contact Pages Custom Styles
   ========================================= */

.contact-hero,
.service-hero {
    position: relative;
    padding: 160px 0 100px;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    text-align: center;
}

.contact-hero::before,
.service-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(8, 10, 26, 0.9) 0%, rgba(13, 23, 56, 0.7) 100%);
    z-index: 1;
}

.contact-hero .container,
.service-hero .container {
    position: relative;
    z-index: 2;
}

.contact-hero h1,
.service-hero h1 {
    font-size: 54px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
    line-height: 1.2;
}

.contact-hero .breadcrumb,
.service-hero .breadcrumb {
    color: #cbd5e1;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.contact-hero .breadcrumb a,
.service-hero .breadcrumb a {
    color: #3b82f6;
    text-decoration: none;
    transition: color 0.3s;
}

.service-hero .breadcrumb a:hover,
.contact-hero .breadcrumb a:hover {
    color: #8b5cf6;
}

/* Overview Section */
.service-overview {
    background: #ffffff;
}

.overview-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.overview-img-wrapper img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.overview-content h2 {
    font-size: 36px;
    color: #0b223f;
    margin-bottom: 25px;
    line-height: 1.3;
}

.overview-content p {
    color: #1e3a8a;
    font-size: 16px;
    margin-bottom: 20px;
    line-height: 1.7;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    color: #1e3a8a;
    font-weight: 500;
}

.feature-list li i {
    color: #3b82f6;
    font-size: 20px;
    margin-top: 2px;
}

/* Offerings Grid */
.offerings-section {
    background: #f8fafc;
}

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

.offering-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 35px;
    transition: all 0.4s ease;
    text-align: left;
}

.offering-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
    border-color: #3b82f6;
}

/* --- Web Development Specific: Trending 'What We Build' Cards --- */
.web-dev-build-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.web-dev-build-card {
    background: #ffffff;
    border: 1px solid #f1f5f9;
    border-radius: 20px;
    padding: 40px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.web-dev-build-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(59, 130, 246, 0.1);
    border-color: rgba(59, 130, 246, 0.2);
}

.web-dev-icon-wrapper {
    width: 65px;
    height: 65px;
    background: #eff6ff;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    transition: all 0.4s ease;
}

.web-dev-build-card:hover .web-dev-icon-wrapper {
    background: #3b82f6;
}

.web-dev-icon-wrapper i {
    font-size: 28px;
    color: #3b82f6;
    transition: color 0.4s ease;
}

.web-dev-build-card:hover .web-dev-icon-wrapper i {
    color: #ffffff;
}

.web-dev-build-card h3 {
    font-size: 22px;
    color: #0b223f;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.3;
}

.web-dev-build-card p {
    color: #64748b;
    font-size: 15px;
    line-height: 1.7;
    margin: 0;
}

@media (max-width: 991px) {
    .web-dev-build-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

/* ----------------------------------------------------------------- */

.offering-icon {
    width: 60px;
    height: 60px;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: #3b82f6;
    margin-bottom: 20px;
}

.offering-card h3 {
    color: #0b223f;
    font-size: 20px;
    margin-bottom: 15px;
}

.offering-card p {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Tech Stack (Bento) */
.tech-stack-section {
    background: #080a1a;
    color: #fff;
}

.tech-bento {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.tech-box {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
}

.tech-box:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: #3b82f6;
    transform: translateY(-3px);
}

.tech-box i {
    font-size: 40px;
    display: block;
    margin-bottom: 15px;
    color: #3b82f6;
}

.tech-box h4 {
    font-size: 16px;
    font-weight: 500;
    margin: 0;
    color: #e2e8f0;
}

/* Process Line */
.process-section {
    background: #ffffff;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 50px;
    position: relative;
}

.process-step {
    text-align: center;
    position: relative;
    padding: 0 15px;
}

.process-step::after {
    content: '';
    position: absolute;
    top: 40px;
    right: -50%;
    width: 100%;
    height: 2px;
    background: dashed 2px #cbd5e1;
    z-index: 0;
}

.process-step:last-child::after {
    display: none;
}

.step-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #fff;
    font-weight: 700;
    margin: 0 auto 20px;
    position: relative;
    z-index: 1;
    box-shadow: 0 10px 20px rgba(59, 130, 246, 0.3);
}

.process-step h4 {
    color: #0b223f;
    font-size: 18px;
    margin-bottom: 10px;
}

.process-step p {
    color: #64748b;
    font-size: 14px;
}

.contact-section h2,
.contact-section h3 {
    color: #0b223f;
}

/* =========================================
   Responsive Global & Components Overrides
   ========================================= */

@media (max-width: 1199px) {
    .container {
        padding: 0 15px;
    }
}

@media (max-width: 991px) {
    .section-padding {
        padding: 70px 0;
    }

    .product-hero {
        padding: 130px 0 80px;
    }

    .product-hero h1 {
        font-size: 44px;
    }

    .eco-header-blue .section-title,
    .why-choose-us-products .section-title {
        font-size: 34px !important;
    }

    .eco-flex-grid {
        flex-direction: column;
        gap: 30px;
    }

    .eco-flex-left,
    .eco-flex-right {
        flex: 1 1 auto;
        width: 100%;
    }

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

    .eco-content-wrapper {
        margin-top: 40px;
    }

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

@media (max-width: 768px) {
    .section-padding {
        padding: 50px 0;
    }

    .product-hero {
        padding: 110px 0 60px;
    }

    .product-hero h1 {
        font-size: 34px;
    }

    .eco-header-blue .section-title,
    .why-choose-us-products .section-title {
        font-size: 28px !important;
        line-height: 1.3 !important;
    }

    .products-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

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

    .process-step::after {
        display: none;
    }

    .product-image-wrapper {
        height: 200px;
    }

    .product-card-content {
        padding: 30px 20px 25px;
    }

    .eco-list-item {
        flex-direction: column;
        padding: 25px;
        gap: 15px;
    }

    .eco-list-icon {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }

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

    .hero-text {
        font-size: 16px;
    }

    .page-title {
        font-size: 36px;
    }

    .trusted-num {
        font-size: 60px;
    }

    .trusted-content h3 {
        font-size: 24px;
    }
}

@media (max-width: 575px) {
    .product-hero h1 {
        font-size: 28px;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
    }

    .btn-yellow {
        width: 100%;
        justify-content: center;
    }

    .btn-play {
        width: 100%;
        justify-content: center;
    }
}

/* --- AI Solutions Section (Modern Symmetrical Layout) --- */
.ai-modern-section {
    background-color: #ffffff;
    position: relative;
    overflow: hidden;
}

.ai-modern-section .section-title {
    color: var(--theme-color2);
}

.ai-modern-section .section-header p {
    color: #475569;
}

/* --- AI Solutions Overview (DigiPlus Reference Redesign) --- */
.ai-new-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    margin-top: 40px;
}

.ai-new-card {
    position: relative;
    width: calc(33.333% - 20px);
    min-width: 310px;
    height: 420px;
    border-radius: 12px;
    overflow: visible; /* Allows the badge to pop out */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: transform 0.4s ease;
}

.ai-new-card:hover {
    transform: translateY(-10px);
}

.ai-new-card:hover .ai-new-img-wrap img {
    transform: scale(1.08);
}

.ai-new-img-wrap {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 12px;
    overflow: hidden;
    z-index: 1;
}

.ai-new-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.ai-new-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Dark gradient shading from bottom up so white text pops */
    background: linear-gradient(to top, rgba(5, 19, 41, 0.95) 0%, rgba(5, 19, 41, 0.6) 40%, rgba(5, 19, 41, 0.1) 100%);
    z-index: 2;
    transition: background 0.4s ease;
}

.ai-new-card:hover .ai-new-overlay {
    background: linear-gradient(to top, rgba(0, 173, 239, 0.9) 0%, rgba(5, 19, 41, 0.7) 50%, rgba(5, 19, 41, 0.2) 100%);
}

/* The distinct top-left cutout badge */
.ai-new-icon-box {
    position: absolute;
    top: -25px;
    left: -25px;
    width: 100px;
    height: 100px;
    background-color: var(--theme-color2); /* Dark inner */
    border-radius: 50%;
    border: 12px solid #f7f8fb; /* Thick border matching main background to fake a cutout */
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
    transition: transform 0.4s ease;
}

.ai-new-icon-box i {
    font-size: 36px;
    color: var(--theme-color1); /* Cyan icon */
    transition: color 0.4s ease;
}

.ai-new-card:hover .ai-new-icon-box i {
    color: #fff;
    transform: scale(1.1);
}

.ai-new-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 35px 30px;
    z-index: 10;
    display: flex;
    flex-direction: column;
}

.ai-new-num {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-color-muted);
    margin-bottom: 5px;
    font-family: var(--font-heading);
}

.ai-new-content h3 {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
}

.ai-new-content p {
    font-size: 15px;
    color: #d1d5db;
    margin-bottom: 15px;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 2; /* Truncate text neatly if too long */
    -webkit-box-orient: vertical;  
    overflow: hidden;
    opacity: 0;
    height: 0;
    transition: all 0.4s ease;
}

.ai-new-card:hover .ai-new-content p {
    opacity: 1;
    height: 48px; /* Approx 2 lines */
    margin-bottom: 25px;
}

.ai-new-link {
    color: #fff;
    font-size: 20px;
    align-self: flex-start;
    transition: transform 0.3s ease, color 0.3s ease;
}

.ai-new-card:hover .ai-new-link {
    color: var(--theme-color1);
    transform: translateX(5px);
}

/* Responsiveness overrides */
@media (max-width: 1199px) {
    .ai-new-card {
        width: calc(50% - 15px);
    }
}

@media (max-width: 767px) {
    .ai-new-card {
        /* Increased margin to protect the protruding badge from the edge */
        width: calc(100% - 40px);
        margin: 0 20px; 
        min-width: unset;
        height: 380px; /* slightly shorter on mobile */
    }
    
    .ai-new-icon-box {
        /* Scale down the cutout badge so it fits neatly */
        width: 80px;
        height: 80px;
        top: -20px;
        left: -20px;
        border-width: 8px;
    }
    
    .ai-new-icon-box i {
        font-size: 30px;
    }
    
    .ai-new-content h3 {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .ai-new-card {
        height: 350px;
    }
    
    .ai-new-content {
        padding: 25px 20px;
    }
}

/* FORCE MOBILE HEADER FIXES FOR INNER PAGES */
@media (max-width: 991px) {
    .header.header-light {
        background-color: #ffffff !important;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05) !important;
    }
    
    .header.header-light .mobile-menu-btn,
    .header.header-light .mobile-menu-btn i,
    .header.sticky .mobile-menu-btn,
    .mobile-menu-btn {
        display: block !important;
        color: var(--theme-color2) !important;
        opacity: 1 !important;
        visibility: visible !important;
    }
    
    .header-actions {
        display: flex !important;
        visibility: visible !important;
    }

    .d-none-mobile {
        display: none !important;
    }
}

/* FORCE GRID RESPONSIVENESS FOR INNER PAGES */
@media (max-width: 991px) {
    .overview-grid {
        grid-template-columns: 1fr !important;
    }
    .web-dev-build-grid,
    .tech-bento,
    .process-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
    .process-step::after {
        display: none !important;
    }
}

@media (max-width: 767px) {
    .web-dev-build-grid,
    .tech-bento,
    .process-grid {
        grid-template-columns: 1fr !important;
    }
}