?/* ===================================
   Global Styles
   =================================== */
:root {
    --primary-color: #28f960;
    --secondary-color: #1ecefa;
    --gray-color: #7e7e7e;
    --dark-color: #1a1a1a;
    --light-color: #f8f9fa;
    --text-color: #333;
    --text-light: #7e7e7e;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-color);
    line-height: 1.7;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
    color: var(--dark-color);
}

a {
    text-decoration: none;
    transition: all 0.3s ease;
}

img {
    /* max-width: 100%;
    height: auto; */
}

/* ===================================
   Navigation
   =================================== */
.navbar {
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    padding: 0.5rem 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.logo-img {
    height: 50px;
    width: auto;
}

.navbar-nav .nav-link {
    font-weight: 500;
    color: var(--text-color) !important;
    margin: 0 0.5rem;
    padding: 0.5rem 1rem !important;
    transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: #fff !important;
}

.navbar-nav .nav-link.active,
.navbar-nav .nav-link.active:hover {
    color: #000!important
}

.navbar-nav .dropdown-menu {
    border: 1px solid #e6edf7;
    border-radius: 12px;
    padding: 0.5rem 0;
    margin-top: 0.35rem;
}

.navbar-nav .dropdown-item {
    font-weight: 500;
    padding: 0.5rem 1rem;
}

.navbar-nav .dropdown-item:hover {
    color: var(--text-color);
    background-color: #f5f9ff;
}

.navbar-nav .btn {
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.navbar-nav .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(40, 249, 96, 0.3);
}

.nav-cta-item {
    margin-left: 0.5rem;
}

.header-cta-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.55rem 1.3rem;
    border: none;
    border-radius: 999px;
    background: var(--primary-color);
    color: #0c3f1d;
    font-weight: 700;
    font-size: 0.88rem;
    line-height: 1;
}

.header-cta-btn:hover {
    color: #0c3f1d;
    background: #25ea59;
}

.header-cta-btn::after {
    /* content: "";
    position: absolute;
    right: -14px;
    bottom: -8px;
    width: 54px;
    height: 20px;
    border-bottom: 3px solid #3f74ff;
    border-radius: 999px;
    pointer-events: none; */
}

@media (min-width: 992px) {
    .navbar .navbar-nav {
        align-items: center;
    }

    .nav-cta-item {
        display: flex;
        align-items: center;
    }

    .header-cta-btn {
        margin-top: 0 !important;
    }

    .navbar-nav .dropdown:hover .dropdown-menu {
        display: block;
    }
}

/* ===================================
   Hero Section
   =================================== */
.hero-section {
    background: rgba(0, 0, 0, 0.6);
    color: white;
    padding: 0;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
}

.hero-slider {
    min-height: 100vh;
    position: relative;
    z-index: 2;
}

.hero-slide {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 100px;
    position: relative;
    z-index: 2;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: var(--slide-bg-image);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
}

/* .hero-slide::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
} */

.hero-slide-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.hero-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.hero-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0;
    overflow: hidden;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    animation: floatShape 20s ease-in-out infinite;
}

.shape-1 {
    width: 300px;
    height: 300px;
    top: -150px;
    right: -150px;
    animation-delay: 0s;
}

.shape-2 {
    width: 200px;
    height: 200px;
    bottom: -100px;
    left: -100px;
    animation-delay: 5s;
}

.shape-3 {
    width: 150px;
    height: 150px;
    top: 50%;
    right: 10%;
    animation-delay: 10s;
}

@keyframes floatShape {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(30px, -30px) scale(1.1);
    }
    66% {
        transform: translate(-20px, 20px) scale(0.9);
    }
}

.hero-section .container,
.hero-slide .container {
    position: relative;
    z-index: 3;
}

.hero-slider .owl-item {
    min-height: 100vh;
}

.hero-slider .owl-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 2rem;
    z-index: 10;
    pointer-events: none;
}

.hero-slider .owl-nav button {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2) !important;
    border: 2px solid rgba(255, 255, 255, 0.5) !important;
    border-radius: 50%;
    color: white !important;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    pointer-events: auto;
    backdrop-filter: blur(10px);
}

.hero-slider .owl-nav button:hover {
    background: rgba(255, 255, 255, 0.3) !important;
    border-color: white !important;
    transform: scale(1.1);
}

.hero-slider .owl-nav button.owl-prev,
.hero-slider .owl-nav button.owl-next {
    margin: 0;
}

.hero-slider .owl-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1rem;
    z-index: 10;
}

.hero-slider .owl-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5) !important;
    margin: 0 !important;
    transition: all 0.3s ease;
}

.hero-slider .owl-dot.active {
    background: white !important;
    width: 30px;
    border-radius: 6px;
}

.hero-badge {
    /* display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 0.95rem;
    font-weight: 500;
    color: white;
    position: relative;
    z-index: 3; */
}

.hero-badge i {
    color: var(--primary-color);
}

.hero-title {
    font-size: 3.8rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.15;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
    letter-spacing: -0.5px;
    position: relative;
    z-index: 3;
}

.hero-subtitle {
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 1.5rem;
    font-weight: 400;
    line-height: 1.6;
    position: relative;
    z-index: 3;
}

.hero-features {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 2rem;
    position: relative;
    z-index: 3;
}

.hero-feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 500;
}

.hero-feature-item i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.hero-description {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    line-height: 1.7;
    position: relative;
    z-index: 3;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    position: relative;
    z-index: 3;
}

.btn-outline-light {
    border: 2px solid #1ecefa;
    color: #000;
    border-radius: 50px;
    padding: 0.75rem 2rem;
    font-weight: 600;
    transition: all 0.3s ease;
    background: #1ecefa;
    backdrop-filter: blur(10px);
    position: relative;
    z-index: 3;
}

.btn-outline-light:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: #000;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.2);
}

.hero-stats {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    margin-top: 3rem;
    padding-top: 3rem;
    position: relative;
    z-index: 3;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: white;
    line-height: 1;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.stat-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ===================================
   About Us Section
   =================================== */
.about-section {
    background: #2f2f2f;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
    position: relative;
    overflow: hidden;
    padding: 5rem 0;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 0;
}

.about-section .container {
    position: relative;
    z-index: 1;
}

.about-section .section-title,
.about-section .section-subtitle {
    color: white;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(40, 249, 96, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(50%, -50%);
}

.about-image {
    position: relative;
    padding: 1rem;
    background: linear-gradient(135deg, rgba(40, 249, 96, 0.05) 0%, rgba(30, 206, 250, 0.05) 100%);
    border-radius: 20px;
    overflow: visible;
}

.about-image::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: rotate(45deg);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }
    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    transition: all 0.4s ease;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.about-image:hover img {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.about-content {
    padding: 2rem 0 2rem 2rem;
}

.section-badge {
    display: block;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0 auto 1.5rem;
    width: fit-content;
}

.about-text {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.9;
    margin-bottom: 1.5rem;
}

.about-text strong {
    color: white;
    font-weight: 600;
}

.about-features {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 10;
}

.about-feature-item {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.25rem;
    border-radius: 15px;
    transition: all 0.4s ease;
    background: white;
    border: 2px solid rgba(40, 249, 96, 0.15);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    pointer-events: auto;
    backdrop-filter: blur(10px);
    min-width: 140px;
}

.about-feature-item:hover {
    background: linear-gradient(135deg, rgba(40, 249, 96, 0.08) 0%, rgba(30, 206, 250, 0.08) 100%);
    transform: translateY(-8px) scale(1.08);
    box-shadow: 0 15px 40px rgba(40, 249, 96, 0.25);
    border-color: var(--primary-color);
}

/* Position each box at different corners */
.feature-top-left {
    top: 25px;
    left: 25px;
}

.feature-top-right {
    top: 25px;
    right: 25px;
}

.feature-bottom-left {
    bottom: 25px;
    left: 25px;
}

.feature-bottom-right {
    bottom: 25px;
    right: 25px;
}

.feature-icon-box {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(40, 249, 96, 0.3);
    transition: all 0.3s ease;
}

.about-feature-item:hover .feature-icon-box {
    transform: rotate(5deg) scale(1.1);
    box-shadow: 0 6px 20px rgba(40, 249, 96, 0.4);
}

.feature-icon-box i {
    color: white;
    font-size: 1.4rem;
}

.feature-content {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.feature-number {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--dark-color);
    line-height: 1;
}

.feature-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.about-highlight {
    background: linear-gradient(135deg, rgba(40, 249, 96, 0.05) 0%, rgba(30, 206, 250, 0.05) 100%);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    display: flex;
    gap: 2rem;
    margin-top: 2.5rem;
    transition: all 0.4s ease;
    border: 1px solid rgba(40, 249, 96, 0.1);
    position: relative;
    overflow: hidden;
}

.about-highlight::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--primary-color), var(--secondary-color));
}

.about-highlight:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    border-color: rgba(40, 249, 96, 0.2);
}

.highlight-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
    flex-shrink: 0;
    box-shadow: 0 5px 20px rgba(40, 249, 96, 0.3);
    transition: all 0.3s ease;
}

.about-highlight:hover .highlight-icon {
    transform: rotate(5deg) scale(1.1);
    box-shadow: 0 8px 25px rgba(40, 249, 96, 0.4);
}

.highlight-content h5 {
    font-size: 1.4rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
    position: relative;
}

.highlight-content p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    margin: 0;
    font-size: 1.05rem;
}

.highlight-content strong {
    color: var(--primary-color);
    font-weight: 600;
}

.btn-primary {
    background: var(--primary-color);
    border: none;
    border-radius: 50px;
    padding: 0.75rem 2rem;
    font-weight: 600;
    color: #000000;
    transition: all 0.3s ease;
    position: relative;
    z-index: 3;
}

.btn-primary:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(40, 249, 96, 0.4);
}

.btn-outline-primary {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    border-radius: 50px;
    padding: 0.75rem 2rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-outline-primary:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px);
}

/* ===================================
   Section Styles
   =================================== */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    margin-top: 0;
    position: relative;
    display: inline-block;
    width: 100%;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #000;
    margin-top: 1rem;
}

/* ===================================
   Feature Cards
   =================================== */
.feature-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    height: 100%;
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 50px rgba(40, 249, 96, 0.2);
    border-color: rgba(40, 249, 96, 0.2);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 2.2rem;
    color: white;
    position: relative;
    transition: all 0.4s ease;
    box-shadow: 0 8px 25px rgba(40, 249, 96, 0.3);
}

.feature-icon::after {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 20px;
    padding: 3px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.feature-card:hover .feature-icon {
    transform: rotate(5deg) scale(1.1);
    box-shadow: 0 12px 35px rgba(40, 249, 96, 0.4);
}

.feature-card:hover .feature-icon::after {
    opacity: 1;
}

.feature-card h4 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
    font-weight: 700;
    line-height: 1.3;
    transition: color 0.3s ease;
    text-align: center;
}

.feature-card:hover h4 {
    
}

.feature-card p {
    color: var(--text-light);
    line-height: 1.9;
    font-size: 1.05rem;
}

.feature-card p strong {
    color: var(--dark-color);
    font-weight: 600;
    position: relative;
}

.feature-card:hover p strong {
    
}

/* ===================================
   Why Us Section
   =================================== */
.why-us-section {
    background: url('../img/section.jpg') center/cover no-repeat;
    color: white;
    position: relative;
    overflow: hidden;
    padding: 6rem 0;
}

.why-us-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* background: rgba(0, 0, 0, 0.3); */
    z-index: 0;
}

.why-us-section .container {
    position: relative;
    z-index: 1;
}

.why-us-section .section-title,
.why-us-section .section-subtitle {
    color: white;
}

.why-us-section > .container > .row > .col-lg-12 > p {
    color: white;
}

.why-us-section .feature-card h4,
.why-us-section .feature-card p,
.why-us-section .feature-card p strong {
    color: var(--dark-color);
}

.why-us-section .feature-card:hover h4,
.why-us-section .feature-card:hover p strong {
  
}

.why-us-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(40, 249, 96, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(30, 206, 250, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.why-us-section .container {
    position: relative;
    z-index: 1;
}

/* ===================================
   Custom List
   =================================== */
.custom-list {
    list-style: none;
    padding: 0;
}

.custom-list li {
    padding: 0.75rem 0;
    font-size: 1.1rem;
    color: var(--text-color);
}

.custom-list li i {
    color: var(--primary-color);
    margin-right: 1rem;
    font-size: 1.2rem;
}

.custom-list-compact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.custom-list-compact li {
    padding: 0.4rem 0;
    font-size: 1rem;
    color: var(--text-color);
}

.custom-list-compact li i {
    color: var(--primary-color);
    margin-right: 0.75rem;
    font-size: 1rem;
}

/* ===================================
   Pricing Section
   =================================== */
.pricing-section {
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.pricing-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 80% 20%, rgba(40, 249, 96, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 20% 80%, rgba(30, 206, 250, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.pricing-section .container {
    position: relative;
    z-index: 1;
}

.pricing-content {
    padding: 2rem 0;
}

.pricing-intro {
    font-size: 1.2rem;
    color: var(--dark-color);
    font-weight: 600;
    line-height: 1.6;
}

.pricing-text {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
}

.pricing-benefits {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin: 2rem 0;
}

.pricing-benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.pricing-benefit-item:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(40, 249, 96, 0.15);
    border-color: rgba(40, 249, 96, 0.2);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    flex-shrink: 0;
    box-shadow: 0 5px 15px rgba(40, 249, 96, 0.3);
    transition: all 0.3s ease;
}

.pricing-benefit-item:hover .benefit-icon {
    transform: rotate(5deg) scale(1.1);
    box-shadow: 0 8px 20px rgba(40, 249, 96, 0.4);
}

.benefit-content h5 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.benefit-content p {
    font-size: 0.95rem;
    color: var(--text-light);
    margin: 0;
    line-height: 1.6;
}

.pricing-highlight {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    background: linear-gradient(135deg, rgba(40, 249, 96, 0.05) 0%, rgba(30, 206, 250, 0.05) 100%);
    border-radius: 15px;
    border-left: 4px solid var(--primary-color);
    font-size: 1.05rem;
    color: var(--text-color);
    line-height: 1.7;
}

.pricing-highlight i {
    color: var(--primary-color);
    font-size: 1.3rem;
    flex-shrink: 0;
}

.pricing-highlight strong {
    color: var(--dark-color);
    font-weight: 600;
}

.pricing-image-wrapper {
    position: relative;
    padding: 1rem;
    background: linear-gradient(135deg, rgba(40, 249, 96, 0.05) 0%, rgba(30, 206, 250, 0.05) 100%);
    border-radius: 20px;
    overflow: visible;
}

.pricing-image {
    width: 100%;
    height: auto;
    border-radius: 15px;
    transition: all 0.4s ease;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.pricing-image-wrapper:hover .pricing-image {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.pricing-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 5px 20px rgba(40, 249, 96, 0.4);
    z-index: 10;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.pricing-badge i {
    font-size: 1rem;
}

/* ===================================
   Clients Carousel
   =================================== */
.clients-section {
    padding: 4rem 0;
    background: #ffffff;
}

.clients-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.clients-subtitle {
    color: var(--text-light);
    font-size: 1.1rem;
}

.clients-carousel {
    margin-top: 2rem;
}

.client-item {
    padding: 1rem;
}

.client-logo {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 150px;
    transition: all 0.3s ease;
    filter: grayscale(100%);
    opacity: 0.7;
}

.client-logo:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    filter: grayscale(0%);
    opacity: 1;
}

.client-logo img {
    max-height: 80px;
    width: auto;
    object-fit: contain;
}

.clients-carousel .owl-dots {
    margin-top: 2rem;
}

.clients-carousel .owl-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--gray-color) !important;
    margin: 0 5px;
    transition: all 0.3s ease;
}

.clients-carousel .owl-dot.active {
    background: var(--primary-color) !important;
    width: 30px;
    border-radius: 6px;
}

/* ===================================
   Services Section
   =================================== */
.services-section {
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(40, 249, 96, 0.02) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(30, 206, 250, 0.02) 0%, transparent 50%);
    pointer-events: none;
}

.services-section .container {
    position: relative;
    z-index: 1;
}

.service-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(40, 249, 96, 0.2);
    border-color: rgba(40, 249, 96, 0.2);
}

.service-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    position: relative;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.1);
}

.service-name {
    padding: 1.5rem;
    text-align: center;
    background: white;
    position: relative;
    z-index: 2;
}

.service-name h4 {
    font-size: 1.5rem;
    margin: 0;
    color: var(--dark-color);
    font-weight: 700;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.service-card:hover .service-name h4 {
    color: var(--primary-color);
}

.service-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: 2rem 1.5rem;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 3;
    box-shadow: 0 -5px 20px rgba(40, 249, 96, 0.3);
}

.service-card:hover .service-content {
    transform: translateY(0);
}

.service-content p {
    color: white;
    line-height: 1.8;
    font-size: 1.05rem;
    margin: 0;
    text-align: center;
    font-weight: 500;
}

.services-carousel {
    padding: 0.75rem 0;
}

.services-carousel .owl-stage-outer {
    padding: 0.6rem 0.2rem 1rem;
}

.services-carousel .owl-item {
    display: flex;
}

.services-carousel .service-card {
    width: 100%;
}

.services-carousel .owl-dots {
    margin-top: 1.2rem;
    text-align: center;
}

.services-carousel .owl-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--gray-color) !important;
    margin: 0 5px;
    transition: all 0.3s ease;
}

.services-carousel .owl-dot.active {
    width: 30px;
    border-radius: 6px;
    background: var(--primary-color) !important;
}

/* ===================================
   Industries Carousel
   =================================== */
.industry-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.4s ease;
    height: 100%;
    border: 2px solid transparent;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    isolation: isolate;
    transition: all 0.4s ease;
}

.industry-card-link,
.industry-card-link:hover,
.industry-card-link:focus {
    text-decoration: none;
    color: inherit;
}

.industry-card:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 20px 50px rgba(40, 249, 96, 0.2);
    border-color: rgba(40, 249, 96, 0.3);
    transition: all 0.4s ease;
}
.reason-card:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 20px 50px rgba(40, 249, 96, 0.2);
    border-color: rgba(40, 249, 96, 0.3);
       transition: all 0.4s ease;
}
.industry-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2.5rem;
    color: white;
    transition: all 0.4s ease;
    box-shadow: 0 8px 25px rgba(40, 249, 96, 0.3);
}

.industry-card:hover .industry-icon {
    transform: rotate(5deg) scale(1.1);
    box-shadow: 0 12px 35px rgba(40, 249, 96, 0.4);
}

.industry-card h4 {
    font-size: 1.4rem;
    margin: 0;
    color: var(--dark-color);
    font-weight: 700;
    transition: color 0.3s ease;
    position: relative;
    z-index: 1;
}

.industry-card .industry-desc {
    margin: 0;
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    text-align: center;
    opacity: 0;
    transform: translateX(-24px);
    transition: opacity 0.35s ease, transform 0.35s ease;
    color: #0b2e16;
    font-size: 0.95rem;
    line-height: 1.55;
    background: linear-gradient(90deg, rgba(40, 249, 96, 0.93) 0%, rgba(30, 206, 250, 0.93) 100%);
    z-index: 2;
}

.industry-card:hover h4 {
    color: var(--primary-color);
}

.industry-card:hover .industry-desc {
    opacity: 1;
    transform: translateX(0);
}

.industry-card .industry-icon {
    position: relative;
    z-index: 1;
}



#industries {
    background-image: url('../img/section.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
    position: relative;
}

#industries::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* background: rgba(0, 0, 0, 0.3); */
    z-index: 0;
}

#industries .container {
    position: relative;
    z-index: 1;
}

#industries .section-title,
#industries .section-subtitle {
    color: white;
}

#industries .industry-card h4 {
    color: var(--dark-color);
}

#industries .industry-card:hover h4 {
    color: var(--primary-color);
}

#tracking {
    background: #f8f9fa;
}

.owl-dots {
    text-align: center;
    margin-top: 2rem;
}

.owl-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--gray-color) !important;
    margin: 0 5px;
    transition: all 0.3s ease;
}

/* .owl-dot.active {
    background: var(--primary-color) !important;
    width: 30px;
    border-radius: 6px;
} */

/* ===================================
   Tracking Cards
   =================================== */
.tracking-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    text-align: center;
}

.tracking-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.tracking-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
}

.tracking-card h5 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.tracking-card p {
    color: var(--text-light);
    line-height: 1.8;
}

/* ===================================
   Contact Section
   =================================== */
.contact-section {
    background: url('../img/bg-2.png') center/cover no-repeat;
    background-color: #222421;
    color: white;
    position: relative;
    overflow: hidden;
}


.contact-section h1,
.contact-section h2,
.contact-section h3,
.contact-section h4,
.contact-section h5,
.contact-section h6,
.contact-section .section-title,
.contact-section .section-subtitle,
.contact-section p,
.contact-section .lead {
    color: white;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}


.contact-section .container {
    position: relative;
    z-index: 2;
}

.contact-buttons .btn {
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.contact-buttons .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* ===================================
   Footer
   =================================== */
.footer-section {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    color: rgba(255, 255, 255, 0.9);
    position: relative;
    overflow: hidden;
}
/* 
.footer-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(40, 249, 96, 0.5), transparent);
} */

.footer-top {
    padding: 4rem 0 2rem;
    position: relative;
}

.footer-bottom {
    padding: 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(0, 0, 0, 0.2);
}

.footer-widget {
    margin-bottom: 2rem;
}

.footer-logo-img {
    height: 50px;
    width: auto;
    /* filter: brightness(0) invert(1); */
    transition: all 0.3s ease;
}

.footer-logo-img:hover {
    filter: brightness(0) invert(1) drop-shadow(0 0 10px rgba(40, 249, 96, 0.5));
}

.footer-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.footer-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
    padding-left: 0;
}

.footer-links a::before {
    content: '?';
    position: absolute;
    left: -20px;
    opacity: 0;
    color: var(--primary-color);
    transition: all 0.3s ease;
}
#menu-footermenu{
list-style:none;
padding-left:12px;
}
.footer-links a:hover {
    color: var(--primary-color);
    padding-left: 20px;
    transform: translateX(5px);
}

.footer-links a:hover::before {
    opacity: 1;
    left: 0;
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

.footer-contact li i {
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-top: 0.2rem;
    min-width: 20px;
}

.footer-contact li span,
.footer-contact li a {
    line-height: 1.6;
}

.footer-contact li a {
    color: inherit;
    text-decoration: none;
}

.footer-contact li a:hover,
.footer-contact li a:focus,
.footer-contact li a:visited {
    color: inherit;
}

.footer-social {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.social-icon {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    text-decoration: none;
    backdrop-filter: blur(10px);
}

.social-icon:hover {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-color: var(--primary-color);
    transform: translateY(-5px) rotate(5deg);
    box-shadow: 0 8px 20px rgba(40, 249, 96, 0.3);
    color: white;
}

.footer-bottom {
    padding: 1.5rem 0;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin: 0;
}

.footer-bottom-links {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 1rem;
    flex-wrap: wrap;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.footer-bottom-links a:hover {
    color: var(--primary-color);
}

/* ===================================
   About Page (Standalone)
   =================================== */
.about-inner-banner {
    padding-top: 110px;
    padding-bottom: 70px;
    background: #ffffff;
    border-bottom: 1px solid rgba(148, 163, 184, 0.3);
}

.about-inner-banner .container {
    position: relative;
    z-index: 1;
}

.about-inner-eyebrow {
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-size: 0.8rem;
    color: #6b7280;
    margin-bottom: 0.5rem;
}

.about-inner-title {
    font-size: 2.4rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 0.75rem;
}

.about-inner-subtitle {
    max-width: 620px;
    font-size: 1.02rem;
    color: #4b5563;
    margin-bottom: 1.25rem;
}

.about-inner-breadcrumb {
    font-size: 0.85rem;
    color: #6b7280;
}

.about-inner-breadcrumb a {
    color: #111827;
    text-decoration: none;
}

.about-inner-breadcrumb a:hover {
    text-decoration: underline;
}

.about-inner-card {
    background: #ffffff;
    border-radius: 14px;
    border: 1px solid rgba(148, 163, 184, 0.4);
    padding: 0.9rem 1.1rem;
    box-shadow: 0 10px 35px rgba(15, 23, 42, 0.12);
}

.about-inner-stats div .h4 {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 0.1rem;
}

.about-inner-stats small {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.about-page-section {
    background:
        radial-gradient(circle at 0% 0%, rgba(40, 249, 96, 0.12) 0%, transparent 55%),
        radial-gradient(circle at 100% 100%, rgba(30, 206, 250, 0.12) 0%, transparent 55%),
        #f3f4f6;
    padding-top: 120px;
    padding-bottom: 80px;
}

.about-page-wrapper {
    
    margin: 0 auto;
    padding: 2rem ;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 24px 80px rgba(15, 23, 42, 0.16);
    border: 1px solid rgba(148, 163, 184, 0.35);
    position: relative;
    overflow: hidden;
}

.about-page-kicker {
    letter-spacing: 0.12em;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

.about-page-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.about-page-heading {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.about-page-wrapper p {
    font-size: 1rem;
    line-height: 1.8;
    color: #111827;
}

.about-page-wrapper p strong {
    font-weight: 600;
}

.about-page-list {
    padding-left: 1.2rem;
    margin-bottom: 1.5rem;
}

.about-page-list li {
    margin-bottom: 0.4rem;
    color: #111827;
}

.about-page-contact a {
    color: var(--primary-color);
    text-decoration: none;
}

.about-page-contact a:hover {
    text-decoration: underline;
}

.about-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 2.1fr) minmax(0, 1.6fr);
    gap: 2.5rem;
    align-items: flex-start;
}

.about-page-lead {
    font-size: 1.05rem;
}

.about-meta-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.about-meta-pill {
    display: inline-flex;
    align-items: center;
    padding: 0.45rem 0.9rem;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.03);
    border: 1px solid rgba(148, 163, 184, 0.6);
    font-size: 0.84rem;
    color: #111827;
}

.about-hero-card {
    background: linear-gradient(145deg, #0f172a, #020617);
    border-radius: 18px;
    padding: 1.75rem 1.9rem;
    color: white;
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.65);
    position: relative;
    overflow: hidden;
}

.about-hero-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 0% 0%, rgba(40, 249, 96, 0.18) 0%, transparent 60%),
        radial-gradient(circle at 100% 100%, rgba(30, 206, 250, 0.18) 0%, transparent 60%);
    opacity: 0.8;
    mix-blend-mode: screen;
    pointer-events: none;
}

.about-hero-card-title {
    position: relative;
    z-index: 1;
    font-size: 1.3rem;
}

.about-hero-list {
    position: relative;
    z-index: 1;
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.about-hero-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    font-size: 0.95rem;
}

.about-hero-list i {
    width: 28px;
    height: 28px;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.85);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 0.9rem;
    box-shadow: 0 0 0 1px rgba(148, 163, 184, 0.4);
}

.about-hero-footer {
    position: relative;
    z-index: 1;
    border-top: 1px dashed rgba(148, 163, 184, 0.6);
    padding-top: 0.75rem;
    margin-top: 1.1rem;
}

.about-two-column p {
    font-size: 0.98rem;
}

.about-services-block {
    border-top: 1px solid rgba(148, 163, 184, 0.35);
    padding-top: 2.5rem;
}

.about-services-tag {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: #6b7280;
    font-weight: 600;
}

.about-services-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem 2rem;
    margin-top: 1.5rem;
}

.about-service-item {
    display: flex;
    gap: 0.85rem;
    align-items: flex-start;
}

.about-service-item i {
    width: 34px;
    height: 34px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(40, 249, 96, 0.12);
    color: var(--primary-color);
    font-size: 1rem;
    flex-shrink: 0;
}

.about-service-item h5 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.about-service-item p {
    font-size: 0.9rem;
    margin-bottom: 0;
    color: #4b5563;
}

.about-goal-panel {
    margin-top: 2.75rem;
    padding: 1.75rem 1.9rem;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(40, 249, 96, 0.12), rgba(30, 206, 250, 0.12));
    border: 1px solid rgba(74, 222, 128, 0.5);
    display: flex;
    flex-wrap: wrap;
    gap: 1.3rem 2.5rem;
    align-items: center;
    justify-content: space-between;
}

.about-goal-text {
    flex: 1 1 260px;
}

.about-goal-contact {
    flex: 0 0 auto;
}

@media (max-width: 992px) {
    .about-hero-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .about-hero-card {
        margin-top: 1.5rem;
    }

    .about-services-grid {
        grid-template-columns: minmax(0, 1fr);
    }
}

@media (max-width: 768px) {
    .about-page-wrapper {
        padding: 2rem 1.75rem;
        border-radius: 14px;
    }

    .about-page-title {
        font-size: 1.8rem;
    }

    .about-page-heading {
        font-size: 1.25rem;
    }
}

.footer-bottom-links .separator {
    color: rgba(255, 255, 255, 0.3);
    margin: 0 0.5rem;
}

/* ===================================
   Responsive Styles
   =================================== */
@media (max-width: 992px) {
    .hero-section {
        padding: 100px 0 80px;
        min-height: auto;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .about-feature-item {
        font-size: 0.9rem;
        padding: 0.7rem 1rem;
        max-width: 180px;
    }
    
    .about-highlight {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    .pricing-image-wrapper{
    display:none;
    }
    .hero-features {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .hero-feature-item {
        font-size: 1rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .feature-card,
    .tracking-card {
        margin-bottom: 2rem;
    }
    
    .why-us-section {
        padding: 4rem 0;
    }
    
    .feature-card {
        padding: 2rem;
    }
    
    .feature-icon {
        width: 70px;
        height: 70px;
        font-size: 2rem;
    }
    
    .why-us-section {
        padding: 4rem 0;
    }
    
    .pricing-benefit-item {
        padding: 1.25rem;
        gap: 1.25rem;
    }
    
    .benefit-icon {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
    
    .benefit-content h5 {
        font-size: 1.1rem;
    }
    
    .pricing-highlight {
        padding: 1rem 1.25rem;
        font-size: 1rem;
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }
    
    .pricing-badge {
        top: 10px;
        right: 10px;
        padding: 0.6rem 1.2rem;
        font-size: 0.85rem;
    }
    
    .navbar-nav .btn {
        margin-top: 1rem;
    }

    .nav-cta-item {
        margin-left: 0;
    }

    .header-cta-btn {
        width: max-content;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-label {
        font-size: 0.85rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .footer-top {
        padding: 3.5rem 0 2rem;
    }
    
    .footer-bottom-links {
        flex-direction: row;
        gap: 0.5rem;
        align-items: flex-end;
    }
    
    .footer-bottom-links .separator {
        display: none;
    }
    
    .pricing-content {
        padding: 1rem 0;
    }
    
    .pricing-intro {
        font-size: 1.1rem;
        text-align:center;
    }
    
    .pricing-text {
        font-size: 1rem;
    }
    
    .pricing-benefits {
        gap: 1.25rem;
        margin: 1.5rem 0;
    }
    
    .pricing-benefit-item {
        padding: 1rem;
        gap: 1rem;
        flex-direction: column;
        text-align: center;
    }
    
    .benefit-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
        margin: 0 auto;
    }
    
    .benefit-content h5 {
        font-size: 1rem;
    }
    
    .benefit-content p {
        font-size: 0.9rem;
    }
    
    .pricing-highlight {
        padding: 1rem;
        font-size: 0.95rem;
    }
    
    .pricing-badge {
        top: 5px;
        right: 5px;
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }
    
    .service-image {
        height: 220px;
    }
    
    .service-name {
        padding: 1.25rem;
    }
    
    .service-name h4 {
        font-size: 1.3rem;
    }
    
    .service-content {
        padding: 1.75rem 1.25rem;
    }
    
    .service-content p {
        font-size: 1rem;
    }
}



@media (max-width: 480px) {
    .about-feature-item {
        padding: 0.6rem 0.8rem;
        gap: 0.6rem;
        min-width: 100px;
    }
    
    .feature-icon-box {
        width: 35px;
        height: 35px;
        border-radius: 8px;
    }
    
    .feature-icon-box i {
        font-size: 1rem;
    }
    
    .feature-number {
        font-size: 1rem;
    }
    
    .feature-label {
        font-size: 0.7rem;
    }
    
    .feature-top-left,
    .feature-top-right {
        top: 10px;
    }
    
    .feature-top-left,
    .feature-bottom-left {
        left: 10px;
    }
    
    .feature-top-right,
    .feature-bottom-right {
        right: 10px;
    }
    
    .feature-bottom-left,
    .feature-bottom-right {
        bottom: 10px;
    }
    
    .about-highlight {
        padding: 2rem;
        flex-direction: column;
        text-align: left;
        gap: 1.5rem;
    }
    
    .highlight-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        margin: 0;
    }
    
    .highlight-content h5 {
        font-size: 1.2rem;
    }
    
    .highlight-content p {
        font-size: 1rem;
    }
    
    .footer-top {
        padding: 3rem 0 1.5rem;
    }
    
    .footer-widget {
        margin-bottom: .9rem;
    }
    
    .footer-title {
        font-size: 1.1rem;
    }
    
    .footer-bottom {
        padding: 1.5rem 0;
        text-align: center;
    }
    
    .footer-bottom-links {
        justify-content: center;
        margin-top: 1rem;
    }
    
    .social-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

/* ===================================
   About Page
   =================================== */
.about-page {
    background: linear-gradient(180deg, #f3f6fb 0%, #eef4ff 35%, #f7f9fc 100%);
}

.about-page .navbar-nav .nav-link.active {
    color: var(--primary-color) !important;
}

.about-v2 .navbar-nav .nav-link.active,
.about-v2 .navbar-nav .nav-link.active:hover {
    background: #1ecefa;
    color: #0b1016 !important;
    border-radius: 999px;
    padding: 0.45rem 1.1rem !important;
}

.about-v2 .navbar-light .navbar-toggler {
    border-color: rgba(255, 255, 255, 0.35);
}

.about-v2 .navbar-light .navbar-toggler-icon {
    filter: invert(1);
}

.about-hero {
    position: relative;
    min-height: 360px;
    padding: 150px 0 90px;
    display: flex;
    align-items: center;
    background: url("../img/hero-banner.jpg") center center / cover no-repeat;
    color: #ffffff;
    overflow: hidden;
}

.about-hero::before {
    content: none;
}

.about-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(10, 20, 35, 0.7) 0%, rgba(10, 20, 35, 0.68) 100%);
}

.about-hero .container {
    z-index: 1;
}

.about-hero-tag {
    display: inline-block;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: #041017;
    background: linear-gradient(120deg, var(--primary-color), var(--secondary-color));
}

.about-hero-title {
    color: #ffffff;
    font-size: clamp(2rem, 5vw, 3.3rem);
    line-height: 1.15;
    margin: 0;
    letter-spacing: 0.4px;
    text-shadow: 0 6px 24px rgba(0, 0, 0, 0.35);
}

.about-hero-subtitle {
    color: rgba(255, 255, 255, 0.88);
    font-size: 1.1rem;
    max-width: 720px;
    margin: 0 auto;
}

.about-hero-v2 {
    position: relative;
    padding: 150px 0 120px;
    background: url('../img/cms-bg.png') center/cover no-repeat;
    color: #f3fbff;
    text-align: center;
}

.about-hero-v2::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 20%, rgba(49, 242, 102, 0.18), transparent 55%),
        radial-gradient(circle at 85% 60%, rgba(30, 206, 250, 0.2), transparent 60%);
    opacity: 0.7;
    pointer-events: none;
}

.about-hero-v2 .about-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(5, 8, 14, 0.72), rgba(5, 8, 14, 0.58));
}

.about-hero-inner {
    position: relative;
    z-index: 1;

    margin: 0 auto;
}

.about-hero-title {
    color: #fff;
    font-size: clamp(38px, 4vw, 56px);
    font-weight: 600;
    line-height: 1.1;
    margin-bottom: 14px;
}

.about-hero-pill {
    display: inline-block;
    background: #31f266;
    color: #0b1510;
    padding: 0.18em 0.6em 0.24em;
    border-radius: 999px;
    margin-right: 0.2em;
    box-shadow: 0 12px 26px rgba(10, 18, 13, 0.25);
}

.about-hero-subtitle {
    font-size: 18px;
    color: rgba(245, 250, 255, 0.92);
}

.about-blob-section {
    padding:0px 0;
    background: #ffffff;
}

.about-blob-card {
    position: relative;
    display: grid;
    place-items: center;
    padding: 40px 20px;
}

.about-blob-shape {
    width: min(100%, 1020px);
    height: auto;
    display: block;
}

.about-blob-content {
    position: absolute;
    max-width: 720px;
    padding: 20px 24px;
    text-align: center;
    color: #0f2317;
}

.about-blob-content h2 {
    font-size: clamp(28px, 3vw, 40px);
    margin-bottom: 14px;
}

.about-blob-content p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 14px;
}

.about-blob-badge {
    position: absolute;
    top: 0px;
    right: 0%;

}

.about-blob-badge img {
 animation: logoPulse 2.4s ease-in-out infinite;
    transform-origin: center;
    display: block;
    object-fit: contain;
}
.intro-line-2 {
    display: block;
    margin-top: 34px;
    height: 2px;
    background: #040404;
    position: relative;
    overflow: hidden;
    animation: lineBlink 2.4s ease-in-out infinite;
}
.about-approach-section {
    position: relative;
    padding: 90px 0;
    background: #0b0c0e url('../img/section-2.png') center/cover no-repeat;
    color: #f4f6f8;
    overflow: hidden;
}

.about-approach-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.08) 0, transparent 45%),
        radial-gradient(circle at 80% 10%, rgba(255, 255, 255, 0.06) 0, transparent 40%),
        radial-gradient(circle, rgba(255, 255, 255, 0.12) 1px, transparent 1.8px);
    background-size: 420px 420px, 520px 520px, 18px 18px;
    opacity: 0.35;
    pointer-events: none;
}

.about-approach-section .container {
    position: relative;
    z-index: 1;
}

.about-approach-copy h2 {
    font-size: clamp(30px, 3.2vw, 46px);
    margin-bottom: 16px;
    color: #fff;
}

.about-approach-copy p {
    color: rgba(241, 245, 249, 0.82);
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 16px;
}

.about-approach-services h3 {
    font-size: clamp(24px, 2.6vw, 34px);
    margin: 18px 0 10px;
    color: #fff;
}

.about-approach-services p {
    color: rgba(241, 245, 249, 0.78);
    margin-bottom: 18px;
}

.about-approach-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px 32px;
    margin-bottom: 18px;
}

.about-approach-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.about-approach-list li {
    position: relative;
    padding-left: 18px;
    margin-bottom: 10px;
    color: rgba(241, 245, 249, 0.9);
    font-size: 15px;
}

.about-approach-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #31f266;
    box-shadow: 0 0 10px rgba(49, 242, 102, 0.5);
}

.about-approach-note {
    color: rgba(241, 245, 249, 0.7);
    margin-bottom: 0;
}

.about-approach-media {
    border-radius: 26px;
    overflow: hidden;
    box-shadow: 0 18px 38px rgba(0, 0, 0, 0.45);
}

.about-approach-media img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;

}

.about-different-section {
    padding: 90px 0;
    background: linear-gradient(180deg, #ffffff 0%, #e6ffec 34%, #cafff3 68%, #caf4ff 100%);
}

.about-different-media {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 16px 34px rgba(10, 40, 30, 0.18);
}

.about-different-media img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;

}

.about-different-copy h2 {
    font-size: clamp(28px, 3vw, 40px);
    margin-bottom: 14px;
}

.about-different-copy ul {
    list-style: none;
    padding: 0;
    margin: 0 0 22px;
}

.about-different-copy li {
    position: relative;
    padding-left: 18px;
    margin-bottom: 10px;
    color: #1b2a24;
    font-size: 16px;
}

.about-different-copy li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #0c1d16;
}

.about-different-copy h3 {
    font-size: clamp(24px, 2.6vw, 32px);
    margin: 12px 0 10px;
}

.about-different-copy p {
    color: #1b2a24;
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
}

.about-contact-banner {
    padding: 50px 0;
    background: linear-gradient(120deg, #00d73a 0%, #4eff7d 100%);
}

.about-contact-banner-inner {

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
   
}

.about-contact-banner-copy {
    display: grid;
    gap: 22px;
}

.about-contact-row {
    display: grid;
    gap: 6px;
}

.about-contact-label {
    font-size: 1.1rem;
    color: rgba(11, 25, 18, 0.82);
}

.about-contact-link {
    font-size: clamp(20px, 2.4vw, 30px);
    font-weight: 700;
    color: #0b1610;
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 6px;
}

.about-contact-link:hover {
    color: #06200f;
}

.about-contact-banner-logo {
 background: #ffffff;
    border-radius: 18px;
    padding: 26px;
    min-width: 290px;
    min-height: 201px;
    display: grid;
    place-items: center;
    box-shadow: 0 14px 32px rgba(7, 23, 16, 0.18);
}

.about-contact-banner-logo img {
 
    object-fit: contain;
}

.about-content-section {
    padding: 86px 0;
}

.about-split-section {
    position: relative;
    padding: 1.1rem;
    border-radius: 20px;
    border: 1px solid #e4ebf4;
    background: rgba(255, 255, 255, 0.7);
}

.about-split-section:nth-of-type(even) {
    background: rgba(242, 248, 255, 0.85);
}

.about-card,
.about-side-panel {
    background: #ffffff;
    border-radius: 14px;
    padding: 2rem;
    /* border: 1px solid #e6edf5;
    box-shadow: 0 10px 26px rgba(9, 29, 56, 0.07);
    transition: box-shadow 0.25s ease, border-color 0.25s ease; */
}

.about-card:hover,
.about-side-panel:hover {
    border-color: #d9e4f2;
    box-shadow: 0 14px 30px rgba(9, 29, 56, 0.1);
}

.about-card-large {
    height: 100%;
}

.about-card h2,
.about-side-panel h3 {
    font-size: 1.45rem;
    margin-bottom: 1.1rem;
    position: relative;
    padding-bottom: 0.65rem;
}

.about-card h2::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 46px;
    height: 3px;
    border-radius: 6px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.about-card p,
.about-side-panel li,
.about-contact-value {
    color: #44566d;
    line-height: 1.76;
    margin-bottom: 0.9rem;
    font-size: 1.01rem;
}

.about-card strong {
    color: #192c43;
}

.about-side-panel {
    background: linear-gradient(155deg, #ffffff 0%, #f5fbff 100%);
}

.about-side-panel ul,
.about-list {
    margin: 0.7rem 0 0.5rem;
    padding-left: 0;
    list-style: none;
}

.about-side-panel li,
.about-list li {
    position: relative;
    padding-left: 1.7rem;
    margin-bottom: 0.55rem;
}

.about-side-panel li::before,
.about-list li::before {
    content: "\f058";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 0.15rem;
    font-size: 0.95rem;
    color: var(--primary-color);
}

.about-split-image {
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid #dbe6f0;
    box-shadow: 0 12px 30px rgba(15, 34, 56, 0.14);
    height: 100%;
    aspect-ratio: 4 / 3;
}

.about-split-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.about-split-image:hover img {
    transform: scale(1.03);
}

.about-visual-wrap {
    position: sticky;
    top: 110px;
}

.about-visual-image {
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid #dbe6f0;
    box-shadow: 0 18px 38px rgba(15, 34, 56, 0.18);
}

.about-visual-image img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
}

.about-visual-panel {
    margin-top: 1rem;
    background: linear-gradient(155deg, #ffffff 0%, #f5fbff 100%);
    border: 1px solid #e8edf5;
    border-radius: 16px;
    padding: 1.4rem 1.3rem;
    box-shadow: 0 12px 28px rgba(10, 30, 60, 0.08);
}

.about-visual-panel h3 {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
}

.about-visual-panel ul {
    margin: 0;
    padding-left: 1.1rem;
}

.about-visual-panel li {
    color: #415064;
    margin-bottom: 0.45rem;
    line-height: 1.7;
}

.about-goal-title {
    margin-top: 1.8rem;
}

.about-contact-bar {
    background: linear-gradient(120deg, #f6f9ff, #eef5fb);
    border-radius: 14px;
    border: 1px solid #dce6f1;
    padding: 1rem;
    display: flex;
    gap: 0.9rem;
}

.about-contact-item {
    flex: 1 1 320px;
    min-height: 88px;
    background: #ffffff;
    border: 1px solid #e4edf7;
    border-radius: 12px;
    padding: 0.9rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.85rem;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.about-contact-item:hover {
    border-color: #cfe0f3;
    box-shadow: 0 8px 20px rgba(17, 45, 79, 0.08);
}

.about-contact-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(40, 249, 96, 0.2), rgba(30, 206, 250, 0.24));
    color: #106a86;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}

.about-contact-content {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.about-contact-label {
    font-size: 22px;
    letter-spacing: 0.3px;

    color: #000000;
 
    margin-bottom: 0.1rem;
}

.about-contact-bar a {
    color: #123b5d;
    font-weight: 600;
    font-size: 1.2rem;
    line-height: 1.3;
    word-break: break-all;
}

.about-contact-value {
    color: #123b5d;
    font-weight: 600;
    font-size: 1.25rem;
    margin: 0;
}

.about-contact-bar a:hover {
    color: #0e88aa;
}





/* ===================================
   Services Page
   =================================== */
.services-page {
}

.services-page .navbar-nav .nav-link.active {
    color: var(--primary-color) !important;
}

.services-v2 .navbar-nav .nav-link.active,
.services-v2 .navbar-nav .nav-link.active:hover {
    background: #1ecefa;
    color: #0b1016 !important;
    border-radius: 999px;
    padding: 0.45rem 1.1rem !important;
}

.services-v2 .navbar-light .navbar-toggler {
    border-color: rgba(255, 255, 255, 0.35);
}

.services-v2 .navbar-light .navbar-toggler-icon {
    filter: invert(1);
}

.services-hero {
    position: relative;
    min-height: 360px;
    padding: 150px 0 90px;
    display: flex;
    align-items: center;
    background: url("../img/hero-banner.jpg") center center / cover no-repeat;
    color: #ffffff;
    overflow: hidden;
}

.services-hero-overlay {
    position: absolute;
    inset: 0;
}

.services-hero .container {
    z-index: 1;
}

.services-hero-title {
    color: #ffffff;
    font-size: clamp(2rem, 5vw, 3.3rem);
    line-height: 1.15;
    letter-spacing: 0.4px;
    margin: 0;
    text-shadow: 0 6px 24px rgba(0, 0, 0, 0.35);
}

.services-hero-v2 {
    position: relative;
    padding: 150px 0 120px;
    background: url('../img/hero-banner.jpg') center/cover no-repeat;
    color: #f3fbff;
    text-align: center;
}

.services-hero-v2::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 20%, rgba(49, 242, 102, 0.18), transparent 55%),
        radial-gradient(circle at 85% 60%, rgba(30, 206, 250, 0.2), transparent 60%);
    opacity: 0.7;
    pointer-events: none;
}

.services-hero-v2 .services-hero-overlay {
    position: absolute;
    inset: 0;
}

.services-hero-inner {
    position: relative;
    z-index: 1;
    /* max-width: 760px; */
    margin: 0 auto;
}

.services-hero-title {
    color: #fff;
    font-size: clamp(38px, 4vw, 56px);
    font-weight: 600;
    line-height: 1.1;
    margin-bottom: 14px;
}

.services-hero-pill {
    display: inline-block;
    background: #31f266;
    color: #0b1510;
    padding: 0.18em 0.6em 0.24em;
    border-radius: 999px;
    margin-right: 0.2em;
    box-shadow: 0 12px 26px rgba(10, 18, 13, 0.25);
}

.services-hero-subtitle {
    font-size: 18px;
    color: rgba(245, 250, 255, 0.92);
}

.services-content-section {
    padding: 86px 0;
}

.services-intro-v2 {
    padding: 70px 0 40px;
}

.services-grid-section {
    padding: 10px 0 80px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 26px;
}

.service-tile {
    background: #ffffff;
    border-radius: 20px;
    border: 1px solid #e6edf3;
    box-shadow: 0 16px 32px rgba(9, 22, 30, 0.08);
    overflow: hidden;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-tile:hover {
    transform: translateY(-8px);
    box-shadow: 0 22px 40px rgba(9, 22, 30, 0.14);
}

.service-tile-media {
    padding: 18px 18px 0;
}

.service-tile-media img {
    width: 100%;
    height: 180px;
    border-radius: 16px;
    object-fit: cover;
    display: block;
}

.service-tile-body {
    padding: 18px 22px 34px;
}

.service-tile-body h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.service-tile-body p {
    font-size: 14px;
    color: #41505c;
    line-height: 1.6;
    margin-bottom: 12px;
}

.service-tile-body h4 {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 14px 0 8px;
    color: #1f2b33;
}

.service-tile-list {
    margin: 0 0 12px;
    padding-left: 18px;
    display: grid;
    gap: 6px;
}

.service-tile-list li {
    font-size: 14px;
    color: #2b3540;
}

.service-tile-note {
    margin: 0;
    font-weight: 600;
    color: #1b2a20;
}

.service-tile-accent {
    position: absolute;
    left: 50%;
    bottom: 14px;
    width: 50%;
    height: 4px;
    border-radius: 999px;
    background: var(--primary-color);
    transform: translateX(-50%);
}

.services-intro-media {
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 18px 40px rgba(18, 32, 40, 0.18);
}

.services-intro-media img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.services-intro-copy p {
    color: #3b4a58;
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 16px;
}

.services-intro-list {
    list-style: none;
    padding: 0;
    margin: 18px 0 22px;
    display: grid;
    gap: 12px;
}

.services-intro-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-weight: 600;
    color: #2b2f36;
    line-height: 1.6;
}

.services-intro-list img {
    width: 24px;
    height: 24px;
    margin-top: 4px;
    flex-shrink: 0;
}

.services-timeline-section {
    padding: 70px 0;
    background: linear-gradient(180deg, #ffffff 0%, #e6ffec 35%, #cafff3 70%, #caf4ff 100%);
}

.services-timeline-section--cosmetic {
    background: linear-gradient(180deg, #ffffff 0%, #e6ffec 35%, #cafff3 70%, #caf4ff 100%);
    padding: 70px 0 80px;
}

.services-timeline-section--cosmetic .services-timeline-header h2 {
    margin-bottom: 18px;
}

.services-timeline-section--cosmetic .services-timeline {
    /* max-width: 760px; */
    padding-left: 34px;
}

.services-timeline-section--cosmetic .services-timeline::before {
    left: 14px;
}

.services-timeline-section--cosmetic .services-timeline-item::before {
    left: -28px;
}

.services-timeline-section--orthodontist {
    background: linear-gradient(180deg, #ffffff 0%, #e6ffec 35%, #cafff3 70%, #caf4ff 100%);
    padding: 70px 0 80px;
}

.services-timeline-section--dark {
    padding: 80px 0;
    background: radial-gradient(circle at 15% 20%, rgba(49, 242, 102, 0.12), transparent 45%),
        radial-gradient(circle at 85% 65%, rgba(30, 206, 250, 0.12), transparent 45%),
        #0b0b0b url('../img/vet-bg.png') center/cover no-repeat;
}

.services-timeline-section--dark .services-timeline-header h2 {
    color: #31f266;
}

.services-timeline-section--dark .services-timeline::before {
    background: #31f266;
}

.services-timeline-section--dark .services-timeline-item::before {
    background: #31f266;
    box-shadow: 0 0 0 10px rgba(49, 242, 102, 0.18);
}

.services-timeline-section--dark .services-timeline-item h3 {
    color: #ffffff;
}

.services-timeline-section--dark .services-timeline-item p {
    color: rgba(255, 255, 255, 0.78);
}

.services-specialist-section {
    padding: 80px 0;
    background: linear-gradient(90deg, #21c44c 0%, #37e26c 50%, #21c44c 100%);
}

.services-specialist-header {
    text-align: center;
    margin-bottom: 34px;
}

.services-specialist-header h2 {
    color: #173823;
    font-size: clamp(28px, 3vw, 40px);
    margin: 0;
    font-weight: 700;
}

.services-specialist-card {
    background: linear-gradient(120deg, #b9f7cd 0%, #d9ffe6 100%);
    border-radius: 18px;
    padding: 26px 24px;
    height: 100%;
    box-shadow: 0 16px 30px rgba(12, 55, 26, 0.18);
}

.services-specialist-card h3 {
    margin-bottom: 10px;
    font-size: 1.2rem;
    color: #173823;
}

.services-specialist-card p {
    margin: 0;
    color: #1d3526;
    line-height: 1.7;
    font-size: 0.98rem;
}

.services-timeline-header h2 {
    font-size: clamp(28px, 3vw, 40px);
    margin-bottom: 28px;
    color: #2b2f36;
}

.services-timeline {
    position: relative;
    padding-left: 40px;
}

.services-timeline::before {
    content: "";
    position: absolute;
    left: 18px;
    top: 6px;
    bottom: 6px;
    width: 2px;
    background: #31f266;
    border-radius: 999px;
}

.services-timeline-item {
    position: relative;
    padding: 6px 0 18px 22px;
}

.services-timeline-item::before {
    content: "";
    position: absolute;
    left: -30px;
    top: 6px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #31f266;
    box-shadow: 0 0 0 10px rgba(49, 242, 102, 0.18);
}

.services-timeline-item h3 {
    margin: 0 0 6px;
    font-size: 1.2rem;
    color: #2b2f36;
}

.services-timeline-item p {
    margin: 0;
    color: #394857;
    line-height: 1.7;
    font-size: 0.98rem;
}

.services-emergency-section {
    padding: 80px 0;
    background: radial-gradient(circle at 15% 20%, rgba(49, 242, 102, 0.12), transparent 45%),
        radial-gradient(circle at 85% 65%, rgba(30, 206, 250, 0.12), transparent 45%),
        #0b0b0b url('../img/ind-bg.png') center/cover no-repeat;
    color: #ffffff;
}

.services-emergency-header {
    text-align: center;
    margin-bottom: 36px;
}

.services-emergency-header h2 {
    font-size: clamp(28px, 3vw, 40px);
    margin: 0;
    color: #ffffff;
}

.services-emergency-panel {
    border: 1px solid #fff;
    border-radius: 0 0 24px 24px;
    overflow: hidden;
    border-top: none;
}

.services-emergency-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.services-emergency-card {
    padding: 28px 26px;
    border-right: 1px solid #fff;
    min-height: 220px;
}

.services-emergency-grid--top .services-emergency-card {
    min-height: 240px;
    border-bottom: 1px solid #fff;
   
}

.services-emergency-grid--top .services-emergency-card:first-child {
    border-top-left-radius: 24px;
}

.services-emergency-grid--top .services-emergency-card:nth-child(3) {
    border-top-right-radius: 24px;
    border-right: none;
}

.services-emergency-grid--bottom {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.services-emergency-grid--bottom .services-emergency-card:nth-child(2) {
    border-right: none;
}

.services-emergency-grid--bottom .services-emergency-card {
    border-top: none;
    border-bottom: none;
}

.services-emergency-card h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: #ffffff;
}

.services-emergency-card p {
    color: rgba(255, 255, 255, 0.75);
    margin: 0;
    line-height: 1.7;
    font-size: 0.95rem;
}







.services-intro-card {
    background: #ffffff;
    border: 1px solid #e5edf8;
    border-radius: 14px;
    padding: 2rem;
    box-shadow: 0 10px 25px rgba(12, 30, 54, 0.07);
}

.services-intro-card h2 {
    font-size: 1.8rem;
    margin-bottom: 0.8rem;
}

.services-intro-card p {
    margin: 0;
    color: #42556d;
    line-height: 1.8;
}

.service-split {
    position: relative;
    padding: 1.1rem;
    border-radius: 20px;
    border: 1px solid #e3ebf5;
    background: rgba(255, 255, 255, 0.72);
}

.service-split:nth-of-type(even) {
    background: rgba(242, 248, 255, 0.86);
}

.service-card {
    background: #ffffff;
    border: 1px solid #e6edf7;
    border-radius: 14px;
    box-shadow: 0 10px 26px rgba(10, 31, 59, 0.07);
    padding: 1.8rem;
    transition: box-shadow 0.25s ease, border-color 0.25s ease;
}
.home-servcice .service-card {
    background: #ffffff;
    border: 1px solid #e6edf7;
    border-radius: 0px;
    box-shadow: 0 10px 26px rgba(10, 31, 59, 0.07);
    padding:0rem !important;
    transition: box-shadow 0.25s ease, border-color 0.25s ease;
}
.service-card:hover {
    border-color: #d8e4f2;
    box-shadow: 0 14px 30px rgba(10, 31, 59, 0.1);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.95rem;
    padding-bottom: 0.6rem;
    position: relative;
}

.service-card h3::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 3px;
    border-radius: 6px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.service-card h4 {
    font-size: 1rem;
    margin-top: 1.2rem;
    margin-bottom: 0.7rem;
    color: #13324f;
}

.service-card p {
    color: #42566f;
    margin-bottom: 0.8rem;
    line-height: 1.75;
}

.service-list {
    list-style: none;
    margin: 0.7rem 0 0.8rem;
    padding-left: 0;
}

.service-list li {
    position: relative;
    padding-left: 1.7rem;
    margin-bottom: 0.55rem;
    color: #42566f;
    line-height: 1.7;
}

.service-list li::before {
    content: "\f058";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 0.1rem;
    color: var(--primary-color);
    font-size: 0.95rem;
}

.service-bestfor {
    margin-top: 0.95rem;
}

.service-image-wrap {
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid #dbe6f2;
    box-shadow: 0 12px 30px rgba(12, 30, 54, 0.14);
    height: 100%;
    aspect-ratio: 4 / 3;
}

.service-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.35s ease;
}

.service-image-wrap:hover img {
    transform: scale(1.03);
}





/* ===================================
   Contact Page
   =================================== */
.contact-page {
    background: linear-gradient(180deg, #f3f6fb 0%, #eef4ff 35%, #f7f9fc 100%);
}

.contact-v2 .navbar {
    background: transparent !important;
    backdrop-filter: blur(14px);
    border-bottom: 0;
    box-shadow: none;
    padding: 1.1rem 0;
}

.contact-v2 .navbar-nav .nav-link {
    color: #f4f8ff !important;
}

.contact-v2 .navbar-nav .nav-link:hover {
    color: #b6ffd7 !important;
}

.contact-v2 .navbar-nav .nav-link.active,
.contact-v2 .navbar-nav .nav-link.active:hover {
    background: #1ecefa;
    color: #0b1016 !important;
    border-radius: 999px;
    padding: 0.45rem 1.1rem !important;
}

.contact-v2 .navbar-light .navbar-toggler {
    border-color: rgba(255, 255, 255, 0.35);
}

.contact-v2 .navbar-light .navbar-toggler-icon {
    filter: invert(1);
}

.contact-v2 .header-cta-btn {
    background: #1ecefa;
    color: #0a2a33;
}

.contact-v2 .header-cta-btn:hover {
    background: #20c2ea;
    color: #0a2a33;
}

.contact-hero-v2 {
    position: relative;
    padding: 150px 0 120px;
    background: url('../img/cms-bg.png') center/cover no-repeat;
    color: #f3fbff;
    text-align: center;
}

.contact-hero-v2::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 20%, rgba(49, 242, 102, 0.18), transparent 55%),
        radial-gradient(circle at 85% 60%, rgba(30, 206, 250, 0.2), transparent 60%);
    opacity: 0.7;
    pointer-events: none;
}

.contact-hero-v2 .contact-hero-overlay {
    position: absolute;
    inset: 0;
}

.contact-hero-inner {
    position: relative;
    z-index: 1;
    max-width: 760px;
    margin: 0 auto;
}

.contact-hero-title {
    color: #fff;
    font-size: clamp(38px, 4vw, 56px);
    font-weight: 600;
    line-height: 1.1;
    margin-bottom: 14px;
}

.contact-hero-pill {
    display: inline-block;
    background: #31f266;
    color: #0b1510;
    padding: 0.18em 0.6em 0.24em;
    border-radius: 999px;
    margin-right: 0.2em;
    box-shadow: 0 12px 26px rgba(10, 18, 13, 0.25);
}

.contact-hero-subtitle {
    font-size: 18px;
    color: rgba(245, 250, 255, 0.92);
}

.contact-content-section {
    padding: 86px 0;
}

.contact-form-card,
.contact-info-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 2.6rem 2.8rem;
    border: 1px solid #e7e7e7;
    box-shadow: 0 18px 40px rgba(22, 34, 28, 0.08);
    transition: box-shadow 0.25s ease, border-color 0.25s ease;
    height: 100%;
}

.contact-form-card:hover,
.contact-info-card:hover {
    border-color: #dcdcdc;
    box-shadow: 0 22px 50px rgba(22, 34, 28, 0.12);
}

.contact-form-title {
    font-size: 2rem;
    margin-bottom: 0.6rem;
    position: relative;
    padding-bottom: 0.2rem;
    text-align: center;
    color: #2c2c2c;
}

.contact-form-title::after {
    display: none;
}

.contact-form-subtitle {
    color: #5a5a5a;
    font-size: 0.98rem;
    margin-bottom: 2.1rem;
    text-align: center;
}

.contact-form .form-label {
    font-weight: 600;
    color: #192c43;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.contact-form .form-control {
    border: 1px solid #bfc7c1;
    border-radius: 10px;
    padding: 0.85rem 1.1rem;
    font-size: 0.98rem;
    background: #f2fff6;
    transition: all 0.25s ease;
}

.contact-form .form-control:focus {
    border-color: #8fd4a4;
    box-shadow: 0 0 0 0.2rem rgba(143, 212, 164, 0.2);
    outline: none;
    background: #ffffff;
}

.contact-form textarea.form-control {
    resize: vertical;
    min-height: 140px;
}

.contact-form .btn.btn-primary {
    background: #1ec7f2;
    border: none;
    color: #05141b;
    font-weight: 600;
    padding: 0.75rem 1.6rem;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(5, 33, 45, 0.18);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.contact-form .btn.btn-primary:hover {
    background: #22d2ff;
    color: #05141b;
    transform: translateY(-1px);
}

.contact-form .btn.btn-primary .fa-paper-plane {
    display: none;
}

.contact-form .btn.btn-primary::after {
    content: "";
    width: 14px;
    height: 14px;
    display: inline-flex;
    align-self: center;
    background: url('../img/Arrow%204.svg') center/contain no-repeat;
}

.contact-form .row > .col-12:last-child {
    text-align: center;
}

.contact-info-title {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    position: relative;
    padding-bottom: 0.65rem;
}

.contact-info-title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 46px;
    height: 3px;
    border-radius: 6px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.contact-info-text {
    color: #44566d;
    line-height: 1.76;
    font-size: 1.01rem;
}

.contact-info-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #e8edf5;
}

.contact-info-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.contact-info-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(40, 249, 96, 0.15), rgba(30, 206, 250, 0.18));
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-info-content h5 {
    font-size: 1rem;
    margin-bottom: 0.4rem;
    color: #192c43;
    font-weight: 600;
}

.contact-info-content a,
.contact-info-content p {
    color: #44566d;
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.6;
}

.contact-info-content a {
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info-content a:hover {
  color: #1ecefa;
}

.contact-social {
    padding-top: 1rem;
    border-top: 1px solid #e8edf5;
}

.contact-social h5 {
    font-size: 1rem;
    margin-bottom: 0.75rem;
    color: #192c43;
    font-weight: 600;
}

.contact-social-links {
    display: flex;
    gap: 0.75rem;
}

.contact-social-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: linear-gradient(135deg, rgba(40, 249, 96, 0.1), rgba(30, 206, 250, 0.12));
    color: #44566d;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-social-icon:hover {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: #ffffff;
    transform: translateY(-2px);
}

.contact-feature-card {
    background: #ffffff;
    border: 1px solid #e6edf5;
    border-radius: 14px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 10px 26px rgba(9, 29, 56, 0.07);
    transition: all 0.3s ease;
    height: 100%;
}

.contact-feature-card:hover {
    border-color: #d9e4f2;
    box-shadow: 0 14px 30px rgba(9, 29, 56, 0.1);
    transform: translateY(-5px);
}

.contact-feature-icon {
    width: 70px;
    height: 70px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin: 0 auto 1.25rem;
    transition: all 0.3s ease;
}

.contact-feature-card:hover .contact-feature-icon {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: #ffffff;
    transform: scale(1.1);
}

.contact-feature-card h4 {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    color: #192c43;
}

.contact-feature-card p {
    color: #44566d;
    line-height: 1.7;
    margin: 0;
    font-size: 0.98rem;
}

.contact-quick-cards {
    margin-top: 2rem;
}

.contact-quick-section {
    padding: 40px 0 10px;
}

.contact-quick-card {
    background: #9effb6;
    border-radius: 18px;
    padding: 28px;
    box-shadow: 0 0px 6px rgba(20, 40, 30, 0.16);
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.contact-quick-icon {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #0b0f14;
}

.contact-quick-icon-img {
    /* width: 30px;
    height: 30px;
    display: block; */
}

.contact-quick-card h4 {
    font-size: 1.65rem;
    margin: 2px 0 4px;
    color: #0b0f14;
}

.contact-quick-card p {
    color: #0f1a12;
    margin: 0;
    font-size: 0.98rem;
}

.contact-quick-meta {
    font-size: 1rem;
    margin-top: 6px;
}

.contact-quick-btn {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 12px 16px;
    border-radius: 10px;
    background: #1ec7f2;
    color: #05141b;
    font-weight: 600;
    box-shadow: 0 10px 20px rgba(5, 33, 45, 0.18);
}

.contact-quick-btn:hover {
    color: #05141b;
    background: #22d2ff;
    transform: translateY(-1px);
}

.contact-quick-btn-icon {
    /* width: 28px;
    height: 28px;
    border-radius: 8px;
    background: rgba(5, 20, 27, 0.12);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px; */
}

.contact-quick-btn-arrow {
    width: 20px;
    height: 20px;
    display: block;
}

.contact-support-section {
    background: #0b0b0b url('../img/con-bg.png') center/cover no-repeat;
    color: #ffffff;
    padding: 70px 0;
}

.contact-support-row {
    border-left: none;
    border-right: none;
}

.contact-support-card {
    padding: 10px 24px;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
    height: 100%;
}

.contact-support-row .col-lg-4:last-child .contact-support-card {
    border-right: none;
}

.contact-support-icon {

    margin-bottom: 12px;
}

.contact-support-icon-img {
  
    display: block;
}

.contact-support-card h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #ffffff;
}

.contact-support-card p {
    color: rgba(255, 255, 255, 0.75);
    margin: 0;
    line-height: 1.7;
    font-size: 0.98rem;
}







/* ===================================
   Veterinary Page
   =================================== */
.vet-page {
    background: linear-gradient(180deg, #f3f6fb 0%, #eef4ff 35%, #f7f9fc 100%);
}

.vet-page .navbar-nav .nav-link.active {
    color: var(--primary-color) !important;
}

.vet-hero {
    position: relative;
    min-height: 360px;
    padding: 150px 0 90px;
    display: flex;
    align-items: center;
    background: url("../img/hero-banner.jpg") center center / cover no-repeat;
    color: #ffffff;
    overflow: hidden;
}

.vet-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(10, 20, 35, 0.5) 0%, rgba(10, 20, 35, 0.58) 100%);
}

.vet-hero .container {
    z-index: 1;
}

.vet-hero-title {
    color: #ffffff;
    font-size: clamp(2rem, 5vw, 3.3rem);
    line-height: 1.15;
    margin: 0 0 1rem;
    letter-spacing: 0.4px;
    text-shadow: 0 6px 24px rgba(0, 0, 0, 0.35);
}

.vet-hero-subtitle {
    color: rgba(255, 255, 255, 0.88);
    font-size: 1.1rem;
    max-width: 720px;
    margin: 0 auto;
}

.vet-content-section {
    padding: 86px 0;
}

.vet-intro-card {
    background: #ffffff;
    border-radius: 14px;
    padding: 2.5rem;
    border: 1px solid #e6edf5;
    box-shadow: 0 10px 26px rgba(9, 29, 56, 0.07);
    margin-bottom: 2rem;
}

.vet-section-title {
    font-size: 2rem;
    margin-bottom: 1rem;
    position: relative;
    padding-bottom: 0.75rem;
    color: #192c43;
}

.vet-section-title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 60px;
    height: 3px;
    border-radius: 6px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.vet-intro-text {
    color: #44566d;
    line-height: 1.8;
    font-size: 1.05rem;
    margin-bottom: 1rem;
}

.vet-intro-text strong {
    color: #192c43;
    font-weight: 600;
}

.vet-service-card {
    background: #ffffff;
    border: 1px solid #e6edf5;
    border-radius: 14px;
    padding: 2rem;
    box-shadow: 0 10px 26px rgba(9, 29, 56, 0.07);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.vet-service-card:hover {
    border-color: #d9e4f2;
    box-shadow: 0 14px 30px rgba(9, 29, 56, 0.1);
    transform: translateY(-5px);
}

.vet-service-icon {
    width: 70px;
    height: 70px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(40, 249, 96, 0.15), rgba(30, 206, 250, 0.18));
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 1.25rem;
    transition: all 0.3s ease;
}

.vet-service-card:hover .vet-service-icon {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: #ffffff;
    transform: scale(1.1);
}

.vet-service-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #192c43;
    font-weight: 600;
}

.vet-service-text {
    color: #44566d;
    line-height: 1.75;
    font-size: 1rem;
    margin-bottom: 0.75rem;
}

.vet-cta-card {
    background: linear-gradient(135deg, #ffffff 0%, #f5fbff 100%);
    border: 1px solid #e6edf5;
    border-radius: 16px;
    padding: 2.5rem;
    text-align: center;
    box-shadow: 0 12px 30px rgba(9, 29, 56, 0.1);
}

.vet-cta-title {
    font-size: 1.8rem;
    margin-bottom: 0.75rem;
    color: #192c43;
    font-weight: 600;
}

.vet-cta-text {
    color: #44566d;
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.vet-cta-buttons .btn {
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.vet-cta-buttons .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.vet-cta-buttons .btn-outline-primary {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.vet-cta-buttons .btn-outline-primary:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: #ffffff;
}





/* ===================================
   Dental Page
   =================================== */
.dental-page {
    background: linear-gradient(180deg, #f3f6fb 0%, #eef4ff 35%, #f7f9fc 100%);
}

.dental-page .navbar-nav .nav-link.active {
    color: var(--primary-color) !important;
}

.dental-hero {
    position: relative;
    min-height: 360px;
    padding: 150px 0 90px;
    display: flex;
    align-items: center;
    background: url("../img/hero-banner.jpg") center center / cover no-repeat;
    color: #ffffff;
    overflow: hidden;
}

.dental-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(10, 20, 35, 0.5) 0%, rgba(10, 20, 35, 0.58) 100%);
}

.dental-hero .container {
    z-index: 1;
}

.dental-hero-title {
    color: #ffffff;
    font-size: clamp(2rem, 5vw, 3.3rem);
    line-height: 1.15;
    margin: 0 0 1rem;
    letter-spacing: 0.4px;
    text-shadow: 0 6px 24px rgba(0, 0, 0, 0.35);
}

.dental-hero-subtitle {
    color: rgba(255, 255, 255, 0.88);
    font-size: 1.1rem;
    max-width: 720px;
    margin: 0 auto;
}

.dental-content-section {
    padding: 86px 0;
}

.dental-intro-card {
    background: #ffffff;
    border-radius: 14px;
    padding: 2.5rem;
    border: 1px solid #e6edf5;
    box-shadow: 0 10px 26px rgba(9, 29, 56, 0.07);
    margin-bottom: 2rem;
}

.dental-section-title {
    font-size: 2rem;
    margin-bottom: 1rem;
    position: relative;
    padding-bottom: 0.75rem;
    color: #192c43;
}

.dental-section-title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 60px;
    height: 3px;
    border-radius: 6px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.dental-intro-text {
    color: #44566d;
    line-height: 1.8;
    font-size: 1.05rem;
    margin-bottom: 1rem;
}

.dental-intro-text strong {
    color: #192c43;
    font-weight: 600;
}

.dental-category-title {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: #192c43;
    font-weight: 600;
    position: relative;
    padding-bottom: 0.5rem;
}

.dental-category-title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 3px;
    border-radius: 6px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.dental-service-card {
    background: #ffffff;
    border: 1px solid #e6edf5;
    border-radius: 14px;
    padding: 2rem;
    box-shadow: 0 10px 26px rgba(9, 29, 56, 0.07);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.dental-service-card:hover {
    border-color: #d9e4f2;
    box-shadow: 0 14px 30px rgba(9, 29, 56, 0.1);
    transform: translateY(-5px);
}

.dental-service-icon {
    width: 70px;
    height: 70px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(40, 249, 96, 0.15), rgba(30, 206, 250, 0.18));
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 1.25rem;
    transition: all 0.3s ease;
}

.dental-service-card:hover .dental-service-icon {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: #ffffff;
    transform: scale(1.1);
}

.dental-service-title {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #192c43;
    font-weight: 600;
}

.dental-service-text {
    color: #44566d;
    line-height: 1.75;
    font-size: 1rem;
    margin-bottom: 0;
    flex-grow: 1;
}

.dental-cta-card {
    background: linear-gradient(135deg, #ffffff 0%, #f5fbff 100%);
    border: 1px solid #e6edf5;
    border-radius: 16px;
    padding: 2.5rem;
    text-align: center;
    box-shadow: 0 12px 30px rgba(9, 29, 56, 0.1);
}

.dental-cta-title {
    font-size: 1.8rem;
    margin-bottom: 0.75rem;
    color: #192c43;
    font-weight: 600;
}

.dental-cta-text {
    color: #44566d;
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.dental-cta-buttons .btn {
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.dental-cta-buttons .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.dental-cta-buttons .btn-outline-primary {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.dental-cta-buttons .btn-outline-primary:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: #ffffff;
}





/* ===================================
   Smooth Scroll
   =================================== */
html {
    scroll-behavior: smooth;
}

/* ===================================
   WOW Animation Adjustments
   =================================== */
.wow {
    visibility: hidden;
}

/* ===================================
   Industry Page
   =================================== */
.industry-page {
    --industry-surface: #ffffff;
    --industry-text: #101827;
    --industry-line: #d6dbe5;
    font-family: "Plus Jakarta Sans", "Poppins", sans-serif;
    color: var(--industry-text);
background: #d8e3f5;
    line-height: 1.65;
}

.industry-page .industry-intro {
    padding: 34px 0 26px;
}

.industry-page .industry-intro-card {
    background: #ffffff;
    border: 1px solid #e3e8f1;
    border-radius: 18px;
    padding: 44px 42px;
    box-shadow: 0 10px 30px rgba(15, 27, 52, 0.06);
}

.industry-page .industry-intro-title {
    margin: 0;
    font-size: clamp(2rem, 4vw, 2.85rem);
    line-height: 1.2;
    color: #0f274f;
    letter-spacing: -0.01em;
    font-weight: 700;
}

.industry-page .industry-intro-line {
    width: 64px;
    height: 4px;
    border-radius: 999px;
    background: linear-gradient(120deg, #11d4ac, #22e2b5);
    margin: 16px auto;
}

.industry-page .industry-intro-text {
    margin: 0 0 16px;
    font-size: clamp(1rem, 2vw, 1.15rem);
    line-height: 1.7;
    color: #243e63;
}

.industry-page .industry-intro-text:last-child {
    margin-bottom: 0;
}

.industry-page .industry-content {
    padding: 0 0 70px;
}

.industry-page .section-card {
    background: var(--industry-surface);
    border: 1px solid var(--industry-line);
    border-radius: 18px;
    box-shadow: 0 8px 30px rgba(15, 27, 52, 0.05);
    margin-bottom: 18px;
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.industry-page .section-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 34px rgba(15, 27, 52, 0.1);
}

.industry-page .section-grid {
    display: grid;
    grid-template-columns: minmax(280px, 0.92fr) minmax(0, 1.35fr);
}

.industry-page .section-card:nth-of-type(even) .section-grid {
    grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.92fr);
}

.industry-page .section-card:nth-of-type(even) .section-image {
    order: 2;
}

.industry-page .section-card:nth-of-type(even) .section-body {
    order: 1;
}

.industry-page .section-image img {
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    display: block;
    border-radius: 14px;
    box-shadow: 0 10px 24px rgba(15, 27, 52, 0.12);
}

.industry-page .section-image {
    padding: 18px;
    background: linear-gradient(180deg, #f5f8ff 0%, #eef3fb 100%);
    display: flex;
    align-items: center;
}

.industry-page .section-body {
    padding: 28px 28px 24px;
}

.industry-page .section-card:nth-of-type(even) .section-body {
    background: linear-gradient(180deg, #ffffff 0%, #f9fbff 100%);
}

.industry-page .section-body h2 {
    margin: 0 0 12px;
    font-size: 29px;
    letter-spacing: -0.01em;
    line-height: 1.2;
}

.industry-page .section-body p {
    margin: 0 0 11px;
    font-size: 15px;
    color: #273143;
}

.industry-page .section-body h3 {
    margin: 16px 0 8px;
    font-size: 15px;
    font-weight: 800;
    color: #101827;
}

.industry-page .section-body ul {
    margin: 0;
    padding-left: 18px;
}

.industry-page .section-body li {
    margin: 0 0 6px;
    font-size: 14px;
    color: #1f2937;
}

.industry-page .feature-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.industry-page .feature-list li {
    position: relative;
    padding-left: 30px;
    margin: 0 0 10px;
    line-height: 1.55;
}

.industry-page .feature-list li::before {
    content: "\f058";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 0.1em;
    font-size: 14px;
    color: var(--primary-color);
}

.industry-page .result {
    margin-top: 12px;
    padding: 10px 12px;
    border-radius: 10px;
    background: #f3f7ff;
    border: 1px solid #dae6ff;
    color: #0f356f;
    font-size: 14px;
    font-weight: 600;
}

@media (max-width: 1024px) {
    .industry-page .section-grid {
        grid-template-columns: 1fr;
    }

    .industry-page .section-card:nth-of-type(even) .section-image,
    .industry-page .section-card:nth-of-type(even) .section-body {
        order: initial;
    }

    .industry-page .section-image img {
        aspect-ratio: 16 / 10;
    }
}

@media (max-width: 640px) {
    .industry-page .industry-intro {
        margin-top: 16px;
    }

    .industry-page .industry-intro-card {
        padding: 28px 20px;
    }

    .industry-page .section-body {
        padding: 20px 16px;
    }

    .industry-page .section-body h2 {
        font-size: 24px;
    }
}
.lead-form .wpcf7-spinner{
display:none;
}
.lead-form  p{
text-align:center;
}
.lead-form .form-group p{
text-align:left !important;
}

.footer-contact a{
    color: #1ecefa;
}
@media (min-width: 1400px) {
    .container, .container-lg, .container-md, .container-sm, .container-xl {
        max-width: 1140px !;
    }
}

/* ===================================
   Homepage Styles (Merged)
   =================================== */
:root {
    --bg-dark: #03070d;
    --text-light: #ecf4ff;
    --mint: #31f266;
    --aqua: #26d9ff;
    --panel-green: #19dc5c;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    color: #0c1117;
    background: #ffffff;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'DM Sans', sans-serif;
}

p {
    font-family: 'Poppins', sans-serif;
}

.section {
    padding: 72px 0;
}

.hero-wrap {
    color: var(--text-light);

    min-height: 820px;
}

.hero-carousel {
    position: relative;
}

.hero-slide {
    position: relative;
    min-height: 920px;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero-slide::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hero-slide .hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.navbar {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 8;
    padding: 18px 0;
}

.site-logo {
    height: 48px;
    width: auto;
}

header .navbar-nav .nav-link,
.navbar .nav-link {
    color: #f1f7ff !important;
    font-size: 17px;
    text-transform: none;
    letter-spacing: 0;
    margin-left: 16px;
    font-weight: 400;
    line-height: 1;
    padding: 8px 18px;
    text-decoration: none;
}

header .navbar-nav .nav-link.active,
.navbar .nav-link.active {
    color: #031019 !important;
    background: var(--aqua);
    border-radius: 999px;
    padding: 8px 24px;
}

.hero-content {
    padding-top: 130px;
    padding-bottom: 72px;
}

.hero-title {
    color: #f6fbff;
    font-size: clamp(58px, 8vw, 80px);
    line-height: 1.15;
    font-weight: 500;
    max-width: 980px;
    margin: 0 auto;
}

.hero-title span {
    display: block;
}

.hero-title .line-2 {
    margin-top: 10px;
}

.hero-title em {
    color: #02180d;
    background: #2cfc68;
    border-radius: 999px;
    padding: 2px 22px 6px;
    font-style: normal;
    margin-right: 10px;
}

.hero-audit {
    margin-top: 42px;
    position: relative;
    width: 250px;
    height: 250px;
    margin-left: auto;
    margin-right: auto;
}

.audit-text {
    width: 250px;
    height: 250px;
    animation: spin 18s linear infinite;
    transform-box: fill-box;
    transform-origin: center;
    pointer-events: none;
    overflow: visible;
}

.audit-text text {
    fill: #f8fcff;
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
}


.hero-badge {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 120px;
    height: 120px;
}

.hero-badge-icon {
    width: 120px !important;
    height: 120px;
    display: block;
}

.hero-carousel .owl-dots {
position: absolute;
    z-index: 5;
    left: 0px;
    right: 0px;
    bottom: 60px;
}

.hero-carousel .owl-dots .owl-dot {
    display: none;
}

.hero-carousel .owl-dots .owl-dot:nth-child(-n+3) {
    display: inline-block;
}

.hero-carousel.owl-theme .owl-dots .owl-dot span {
    width: 11px;
    height: 11px;
    background: rgba(245, 252, 255, 0.9);
    margin: 0px;
}

.hero-carousel.owl-theme .owl-dots .owl-dot.active span,
.hero-carousel.owl-theme .owl-dots .owl-dot:hover span {
    background: #31f266;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.brand-strip {
    background: var(--mint);
    padding: 30px 0;
}

.brands {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
    min-width: 960px;
}

.brand-strip .container {
    overflow: hidden;
}

.brand-strip .container::-webkit-scrollbar {
    height: 0;
}

.brands span {
    flex: 0 0 calc((100% - 110px) / 6);
    display: flex;
    align-items: center;
    justify-content: center;
}

.brands-carousel {
    min-width: 0;
}

.brands-carousel .brand-item {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
}

.brands-carousel .owl-stage {
    display: flex;
    align-items: center;
}

.brands-carousel .owl-dots {
    display: none;
}

.brands img {
    max-height: 42px;
    max-width: 100%;
    width: auto;
    object-fit: contain;
}

.intro-section {
    background: #fff;
}

.intro-section h2,
.performance h3,
.pricing-why h3,
.industries h3,
.tracking h3,
.cta-section h3,
.dark-panel h3 {
    font-size: clamp(30px, 3.5vw, 48px);
    line-height: 1.1;
    margin-bottom: 14px;
}

.intro-section p,

.performance p,
.pricing-why p,
.cta-box p {
    color: #394857;
    font-size: 16px;
    line-height: 1.5;
}


.intro-head {
    display: grid;
    grid-template-columns: 280px 1fr 60px;
    align-items: start;
    gap: 26px;
    margin-bottom: 42px;
}

.intro-line {
    display: block;
    margin-top: 34px;
    height: 2px;
    background: #31f266;
    position: relative;
    overflow: hidden;
    animation: lineBlink 2.4s ease-in-out infinite;
}

.intro-mark {
    width: 60px;
    height: 60px;
    margin-top: 2px;
    animation: markFloat 3.2s ease-in-out infinite;
    transform-origin: center;
    position: relative;
    display: inline-block;
}

.intro-mark img {
    position: absolute;
    width: 32px;
    height: 32px;
}

.intro-mark-blue {
    top: 0;
    right: 0;
    animation: swapBlue 2.8s ease-in-out infinite;
}

.intro-mark-green {
    bottom: 9px;
    left: 7px;
    animation: swapGreen 2.8s ease-in-out infinite;
}

.intro-head h2 {
    margin: 0;
    max-width: 720px;
    font-size: clamp(36px, 4vw, 50px);
}

.intro-line::after {
    content: "";
    position: absolute;
    left: -30%;
    top: 0;
    height: 100%;
    width: 30%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.9), transparent);
    animation: lineSweep 2.6s linear infinite;
}

@keyframes lineSweep {
    0% {
        transform: translateX(0);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    100% {
        transform: translateX(430%);
        opacity: 0;
    }
}

@keyframes lineBlink {
    0%,
    100% {
        opacity: 0.45;
        box-shadow: 0 0 0 rgba(49, 242, 102, 0);
    }
    50% {
        opacity: 1;
        box-shadow: 0 0 12px rgba(49, 242, 102, 0.45);
    }
}

@keyframes markFloat {
    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-6px) rotate(6deg);
    }
}

@keyframes swapBlue {
    0%,
    100% {
        filter: hue-rotate(0deg);
    }
    50% {
        filter: hue-rotate(120deg);
    }
}

@keyframes swapGreen {
    0%,
    100% {
        filter: hue-rotate(0deg);
    }
    50% {
        filter: hue-rotate(-120deg);
    }
}

.intro-body {
    margin-top: 8px;
}

.intro-main-img {
    width: 100%;
    border-radius: 22px;
    object-fit: cover;
}

.intro-copy {
    margin-bottom: 16px;
    color: #1e252e;
    font-size: 19px;
    line-height: 1.42;
    max-width: 640px;
}

.intro-bottom {
    margin-top: 26px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
}

.intro-audit {
    position: relative;
    width: 180px;
    height: 180px;
    flex: 0 0 auto;
}

.intro-audit .audit-text {
    width: 180px;
    height: 180px;
    letter-spacing: 3px;
}

.intro-audit .audit-text text {
    fill: #111;
}

.intro-badge {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: grid;
    place-items: center;
    width: 90px;
    height: 90px;
}

.intro-badge-icon {
    width: 90px;
    height: 90px;
    display: block;
}

.intro-side-img {
    width: min(100%, 420px);
    border-radius: 20px;
    object-fit: cover;
}

.services-green {
    background: linear-gradient(135deg, #00d73a 0%, #4eff7d 100%);
    padding-bottom: 90px;
    position: relative;
    overflow: hidden;
}

.services-green::after {
    content: "SERVICES";
    position: absolute;
    left: 50%;
    bottom: -24px;
    transform: translateX(-50%);
    font-family: 'DM Sans', sans-serif;
    font-size: clamp(72px, 14vw, 180px);
    font-weight: 700;
    letter-spacing: 0.32em;
    color: rgba(78, 255, 125, 0.28);
    text-transform: uppercase;
    white-space: nowrap;
    pointer-events: none;
    z-index: 0;
}

.services-green .container {
    position: relative;
    z-index: 1;
}

.section-head h3,
.section-head p {
    color: #000;
    margin: 0;
}

.section-head h3 {
    font-size: clamp(34px, 4vw, 52px);
}

.section-head p {
    font-size: 24px;
    opacity: 0.9;
}

.service-cta-btn {
    background: #2ec8ff;
    color: #03111b;
    border-radius: 10px;
    padding: 10px 16px;
    font-size: 15px;
    font-weight: 600;
}

.service-cta-btn:hover {
    background: #1abcf8;
    color: #03111b;
}

.service-list {
    margin-top: 28px;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.service-item {
    border: 0;
    border-radius: 18px !important;
    background: transparent;
    overflow: hidden;
}

.service-button {
    background: linear-gradient(90deg, rgba(223, 255, 232, 0.78), rgba(227, 239, 233, 0.78));
    border: 0;
    border-radius: 18px 18px 0px 0px!important;
    box-shadow: none !important;
    color: #1d2a32;
    padding: 14px 18px;
    font-size: 23px;
    font-weight: 700;
}

.service-button:not(.collapsed) {
    color: #1a2630;
    background: linear-gradient(90deg, rgba(223, 255, 232, 0.78), rgba(227, 239, 233, 0.78));
}

.service-button::after {
    display: none;
}

.service-arrow {
    margin-left: auto;
    width: 58px;
    height: 58px;
    border-radius: 14px;
    background: #2de85f;
    display: grid;
    place-items: center;
    color: #0a140f;
    font-size: 28px;
    flex-shrink: 0;
}

.service-arrow i {
    transition: transform 0.25s ease;
}

.service-button:not(.collapsed) .service-arrow i {
    transform: rotate(90deg);
}

.service-body {
    margin-top: 0px;
    border-radius: 0 0 18px 18px;
    background: linear-gradient(90deg, rgba(223, 255, 232, 0.78), rgba(227, 239, 233, 0.78));
    padding: 0px 18px 18px 18px;
    display: grid;
    grid-template-columns: 1fr 300px;
    align-items: flex-start;
    gap: 20px;
    padding-top: 20px;
}

.service-body p {
    margin: 0;
    color: #15242d;
    font-size: 16px;
    max-width: 1020px;
}

.service-body img {
    width: 100%;
    border-radius: 16px;
    height: 160px;
    object-fit: cover;
}

.dark-panel {
    background: #03070d;
    color: #ecf6ff;
}

.dark-panel h3,
.dark-panel h5,
.dark-panel p {
    color: #ecf6ff;
}

.why-choose {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 10% 10%, rgba(18, 255, 118, 0.08), transparent 45%),
        radial-gradient(circle at 85% 25%, rgba(12, 165, 232, 0.12), transparent 48%),
        #03070d;
}

.why-choose::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px);
    background-size: 16px 16px;
    opacity: 0.25;
    pointer-events: none;
}

.why-choose .container {
    position: relative;
    z-index: 1;
}

.why-left h3 {
    margin-bottom: 10px;
}

.why-left {
    position: sticky;
    top: 110px;
}

.why-subtitle {
    color: rgba(236, 246, 255, 0.75);
    font-size: 17px;
    margin-bottom: 18px;
    max-width: 320px;
}

.why-image {
    width: 100%;
    border-radius: 22px;
    object-fit: cover;
    margin-top: 10px;

    box-shadow: 0 24px 50px rgba(0, 0, 0, 0.45);
}

.why-right {
    position: relative;
    padding-left: 28px;
}

.why-right::before {
    content: "";
    position: absolute;
    left: 8px;
    top: 6px;
    bottom: 6px;
    width: 2px;
    background: linear-gradient(180deg, rgba(78, 255, 125, 0.9), rgba(78, 255, 125, 0.2));
}

.why-choose .reason-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

.why-right {
    max-height: calc(120vh - 100px);
    overflow-y: auto;
    padding-right: 10px;
    scroll-behavior: smooth;
}

.why-right::-webkit-scrollbar {
    width: 6px;
}

.why-right::-webkit-scrollbar-track {
    background: transparent;
}

.why-right::-webkit-scrollbar-thumb {
    background: rgba(120, 255, 198, 0.55);
    border-radius: 999px;
}

.why-right::-webkit-scrollbar-thumb:hover {
    background: rgba(120, 255, 198, 0.85);
}



.why-choose .reason-card {
    position: relative;
    background: linear-gradient(120deg, rgba(17, 106, 126, 0.95), rgba(28, 166, 96, 0.95));
    border: 1px solid rgba(133, 255, 189, 0.45);
    border-radius: 14px;
    padding: 22px 24px 22px 24px;
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.28);
    transition: all 0.4s ease;
}

.why-choose .reason-card h5 {
    margin-bottom: 8px;
    font-size: 20px;
}

.why-choose .reason-card p {
    margin: 0;
    color: rgba(236, 246, 255, 0.85);
    font-size: 15px;
    line-height: 1.5;
}

.reason-star {
    position: absolute;
    right: 9px;
    top: 3px;

}

.reason-star svg {
    width: 42px;

    display: block;
    fill: currentColor;
    animation: starBlink 1.4s ease-in-out infinite;
    transform-origin: center;
}

@keyframes starBlink {
    0%,
    100% {
        opacity: 0.55;
        transform: scale(0.94);
    }
    50% {
        opacity: 1;
        transform: scale(1.08);
    }
}

.performance-pricing {
    background: linear-gradient(180deg, #ffffff 0%, #e6ffec 35%, #cafff3 70%, #caf4ff 100%);
    position: relative;
    overflow: hidden;
}

.performance {
    background: transparent;
}

.performance-split {
    background: transparent;
    position: relative;
    overflow: hidden;
}

.performance-copy h3 {
    font-size: 36px;
}

.performance-copy p {
    color: #2a3b34;
}

.performance-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #2dc7ff;
    border-color: #2dc7ff;
    color: #05354c;
    font-weight: 600;
    border-radius: 10px;
    padding: 10px 18px;
    font-size: 15px;
}

.performance-btn span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    border-radius: 6px;
    background: #15bfe9;
    color: #05354c;
    font-size: 14px;
}

.performance-btn:hover {
    background: #18b8f2;
    border-color: #18b8f2;
    color: #05354c;
}

.performance-visual {
    position: relative;
    display: flex;
    justify-content: flex-end;
    padding: 20px 0px 20px 20px;
}

.performance-visual::before,
.performance-visual::after {
    /* content: "";
    position: absolute;
    border-radius: 50%;
    z-index: 0; */
}

.performance-visual::before {
    /* width: 360px;
    height: 360px;
    background: rgba(202, 244, 255, 0.75);
    right: 20px;
    top: -12px; */
}

.performance-visual::after {
    /* width: 420px;
    height: 420px;
    background: rgba(202, 255, 243, 0.75);
    right: -40px;
    top: 30px; */
}

.dashboard-shot {
    position: relative;
    animation: dashboardFloat 2.6s ease-in-out infinite;
    transform-origin: center;
}
.performance-copy{
    padding-left: 8%;
}
.pricing-why {
    background: transparent;
    padding-top: 40px;
}

.pricing-head {
    display: flex;
    align-items: center;
    gap: 16px;

    margin-bottom: 42px;
}

.pricing-icon {
    /* width: 52px;
    height: 52px;
    border-radius: 50%;
    background: #1ddf76;
    display: grid;
    place-items: center;
    font-weight: 700;
    overflow: hidden; */
}

.pricing-icon img {
    /* width: 26px;
    height: 26px;
    display: block; */
    animation: logoPulse 2.4s ease-in-out infinite;
    transform-origin: center;
}

@keyframes dashboardFloat {
    0%,
    100% {
        transform: translateY(0) rotate(-0.4deg);
    }
    50% {
        transform: translateY(-10px) rotate(0.4deg);
    }
}

.pricing-line {
    width: 220px;
    height: 2px;
    background: #46d892;
}

.pricing-title h3 {
    margin-bottom: 4px;
}

.pricing-title .lead {
    margin: 0;
    font-size: 15px;
    color: #000;
}

.pricing-squares {
    display: inline-flex;
    gap: 6px;
    margin-left: auto;
    margin-bottom: 100px;
}
.pricing-squares img{
    width: 60px;
}
.pricing-squares span {
    width: 12px;
    height: 12px;
    background: #1bb5ff;
    display: inline-block;
}

.pricing-squares span + span {
    background: #4ff1a0;
}

.pricing-intro {
    margin-top: 16px;
    color: #2a3b34;
}

.pricing-grid {
    margin-top: 62px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px 28px;
}

.pricing-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 20px 0px;
}

.pricing-item h6 {
    margin: 0 0 4px;
    font-size: 24px;
}

.pricing-item p {
    margin: 0;
    color: #4b5f55;
    font-size: 14px;
}

.pricing-item-icon {
    /* width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #1ddf76;
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    color: #ffffff;
    font-size: 18px; */
}
.pricing-item-icon img{
    width: 60px;
    animation: logoPulse 2.6s ease-in-out infinite;

}
.pricing-item-icon i {
    display: block;
}

.pricing-note {
    margin-top: 18px;
    color: #2a3b34;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
}

@keyframes logoPulse {
    0%,
    100% {
        transform: scale(1);
        filter: drop-shadow(0 0 0 rgba(46, 224, 114, 0));
    }
    50% {
        transform: scale(1.08);
        filter: drop-shadow(0 0 12px rgba(46, 224, 114, 0.5));
    }
}

.pricing-note .note-star {
    color: #21c46a;
    font-size: 16px;
}

.industry-grid {
    margin-top: 22px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.industry-card {
    border-radius: 14px;
    padding: 16px;
    min-height: 238px;
    box-shadow: 0 14px 30px rgba(20, 36, 46, 0.14), 0 3px 10px rgba(20, 36, 46, 0.08);
    align-items: flex-start;
    justify-content: flex-start;
}

.industry-card h5 {
    font-size: 24px;
    margin-bottom: 8px;
    text-align: left;
}

.industry-card p {
    font-size: 15px;
    margin-bottom: 14px;
    min-height: 70px;
    text-align: left;
}

.industry-card img {
    width: 100%;
    border-radius: 10px;
    height: 210px;
    object-fit: cover;
}

.industry-card.green {
    background: #59ef8d;
}

.industry-card.gray {
    background: #edf2f5;
}

.industry-card.gray:hover {
    background: #31f266;
}

.industry-card.blue {
    background: #8ce7ff;
}

.industry-card.purple {
    background: #d89bff;
}

.tracking-accordion {
    background: #0a0d0b url("../img/section-2.png") center/cover no-repeat;
    color: #f2f6f4;
    position: relative;
    overflow: hidden;
}

.tracking-accordion::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 12% 18%, rgba(84, 255, 187, 0.08), transparent 45%),
        radial-gradient(circle at 80% 70%, rgba(84, 255, 187, 0.08), transparent 55%),
        radial-gradient(circle at 15% 85%, rgba(255, 255, 255, 0.06), transparent 45%);
    opacity: 0.8;
    pointer-events: none;
}

.tracking-accordion .container {
    position: relative;
    z-index: 1;
}

.tracking-header h3 {
    color: #f3f7f5;
    font-size: 34px;
    margin-bottom: 8px;
}

.tracking-header p {
    color: rgba(230, 242, 236, 0.72);
    margin-bottom: 26px;
}

.tracking-panel {
    background: url(../img/Union.png);
    background-size: 100% 100%;
    padding: 140px 40px 10px 40px;
}

.tracking-panel::after {
    /* content: "";
    position: absolute;
    inset: 0;
    border-radius: 20px;
    background: radial-gradient(circle at 15% 10%, rgba(108, 232, 150, 0.22), transparent 50%);
    opacity: 0.7;
    pointer-events: none; */
}

.tracking-accordion-list {
    position: relative;
    z-index: 1;
}

.track-acc-item {
    border-bottom: 1px solid rgba(205, 239, 214, 0.16);
}

.track-acc-item:last-child {
    border-bottom: 0;
}
.mobile-text{
    display: none;
}
.track-acc-toggle {
    width: 100%;
    background: transparent;
    border: 0;
    color: #eaf5ef;
    display: grid;
    grid-template-columns: 28px 1fr 36px;
    align-items: center;
    gap: 12px;
    padding: 16px 6px;
    text-align: left;
    font-size: 20px;
    font-weight: 600;
}

.track-acc-star {
    color: #b7ffe0;
    font-size: 18px;
    line-height: 1;
}
.track-acc-star svg{
    width: 30px;
    display: block;
    animation: trackStarBlink 2.2s ease-in-out infinite;
    transform-origin: center;
}

@keyframes trackStarBlink {
    0%,
    100% {
        opacity: 0.55;
        transform: scale(0.92);
    }
    50% {
        opacity: 1;
        transform: scale(1.08);
    }
}
.track-acc-icon {
    width: 30px;
    height: 30px;
    border-radius: 6px;
    border: 1px solid rgba(108, 232, 150, 0.6);
    color: #b7ffe0;
    display: grid;
    place-items: center;
    font-size: 18px;
    font-weight: 600;
}

.track-acc-body {
    color: rgba(230, 242, 236, 0.8);
    padding: 0 6px 18px 46px;
    display: none;
}

.track-acc-item.is-open .track-acc-body {
    display: block;
}

.track-acc-item.is-open .track-acc-icon {
    color: #0a0d0b;
    background: #a4f4d2;
    border-color: #a4f4d2;
}

@media (max-width: 768px) {
    .tracking-header h3 {
        font-size: 26px;
    }
.accordion-body.service-body{
    display: flex;
    flex-direction: column;
}
.desk-text{
    display: none;
}
.mobile-text{
    display: block;
}
    /* .tracking-panel {
        padding: 4px 12px;
    } */
     .pricing-head{
        margin-bottom: 0px;
     }
.pricing-grid{
        margin-top: 10px;
     }

.pricing-item{
        padding: 0px 0px;
     }
     .footer-title{
        margin-bottom: 0rem;
     }
 .about-ai-section .intro-head{
        margin: 0px auto !important;
 }    
.cta-box img {
    width: 360px;
    position: relative !important;
    right: 0px;
}
    .track-acc-toggle {
        grid-template-columns: 22px 1fr 30px;
        font-size: 15px;
    }

    .track-acc-body {
        padding-left: 34px;
    }
}

.cta-section {
    background: #fff;
    padding-top: 70px;
    padding-bottom: 70px;
}

.performance-visual{
    padding: 0px;
}
.section.pricing-why {
    padding: 0px;
}
.cta-box {
    background: linear-gradient(135deg, #d9fbff 0%, #e6fff3 100%);
    border-radius: 22px;
    padding: 36px 40px;
    display: flex;
    justify-content: space-between;
    gap: 16px;
    align-items: center;
    box-shadow: 0 0px 12px rgba(26, 62, 78, 0.15);
    border: 1px solid rgba(16, 104, 126, 0.08);
    position: relative;
    min-height: 320px;
}

.cta-actions {
    display: flex;
    gap: 12px;
    margin-top: 14px;
}

.cta-section .btn {
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 600;
}

.cta-section .btn.btn-dark {
    background: #27b4ff;
    border-color: #27b4ff;
}

.cta-section .btn.btn-success {
    background: #2eea6a;
    border-color: #2eea6a;
}

.cta-section .btn.btn-dark:hover,
.cta-section .btn.btn-dark:focus {
    background: #13a7f6;
    border-color: #13a7f6;
}

.cta-section .btn.btn-success:hover,
.cta-section .btn.btn-success:focus {
    background: #22d85f;
    border-color: #22d85f;
}

.cta-box img {
    width: 360px;
    position: absolute;
    right: 0px;
    animation: robotoSlide 3.6s ease-in-out infinite;
}

.site-footer {
    background: #050a11;
    color: #eff5fd;
    padding: 46px 0;
}

@keyframes robotoSlide {
    0%,
    100% {
        transform: translateX(-10px);
    }
    50% {
        transform: translateX(10px);
    }
}

.site-footer h6 {
    color: #ffffff;
    margin-bottom: 12px;
}

.site-footer a,
.site-footer p {
    display: block;
    color: #d5e2f1;
    margin-bottom: 8px;
    text-decoration: none;
}





@media (min-width: 1400px) {
    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl,
    .container-xxl {
        max-width: 1140px;
    }
}

/* Industry page layout (new) */
.industry-hero {
    position: relative;
    padding: 140px 0 90px;
    background: url('../img/section.jpg') center/cover no-repeat;
    color: #f5fbff;
}

.industry-hero-overlay {
    position: absolute;
    inset: 0;
   
}

.industry-hero .container {
    position: relative;
    z-index: 1;
}

.industry-hero-kicker {
    display: inline-block;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #bfffe0;
    margin-bottom: 12px;
}

.industry-hero-title {    color: #fff;
    font-size: clamp(36px, 4vw, 52px);
    font-weight: 800;
    margin-bottom: 12px;
}

.industry-hero-subtitle {
    font-size: 18px;
    color: rgba(235, 248, 255, 0.85);
}

.industry-page {
    background: #f8fffb;
}

.industry-intro-new {
    padding: 70px 0 40px;
}

.intro-split {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    gap: 32px;
    align-items: center;
    background: #ffffff;
    border-radius: 22px;
    padding: 28px 30px;
    box-shadow: 0 18px 45px rgba(8, 23, 17, 0.12);
}

.intro-copy h2 {
    font-size: clamp(28px, 3.2vw, 40px);
    margin-bottom: 12px;
}

.intro-kicker {
    font-size: 13px;
    color: #1aa65d;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.intro-visual img {
    border-radius: 18px;
    width: 100%;
    object-fit: cover;
}

.industry-pill-list {
    margin-top: 24px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.industry-pill {
    padding: 8px 16px;
    border-radius: 999px;
    background: #eff4f2;
    color: #1b2a2c;
    font-weight: 600;
    font-size: 13px;
}

.industry-pill:hover {
    background: #31f266;
    color: #0b1510;
}

.industry-feature {
    padding: 60px 0;
}

.industry-feature.light {
    background: #f8fffb;
}

.industry-feature.dark {
    background: #09130f;
    color: #e9f7f0;
}

.industry-feature.green {
    background: linear-gradient(120deg, #1edc63, #4aff8a);
    color: #0b1510;
}

.feature-card {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    gap: 28px;
    align-items: center;
    background: #ffffff;
    border-radius: 22px;
    padding: 30px;
    box-shadow: 0 18px 45px rgba(8, 23, 17, 0.12);
}

.industry-feature.dark .feature-card {
    background: rgba(8, 18, 14, 0.85);
    border: 1px solid rgba(116, 255, 189, 0.3);
}

.industry-feature.green .feature-card {
    background: rgba(255, 255, 255, 0.85);
}

.feature-card.reverse {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
}

.feature-copy h3 {
    font-size: clamp(24px, 3vw, 32px);
    margin-bottom: 12px;
}

.feature-copy p {
    margin-bottom: 12px;
}

.feature-bullets {
    margin: 12px 0 18px;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 8px;
}

.feature-bullets li {
    padding-left: 22px;
    position: relative;
    font-weight: 600;
    color: inherit;
}

.feature-bullets li::before {
    content: "ï¿½";
    position: absolute;
    left: 0;
    top: 0;
    color: #31f266;
}

.feature-image img {
    width: 100%;
    border-radius: 18px;
    object-fit: cover;
}

.industry-cta {
    padding: 70px 0;
}


/* Industry V2 page */
.industry-v2 {
    background: #f6fff9;
}\r\n\r\nbody.industry-v2 .navbar {
    background: transparent !important;
    backdrop-filter: blur(14px);
    border-bottom: 0; box-shadow: none;
    padding: 1.1rem 0;
}

.industry-v2 .navbar-nav .nav-link {
    color: #f4f8ff !important;
}

.industry-v2 .navbar-nav .nav-link:hover {
    color: #b6ffd7 !important;
}

.industry-v2 .navbar-nav .nav-link.active,
.industry-v2 .navbar-nav .nav-link.active:hover {
    background: #1ecefa;
    color: #0b1016 !important;
    border-radius: 999px;
    padding: 0.45rem 1.1rem !important;
}

.industry-v2 .navbar-light .navbar-toggler {
    border-color: rgba(255, 255, 255, 0.35);
}

.industry-v2 .navbar-light .navbar-toggler-icon {
    filter: invert(1);
}

.industry-hero-v2 {
    position: relative;
    padding: 150px 0 120px;
    background: url('../img/cms-bg.png') center/cover no-repeat;
    color: #f3fbff;
    text-align: center;
}

.industry-hero-v2::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 20%, rgba(49, 242, 102, 0.18), transparent 55%),
        radial-gradient(circle at 85% 60%, rgba(30, 206, 250, 0.2), transparent 60%);
    opacity: 0.7;
    pointer-events: none;
}

.industry-hero-v2 .industry-hero-overlay {
    position: absolute;
    inset: 0;
}
.services-hero-v2{
        position: relative;
    padding: 150px 0 120px;
    background: url('../img/cms-bg.png') center/cover no-repeat;
    color: #f3fbff;
    text-align: center;
}
.services-hero-v2 .services-hero-overlay {
    position: absolute;
    inset: 0;
}
.industry-hero-inner {
    position: relative;
    z-index: 1;
    max-width: 760px;
    margin: 0 auto;
}

.industry-hero-title {  color: #fff;
    font-size: clamp(38px, 4vw, 56px);
    font-weight: 600;
    line-height: 1.1;
    margin-bottom: 14px;
}

.industry-hero-pill {
    display: inline-block;
    background: #31f266;
    color: #0b1510;
    padding: 0.18em 0.6em 0.24em;
    border-radius: 999px;
    margin-right: 0.2em;
    box-shadow: 0 12px 26px rgba(10, 18, 13, 0.25);
}

.industry-hero-subtitle {
    font-size: 18px;
    color: rgba(245, 250, 255, 0.92);
}

.industry-intro-v2 {
    padding: 70px 0 50px;
}

.industry-edge-head {
    margin-bottom: 32px;
}

.industry-edge-body {
    align-items: center;
}

.industry-edge-media {
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 18px 40px rgba(18, 32, 40, 0.18);
}

.industry-edge-media img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.industry-edge-copy p {
    color: #3b4a58;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 16px;
}

.industry-edge-cta {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    background: #1ecefa;
    color: #0a2a33;
    padding: 10px 18px;
    border-radius: 10px;
    font-weight: 600;
    border: 0;
    box-shadow: 0 10px 22px rgba(30, 206, 250, 0.25);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.industry-edge-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 32px rgba(30, 206, 250, 0.35);
    color: #0a2a33;
}

.industry-edge-cta-icon {
    font-size: 18px;
    line-height: 1;
}

.industry-edge-cta-icon img {
    width: 18px;
    height: 18px;
    display: block;
}

.intro-card-v2 {
    background: #ffffff;
    border-radius: 22px;
    padding: 28px 30px;
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    gap: 28px;
    align-items: center;
    box-shadow: 0 18px 45px rgba(9, 20, 15, 0.12);
}

.intro-title-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
}

.intro-title-row h2 {
    font-size: clamp(26px, 3.5vw, 40px);
    margin-bottom: 12px;
}

.intro-squares {
    position: relative;
    width: 46px;
    height: 46px;
}

.intro-squares img {
    position: absolute;
    width: 22px;
    height: 22px;
}

.square-blue {
    top: 0;
    right: 0;
}

.square-green {
    bottom: 0;
    left: 0;
}

.intro-card-image img {
    width: 100%;
    border-radius: 16px;
    object-fit: cover;
}

.industry-pill-row {
    display: grid;
    grid-template-columns: repeat(4, max-content);
    gap: 14px 18px;
    margin-top: 80px;
    justify-content: center;
    align-items: start;
}

.industry-pill {
      border: 1px solid #bfc6c9;
    background: #eeeeee;
    color: #1f2326;
    font-weight: 600;
    padding: 8px 20px;
    border-radius: 999px;
    font-size: 13px;
    white-space: nowrap;
    margin-bottom: 20px;
    text-align: center;
}

.industry-pill-row .industry-pill:nth-child(4n + 1),
.industry-pill-row .industry-pill:nth-child(4n + 3) {
    transform: translateY(-20px);
}

.industry-pill-row .industry-pill:nth-child(4n + 2),
.industry-pill-row .industry-pill:nth-child(4n + 4) {
    transform: translateY(8px);
}

.industry-pill.is-active {
    background: #31f266;
    color: #0b1510;
    border-color: #31f266;
    box-shadow: 0 10px 20px rgba(49, 242, 102, 0.3);
}

@media (max-width: 900px) {
    .industry-pill-row {
        grid-template-columns: repeat(2, max-content);
    }

    .industry-pill-row .industry-pill {
        transform: none;
    }
}

@media (max-width: 520px) {
    .industry-pill-row {
        grid-template-columns: 1fr;
        justify-items: center;
    }
}

.dental-panel {
    margin-top: 28px;
    padding-bottom: 24px;
}

.dental-panel-card {
    position: relative;
    background: linear-gradient(to top, #caf4ff 0%, #cafff3 35%, #e6ffec 70%, #ffffff 100%);
    border-radius: 20px;
    padding: 34px;
    box-shadow: 0 16px 40px rgba(18, 32, 40, 0.12);
    width: 100%;
}

.dental-panel-content h3 {
    font-size: clamp(26px, 3vw, 34px);
    margin-bottom: 12px;
}

.dental-panel-content p {
    color: #1f2f2b;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 14px;
}

.dental-panel-content h4 {
    margin-top: 18px;
    margin-bottom: 10px;
    font-size: 16px;
}

.dental-panel-approach {
    margin-top: 10px;
}

.dental-panel-approach ul {
    margin: 0;
    padding-left: 18px;
    display: grid;
    gap: 8px;
}

.dental-panel-approach li {
    font-size: 14px;
    color: #1f2f2b;
}

.dental-panel-note {
    margin-top: 6px;
    margin-bottom: 16px;
}

.dental-panel-media {
    border-radius: 26px;
    overflow: hidden;
    box-shadow: 0 16px 30px rgba(10, 18, 20, 0.18);
}

.dental-panel-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.dental-panel-astro {
position: absolute;
    right: -67px;
    bottom: -77px;
    width: 250px;
    z-index: 8;
    animation: robotoSlide 3.6s ease-in-out infinite;
}

.vet-panel {
    margin: 28px 0;
}

.vet-panel-card {
    background: #050505 url("../img/ind-bg.png") center/cover no-repeat;
    color: #f5f5f5;
    position: relative;
    overflow: hidden;
    height: 720px;
}

.vet-panel-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 85% 70%, rgba(255, 255, 255, 0.08), transparent 40%),
        radial-gradient(circle at 70% 30%, rgba(255, 255, 255, 0.06), transparent 45%);
    opacity: 0.6;
    pointer-events: none;
}

.vet-panel-media {
    height: 100%;
}

.vet-panel-media img {
    width: 100%;
    height: 70%;
    object-fit: cover;
    display: block;
}

.vet-panel-content {
    position: relative;
    z-index: 1;
    padding: 48px 42px;
}

.vet-panel-content h3 {
    color: #ffffff;
    font-size: clamp(26px, 3vw, 36px);
    margin-bottom: 12px;
}

.vet-panel-content p {
    color: rgba(240, 240, 240, 0.85);
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 14px;
}

.vet-panel-content h4 {
    color: #ffffff;
    font-size: 16px;
    margin-top: 18px;
    margin-bottom: 10px;
}

.vet-panel-list {
    margin: 0 0 14px;
    padding-left: 18px;
    display: grid;
    gap: 8px;
}

.vet-panel-list li {
    color: rgba(240, 240, 240, 0.85);
    font-size: 14px;
}

.vet-panel-note {
    color: rgba(240, 240, 240, 0.85);
}

.vet-panel-cta {
    background: #1ecefa;
    color: #0a2a33;
}

.chiro-derma {
    padding: 40px 0 200px;
    background: linear-gradient(to bottom, #ffffff 0%, #e6ffec 35%, #cafff3 70%, #caf4ff 100%);
}

.chiro-card {

    border-radius: 18px;
    padding: 28px;

    margin-bottom: 24px;
    text-align: center;
}

.chiro-head {
    margin: 0 auto 14px;
    grid-template-columns: 140px auto 32px;
    justify-content: center;
    align-items: center;
    max-width: 720px;
}

.chiro-head h2 {
    font-size: clamp(20px, 2.6vw, 42px);
}

.chiro-card p {
    font-size: 16px;
    color: #1f2f2b;
    margin-bottom: 10px;
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
}

.chiro-card h4 {
    font-size: 26px;
    margin-top: 12px;
    margin-bottom: 8px;
    text-align: left;
}

.chiro-note {
    font-size: 13px;
    margin-top: 8px;
    text-align: left;
}

.chiro-image,
.derma-image {
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 12px 24px rgba(10, 18, 20, 0.2);
}

.chiro-image img,
.derma-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.chiro-body {
    text-align: left;
    margin-top: 6px;
}

.chiro-bullets {
    margin: 0 0 12px;
    padding-left: 18px;
    display: grid;
    gap: 8px;
}

.chiro-bullets li {
    font-size: 16px;
    color: #1f2f2b;
}

.chiro-image {
    border-radius: 28px;
}

.derma-card {
background: #ffffff;
    border-radius: 18px;
    padding: 28px;
    box-shadow: 0 16px 36px rgba(16, 32, 40, 0.12);
    margin-top: -130px;
    margin-bottom: 60px;
}

.derma-card h3 {
    font-size: clamp(20px, 2.6vw, 28px);
    margin-bottom: 10px;
}

.derma-card p {
    font-size: 14px;
    color: #2a3338;
    margin-bottom: 10px;
}

.derma-card h4 {
    font-size: 20px;
    margin-top: 12px;
    margin: 18px 0px;
}

.derma-list {
    margin: 0 0 10px;
    padding-left: 18px;
    display: grid;
    gap: 6px;
}

.derma-list li {
    font-size: 16px;
    color: #2a3338;
}

.derma-note {
    font-size: 13px;
}

.urgent-panel {
    padding: 36px 0 30px;
}

.urgent-panel-inner {
    background: linear-gradient(135deg, #11c94a 0%, #32ea6e 40%, #4af08c 70%, #6bf6b8 100%);
    color: #0b120f;
    border-radius:0px;

    padding: 30px 0px;
    
}

.urgent-panel-media {
    padding: 22px 10px 22px 22px;
    height: 100%;
    position: relative;
}

.urgent-panel-title {
    font-size: clamp(26px, 3.2vw, 36px);
    margin: 0 0 16px;
    font-weight: 700;
    color: #0b120f;
}

.urgent-panel-media img {
    max-width: 100%;
    height: 100%;
  object-fit: cover;
    display: block;
    border-radius: 26px;
    box-shadow: 0 14px 30px rgba(7, 28, 18, 0.25);
    position: absolute;
    width: 450px;
    height: 500px;
    bottom: -85px;
}

.urgent-panel-content {
    padding: 34px 34px 34px 12px;
}

.urgent-panel-content h3 {
    font-size: clamp(26px, 3.2vw, 36px);
    margin-bottom: 16px;
    font-weight: 700;
}

.urgent-panel-content p {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 12px;
    color: #0f1f14;
}

.urgent-panel-content h4 {
    font-size: 18px;
    margin-top: 14px;
    margin-bottom: 8px;
    font-weight: 700;
}

.urgent-panel-list {
    margin: 0 0 12px;
    padding-left: 18px;
    display: grid;
    gap: 8px;
}

.urgent-panel-list li {
    font-size: 15px;
    color: #102416;
}

.urgent-panel-note {
    font-size: 15px;
    color: #0f1f14;
}

.urgent-panel-cta {
    background: #1ecefa;
    color: #0a2a33;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(4, 66, 88, 0.2);
}

.mental-panel {
    padding: 70px 0 80px;
    background: linear-gradient(to top, #caf4ff 0%, #cafff3 40%, #e6ffec 72%, #ffffff 100%);
}

.mental-panel-head {
    text-align: center;
    max-width: 840px;
    margin: 0 auto 28px;
    position: relative;
}

.mental-head {
    grid-template-columns: 180px auto 44px;
    justify-content: center;
    align-items: center;
    margin: 0 auto 16px;
   
}

.mental-head h2 {
    font-size: clamp(24px, 3vw, 36px);
}

.mental-panel-head p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 10px;
    color: #22342b;
}

.mental-panel-content h4 {
    font-size: 20px;
    margin-bottom: 12px;
}

.mental-panel-list {
    margin: 0 0 12px;
    padding-left: 18px;
    display: grid;
    gap: 8px;
}

.mental-panel-list li {
    font-size: 15px;
    color: #243a30;
}

.mental-panel-note {
    font-size: 15px;
    color: #243a30;
}

.mental-panel-cta {
    background: #1ecefa;
    color: #0a2a33;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(4, 66, 88, 0.2);
}

.mental-panel-media img {
    width: 100%;
    border-radius: 26px;
    object-fit: cover;
    box-shadow: 0 16px 32px rgba(9, 28, 20, 0.22);
}

.physio-panel {
    padding: 30px 0 60px;
    background: #0b0b0d;
    color: #f1f3f4;
}

.physio-panel-inner {
    background: #050505 url("../img/ind-bg.png") center/cover no-repeat;
    padding: 40px 0 50px;
    position: relative;
    overflow: hidden;
}

.physio-panel-inner::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 85% 70%, rgba(255, 255, 255, 0.08), transparent 40%),
        radial-gradient(circle at 70% 30%, rgba(255, 255, 255, 0.06), transparent 45%);
    opacity: 0.6;
    pointer-events: none;
}

.physio-panel-inner .container {
    position: relative;
    z-index: 1;
}

.physio-panel-media img {
    width: 100%;
    border-radius: 26px;
    object-fit: cover;
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.45);
}

.physio-panel-content h3 {
    font-size: clamp(24px, 3vw, 40px);
    margin-bottom: 30px;
    position: relative;
    display: inline-block;
    color: #fff;
    
}



.physio-panel-content p {
    font-size: 16px;
    line-height: 1.7;
    color: rgba(241, 243, 244, 0.85);
    margin-bottom: 12px;
}

.physio-panel-content h4 {
    font-size: 20px;
    margin-top: 20px;
    margin-bottom: 12px;
    color: #fff;
}

.physio-panel-list {
    margin: 0 0 12px;
    padding-left: 18px;
    display: grid;
    gap: 8px;
}

.physio-panel-list li {
    font-size: 13px;
    color: rgba(241, 243, 244, 0.85);
}

.physio-panel-note {
    font-size: 13px;
    color: rgba(241, 243, 244, 0.85);
}

.physio-panel-cta {
    background: #1ecefa;
    color: #0a2a33;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(4, 66, 88, 0.35);
}

.spa-panel {
    padding: 70px 0 80px;
    background: linear-gradient(135deg, #10c846 0%, #2fe66b 45%, #42f08a 70%, #68f7b5 100%);
    color: #0b120f;
}

.spa-panel-head {
    text-align: center;
    max-width: 860px;
    margin: 0 auto 28px;
}

.spa-head {
    grid-template-columns: 180px auto 44px;
    justify-content: center;
    align-items: center;
    margin: 0 auto 16px;
    max-width: 780px;
}

.spa-head h2 {
    font-size: clamp(24px, 3vw, 36px);
}

.spa-panel-head p {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 10px;
    color: #0f1f14;
}

.spa-panel-content h4 {
    font-size: 18px;
    margin-bottom: 12px;
}

.spa-panel-list {
    margin: 0 0 12px;
    padding-left: 18px;
    display: grid;
    gap: 8px;
}

.spa-panel-list li {
    font-size: 15px;
    color: #0f1f14;
}

.spa-panel-note {
    font-size: 15px;
    color: #0f1f14;
}

.spa-panel-cta {
    background: #1ecefa;
    color: #0a2a33;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(4, 66, 88, 0.2);
}

.spa-panel-media img {
    width: 100%;
    border-radius: 26px;
    object-fit: cover;
    box-shadow: 0 16px 32px rgba(7, 28, 18, 0.25);
}

.industry-block {
    padding: 60px 0;
}

.industry-block.light {
    background: #f6fff9;
}

.industry-block.dark {
    background: #0a1410;
    color: #e9f7f0;
}

.industry-block.green {
    background: linear-gradient(120deg, #1edc63, #4aff8a);
    color: #0b1510;
}

.industry-card-v2 {
    background: #ffffff;
    border-radius: 22px;
    padding: 28px;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: 24px;
    align-items: center;
    box-shadow: 0 18px 45px rgba(8, 23, 17, 0.12);
}

.industry-block.dark .industry-card-v2 {
    background: rgba(8, 18, 14, 0.9);
    border: 1px solid rgba(116, 255, 189, 0.3);
}

.industry-block.green .industry-card-v2 {
    background: rgba(255, 255, 255, 0.86);
}

.industry-card-v2.reverse {
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
}

.industry-card-copy h3 {
    font-size: clamp(22px, 3vw, 32px);
    margin-bottom: 12px;
}

.industry-card-list {
    display: grid;
    gap: 8px;
    margin: 14px 0 18px;
}

.industry-card-list span {
    position: relative;
    padding-left: 20px;
    font-weight: 600;
}

.industry-card-list span::before {
    content: "�";
    position: absolute;
    left: 0;
    top: 0;
    color: #31f266;
}

.industry-card-image img {
    width: 100%;
    border-radius: 16px;
    object-fit: cover;
}

.industry-cta-v2 {
    padding: 70px 0 90px;
    background: #f6fff9;
}






.about-ai-section .intro-head{
    max-width: 680px;
     margin: 30px auto;
}

/* ===================================
   Responsive: ≤991px
   =================================== */
@media (max-width: 991px) {
    /* Header / Navigation */
    .navbar {
        background: transparent !important;
        backdrop-filter: blur(14px);
        border-bottom: 0;
        box-shadow: none;
        padding: 1.1rem 0;
    }

    .navbar .nav-link {
        font-size: 16px;
        margin-left: 0;
        margin-top: 4px;
        padding: 8px 12px;
    }

    .site-logo {
        height: 40px;
    }

    /* Hero / Intro */
    .hero-wrap {
        min-height: 700px;
    }

    .hero-slide {
        min-height: 610px;
    }

    .hero-content {
        padding-top: 110px;
        padding-bottom: 58px;
    }

    .hero-content h1 {
        font-size: clamp(36px, 10vw, 56px);
    }

    .hero-title em {
        padding: 2px 12px 5px;
    }

    .hero-audit {
        width: 160px;
        height: 160px;
        margin-top: 28px;
    }

    .audit-text {
        width: 160px;
        height: 160px;
        font-size: 11px;
        letter-spacing: 2px;
    }

    .hero-badge {
        width: 92px;
        height: 92px;
        font-size: 34px;
    }

    .intro-head {
        display: flex;
        flex-direction: column;
        grid-template-columns: 1fr;
        gap: 14px;
        margin-bottom: 24px;
        align-items: center;
    }
.section-head h3{
    text-align: center;
}
  .why-left h3 {
        text-align: center;
} 
.performance-copy h3{
    text-align: center;
}
.pricing-title h3 {
   text-align: center;
}
.intro-section h2, .performance h3, .pricing-why h3, .industries h3, .tracking h3, .cta-section h3, .dark-panel h3{
  text-align: center;  
}
    .tracking-header h3 {
       text-align: center; 
    }
.about-approach-copy h2{
    text-align: center;  
}
.about-different-copy h2{
    text-align: center;   
}
.intro-line {
        width: 103px;
        margin-top: 0;
    }

    .intro-mark {
        width: 34px;
        height: 34px;
    }

    .intro-mark img {
        width: 18px;
        height: 18px;
    }

    .intro-copy {
        font-size: 17px;
        max-width: 100%;
    }

    .intro-bottom {
        margin-top: 18px;
    }

    .intro-audit {
        width: 160px;
        height: 160px;
    }

    .intro-audit .audit-text {
        width: 160px;
        height: 160px;
        letter-spacing: 2px;
        font-size: 12px;
    }

    .intro-badge {
        width: 76px;
        height: 76px;
    }

    .intro-badge-icon {
        width: 76px;
        height: 76px;
    }

    .intro-side-img {
        width: min(100%, 260px);
    }

    /* Layout / Grids */
    .reason-grid,
    .pricing-grid,
    .pricing-list,
    .industry-grid {
        grid-template-columns: 1fr;
    }

    .intro-split,
    .feature-card,
    .feature-card.reverse {
        grid-template-columns: 1fr;
    }

    .intro-card-v2,
    .industry-card-v2,
    .industry-card-v2.reverse {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-body {
        grid-template-columns: 1fr;
        padding: 0 20px 20px;
    }

    .service-body img {
        width: min(100%, 320px);
    }

    .services-emergency-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .services-emergency-grid--top .services-emergency-card:nth-child(2),
    .services-emergency-grid--top .services-emergency-card:nth-child(3),
    .services-emergency-grid--bottom .services-emergency-card:nth-child(2) {
        border-right: none;
    }

    .services-emergency-grid--top .services-emergency-card:nth-child(3) {
        border-bottom: 1px solid #fff;
    }

    .about-approach-list {
        grid-template-columns: 1fr;
    }

    .intro-title-row {
        flex-direction: column;
    }

    .chiro-head,
    .mental-head,
    .spa-head {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    /* Section Spacing */
    .services-intro-v2 {
        padding: 20px 0 0;
    }

    .services-grid-section {
        padding: 0px 0 20px;
    }
.industry-intro-v2{
    padding: 20px 0 0px;
}
    .services-hero {
        min-height: 300px;
        padding: 130px 0 75px;
    }
.contact-quick-section{
    padding: 0px 0 10px;
}
    .services-content-section {
        padding: 64px 0;
    }

    .about-hero {
        min-height: 300px;
        padding: 130px 0 75px;
    }

    .about-blob-section {
        padding: 0;
    }

    .about-approach-section {
        padding: 20px 0;
    }

    .about-different-section {
        padding: 20px 0;
    }

    .about-contact-banner {
        padding: 0px 0;
    }

    .about-content-section {
        padding: 64px 0;
    }

    .about-split-section {
        padding: 0.8rem;
    }

    .contact-hero-v2 {
        padding: 120px 0 80px;
    }

    .contact-content-section {
        padding: 2px 0;
    }

    .vet-hero {
        min-height: 300px;
        padding: 130px 0 75px;
    }

    .vet-content-section {
        padding: 64px 0;
    }

    .dental-hero {
        min-height: 300px;
        padding: 130px 0 75px;
    }

    .dental-content-section {
        padding: 64px 0;
    }

    .industry-hero {
        padding: 120px 0 70px;
    }

    .industry-hero-v2 {
        padding: 120px 0 80px;
    }

    .mental-panel {
        padding: 60px 0 70px;
    }

    .physio-panel {
        padding: 20px 0 50px;
    }

    .physio-panel-inner {
        padding: 30px 0 40px;
    }

    .spa-panel {
        padding: 60px 0 70px;
    }

    .industry-edge-head {
        margin-bottom: 24px;
    }

    .tracking-panel {
        background: url(../img/Union.png);
        background-size: 100% 100%;
        padding: 140px 0 10px 0;
    }

    /* Cards / Media */
    .industry-card .industry-desc {
        position: static;
        display: block;
        padding: 0;
        margin-top: 0.85rem;
        opacity: 1;
        transform: none;
        background: transparent;
        color: #2f3f57;
        font-size: 0.92rem;
        text-align: center;
    }

    .service-split {
        padding: 0.8rem;
    }

    .service-image-wrap {
        aspect-ratio: 16 / 10;
    }

    .feature-card {
        padding: 24px;
    }

    .contact-support-card {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
        padding: 18px 20px;
    }

    .contact-support-row .col-lg-4:last-child .contact-support-card {
        border-bottom: none;
    }

    .contact-form-card,
    .contact-info-card {
        margin-bottom: 1.5rem;
    }

    .vet-intro-card {
        padding: 2rem;
    }

    .vet-service-card {
        margin-bottom: 1.5rem;
    }

    .dental-intro-card {
        padding: 2rem;
    }

    .dental-service-card {
        margin-bottom: 1.5rem;
    }

    .dental-panel-card {
        padding: 28px;
    }

    .dental-panel-astro {
        position: static;
        margin-top: 18px;
        width: 140px;
        display: block;
    }

    .vet-panel-card {
        height: auto !important;
    }

    .vet-panel-media {
        height: auto !important;
    }

    .vet-panel-content {
        padding: 36px 26px;
    }

    .chiro-card,
    .derma-card {
        padding: 22px;
    }

    .chiro-body {
        text-align: left;
    }

    .derma-card {
        margin-top: 0 !important;
    }

    .urgent-panel-content {
        padding: 32px 0;
    }

    .urgent-panel-inner {
        margin: 0;
    }

    .urgent-panel-media {
        padding: 20px 20px 0;
    }

    .urgent-panel-media img {
        position: relative !important;
        height: auto !important;
        bottom: 0 !important;
    }

    .urgent-panel-title {
        margin-bottom: 14px;
        text-align: left;
    }

    .industry-edge-media {
        border-radius: 18px;
    }

    .industry-edge-cta {
        width: 100%;
        justify-content: space-between;
    }

    .industry-pill-row .industry-pill:nth-child(4n + 1),
    .industry-pill-row .industry-pill:nth-child(4n + 2),
    .industry-pill-row .industry-pill:nth-child(4n + 3),
    .industry-pill-row .industry-pill:nth-child(4n + 4) {
        transform: none;
    }

    .industry-pill-row {
        margin-top: 20px;
    }

    .industry-pill {
        margin-bottom: 5px;
    }

    .cta-box {
        flex-direction: column;
        text-align: center;
    }

    .cta-box img {
        width: 300px;
    }

    /* Content / Typography */
    .intro-section p,
  
    .performance p,
    .pricing-why p,
    .cta-box p {
        color: #394857;
        font-size: 14px;
        line-height: 1.5;
    }

    .about-different-copy li {
        position: relative;
        padding-left: 18px;
        margin-bottom: 10px;
        color: #1b2a24;
        font-size: 14px;
    }

    .about-approach-list li {
        position: relative;
        padding-left: 18px;
        margin-bottom: 10px;
        color: rgba(241, 245, 249, 0.9);
        font-size: 14px;
    }

    .about-blob-content h2 {
        font-size: clamp(24px, 3vw, 40px);
        margin-bottom: 3px;
    }

    .performance-copy h3 {
        font-size: 30px;
    }

    .section-head p {
        font-size: 18px;
    }

    .service-button {
        padding: 18px 20px;
        font-size: 20px;
    }

    .service-arrow {
        width: 48px;
        height: 48px;
        font-size: 22px;
    }

    /* Utilities */
    .about-blob-content {
        max-width: 560px;
    }

    .about-blob-badge {
        right: 6%;
        width: 64px;
        height: 64px;
    }

    .about-blob-badge img {
        width: 30px;
        height: 30px;
    }

    .about-contact-banner-inner {
        padding: 28px;
        flex-direction: column;
        align-items: flex-start;
    }

    .about-contact-banner-logo {
        min-width: 100%;
        min-height: 140px;
        justify-self: stretch;
    }

    .about-contact-bar {
        flex-direction: column;
    }

    .about-contact-item {
        width: 100%;
    }

    .about-split-image {
        aspect-ratio: 16 / 10;
    }

    .about-visual-wrap {
        position: static;
        top: auto;
    }

    .why-left {
        position: static;
    }

    .why-right {
        max-height: none;
        overflow: visible;
        padding-right: 0;
        padding-left: 0;
    }

    .why-right::before {
        display: none;
    }

    .pricing-squares {
        margin-left: 0;
    }

    .pricing-head {
        flex-direction: column;
    }

    .performance-visual::before,
    .performance-visual::after {
        right: 0;
        width: 300px;
        height: 300px;
    }

    .brands {
        min-width: 860px;
    }

    .brands img {
        max-height: 34px;
    }
}

@media (max-width: 576px) {
    .hero-section {
        padding: 90px 0 60px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    .about-blob-content p {
    font-size: 12px !important;
    line-height: 1.3 !important;
    margin-bottom: 14px !important;
}
    .hero-feature-item {
        font-size: 0.95rem;
    }
    
    .hero-description {
        font-size: 0.95rem;
    }
    
    .btn-lg {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .stat-label {
        font-size: 0.75rem;
    }
    
    .hero-badge {
        font-size: 0.85rem;
        padding: 0.6rem 1.2rem;
    }
    
    .hero-stats {
        margin-top: 2rem;
        padding-top: 2rem;
    }
    
    .about-section {
        padding: 3rem 0;
    }
    
    .why-us-section {
        padding: 3rem 0;
    }
    
    .feature-card {
        padding: 1.75rem;
    }
    
    .feature-card h4 {
        font-size: 1.3rem;
    }
    
    .feature-icon {
        width: 60px;
        height: 60px;
        font-size: 1.8rem;
        margin-bottom: 1.25rem;
    }
    
    .about-image {
        padding: 0.5rem;
        margin-bottom: 2rem;
    }
    
    .about-content {
        padding: 1rem 0 1rem 0;
    }
    
    .about-text {
        font-size: 1rem;
    }
    
    .about-feature-item {
        padding: 0.75rem 1rem;
        gap: 0.75rem;
        min-width: 120px;
    }
    
    .feature-icon-box {
        width: 40px;
        height: 40px;
        border-radius: 10px;
    }
    
    .feature-icon-box i {
        font-size: 1.1rem;
    }
    
    .feature-number {
        font-size: 1.2rem;
    }
    
    .feature-label {
        font-size: 0.75rem;
    }
    
    .feature-top-left,
    .feature-top-right {
        top: 15px;
    }
    
    .feature-top-left,
    .feature-bottom-left {
        left: 15px;
    }
    
    .feature-top-right,
    .feature-bottom-right {
        right: 15px;
    }
    
    .feature-bottom-left,
    .feature-bottom-right {
        bottom: 15px;
    }
}

@media (max-width: 576px) {
    .about-blob-card {
        padding: 28px 12px;
    }

    .about-blob-content {
        position: static;
        padding: 0;
        margin-top: -180px;
    }

    .about-blob-shape {
        width: 100%;
    }

    .about-blob-badge {
        top: -12px;
        right: 12px;
        width: 56px;
        height: 56px;
    }

    .about-blob-badge img {
        width: 46px;
        height: 46px;
    }

    .about-approach-copy h2 {
        font-size: 1.7rem;
    }

    .about-approach-services h3 {
        font-size: 1.4rem;
    }

    .about-different-copy h2 {
        font-size: 1.7rem;
    }

    .about-different-copy h3 {
        font-size: 1.4rem;
    }

    .about-contact-link {
        font-size: 15px;
    }

    .about-card,
    .about-side-panel {
        padding: 1.4rem 1.2rem;
        border-radius: 14px;
    }

    .about-card h2,
    .about-side-panel h3 {
        font-size: 1.35rem;
    }

    .about-card p,
    .about-list li {
        font-size: 0.97rem;
    }

    .about-contact-bar {
        padding: 0.75rem;
    }

    .about-contact-item {
        padding: 0.8rem;
        border-radius: 10px;
    }

    .about-contact-bar a,
    .about-contact-value {
        font-size: 1rem;
    }

    .about-hero-subtitle {
        font-size: 1rem;
    }

    .about-hero {
        min-height: 260px;
        padding: 120px 0 60px;
    }
}

@media (max-width: 576px) {
    .services-emergency-grid {
        grid-template-columns: 1fr;
    }

    .services-emergency-card {
        border-right: none;
    }
}

@media (max-width: 576px) {
    .services-timeline {
        padding-left: 28px;
    }

    .services-timeline::before {
        left: 12px;
    }

    .services-timeline-item::before {
        left:-23px;
    }
    .services-timeline-section--dark {
    padding: 33px 0;
    margin-top: 20px;
    }
    .services-timeline-section{
        padding-top: 30px;

    }
.services-emergency-section {
    padding: 30px 0;
}

.services-emergency-header {
    text-align: center;
    margin-bottom: 16px;
}
.services-specialist-section{
   padding: 30px 0;  
}
}

@media (max-width: 576px) {
    .services-hero {
        min-height: 260px;
        padding: 120px 0 60px;
    }

    .services-intro-card,
    .service-card {
        padding: 1.3rem 1.1rem;
    }

    .services-intro-card h2 {
        font-size: 1.45rem;
    }

    .service-card h3 {
        font-size: 1.28rem;
    }

    .service-card p,
    .service-list li {
        font-size: 0.96rem;
    }
}

@media (max-width: 576px) {
    .contact-hero-v2 {
        padding: 110px 0 70px;
    }

    .contact-form-card,
    .contact-info-card,
    .contact-feature-card {
        padding: 1.6rem 1.4rem;
    }

    .contact-form-title,
    .contact-info-title {
        font-size: 1.6rem;
    }

    .contact-feature-card h4 {
        font-size: 1.2rem;
    }

    .contact-hero-subtitle {
        font-size: 1rem;
    }

    .contact-quick-card {
        padding: 22px;
    }

    .contact-quick-card h4 {
        font-size: 1.45rem;
    }
}

@media (max-width: 576px) {
    .vet-hero {
        min-height: 260px;
        padding: 120px 0 60px;
    }

    .vet-intro-card,
    .vet-service-card,
    .vet-cta-card {
        padding: 1.5rem 1.2rem;
    }

    .vet-section-title {
        font-size: 1.6rem;
    }

    .vet-service-title {
        font-size: 1.3rem;
    }

    .vet-cta-title {
        font-size: 1.5rem;
    }

    .vet-hero-subtitle {
        font-size: 1rem;
    }

    .vet-cta-buttons .btn {
        display: block;
        width: 100%;
        margin-bottom: 0.75rem;
    }

    .vet-cta-buttons .btn:last-child {
        margin-bottom: 0;
    }
}

@media (max-width: 576px) {
    .dental-hero {
        min-height: 260px;
        padding: 120px 0 60px;
    }

    .dental-intro-card,
    .dental-service-card,
    .dental-cta-card {
        padding: 1.5rem 1.2rem;
    }

    .dental-section-title {
        font-size: 1.6rem;
    }

    .dental-category-title {
        font-size: 1.5rem;
    }

    .dental-service-title {
        font-size: 1.25rem;
    }

    .dental-cta-title {
        font-size: 1.5rem;
    }

    .dental-hero-subtitle {
        font-size: 1rem;
    }

    .dental-cta-buttons .btn {
        display: block;
        width: 100%;
        margin-bottom: 0.75rem;
    }

    .dental-cta-buttons .btn:last-child {
        margin-bottom: 0;
    }
}

@media (max-width: 575px) {
    .intro-bottom {
        flex-direction: column;
        align-items: center;
    }

    .section-head h3 {
        font-size: 32px;
    }

    .section-head p {
        font-size: 16px;
    }

    .intro-audit .audit-text {
        width: 150px;
        height: 150px;
    }

    .intro-badge {
        width: 90px;
        height: 90px;
    }
.intro-badge {
    position: absolute;
    top: 48%;
    left: 48%;
    transform: translate(-50%, -50%);
    display: grid;
    place-items: center;
    width: 90px;
    height: 90px;
}
    .intro-badge-icon {
        width: 90px;
        height: 90px;
    }

    .intro-side-img {
        width: 100%;
        max-width: 320px;
    }

    .hero-wrap {
        min-height: 600px;
    }

    .hero-slide {
       height: 540px;
    }
.intro-head h2{
    text-align: center;
}
    .hero-content {
        padding-top: 96px;
        padding-bottom: 42px;
    }

    .brands {
        min-width: 760px;
    }

    .section {
        padding: 30px 0;
    }

    .service-button {
        font-size: 18px;
        padding: 16px 16px;
    }

    .service-arrow {
        width: 42px;
        height: 42px;
        font-size: 20px;
        border-radius: 10px;
    }

    .service-body {
        padding: 0 16px 16px;
    }
}

@media (max-width: 575px) {
    .industry-hero-v2 {
        padding: 110px 0 70px;
    }

    .industry-hero-title {
        font-size: clamp(30px, 9vw, 42px);
    }

    .industry-hero-subtitle {
        font-size: 16px;
    }

    .dental-panel-card {
        padding: 15px;
    }

    .vet-panel-card {
        height: auto;
    }

    .vet-panel-media img {
        height: auto;
    }

    .vet-panel-content {
        padding: 28px 20px;
    }

    .urgent-panel-media {
        padding: 16px 16px 0;
    }

    .urgent-panel-media img {
        position: static;
        width: 100%;
        height: auto;
        margin-top: 12px;
        box-shadow: 0 10px 22px rgba(7, 28, 18, 0.2);
    }

    .urgent-panel-content {
        padding: 22px 16px 26px;
    }

    .chiro-card,
    .derma-card {
        padding: 20px;
    }

    .derma-card {
        margin-top: -70px;
    }
}
