:root {
    /* Premium Color Palette (Inspired by Smebizz Logo) */
    --primary-color: #55a5d6;
    /* Vibrant Orange */
    --primary-dark: #0f84cd;
    --primary-light: #edf1f4;
    --secondary-color: #201c1d;
    /* Deep Business Blue */
    --accent-gold: #ffcc00;
    --accent-green: #2a9d8f;

    /* Neutral Colors */
    --white: #ffffff;
    --off-white: #f8f9fa;
    --light-gray: #e9ecef;
    --medium-gray: #6c757d;
    --dark-gray: #343a40;
    --black: #1a1a1a;

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #55a5d6 0%, #0f84cd 100%);
    --gradient-secondary: linear-gradient(135deg, #085a8c 0%, #052d46 100%);
    --gradient-tertiary: linear-gradient(135deg, #0f84cd 0%, #ffcc00 100%);
    --gradient-overlay: linear-gradient(135deg, rgba(11, 61, 102, 0.9) 0%, rgba(5, 44, 74, 0.8) 100%);

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(11, 61, 102, 0.08);
    --shadow-md: 0 4px 16px rgba(11, 61, 102, 0.12);
    --shadow-lg: 0 8px 32px rgba(11, 61, 102, 0.15);
    --shadow-xl: 0 16px 48px rgba(11, 61, 102, 0.2);

    /* Typography */
    --font-primary: 'Poppins', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    --font-secondary: 'Outfit', sans-serif;

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 3rem;
    --spacing-xl: 4rem;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 30px;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: hidden;
}

section[id] {
    scroll-margin-top: 100px;
}

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--dark-gray);
    background-color: var(--white);
    overflow-x: hidden;
    width: 100%;
}

/* ===================================
   TYPOGRAPHY
   =================================== */

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    line-height: 1.3;
    color: var(--black);
    margin-bottom: 1rem;
    font-family: var(--font-secondary);
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
}

h4 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    color: var(--medium-gray);
}

.gradient-text {
    background: var(--gradient-tertiary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

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

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

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

.section {
    padding: 80px 0;
    position: relative;
    scroll-margin-top: 80px;
}

.section-alt {
    background-color: var(--off-white);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.section-header.text-left {
    text-align: left;
    align-items: flex-start;
}

.section-dark {
    background: #05080b;
    position: relative;
    overflow: hidden;
    color: var(--white);
}

.section-dark .section-title {
    color: var(--white);
}

.section-dark .section-description {
    color: rgba(255, 255, 255, 0.7);
}

.section-dark .service-type-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.section-dark .service-type-card h3,
.section-dark .service-type-card p,
.section-dark .service-type-card li {
    color: var(--white);
}

.section-dark .service-type-card p {
    color: rgba(255, 255, 255, 0.7);
}

.section-subtitle {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 700;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 1rem;
    padding: 0.6rem 1.25rem;
    border: 2px dashed var(--accent-gold);
    border-radius: 50px;
    box-shadow: var(--shadow-sm);
    position: relative;
    z-index: 1;
    background: var(--gradient-tertiary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-subtitle img,
.section-subtitle .short-logo,
.section-subtitle i {
    width: 24px;
    height: 24px;
    object-fit: contain;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--black);
    margin-bottom: 1rem;
    font-family: var(--font-secondary);
}

.section-description {
    font-size: 1.15rem;
    color: var(--medium-gray);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.section-header.text-left .section-description {
    margin-left: 0;
}

/* ===================================
   NAVIGATION BAR
   =================================== */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.95));
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    transition: all var(--transition-normal);
    border-bottom: 1px solid rgba(11, 61, 102, 0.1);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-md);
    border-bottom: 1px solid rgba(11, 61, 102, 0.15);
}

.nav-container {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    padding: 1.2rem 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-img {
    height: 60px;
    object-fit: contain;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 0.5rem;
    align-items: center;
}

.nav-item {
    position: relative;
}

.nav-link {
    color: var(--dark-gray);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0.75rem 0.55rem;
    border-radius: var(--radius-md);
    transition: all var(--transition-normal);
    display: flex;
    align-items: center;
    gap: 0.4rem;
    position: relative;
    letter-spacing: 0.3px;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: var(--gradient-primary);
    transform: translateX(-50%);
    transition: width var(--transition-normal);
    border-radius: 2px;
}

.nav-link:hover {
    color: var(--primary-color);
    transform: translateY(-2px);
    background: var(--primary-light);
}

.nav-link:hover::before {
    width: 70%;
}

.nav-link.active {
    color: var(--white);
    background: var(--gradient-primary);
    box-shadow: 0 4px 12px rgba(15, 132, 205, 0.3);
}

.nav-link.active::before {
    display: none;
}

/* Dropdown Menu */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 0;
    background: var(--white);
    box-shadow: var(--shadow-lg);
    border-radius: var(--radius-lg);
    min-width: 280px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all var(--transition-normal);
    z-index: 100;
    border: 1px solid rgba(11, 61, 102, 0.1);
    padding: 0.5rem;
    list-style: none;
}

.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 30px;
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid var(--white);
}

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

.dropdown-item {
    padding: 0.85rem 1.25rem;
    color: var(--dark-gray);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    transition: all var(--transition-fast);
    border-radius: var(--radius-md);
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    white-space: nowrap;
}

.dropdown-item i {
    font-size: 0.8rem;
    color: var(--medium-gray);
    transition: var(--transition-fast);
}

.dropdown-item:hover,
.dropdown-item.active {
    background: var(--primary-light);
    color: var(--primary-color);
    transform: translateX(5px);
}

.dropdown-item:hover i,
.dropdown-item.active i {
    color: var(--primary-color);
    transform: translateX(3px);
}

/* Sub-dropdown (Level 2) */
.dropdown-submenu {
    position: relative;
}

.dropdown-submenu .submenu {
    position: absolute;
    top: 0;
    left: calc(100% + 1rem);
    background: var(--white);
    box-shadow: var(--shadow-lg);
    border-radius: var(--radius-lg);
    min-width: 250px;
    opacity: 0;
    visibility: hidden;
    transform: translateX(10px);
    transition: all var(--transition-normal);
    z-index: 101;
    border: 1px solid rgba(11, 61, 102, 0.1);
    padding: 0.5rem;
    list-style: none;
}

.dropdown-submenu:hover .submenu {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 0.35rem;
    cursor: pointer;
    padding: 0.75rem;
    background: rgba(11, 61, 102, 0.05);
    border-radius: var(--radius-md);
    border: 2px solid rgba(11, 61, 102, 0.1);
    transition: var(--transition-normal);
}

.menu-toggle span {
    width: 26px;
    height: 3px;
    background: var(--dark-gray);
    border-radius: 3px;
    transition: all var(--transition-normal);
}

.menu-toggle:hover span {
    background: var(--primary-color);
}

/* ===================================
   PREMIUM HERO SECTION
   =================================== */

.hero-premium {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #0a0a0a;
    padding: 150px 0 80px;
    color: var(--white);
}

.hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
    z-index: 1;
}

.hero-gradient-overlay {
    position: absolute;
    inset: 0;
    background: #0a0a0a;
    z-index: 2;
    overflow: hidden;
}

.hero-gradient-overlay::before,
.hero-gradient-overlay::after {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    filter: blur(120px);
    z-index: -1;
    opacity: 0.4;
    animation: aura-move 20s infinite alternate;
}

.hero-gradient-overlay::before {
    background: radial-gradient(circle, var(--primary-color) 0%, transparent 70%);
    top: -10%;
    left: -10%;
}

.hero-gradient-overlay::after {
    background: radial-gradient(circle, var(--primary-dark) 0%, transparent 70%);
    bottom: -10%;
    right: -10%;
    animation-delay: -5s;
}

@keyframes aura-move {
    0% {
        transform: translate(0, 0) scale(1) rotate(0deg);
    }

    50% {
        transform: translate(15%, 15%) scale(1.2) rotate(180deg);
    }

    100% {
        transform: translate(-10%, 10%) scale(1) rotate(360deg);
    }
}

.hero-pattern-new {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 60px 60px;
    z-index: 3;
}

.hero-pattern-new::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    opacity: 0.04;
    pointer-events: none;
    z-index: 4;
}

.hero-premium-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 10;
}

.hero-content-left {
    text-align: left;
}

.hero-premium-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    font-weight: 600;
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--white);
}

.hero-premium-badge i {
    color: var(--primary-color);
}

.hero-premium-title {
    font-size: clamp(2.5rem, 4.5vw, 4rem);
    margin-bottom: 2rem;
    color: var(--white);
    line-height: 1.2;
    font-weight: 800;
}

.hero-premium-subtitle {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2.5rem;
    max-width: 600px;
    line-height: 1.8;
}

.hero-premium-cta {
    display: flex;
    justify-content: flex-start;
    gap: 1.5rem;
    flex-wrap: wrap;
}

/* Right Side - Visuals */
.hero-visual-right {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image-box {
    position: relative;
    width: 100%;
    max-width: 500px;
    aspect-ratio: 1/0.8;
    z-index: 5;
}

.slider-container {
    width: 100%;
    height: 100%;
    border-radius: 30px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 40px rgba(15, 132, 205, 0.2),
        0 25px 50px rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 2;
    background: rgba(255, 255, 255, 0.05);
}

.slider-container::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 30px;
    padding: 2px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.3), transparent, rgba(15, 132, 205, 0.4));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

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

.hero-slider .slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    filter: brightness(0.9);
}

.hero-slider .slide.active {
    opacity: 1;
}

/* Decorations */
.box-decoration {
    position: absolute;
    z-index: 1;
    border-radius: 20px;
    filter: blur(40px);
}

.decoration-1 {
    top: -20px;
    right: -20px;
    width: 200px;
    height: 200px;
    background: var(--primary-color);
    opacity: 0.2;
}

.decoration-2 {
    bottom: -20px;
    left: -20px;
    width: 200px;
    height: 200px;
    background: var(--secondary-color);
    opacity: 0.2;
}

.experience-floating {
    position: absolute;
    bottom: 30px;
    left: -40px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    padding: 0.8rem 1.5rem;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 1.25rem;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4),
        inset 0 0 20px rgba(255, 255, 255, 0.05);
    z-index: 10;
    animation: badgeFloat 4s ease-in-out infinite;
    -webkit-animation: badgeFloat 4s ease-in-out infinite;
}

@keyframes badgeFloat {

    0%,
    100% {
        transform: translateY(0);
        -webkit-transform: translateY(0);
    }

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

@-webkit-keyframes badgeFloat {

    0%,
    100% {
        -webkit-transform: translateY(0);
    }

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

.exp-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.3rem;
    box-shadow: 0 8px 15px rgba(15, 132, 205, 0.3);
}

.exp-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.exp-text strong {
    font-size: 1.25rem;
    color: var(--white);
    font-family: var(--font-secondary);
    font-weight: 700;
    letter-spacing: 0.5px;
}

.exp-text span {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Buttons */
.cta-btn {
    padding: 1.1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.cta-primary {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(15, 132, 205, 0.3);
}

.cta-secondary {
    background: var(--white);
    color: var(--black);
}

.cta-outline {
    background: transparent;
    border: 2px solid white;
    color: white;
}

.cta-crystal {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.cta-crystal:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.1);
}

.cta-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(15, 132, 205, 0.5);
}

/* ===================================
   ABOUT OUR COMPANY SECTION
   =================================== */

.about-company-section {
    padding: 100px 0;
    position: relative;
    background: var(--white);
    overflow: hidden;
}

.about-company-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.about-company-visual {
    position: relative;
    padding: 2rem;
}

.about-image-modern {
    position: relative;
    z-index: 1;
    transition: var(--transition-normal);
}

.about-image-modern::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100%;
    height: 100%;
    border: 2px solid var(--primary-color);
    border-radius: var(--radius-lg);
    z-index: -1;
    opacity: 0.3;
    transition: var(--transition-normal);
}

.about-image-modern::after {
    content: '';
    position: absolute;
    bottom: -15px;
    right: -15px;
    width: 140px;
    height: 140px;
    background-image: radial-gradient(var(--primary-color) 2px, transparent 2px);
    background-size: 15px 15px;
    z-index: -1;
    opacity: 0.15;
    transition: var(--transition-normal);
}

.about-image-modern .main-image {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    transition: var(--transition-normal);
    display: block;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.about-image-modern:hover {
    transform: translateY(-8px);
}

.about-image-modern:hover .main-image {
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.about-image-modern:hover::before {
    transform: translate(-10px, -10px);
    opacity: 0.5;
    border-color: var(--accent-gold);
}

.about-image-modern:hover::after {
    transform: translate(10px, 10px);
    opacity: 0.3;
}

/* About Company Content */
.about-company-content {
    position: relative;
}

.about-company-content .section-header {
    margin-bottom: 2.5rem;
}

.about-company-text p {
    font-size: 1.1rem;
    color: var(--medium-gray);
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

.tm-sc-list {
    list-style: none;
    padding: 0;
    margin: 0 0 3rem 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.tm-sc-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 600;
    color: var(--dark-gray);
}

.tm-sc-list li i {
    background: var(--gradient-tertiary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 1.2rem;
}

/* Button Style 5 */
.theme-btn {
    display: inline-flex;
    gap: 8px;
    justify-content: center;
    text-align: center;
    white-space: nowrap;
    transition: all 300ms ease;
    text-decoration: none;
}

/* Button Style Four */
.btn-style-four {
    position: relative;
    display: inline-flex;
    align-items: center;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.5;
    border-radius: 60px;
    padding: 7px 7px 7px 31px;
    background-color: var(--primary-color);
    color: var(--white);
    border: 2px solid transparent;
    font-family: var(--font-primary);
    text-transform: capitalize;
    overflow: hidden;
    z-index: 0;
    transition: all 400ms ease;
    white-space: nowrap;
}

.btn-style-four .btn-title {
    position: relative;
    display: flex;
    align-items: center;
    transition: all 400ms ease;
}

.btn-style-four .dot-box {
    /* background-color: var(--black);
    color: var(--white); */
    background-color: var(--white);
    color: var(--black);
    border-radius: 50%;
    font-size: 12px;
    height: 40px;
    line-height: 40px;
    margin-left: 12px;
    text-align: center;
    position: relative;
    width: 40px;
    transition: all 300ms ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-style-four .dot-box .dot-item {
    background-color: var(--black);
    border-radius: 50%;
    height: 5px;
    width: 5px;
    display: inline-block;
    position: absolute;
    left: calc(50% + 3px);
    top: calc(50% - 2.5px);
    transition: all 300ms ease;
}

.btn-style-four .dot-box .dot-item:before {
    background-color: var(--black);
    border-radius: 50%;
    content: "";
    position: absolute;
    left: -7px;
    top: -7px;
    height: 5px;
    width: 5px;
    transition: all 300ms ease;
}

.btn-style-four .dot-box .dot-item:after {
    background-color: var(--black);
    border-radius: 50%;
    content: "";
    position: absolute;
    left: -7px;
    bottom: -7px;
    height: 5px;
    width: 5px;
    transition: all 300ms ease;
}

.btn-style-four:before {
    position: absolute;
    left: 0;
    top: 0;
    width: 101%;
    height: 100%;
    content: "";
    border-radius: 0;
    transform: scale(0, 1);
    transform-origin: top right;
    background-color: var(--white);
    transition: transform 500ms cubic-bezier(0.86, 0, 0.07, 1);
    z-index: -1;
}

.btn-style-four:hover {
    color: var(--black);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.btn-style-four:hover:before {
    transform: scale(1, 1);
    transform-origin: bottom left;
}

.btn-style-four:hover .dot-box {
    background-color: var(--primary-color);
}

.btn-style-four:hover .dot-box .dot-item {
    left: calc(50% - 7px);
    top: calc(50% - 2.5px);
    background-color: var(--white);
}

.btn-style-four:hover .dot-box .dot-item:before {
    left: 7px;
    top: 7px;
    background-color: var(--white);
}

.btn-style-four:hover .dot-box .dot-item:after {
    left: 7px;
    bottom: 7px;
    background-color: var(--white);
}


/* ===================================
   SERVICES SECTION
   =================================== */

.services-modern {
    background: var(--off-white);
    position: relative;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.service-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
    border: 1px solid var(--light-gray);
    display: flex;
    flex-direction: column;
    position: relative;
}


/* Individual Soft Color Backgrounds - Only applied if parent has .services-multicolor */
.services-multicolor .service-card:nth-child(1) {
    background-color: #f0f7ff;
}

.services-multicolor .service-card:nth-child(2) {
    background-color: #fff9e6;
}

.services-multicolor .service-card:nth-child(3) {
    background-color: #f0fff4;
}

.services-multicolor .service-card:nth-child(4) {
    background-color: #f5f0ff;
}

.services-multicolor .service-card:nth-child(5) {
    background-color: #fff0f0;
}

.services-multicolor .service-card:nth-child(6) {
    background-color: #e6ffff;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.services-multicolor .service-card:nth-child(1):hover {
    border-color: #55a5d6;
}

.services-multicolor .service-card:nth-child(2):hover {
    border-color: #ffcc00;
}

.services-multicolor .service-card:nth-child(3):hover {
    border-color: #2a9d8f;
}

.services-multicolor .service-card:nth-child(4):hover {
    border-color: #a29bfe;
}

.services-multicolor .service-card:nth-child(5):hover {
    border-color: #ff7675;
}

.services-multicolor .service-card:nth-child(6):hover {
    border-color: #00cec9;
}




.service-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.service-card:hover .service-image img {
    transform: scale(1.1);
}

.service-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent, rgba(15, 132, 205, 0.4));
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.service-card:hover .service-overlay {
    opacity: 1;
}

.service-icon {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: var(--white);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.25rem;
    box-shadow: var(--shadow-sm);
    z-index: 2;
    transition: all var(--transition-normal);
}

.service-card:hover .service-icon {
    transform: rotateY(360deg);
}



.services-multicolor .service-card:nth-child(1):hover .service-icon {
    background-color: #55a5d6;
    color: var(--white);
}

.services-multicolor .service-card:nth-child(2):hover .service-icon {
    background-color: #ffcc00;
    color: var(--white);
}

.services-multicolor .service-card:nth-child(3):hover .service-icon {
    background-color: #2a9d8f;
    color: var(--white);
}

.services-multicolor .service-card:nth-child(4):hover .service-icon {
    background-color: #a29bfe;
    color: var(--white);
}

.services-multicolor .service-card:nth-child(5):hover .service-icon {
    background-color: #ff7675;
    color: var(--white);
}

.services-multicolor .service-card:nth-child(6):hover .service-icon {
    background-color: #00cec9;
    color: var(--white);
}

.service-content {
    padding: 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.service-content h3 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    transition: color var(--transition-normal);
}

.service-content p {
    font-size: 0.95rem;
    color: var(--medium-gray);
    line-height: 1.7;
    margin: 0;
}

.service-btn {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-dark);
    font-weight: 700;
    font-size: 0.95rem;
    transition: all var(--transition-normal);
    width: fit-content;
    padding-top: 5px;
}

.service-btn i {
    transition: transform var(--transition-normal);
}

.service-btn:hover i {
    transform: translateX(5px);
}

/* ===================================
   OUR EXPERTISE SECTION
   =================================== */

.expertise-section .container {
    max-width: 100%;
    padding: 0;
}

.expertise-section .section-header {
    padding: 0 20px;
}

.expertise-rows-wrapper {
    margin-top: 3.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.expertise-scroll-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 0.5rem 0;
}

.expertise-scroll-track {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    width: max-content;
    will-change: transform;
}

/* Row Animation Directions */
.expertise-row-1 .expertise-scroll-track {
    animation: scrollExpertiseRightToLeft 60s linear infinite;
}

.expertise-row-2 .expertise-scroll-track {
    animation: scrollExpertiseLeftToRight 60s linear infinite;
}

.expertise-row-3 .expertise-scroll-track {
    animation: scrollExpertiseRightToLeft 60s linear infinite;
}

.expertise-scroll-item {
    flex-shrink: 0;
}

.expertise-box {
    padding: 1rem 2rem;
    background: var(--white);
    border: 1px solid var(--primary-color);
    border-radius: var(--radius-md);
    transition: all var(--transition-normal);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 75px;
    box-shadow: var(--shadow-sm);
    text-decoration: none;
    text-align: center;
}

.expertise-box span {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--secondary-color);
    transition: all var(--transition-normal);
    white-space: nowrap;
}

.expertise-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(15, 132, 205, 0.15);
    border-color: var(--accent-gold);
}

.expertise-box:hover span {
    color: var(--primary-dark);
}

/* Pause animation on hover */
.expertise-scroll-wrapper:hover .expertise-scroll-track {
    animation-play-state: paused;
}

/* Seamless Continuous Animations */
@keyframes scrollExpertiseRightToLeft {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(calc(-50% - 0.75rem));
    }
}

@keyframes scrollExpertiseLeftToRight {
    from {
        transform: translateX(calc(-50% - 0.75rem));
    }

    to {
        transform: translateX(0);
    }
}

/* Responsive Scaling */
@media (max-width: 768px) {
    .expertise-box {
        min-height: 65px;
        padding: 0.75rem 1.5rem;
    }

    .expertise-box span {
        font-size: 0.95rem;
    }

    .expertise-row-1 .expertise-scroll-track,
    .expertise-row-2 .expertise-scroll-track,
    .expertise-row-3 .expertise-scroll-track {
        animation-duration: 40s;
    }
}

/* ===================================
   FUNFACT / STATS SECTION
   =================================== */

.funfact-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #0a0e27 0%, #1a1f3a 50%, #0f1419 100%);
    position: relative;
    overflow: hidden;
}

.funfact-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(15, 132, 205, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 204, 0, 0.08) 0%, transparent 50%);
    z-index: 0;
    pointer-events: none;
}

.funfact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 5rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.funfact-content {
    color: var(--white);
}

.funfact-content .section-header {
    margin-bottom: 0;
}

.funfact-content .section-title {
    color: var(--white);
    margin-bottom: 2rem;
}

.funfact-content .section-subtitle {
    margin-bottom: 1.5rem;
}

.funfact-content .section-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
}

.funfact-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
}

.funfact-cards-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.funfact-card {
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: 2.5rem 1rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
}

.funfact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-tertiary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

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

.funfact-card:hover {
    transform: translateY(-12px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 204, 0, 0.3);
    box-shadow: 0 20px 50px rgba(15, 132, 205, 0.2);
}

.funfact-icon {
    margin-bottom: 1.5rem;
    display: inline-block;
}

.funfact-icon i {
    font-size: 3rem;
    background: var(--gradient-tertiary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: all 0.4s ease;
    filter: drop-shadow(0 0 10px rgba(255, 204, 0, 0.3));
}

.funfact-card:hover .funfact-icon i {
    transform: scale(1.1) rotate(8deg);
    filter: drop-shadow(0 0 15px rgba(255, 204, 0, 0.6));
}

.funfact-number {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
    margin: 0 0 0.75rem 0;
    font-family: var(--font-secondary);
}

.funfact-card-title {
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

/* Responsive Funfact */
@media (max-width: 1024px) {
    .funfact-wrapper {
        grid-template-columns: 1fr;
        gap: 4rem;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .funfact-cards-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .funfact-cards-container {
        grid-template-columns: 1fr;
    }

    .funfact-number {
        font-size: 2.5rem;
    }
}

/* ===================================
   MEDIA COVERAGE SECTION
   =================================== */

.media-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin-top: 3.5rem;
}

.video-item {
    background: linear-gradient(135deg, rgba(15, 132, 205, 0.6), rgba(255, 204, 0, 0.2), rgba(15, 132, 205, 0.6));
    padding: 8px;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    position: relative;
    border: none;
    aspect-ratio: unset;
}

.video-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 60px rgba(15, 132, 205, 0.18);
}

.video-item video {
    width: 100%;
    border-radius: 14px;
    display: block;
    background: #000;
}

.media-coverage-button-box {
    margin-top: 4rem;
    display: flex;
    justify-content: center;
}

/* Responsive Media Coverage */
@media (max-width: 992px) {
    .media-grid {
        grid-template-columns: 1fr;
        max-width: 700px;
        margin-left: auto;
        margin-right: auto;
        gap: 2rem;
    }
}

/* ===================================
   TESTIMONIAL LUXURY SECTION
   =================================== */

.testimonial-modern {
    padding: 120px 0;
    background: var(--off-white);
    position: relative;
    overflow: hidden;
}

.testimonial-modern::before {
    content: 'SMEBIZZ';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 20vw;
    font-weight: 900;
    color: rgba(15, 132, 205, 0.03);
    z-index: 0;
    pointer-events: none;
    white-space: nowrap;
}

.decoration-bubble {
    position: absolute;
    border-radius: 50%;
    background: var(--gradient-primary);
    filter: blur(80px);
    opacity: 0.1;
    z-index: 0;
}

.bubble-1 {
    width: 300px;
    height: 300px;
    top: -50px;
    left: -100px;
}

.bubble-2 {
    width: 400px;
    height: 400px;
    bottom: -100px;
    right: -150px;
    background: var(--accent-gold);
}

.testimonial-mosaic-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-auto-rows: minmax(100px, auto);
    gap: 2rem;
    margin-top: 4rem;
}

.testimonial-card-premium {
    background: var(--white);
    padding: 3rem;
    border-radius: 40px 0 40px 0;
    position: relative;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    border: 1px solid rgba(15, 132, 205, 0.1);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
}

.testimonial-card-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 100%;
    background: var(--gradient-tertiary);
    opacity: 0;
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease;
}

.testimonial-card-premium:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 30px 60px rgba(15, 132, 205, 0.15);
    border-color: var(--primary-color);
}

.testimonial-card-premium:hover::before {
    opacity: 1;
    transform: scaleY(1);
}

/* Mosaic Positioning */
.card-large {
    grid-column: span 7;
    grid-row: span 2;
}

.card-medium {
    grid-column: span 5;
    grid-row: span 1;
}

.card-tall {
    grid-column: span 5;
    grid-row: span 2;
}

.card-wide {
    grid-column: span 7;
    grid-row: span 1;
}

.quote-badge {
    position: absolute;
    top: 2rem;
    right: 2.5rem;
    font-size: 4.5rem;
    color: var(--primary-color);
    opacity: 0.08;
    line-height: 1;
    pointer-events: none;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    z-index: 0;
}

.testimonial-card-premium:hover .quote-badge {
    opacity: 0.25;
    transform: scale(1.2) translateY(-10px) rotate(-10deg);
    color: var(--accent-gold);
}

.testimonial-text-premium {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--secondary-color);
    font-style: italic;
    margin-bottom: 2rem;
}

.card-large .testimonial-text-premium {
    font-size: 1.4rem;
}

.testimonial-author-box {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--primary-light);
    box-shadow: var(--shadow-sm);
}

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

.author-info-premium h4 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-dark);
}

.author-info-premium p {
    margin: 3px 0 0;
    font-size: 0.85rem;
    color: var(--medium-gray);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.rating-stars {
    margin-top: 1rem;
    color: var(--accent-gold);
    display: flex;
    gap: 4px;
}

/* Responsive Mosaic */
@media (max-width: 1024px) {
    .testimonial-mosaic-grid {
        grid-template-columns: repeat(2, 1fr);
        display: flex;
        flex-direction: column;
    }

    .testimonial-card-premium {
        grid-column: span 1 !important;
        grid-row: span 1 !important;
    }
}

/* ===================================
   STELLAR CTA SECTION
   =================================== */

.stellar-cta {
    position: relative;
    padding: 80px 0;
    background: var(--black);
    overflow: hidden;
}

.cta-bg-wrapper {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.cta-bg-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
    filter: saturate(1.5) brightness(0.6);
}

.cta-overlay-gradient {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(15, 132, 205, 0.4) 0%, rgba(10, 14, 39, 0.9) 100%);
}

.cta-glass-card {
    position: relative;
    z-index: 2;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    padding: 80px 60px;
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.5);
}

.cta-glass-card .section-subtitle {
    color: var(--accent-gold);
    display: flex;
    justify-content: center;
}

.cta-glass-card .section-title {
    color: var(--white);
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 0;
}

.cta-glass-card .section-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.25rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.floating-objects {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
}

.float-item {
    position: absolute;
    color: var(--accent-gold);
    opacity: 0.2;
    animation: floatAnim 10s infinite linear;
}

.float-1 {
    top: 10%;
    left: 10%;
    font-size: 3rem;
}

.float-2 {
    bottom: 20%;
    right: 10%;
    font-size: 4rem;
    animation-delay: -3s;
}

.float-3 {
    top: 50%;
    right: 5%;
    font-size: 2rem;
    animation-delay: -7s;
}

@keyframes floatAnim {
    0% {
        transform: translateY(0) rotate(0);
    }

    33% {
        transform: translateY(-30px) rotate(10deg);
    }

    66% {
        transform: translateY(15px) rotate(-10deg);
    }

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

.cta-stellar-buttons {
    margin-top: 3.5rem;
    display: flex;
    justify-content: center;
    gap: 2rem;
}

/* Responsive CTA */
@media (max-width: 768px) {
    .cta-glass-card {
        padding: 60px 30px;
        border-radius: 30px;
    }

    .cta-glass-card .section-title {
        font-size: 2.5rem;
    }

    .cta-stellar-buttons {
        flex-direction: column;
        align-items: center;
    }
}

/* ===================================
   FOOTER SECTION
   =================================== */

.footer-modern {
    position: relative;
    background: linear-gradient(135deg, #0a0e27 0%, #1a1f3a 50%, #0f1419 100%);
    color: var(--white);
    overflow: hidden;
}

.footer-background {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

.footer-gradient {
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(15, 132, 205, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulseGlow 4s ease-in-out infinite;
}

@keyframes pulseGlow {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.5;
    }

    50% {
        transform: scale(1.2);
        opacity: 0.8;
    }
}

.footer-pattern {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.6;
}

.footer-container {
    position: relative;
    z-index: 1;
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 2rem 2rem;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-logo {
    display: inline-block;
    width: fit-content;
}

.footer-logo-img {
    height: 70px;
    object-fit: contain;
    background: var(--white);
    padding: 0.75rem;
    border-radius: var(--radius-md);
    border: 3px solid var(--primary-color);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15), 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: all var(--transition-normal);
}

.footer-logo-img:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2), 0 4px 8px rgba(0, 0, 0, 0.15), 0 4px 20px rgba(15, 132, 205, 0.3);
    border-color: var(--primary-color);
    border-width: 4px;
}

.footer-tagline {
    font-size: 1.1rem;
    font-weight: 600;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
}

.footer-description {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin: 0;
}

.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 0.5rem;
}

.social-link {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.2rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.social-link:hover {
    background: var(--gradient-primary);
    border-color: var(--primary-color);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(15, 132, 205, 0.3);
}

.footer-links-section {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--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: var(--gradient-primary);
    border-radius: 2px;
}

.footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-menu li a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    padding: 0.25rem 0;
}

.footer-menu li a i {
    font-size: 0.7rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.footer-menu li a:hover {
    color: var(--white);
    transform: translateX(5px);
}

.footer-menu li a:hover i {
    color: var(--white);
    transform: translateX(3px);
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(15, 132, 205, 0.1);
    border: 1px solid rgba(15, 132, 205, 0.2);
    border-radius: 10px;
    color: var(--primary-color);
    font-size: 1rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.footer-contact li:hover .contact-icon {
    background: var(--gradient-primary);
    border-color: var(--primary-color);
    color: #fff;
    transform: scale(1.1);
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
}

.contact-details a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s ease;
    line-height: 1.5;
}

.contact-details a:hover {
    color: var(--white);
    transform: translateX(3px);
}

.footer-bottom {
    margin-top: 3rem;
}

.footer-divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    margin-bottom: 2rem;
}

.footer-copyright {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    padding-bottom: 1rem;
    text-align: center;
}

.footer-copyright p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

.footer-copyright p span {
    color: var(--primary-color);
    font-weight: 600;
}

/* Floating Elements */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.8rem;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: all 0.3s ease;
    animation: pulseWhatsApp 2s ease-in-out infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}

.call-float {
    position: fixed;
    bottom: 105px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #007bff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.8rem;
    box-shadow: 0 4px 20px rgba(0, 123, 255, 0.4);
    z-index: 999;
    transition: all 0.3s ease;
}

.call-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(0, 123, 255, 0.6);
}

@keyframes pulseWhatsApp {

    0%,
    100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }

    50% {
        box-shadow: 0 4px 30px rgba(37, 211, 102, 0.6);
    }
}

.scroll-top {
    position: fixed;
    bottom: 180px;
    right: 35px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 4px 15px rgba(15, 132, 205, 0.3);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 998;
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 25px rgba(15, 132, 205, 0.5);
}

@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }

    .call-float {
        bottom: 85px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }

    .scroll-top {
        bottom: 150px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }
}

/* ===================================
   RESPONSIVE DESIGN
   =================================== */

@media (max-width: 1200px) {
    .nav-container {
        padding: 1rem 2rem;
    }

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

@media (max-width: 1024px) {
    .subtitle:before {
        display: none;
    }

    .about-company-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-company-visual {
        order: -1;
        min-height: 450px;
    }

    .tm-sc-animated-layer-advanced {
        min-height: 450px;
    }
}

@media (max-width: 768px) {
    .nav-container {
        padding: 1rem 1.5rem;
    }

    .logo-img {
        height: 50px;
    }

    .nav-menu {
        position: fixed;
        top: 82px;
        right: -100%;
        width: 80%;
        height: calc(100vh - 82px);
        background: linear-gradient(to bottom, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.95));
        backdrop-filter: blur(10px);
        flex-direction: column;
        padding: 2rem 1.5rem;
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
        transition: var(--transition-normal);
        overflow-y: auto;
        gap: 0.5rem;
    }

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

    .nav-item {
        width: 100%;
    }

    .nav-link {
        width: 100%;
        padding: 1rem 1.25rem;
        justify-content: flex-start;
    }

    .nav-link.active {
        color: var(--white);
        background: var(--gradient-primary);
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        border: none;
        background: rgba(11, 61, 102, 0.03);
        border-radius: var(--radius-md);
        padding: 0;
    }

    .dropdown-menu::before {
        display: none;
    }

    .dropdown.active>.dropdown-menu {
        max-height: 2000px;
        padding: 0.75rem;
        margin-top: 0.5rem;
        border: 1px solid rgba(11, 61, 102, 0.1);
    }

    .dropdown-submenu .submenu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        border: none;
        background: rgba(11, 61, 102, 0.05);
        padding: 0;
        margin: 0;
    }

    .dropdown-submenu.active .submenu {
        max-height: 1000px;
        padding: 0.5rem;
        margin-top: 0.5rem;
    }

    .dropdown-item i {
        transform: rotate(90deg);
    }

    .dropdown-submenu.active>.dropdown-item i {
        transform: rotate(-90deg);
    }

    .menu-toggle {
        display: flex;
    }

    .menu-toggle.active {
        background: var(--primary-color);
        border-color: var(--primary-color);
    }

    .menu-toggle.active span {
        background: var(--white);
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 5rem;
        text-align: center;
    }

    .hero-content-left {
        order: 2;
        text-align: center;
    }

    .hero-visual-right {
        order: 1;
    }

    /* Services Responsive */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .service-image {
        height: 220px;
    }


    .hero-premium-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-premium-cta {
        justify-content: center;
    }

    .experience-floating {
        left: 90px;
        bottom: -40px;
    }

    .footer-links-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom .container {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    /* Footer Modern Responsive */
    .footer-top {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .footer-links-section {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    /* About Company Section Responsive */
    .about-company-section {
        padding: 80px 0;
    }

    .about-company-wrapper {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .about-company-visual {
        order: -1;
        min-height: 400px;
    }

    .tm-sc-animated-layer-advanced {
        min-height: 450px;
    }

    .animated-layer-advanced-inner {
        min-height: 450px;
    }

    .animated-layer-advanced-inner .layer-image-wrapper:nth-child(1) {
        width: 100%;
        max-width: 350px;
        height: auto;
    }

    .animated-layer-advanced-inner .layer-image-wrapper:nth-child(2) {
        width: 100%;
        max-width: 250px;
        height: auto;
        top: 260px;
        right: -40px;
    }

    .animated-layer-advanced-inner .layer-image-wrapper:nth-child(4) {
        width: 100%;
        max-width: 120px;
        height: auto;
        bottom: -20px;
        left: 20px;
    }

    .tm-sc-list {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .footer-container {
        padding: 3rem 1.5rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .footer-links-section {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-top {
        gap: 2.5rem;
    }

    .footer-copyright {
        flex-direction: column;
        text-align: center;
    }

    .section-header {
        margin-bottom: 2.5rem;
    }
}

/* ===================================
   PAGE HERO & GALAXY GRID
   =================================== */

.page-hero {
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background-color: #0a0a0a;
    padding: 180px 0 100px;
    z-index: 1;
}

.page-hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
}

.page-hero-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    color: var(--white);
    font-weight: 800;
    margin-bottom: 2rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    letter-spacing: -0.02em;
    line-height: 1.2;
    font-family: var(--font-secondary);
}

/* Breadcrumb Navigation - Jitender Style */
.breadcrumb-nav {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 0.8rem 2rem;
    backdrop-filter: blur(15px);
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(15, 132, 205, 0.2);
    /* Smebizz Primary */
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.breadcrumb-nav:hover {
    background: rgba(15, 132, 205, 0.1);
    transform: translateY(-2px);
    border-color: rgba(15, 132, 205, 0.4);
}

.breadcrumb-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

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

.breadcrumb-sep {
    color: rgba(255, 255, 255, 0.3);
}

.breadcrumb-current {
    color: var(--primary-color);
    font-weight: 600;
}

/* ===================================
   CONTACT PAGE STYLES
   =================================== */

.contact-wrapper {
    margin-top: 3rem;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.contact-info-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
}

.contact-info-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.contact-card-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.contact-info-card:hover .contact-card-icon {
    transform: scale(1.1) rotate(10deg);
}

.contact-card-icon i {
    font-size: 1.75rem;
    color: var(--white);
}

.contact-info-card h4 {
    font-size: 1.25rem;
    color: var(--black);
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.contact-info-card p {
    font-size: 1rem;
    color: var(--medium-gray);
    margin: 0;
    line-height: 1.6;
}

.contact-info-card a {
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 600;
}

.contact-info-card a:hover {
    color: var(--primary-dark);
}

.contact-form-wrapper {
    background: var(--white);
    padding: 4rem;
    border-radius: 30px;
    box-shadow: var(--shadow-xl);
    border: 1px solid rgba(0, 0, 0, 0.05);
    max-width: 1000px;
    margin: 0 auto;
}

.contact-form-header {
    text-align: center;
    margin-bottom: 3rem;
}

.contact-form-header h3 {
    font-size: 2.25rem;
    color: var(--black);
    margin-bottom: 0.75rem;
    font-weight: 800;
}

.contact-form-header p {
    font-size: 1.1rem;
    color: var(--medium-gray);
    margin: 0;
}

.contact-form-modern {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-form-modern .form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.contact-form-modern .form-group {
    position: relative;
    text-align: left;
}

.contact-form-modern .form-group label {
    display: block;
    margin-bottom: 0.75rem;
    font-weight: 500;
    color: var(--black);
    font-size: 0.95rem;
}

.contact-form-modern .form-control {
    width: 100%;
    padding: 1rem 1.5rem;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    font-size: 1rem;
    background: #fcfcfc;
    transition: all 0.3s ease;
    color: var(--black);
}

.contact-form-modern .form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(15, 132, 205, 0.1);
    background: var(--white);
}

.contact-form-modern .form-group.error .form-control {
    border-color: #e74c3c;
}

.contact-form-modern .error-message {
    display: none;
    color: #e74c3c;
    font-size: 0.85rem;
    margin-top: 0.5rem;
    font-weight: 600;
}

.contact-form-modern .form-group.error .error-message {
    display: block;
}

.contact-form-modern textarea.form-control {
    resize: vertical;
    min-height: 150px;
}

.btn-text {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.contact-form-modern .btn-submit.loading .btn-text {
    display: none;
}

.contact-form-modern .btn-submit .btn-loader {
    display: none;
}

.contact-form-modern .btn-submit.loading .btn-loader {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.form-message {
    margin-top: 2rem;
    padding: 1.5rem;
    border-radius: 15px;
    display: none;
    align-items: center;
    gap: 1.5rem;
    text-align: left;
    animation: slideUp 0.4s ease;
}

@keyframes slideUp {
    from {
        transform: translateY(20px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.form-message.show {
    display: flex;
}

.form-message i {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.form-message-content h4 {
    margin: 0 0 5px 0;
    font-weight: 700;
}

.form-message-content p {
    margin: 0;
    font-size: 0.95rem;
}

.success-message {
    background: #e8f5e9;
    border: 1px solid #c8e6c9;
    color: #2e7d32;
}

.error-message-box {
    background: #ffebee;
    border: 1px solid #ffcdd2;
    color: #c62828;
}

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

@media (max-width: 850px) {
    .contact-info-grid {
        grid-template-columns: 1fr;
    }

    .contact-form-modern .form-row {
        grid-template-columns: 1fr;
    }

    .contact-form-wrapper {
        padding: 2.5rem 1.5rem;
    }

    .contact-form-header h3 {
        font-size: 1.75rem;
    }
}

/* Contact Social Section */
.contact-social-section {
    text-align: center;
    margin-bottom: 3rem;
    padding: 2rem;
    background: var(--white);
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.social-title {
    font-size: 1.5rem;
    color: var(--black);
    margin-bottom: 2rem;
    font-weight: 700;
}

.contact-social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.contact-social-link {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--white);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.contact-social-link.fb {
    background: #3b5998;
}

.contact-social-link.insta {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.contact-social-link.yt {
    background: #ff0000;
}

.contact-social-link.ln {
    background: #0077b5;
}

.contact-social-link.wa {
    background: #25d366;
}

.contact-social-link:hover {
    transform: translateY(-8px) scale(1.1);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    color: var(--white);
}

@media (max-width: 768px) {
    .contact-social-section {
        padding: 1.5rem;
    }

    .contact-social-link {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
}

/* ===================================
   ABOUT PAGE CONTENT STYLES
   =================================== */

/* The Smebizz Story & Spotlight Sections */
.about-corporate-wrapper,
.spotlight-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 5rem;
    align-items: center;
}

.about-features-list {
    list-style: none;
    padding: 0;
    margin-top: 2rem;
}

.about-features-list li {
    font-size: 1.1rem;
    color: var(--black);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    font-weight: 500;
}

.about-features-list li i {
    color: var(--primary-color);
    font-size: 1.25rem;
}

/* Premium Image Frames */
.premium-frame {
    position: relative;
    padding: 20px;
    background: var(--white);
    border-radius: 30px;
    box-shadow: var(--shadow-xl);
}

.premium-frame::after {
    content: '';
    position: absolute;
    inset: -10px;
    border: 2px solid var(--primary-color);
    border-radius: 40px;
    opacity: 0.2;
    z-index: -1;
}

.about-main-img {
    width: 100%;
    border-radius: 20px;
    display: block;
}

.experience-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--gradient-primary);
    color: var(--white);
    padding: 1.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(15, 132, 205, 0.4);
    text-align: center;
    border: 2px solid rgba(255, 255, 255, 0.2);
    animation: float 4s ease-in-out infinite;
}

.ceo-quote {
    background: rgba(15, 132, 205, 0.05);
    border-left: 5px solid var(--primary-color);
    padding: 2.5rem;
    margin: 3rem 0;
    border-radius: 0 20px 20px 0;
    position: relative;
}

.ceo-quote::before {
    content: '\f10d';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    top: -20px;
    right: 20px;
    font-size: 4rem;
    color: var(--primary-color);
    opacity: 0.1;
}

.ceo-quote p {
    font-size: 1.35rem;
    font-style: italic;
    color: var(--black);
    line-height: 1.6;
    margin: 0;
}

/* Workflow Evolution Path (Redesigned) */

.workflow-path-container {
    position: relative;
    margin-top: 6rem;
    padding-bottom: 2rem;
}

.path-line {
    position: absolute;
    top: 40px;
    left: 5%;
    right: 5%;
    height: 2px;
    background: rgba(15, 132, 205, 0.1);
    z-index: 0;
}

.evolution-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    position: relative;
    z-index: 1;
}

.evo-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* Node Styling */
.evo-node {
    width: 80px;
    height: 80px;
    background: var(--white);
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-bottom: 3rem;
    box-shadow: 0 10px 30px rgba(15, 132, 205, 0.1);
}

.node-num {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-color);
}

.node-pulse {
    position: absolute;
    inset: -10px;
    border: 1px solid var(--primary-color);
    border-radius: 50%;
    opacity: 0.3;
    animation: nodePulse 2s infinite;
}

@keyframes nodePulse {
    0% {
        transform: scale(1);
        opacity: 0.3;
    }

    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

/* Card Styling */
.evo-card {
    background: var(--white);
    padding: 3rem 2.5rem;
    border-radius: 30px;
    box-shadow: var(--shadow-xl);
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    width: 100%;
}

.evo-icon {
    width: 60px;
    height: 60px;
    background: #f0f7ff;
    color: var(--primary-color);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 2rem;
    transition: all 0.4s ease;
}

.evo-card h4 {
    font-size: 1.4rem;
    color: var(--black);
    margin-bottom: 1.25rem;
    font-weight: 800;
}

.evo-card p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    color: var(--medium-gray);
}

.evo-badge {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: #f0f7ff;
    color: var(--primary-color);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Hover Effects */
.evo-step:hover .evo-card {
    transform: translateY(-15px);
    border-color: var(--primary-color);
}

.evo-step:hover .evo-icon {
    background: var(--primary-color);
    color: var(--white);
    transform: rotateY(360deg);
}

.evo-step:hover .evo-node {
    background: var(--primary-color);
}

.evo-step:hover .node-num {
    color: var(--white);
}

@media (max-width: 991px) {
    .evolution-grid {
        grid-template-columns: 1fr;
        gap: 5rem;
    }

    .path-line {
        width: 2px;
        height: 80%;
        top: 40px;
        left: 50%;
        transform: translateX(-50%);
    }

    .evo-card {
        max-width: 400px;
    }
}


/* Professional Expertise Grid */
.expertise-modern-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 4rem;
}

.expertise-card {
    background: var(--white);
    padding: 4rem 2.5rem;
    border-radius: 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.expertise-icon-box {
    width: 80px;
    height: 80px;
    background: #f0f7ff;
    color: var(--primary-color);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 2rem;
    transition: all 0.4s ease;
}

.expertise-card h3 {
    font-size: 1.6rem;
    color: var(--black);
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.expertise-card:hover {
    transform: translateY(-15px);
    box-shadow: var(--shadow-2xl);
    border-color: var(--primary-color);
}

.expertise-card:hover .expertise-icon-box {
    background: var(--primary-color);
    color: var(--white);
    transform: rotateY(360deg);
}

.hover-shape {
    position: absolute;
    bottom: -60px;
    right: -60px;
    width: 120px;
    height: 120px;
    background: var(--primary-color);
    opacity: 0.03;
    border-radius: 50%;
    transition: all 0.8s ease;
}

.expertise-card:hover .hover-shape {
    transform: scale(4);
}

/* Vision & Mission Cards */
/* Vision & Mission (Redesigned Modern) */
.vision-mission-dynamic {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    background: #05080b;
    /* Sophisticated Dark Base */
}

.vm-aura-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.aura-shape {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.15;
    animation: auraFloat 20s infinite alternate;
}

.aura-1 {
    background: var(--primary-color);
    top: -200px;
    left: -100px;
}

.aura-2 {
    background: #1e3a8a;
    bottom: -200px;
    right: -100px;
    animation-delay: -10s;
}

@keyframes auraFloat {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(100px, 50px) scale(1.2);
    }
}

.vm-dynamic-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    position: relative;
    z-index: 1;
}

.vm-modern-card {
    position: relative;
    padding: 4.5rem 3.5rem;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 40px;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.vm-modern-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: var(--gradient-primary);
    transition: height 0.4s ease;
}

.vm-modern-card:hover {
    transform: translateY(-15px);
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}

.vm-modern-card:hover::before {
    height: 100%;
}

.vm-accent-icon {
    width: 70px;
    height: 70px;
    background: rgba(15, 132, 205, 0.1);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 2.5rem;
    transition: all 0.4s ease;
}

.vm-card-index {
    position: absolute;
    top: 3rem;
    right: 3.5rem;
    font-size: 5rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.03);
    line-height: 1;
    font-family: var(--font-secondary);
    transition: all 0.4s ease;
}

.vm-modern-card:hover .vm-card-index {
    color: rgba(15, 132, 205, 0.08);
    transform: translateY(-10px);
}

.vm-card-title {
    font-size: 2.25rem;
    color: var(--white);
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.vm-card-text {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: 2.5rem;
}

.vm-tag {
    display: inline-block;
    padding: 0.6rem 1.5rem;
    background: rgba(15, 132, 205, 0.15);
    color: var(--primary-color);
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

@media (max-width: 991px) {
    .vm-dynamic-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .vm-modern-card {
        padding: 3.5rem 2.5rem;
    }

    .vm-card-index {
        font-size: 3.5rem;
        top: 2rem;
        right: 2rem;
    }
}


/* Responsive Adjustments */
@media (max-width: 1200px) {

    .about-corporate-wrapper,
    .spotlight-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .spotlight-visual {
        order: -1;
    }
}

@media (max-width: 991px) {

    .workflow-grid,
    .expertise-modern-grid,
    .vision-mission-grid {
        grid-template-columns: 1fr;
    }

    .workflow-grid::before {
        display: none;
    }
}

/* ===================================
   ADDITIONAL ABOUT PAGE MODULES
   =================================== */

/* About Impact Stats */
.about-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3.5rem;
}

.stat-item {
    text-align: left;
    padding: 2.5rem 1.5rem;
    background: var(--white);
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(15, 132, 205, 0.05);
    transition: all 0.4s ease;
}

.stat-item:hover {
    transform: translateY(-8px);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-lg);
}

.stat-num {
    display: block;
    font-size: 2.75rem;
    font-weight: 800;
    color: var(--primary-color);
    font-family: var(--font-secondary);
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.stat-label {
    font-size: 0.95rem;
    color: var(--medium-gray);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

/* Leadership & Spotlight Enhancements */

.spotlight-content .tagline {
    display: block;
    color: var(--primary-color);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 1.5rem;
    font-size: 0.85rem;
}

.spotlight-content h2 {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    line-height: 1.1;
    margin-bottom: 2rem;
    font-weight: 800;
    color: var(--black);
}

/* Trust Card Grid (Why Choose Us) */
.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 4.5rem;
}

.why-card {
    background: var(--white);
    padding: 4rem 2.5rem;
    border-radius: 30px;
    text-align: center;
    box-shadow: var(--shadow-lg);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(0, 0, 0, 0.03);
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.why-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-primary);
    opacity: 0;
    z-index: -1;
    transition: opacity 0.4s ease;
}

.why-card:hover::before {
    opacity: 1;
}

.why-icon {
    width: 80px;
    height: 80px;
    background: rgba(15, 132, 205, 0.08);
    color: var(--primary-color);
    border-radius: 50%;
    margin: 0 auto 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.25rem;
    transition: all 0.4s ease;
}

.why-card h4 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    transition: color 0.3s ease;
}

.why-card p {
    transition: color 0.3s ease;
}

.why-card:hover {
    transform: translateY(-15px);
}

.why-card:hover h4,
.why-card:hover p {
    color: var(--white);
}

.why-card:hover .why-icon {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
    transform: scale(1.1) rotate(10deg);
}

/* Base Keyframes */
@keyframes float {

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

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

/* Final Responsive Polish */
@media (max-width: 991px) {

    .about-stats-grid,
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {

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

    .stat-num {
        font-size: 2.25rem;
    }
}

/* ===================================
   CAPABILITIES RIBBON (REDESIGNED)
   =================================== */
.capabilities-ribbon {
    background: #080a0e;
    position: relative;
    overflow: hidden;
    z-index: 5;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.4);
    padding: 30px 0;
    /* Soft Fade Edges */
    -webkit-mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
    mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
}

.ribbon-aura {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, rgba(15, 132, 205, 0.08), transparent 70%);
    pointer-events: none;
}

.marquee-row {
    display: flex;
    white-space: nowrap;
    margin-bottom: 2.5rem;
}

.marquee-row:last-child {
    margin-bottom: 0;
}

.marquee-content {
    display: flex;
    align-items: center;
}

/* Base Movement: Row 1 LTR */
.ltr .marquee-content {
    animation: scroll-ltr 60s linear infinite;
}

/* Base Movement: Row 2 RTL */
.rtl .marquee-content {
    animation: scroll-rtl 60s linear infinite;
}

.marquee-content span {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 200;
    color: var(--white);
    text-transform: uppercase;
    font-family: var(--font-secondary);
    letter-spacing: 5px;
    padding: 0 60px;
}

.marquee-content .outline {
    color: transparent;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.3);
}

.marquee-content .dot {
    width: 20px;
    height: 20px;
    background: var(--primary-color);
    border-radius: 50%;
    margin: 0 10px;
    box-shadow: 0 0 20px var(--primary-color);
    padding: 0;
}

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

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

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

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

/* Hover Physics */
.capabilities-ribbon:hover .marquee-content {
    animation-play-state: paused;
}

@media (max-width: 991px) {
    .marquee-content span {
        padding: 0 30px;
    }
}

/* Minimalist Service Section Below CTA */
.section-minimal-services {
    padding: 60px 0;
    background-color: var(--white);
}

.minimal-services-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1.5rem;
}

.minimal-service-link {
    text-decoration: none;
    display: block;
    color: inherit;
    transition: all 0.3s ease;
}

.minimal-service-card {
    padding: 2rem 1.25rem;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 120px;
    cursor: default;
}

.minimal-service-card h4 {
    font-size: 1rem;
    font-weight: 700;
    margin: 0;
    color: var(--black);
    line-height: 1.3;
}

/* Color Varieties matching Home Page */
.minimal-service-card.color-1 {
    background-color: #f0f7ff;
}

.minimal-service-card.color-2 {
    background-color: #fff9e6;
}

.minimal-service-card.color-3 {
    background-color: #f0fff4;
}

.minimal-service-card.color-4 {
    background-color: #f5f0ff;
}

.minimal-service-card.color-5 {
    background-color: #fff0f0;
}

.minimal-service-card.color-6 {
    background-color: #e6ffff;
}

/* Hover States with Home Page Border Colors */
.minimal-service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
}

.minimal-service-card.color-1:hover {
    border-color: #55a5d6;
}

.minimal-service-card.color-2:hover {
    border-color: #ffcc00;
}

.minimal-service-card.color-3:hover {
    border-color: #2a9d8f;
}

.minimal-service-card.color-4:hover {
    border-color: #a29bfe;
}

.minimal-service-card.color-5:hover {
    border-color: #ff7675;
}

.minimal-service-card.color-6:hover {
    border-color: #00cec9;
}

@media (max-width: 1200px) {
    .minimal-services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

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

/* ===================================
   GALLERY & LIGHTBOX STYLES
   =================================== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    aspect-ratio: 4/3;
    cursor: pointer;
    box-shadow: var(--shadow-md);
}

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

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item .gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(85, 165, 214, 0.85);
    /* Hardcoded primary for overlay */
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    color: var(--white);
    font-size: 2.5rem;
    transform: scale(0.5);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay i {
    transform: scale(1);
}

/* Lightbox Modal */
.lightbox {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    flex-direction: column;
    backdrop-filter: blur(10px);
}

.lightbox-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 30px;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 10001;
}

.lightbox-counter {
    color: var(--white);
    font-size: 16px;
    letter-spacing: 1px;
    font-family: var(--font-secondary);
}

.lightbox-close {
    color: var(--white);
    font-size: 40px;
    font-weight: 300;
    cursor: pointer;
    transition: 0.3s;
    line-height: 1;
}

.lightbox-close:hover {
    color: var(--primary-color);
    transform: rotate(90deg);
}

.lightbox-body {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 100%;
    height: calc(100% - 120px);
    padding: 60px 20px 20px;
}

.lightbox-content {
    max-width: 90%;
    max-height: 80vh;
    object-fit: contain;
    animation: zoomIn 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 8px;
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.5);
}

.lightbox-prev,
.lightbox-next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: white;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
    user-select: none;
    padding: 30px;
    z-index: 10000;
}

.lightbox-prev {
    left: 10px;
}

.lightbox-next {
    right: 10px;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    color: var(--primary-color);
}

.lightbox-thumbnails-container {
    height: 110px;
    width: 100%;
    background-color: rgba(26, 26, 26, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px 0;
    position: absolute;
    bottom: 0;
    left: 0;
}

.lightbox-thumbnails {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    max-width: 90%;
    padding-bottom: 8px;
    scrollbar-width: thin;
    scrollbar-color: var(--primary-color) rgba(255, 255, 255, 0.1);
}

.lightbox-thumbnails::-webkit-scrollbar {
    height: 4px;
}

.lightbox-thumbnails::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
}

.lightbox-thumbnails::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 10px;
}

.lightbox-thumb {
    height: 70px;
    width: 90px;
    min-width: 90px;
    object-fit: cover;
    cursor: pointer;
    opacity: 0.4;
    transition: 0.3s;
    border: 2px solid transparent;
    border-radius: 10px;
}

.lightbox-thumb.active {
    opacity: 1;
    border-color: var(--primary-color);
}

.lightbox-thumb:hover {
    opacity: 0.8;
}

@keyframes zoomIn {
    from {
        transform: scale(0.95);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 15px;
    }

    .lightbox-prev,
    .lightbox-next {
        padding: 15px;
        font-size: 30px;
    }

    .lightbox-thumbnails-container {
        height: 90px;
    }

    .lightbox-thumb {
        height: 50px;
        width: 70px;
        min-width: 70px;
    }
}

/* ===================================
   SERVICE SPECS GRID
   =================================== */
.service-specs-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.spec-item {
    background: var(--white);
    padding: 30px;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.3s ease;
    border: 1px solid rgba(15, 132, 205, 0.1);
}

.spec-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.spec-icon {
    width: 60px;
    height: 60px;
    min-width: 60px;
    background: var(--primary-light);
    color: var(--primary-color);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    transition: all 0.3s ease;
}

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

.spec-content h4 {
    font-family: var(--font-secondary);
    font-size: 18px;
    margin-bottom: 5px;
    color: var(--black);
}

.spec-content p {
    margin: 0;
    color: var(--primary-dark);
    font-weight: 600;
}

@media (max-width: 1200px) {
    .service-specs-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .service-specs-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* ===================================
   SERVICE DETAIL SECTION
   =================================== */
.service-detail-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    /* max-width: 1200px; */
    margin: 0 auto;
}

.service-detail-image {
    position: relative;
}

.service-image-container {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    background: var(--white);
    transition: transform 0.4s ease;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-image-container:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 70px rgba(15, 132, 205, 0.3);
}

.service-hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    min-height: 400px;
    transition: transform 0.5s ease;
}

.service-image-container:hover .service-hero-image {
    transform: scale(1.05);
}

.service-image-overlap-badge {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: var(--white);
    padding: 15px 25px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: var(--shadow-lg);
    z-index: 10;
}

.service-image-overlap-badge i {
    color: var(--accent-gold);
    font-size: 24px;
}

.service-image-overlap-badge span {
    font-weight: 700;
    color: var(--secondary-color);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.service-detail-content {
    position: relative;
}

.service-detail-content .section-header {
    margin-bottom: 30px;
}

.premium-benefits-list {
    list-style: none;
    padding: 0;
    margin-bottom: 40px;
}

.premium-benefits-list li {
    font-size: 17px;
    color: var(--medium-gray);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.premium-benefits-list li i {
    color: var(--primary-color);
    font-size: 18px;
}

.use-cases-container {
    margin-bottom: 40px;
}

.use-cases-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--black);
    font-family: var(--font-secondary);
}

.premium-use-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.use-tag {
    background: var(--primary-light);
    color: var(--primary-dark);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 1px solid rgba(15, 132, 205, 0.1);
}

.use-tag:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-3px);
}

.cta-wrapper {
    margin-top: 50px;
}

@media (max-width: 1024px) {
    .service-detail-wrapper {
        gap: 3rem;
    }
}

@media (max-width: 991px) {
    .service-detail-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .service-image-container {
        min-height: 350px;
    }
}

/* ===================================
   SERVICE TYPES GRID
   =================================== */
.service-types-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 50px;
}

.service-type-card {
    background: var(--white);
    padding: 50px 40px;
    border-radius: 30px;
    box-shadow: var(--shadow-lg);
    transition: all 0.4s ease;
    border: 1px solid rgba(15, 132, 205, 0.05);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.service-type-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--primary-color);
    transition: all 0.4s ease;
}

.service-type-card.card-transactional::before {
    background: var(--accent-gold);
}

.service-type-card:hover {
    transform: translateY(-15px);
    box-shadow: var(--shadow-xl);
}

.service-type-card:hover::before {
    height: 10px;
}

.type-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-light);
    color: var(--primary-color);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin-bottom: 30px;
    transition: all 0.4s ease;
}

.card-transactional .type-icon {
    background: rgba(255, 204, 0, 0.1);
    color: var(--accent-gold);
}

.service-type-card:hover .type-icon {
    transform: scale(1.1) rotate(5deg);
    background: var(--primary-color);
    color: var(--white);
}

.card-transactional:hover .type-icon {
    background: var(--accent-gold);
    color: var(--white);
}

.service-type-card h3 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--black);
    font-family: var(--font-secondary);
}

.service-type-card p {
    color: var(--medium-gray);
    margin-bottom: 30px;
    line-height: 1.7;
}

.type-features-premium {
    list-style: none;
    padding: 0;
}

.type-features-premium li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 12px;
    color: var(--dark-gray);
    font-weight: 500;
}

.type-features-premium li i {
    color: var(--primary-color);
    font-size: 16px;
}

.card-transactional .type-features-premium li i {
    color: var(--accent-gold);
}

@media (max-width: 991px) {
    .service-types-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .service-type-card {
        padding: 40px 30px;
    }
}

/* ===================================
   FEATURE TABS SECTION
   =================================== */
.tabs-container {
    margin-bottom: 40px;
}

.tabs-nav {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    background: var(--white);
    padding: 10px;
    border-radius: 9999px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--light-gray);
    width: fit-content;
    margin: 0 auto;
}

.tab-btn {
    padding: 12px 25px;
    background: transparent;
    border: none;
    border-radius: 9999px;
    color: var(--dark-gray);
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--font-secondary);
    position: relative;
}

.tab-btn:hover {
    color: var(--primary-color);
    background: rgba(15, 132, 205, 0.05);
}

.tab-btn.active {
    background: var(--primary-color);
    color: var(--white);
    box-shadow: 0 4px 12px rgba(15, 132, 205, 0.3);
}

.tabs-content {
    margin-top: 50px;
}

.tab-panel {
    display: none;
}

.tab-panel.active {
    display: block;
    animation: fadeIn 0.5s ease-out;
}

.feature-tab-wrapper {
    display: flex;
    align-items: center;
    gap: 60px;
}

.feature-tab-content {
    flex: 1.2;
}

.feature-tab-image {
    flex: 1;
}

.feature-tab-title {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 25px;
    color: var(--black);
    line-height: 1.3;
}

.feature-tab-description {
    font-size: 18px;
    color: var(--medium-gray);
    line-height: 1.8;
}

.feature-image {
    width: 100%;
    border-radius: 30px;
    box-shadow: var(--shadow-lg);
    transition: transform 0.5s ease;
}

.feature-tab-wrapper:hover .feature-image {
    transform: scale(1.02);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 991px) {
    .feature-tab-wrapper {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .feature-tab-title {
        font-size: 26px;
    }

    .tabs-nav {
        border-radius: 15px;
        padding: 15px;
        width: 100%;
        gap: 10px;
        justify-content: center;
    }

    .tab-btn {
        padding: 10px 15px;
        font-size: 14px;
        text-align: center;
    }
}

/* ===================================
   INDUSTRIES WE SERVE (WINNING GRID)
   =================================== */
.winning-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.winning-card {
    background: var(--white);
    padding: 35px;
    border-radius: 25px;
    border: 1px solid rgba(15, 132, 205, 0.1);
    box-shadow: var(--shadow-sm);
    transition: all 0.4s ease;
    text-align: left;
}

.winning-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.winning-card-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.winning-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-light);
    color: var(--primary-color);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    flex-shrink: 0;
    transition: all 0.4s ease;
}

.winning-card:hover .winning-icon {
    background: var(--primary-color);
    color: var(--white);
    transform: rotate(5deg);
}

.winning-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--black);
    margin: 0;
    font-family: var(--font-secondary);
}

.winning-description {
    font-size: 16px;
    color: var(--medium-gray);
    line-height: 1.7;
    margin: 0;
}

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

    .winning-card {
        padding: 25px;
    }
}



/* ===================================
   MEDIA COVERAGE VIDEO GRID
   =================================== */
.video-grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 50px;
}

.video-card {
    background: linear-gradient(135deg, rgba(15, 132, 205, 0.6), rgba(255, 204, 0, 0.2), rgba(15, 132, 205, 0.6));
    border-radius: 20px;
    padding: 10px;
    box-shadow: 0 20px 50px rgba(11, 61, 102, 0.1);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    overflow: hidden;
}

.video-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(85, 165, 214, 0.2);
}

.video-wrapper {
    position: relative;
    width: 100%;
    border-radius: 15px;
    overflow: hidden;
    background: #000;
}

.video-wrapper video {
    width: 100%;
    display: block;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

@media (max-width: 991px) {
    .video-grid-2 {
        gap: 30px;
    }
}

@media (max-width: 767px) {
    .video-grid-2 {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-top: 30px;
    }
}

/* ===================================
   MINIMALIST TESTIMONIALS
   =================================== */

.minimal-testimonials {
    padding: 100px 0;
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.minimal-testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(15, 132, 205, 0.2), transparent);
}

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

.testimonial-clean-card {
    background: var(--off-white);
    padding: 40px;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(15, 132, 205, 0.1);
    transition: all var(--transition-normal);
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: var(--shadow-sm);
}

.testimonial-clean-card:hover {
    transform: translateY(-10px);
    background: var(--white);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.clean-quote-icon {
    font-size: 3rem;
    color: var(--accent-gold);
    opacity: 0.2;
}

.clean-testimonial-text {
    font-size: 1.1rem;
    color: var(--dark-gray);
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.clean-author-info h4 {
    font-size: 1.1rem;
    color: var(--black);
    margin-bottom: 5px;
    font-family: var(--font-secondary);
}

.clean-author-info p {
    font-size: 0.9rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 0;
}

.minimal-testimonials .section-header {
    margin-bottom: 60px;
}

@media (max-width: 768px) {
    .minimal-testimonials {
        padding: 60px 0;
    }

    .testimonial-clean-card {
        padding: 30px;
    }
}

/* Service Hero Image Responsive */
@media (max-width: 768px) {
    .service-detail-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .service-image-container {
        min-height: 300px;
    }

    .service-hero-image {
        min-height: 300px;
    }
}

@media (max-width: 480px) {
    .service-image-container {
        min-height: 250px;
    }

    .service-hero-image {
        min-height: 250px;
    }
}

/* Digital Coverage Grid */
.coverage-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
    margin-top: 50px;
}

.coverage-card {
    background: var(--white);
    padding: 40px 35px;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(11, 61, 102, 0.06);
    transition: all 0.5s cubic-bezier(0.2, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-shadow: 0 10px 30px rgba(11, 61, 102, 0.05);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.coverage-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--gradient-primary);
    transition: width 0.4s cubic-bezier(0.2, 1, 0.3, 1);
    z-index: 2;
}

.coverage-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(11, 61, 102, 0.12), 0 0 0 1px rgba(15, 132, 205, 0.1);
    border-color: transparent;
}

.coverage-card:hover::before {
    width: 100%;
}

.coverage-logo-wrapper {
    height: 90px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    padding: 10px;
    background: rgba(11, 61, 102, 0.02);
    border-radius: var(--radius-md);
    transition: all 0.4s ease;
}

.coverage-card:hover .coverage-logo-wrapper {
    background: rgba(15, 132, 205, 0.05);
}

.coverage-logo {
    max-width: 80%;
    max-height: 100%;
    object-fit: contain;
    filter: grayscale(100%) contrast(0.8);
    opacity: 0.6;
    transition: all 0.5s cubic-bezier(0.2, 1, 0.3, 1);
}

.coverage-card:hover .coverage-logo {
    filter: grayscale(0%) contrast(1);
    opacity: 1;
    transform: scale(1.08);
}

.coverage-title {
    font-size: 1.35rem;
    color: var(--secondary-color);
    margin-bottom: 12px;
    font-weight: 800;
    font-family: var(--font-primary);
    transition: color 0.3s ease;
}

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

.coverage-desc {
    color: var(--medium-gray);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 30px;
    flex-grow: 1;
    transition: color 0.3s ease;
}

.coverage-card:hover .coverage-desc {
    color: var(--dark-gray);
}

.coverage-cta {
    width: 100%;
    opacity: 0.9;
    transition: all 0.3s ease;
}

.coverage-card:hover .coverage-cta {
    opacity: 1;
    transform: translateY(-2px);
}

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